From 0126a2c338b68d67973d9397c1545cedff3c0ca5 Mon Sep 17 00:00:00 2001 From: pambecker Date: Thu, 12 Dec 2024 14:31:22 -0600 Subject: [PATCH 01/32] save gbloc on create for AK --- pkg/handlers/internalapi/orders.go | 26 ++++++++++++++++------- pkg/models/duty_location.go | 34 ++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+), 8 deletions(-) diff --git a/pkg/handlers/internalapi/orders.go b/pkg/handlers/internalapi/orders.go index 0459ac57730..59880d276b4 100644 --- a/pkg/handlers/internalapi/orders.go +++ b/pkg/handlers/internalapi/orders.go @@ -183,14 +183,24 @@ func (h CreateOrdersHandler) Handle(params ordersop.CreateOrdersParams) middlewa dependentsUnderTwelve = models.IntPointer(int(*payload.DependentsUnderTwelve)) } - originDutyLocationGBLOC, err := models.FetchGBLOCForPostalCode(appCtx.DB(), originDutyLocation.Address.PostalCode) - if err != nil { - switch err { - case sql.ErrNoRows: - return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location PostalCodeToGBLOC") - default: - return nil, apperror.NewQueryError("PostalCodeToGBLOC", err, "") + var originDutyLocationGBLOC *string + if *originDutyLocation.Address.IsOconus { + originDutyLocationGBLOCOconus, err := models.FetchOconusDutyLocationGbloc(appCtx.DB(), originDutyLocation, serviceMember) + if err != nil { + return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") + } + originDutyLocationGBLOC = &originDutyLocationGBLOCOconus.Gbloc + } else { + originDutyLocationGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), originDutyLocation.Address.PostalCode) + if err != nil { + switch err { + case sql.ErrNoRows: + return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location PostalCodeToGBLOC") + default: + return nil, apperror.NewQueryError("PostalCodeToGBLOC", err, "") + } } + originDutyLocationGBLOC = &originDutyLocationGBLOCConus.GBLOC } grade := payload.Grade @@ -265,7 +275,7 @@ func (h CreateOrdersHandler) Handle(params ordersop.CreateOrdersParams) middlewa &originDutyLocation, grade, &entitlement, - &originDutyLocationGBLOC.GBLOC, + originDutyLocationGBLOC, packingAndShippingInstructions, &newDutyLocationGBLOC.GBLOC, ) diff --git a/pkg/models/duty_location.go b/pkg/models/duty_location.go index 16716a2e3ef..d7d5a6ddc23 100644 --- a/pkg/models/duty_location.go +++ b/pkg/models/duty_location.go @@ -197,3 +197,37 @@ func FetchDutyLocationsByPostalCode(tx *pop.Connection, postalCode string) (Duty return locations, nil } + +type oconusGbloc struct { + Gbloc string `db:"gbloc" rw:"r"` +} + +func FetchOconusDutyLocationGbloc(appCtx *pop.Connection, dutyLocation DutyLocation, serviceMember ServiceMember) (*oconusGbloc, error) { + oconusGbloc := oconusGbloc{} + + sqlQuery := ` + select j.code gbloc + from addresses a, + v_locations v, + re_oconus_rate_areas o, + jppso_regions j, + gbloc_aors g + where a.us_post_region_cities_id = v.uprc_id + and v.uprc_id = o.us_post_region_cities_id + and o.id = g.oconus_rate_area_id + and j.id = g.jppso_regions_id + and a.id = $1 ` + + if serviceMember.Affiliation.String() == "AIR_FORCE" || serviceMember.Affiliation.String() == "SPACE_FORCE" { + sqlQuery += ` + and g.department_indicator = 'AIR_AND_SPACE_FORCE' ` + } + + err := appCtx.Q().RawQuery(sqlQuery, dutyLocation.Address.ID).First(&oconusGbloc) + if err != nil { + return nil, err + } + + return &oconusGbloc, nil + +} From a58f510a709b9c1d969c1563882e352957d94872 Mon Sep 17 00:00:00 2001 From: pambecker Date: Fri, 13 Dec 2024 10:43:55 -0600 Subject: [PATCH 02/32] update data --- migrations/app/migrations_manifest.txt | 1 + ...1212161012_insert_ak_zip3_distances.up.sql | 3198 +++++++++++++++++ 2 files changed, 3199 insertions(+) create mode 100644 migrations/app/schema/20241212161012_insert_ak_zip3_distances.up.sql diff --git a/migrations/app/migrations_manifest.txt b/migrations/app/migrations_manifest.txt index b35b9a7819b..ad5730b892b 100644 --- a/migrations/app/migrations_manifest.txt +++ b/migrations/app/migrations_manifest.txt @@ -1049,3 +1049,4 @@ 20241203024453_add_ppm_max_incentive_column.up.sql 20241204155919_update_ordering_proc.up.sql 20241204210208_retroactive_update_of_ppm_max_and_estimated_incentives_prd.up.sql +20241212161012_insert_ak_zip3_distances.up.sql diff --git a/migrations/app/schema/20241212161012_insert_ak_zip3_distances.up.sql b/migrations/app/schema/20241212161012_insert_ak_zip3_distances.up.sql new file mode 100644 index 00000000000..f2e257d86c7 --- /dev/null +++ b/migrations/app/schema/20241212161012_insert_ak_zip3_distances.up.sql @@ -0,0 +1,3198 @@ +UPDATE postal_code_to_gblocs set gbloc = 'MAPS', updated_at = now() +where postal_code = '99574'; + +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c62a1c34-2fc9-4ed8-adb8-5a5519633537'::uuid,'010','998',3612,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e8438313-c130-4369-b633-99d208b740a8'::uuid,'010','999',3612,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('894e9d41-3017-4b90-8ea5-4834ceb55dbd'::uuid,'011','998',3607,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3e99a6ca-35eb-4067-9a46-8a405a1dd771'::uuid,'011','999',3607,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3f29c823-6e97-4e82-8d3d-eb3a99ad3502'::uuid,'012','998',3820,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e1c36b29-a964-4fac-9521-0226bc3de513'::uuid,'012','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('231eb38f-86a7-49dd-b3d9-4b4b566b0dfb'::uuid,'013','995',4693,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('30ea7960-4225-43aa-aec4-e2f11d57b03c'::uuid,'013','996',4693,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb4d8727-3a63-4581-8478-99178eceae53'::uuid,'013','998',3852,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d7a1ca72-4282-4194-b17f-849d2ac8c15d'::uuid,'013','999',3629,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ac36b7b5-603e-49f7-ab17-7c0a7ab0846d'::uuid,'014','995',4721,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7fdaac4a-ebe5-4c60-9cbb-60129773a7da'::uuid,'014','996',4721,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f307f161-034d-41ae-bbfc-eabb58639e9f'::uuid,'014','998',3880,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4191c495-c3ad-4797-b389-a64377e0f6cc'::uuid,'014','999',3657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('09dd3498-1e2a-46b5-b5bb-06d275f902de'::uuid,'015','998',3640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e325c4b-ead2-4c45-b39f-f7f0b129e718'::uuid,'015','999',3640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('93d1c10b-db1a-4255-bdfc-2b69c3f65722'::uuid,'016','998',3640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dd10b3c3-f70f-42a2-b7f5-c1634d20f2c4'::uuid,'016','999',3640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5729abad-cd5d-4dfb-8697-811c4d8c2a01'::uuid,'017','998',3647,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('52e93656-77d2-490b-ae8f-b01ca44cb5f8'::uuid,'017','999',3647,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('041bc235-5538-436e-b336-06ae1586a56f'::uuid,'018','998',3883,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb8123a0-a309-4a16-9c88-67ebaccdd56a'::uuid,'018','999',3625,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('752f897f-a538-4689-9dd0-10df33ddf447'::uuid,'019','998',3641,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4717fe63-4847-467a-b5af-cd0ea227b250'::uuid,'019','999',3641,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1beb9543-fbfe-44de-a05b-3662ac9e9edf'::uuid,'020','995',4758,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bb8fe68f-8228-4626-925a-fc5d14d5f729'::uuid,'020','996',4758,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('36163852-b9c2-4471-8d44-9169b0dcf5ca'::uuid,'020','997',4365,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dff756cc-68b9-4ca7-a149-1ba3257955d6'::uuid,'020','998',3917,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bea1c968-30a3-4d75-ae10-e30f139f8ae4'::uuid,'020','999',3694,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ad15e112-f156-4cba-be31-72a193781be9'::uuid,'021','995',4745,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('707712ef-3e94-4ae1-968a-eb5d3e124a89'::uuid,'021','996',4745,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('55aa9f05-5fbf-4bbb-ac9f-14be19fe9cf6'::uuid,'021','997',4487,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43bffcc4-13a9-43a7-be29-10a49263b0ba'::uuid,'021','998',3903,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('27daa3e3-9d4a-4f21-941b-2c3c2ade1992'::uuid,'021','999',3680,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('575c5e33-cbfd-4f23-a328-4b4c28ad6d35'::uuid,'022','995',4745,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('55c3f82e-6942-4182-9009-67fad4262aef'::uuid,'022','996',4745,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('527b5256-f3ff-4bf9-8a42-fcf63c25c23a'::uuid,'022','997',4487,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('75797cf2-8c72-4030-bdfa-15e779deee73'::uuid,'022','998',3903,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('29b732b6-f43d-474c-8e0d-8a301614d80e'::uuid,'022','999',3680,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('84901878-5112-4040-95b3-3491bd60e59c'::uuid,'023','995',4773,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2d2a1682-b6af-4849-8a62-15e4aa488fee'::uuid,'023','996',4773,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('39960dbe-10d1-43b2-aff8-0deeeea95986'::uuid,'023','997',4380,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6b9fab0a-b371-4bc1-913f-7b52992ce666'::uuid,'023','998',3931,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c932d332-363a-4349-9d85-b57da5188dca'::uuid,'023','999',3709,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c3298bd9-a700-4ff6-80b4-d028939d1bb1'::uuid,'024','995',4767,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4ac7f1b1-b3d8-4011-9333-68939dbfd23f'::uuid,'024','996',4767,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6f2b525-fdc3-4b4a-b227-cec597637681'::uuid,'024','997',4510,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5037eb49-ca6f-4e7c-be87-2c6d386d36ca'::uuid,'024','998',3925,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fec07b04-954e-4b36-af53-7a8ff1278535'::uuid,'024','999',3703,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6f318f19-2029-4022-a0c1-738919551bdb'::uuid,'025','995',4802,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c4dc4ca3-403d-4f1c-9e08-15244ad23b6f'::uuid,'025','996',4802,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3c019c70-eb46-4d57-ab28-244cd3d5e4fc'::uuid,'025','997',4544,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('38a4cf6a-cfcb-45d7-84bd-2ed04844f4d9'::uuid,'025','998',3960,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e1b0ff3b-c932-4489-aeb9-703127328332'::uuid,'025','999',3737,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b21c9f26-6670-4d0d-ab81-7685e9095cd8'::uuid,'026','998',3718,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('edbd084b-e275-44ab-ad96-28070b02017a'::uuid,'026','999',3718,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7cf56b05-9b6f-460d-9e41-77f748b561e5'::uuid,'027','995',4796,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('60983cb5-687b-452a-93d0-75af1a7bd8ec'::uuid,'027','996',4796,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8fee2bc6-17f1-4397-be05-40ce49b17ed7'::uuid,'027','998',3954,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e43d778a-e963-40e3-9438-c73c87eed163'::uuid,'027','999',3732,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d9fa6aa2-5f95-41d9-9374-ab862016f83b'::uuid,'028','998',3690,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1123f091-1c50-47fb-8057-3e0a5cb52872'::uuid,'028','999',3690,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('108c07e1-88c7-4beb-91ce-860d359f5859'::uuid,'029','998',3946,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('554453cf-f6f8-4aef-a813-30c0d86a1735'::uuid,'029','999',3688,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8a784f80-6c6a-4ebd-b31c-acadadfb9acf'::uuid,'030','998',3854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb367795-e573-4da2-9cdb-f10038ffc169'::uuid,'030','999',3632,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('44016cfb-e114-4644-843d-7ce9e6b633b8'::uuid,'031','998',3854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a145a8b8-baae-4016-9da1-a61842546dd4'::uuid,'031','999',3632,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eb01b866-5838-4318-967c-b9c29a0c7501'::uuid,'032','995',4654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4cc61834-fdcb-4730-b645-a82f3f251139'::uuid,'032','996',4654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c9bd8ac0-274d-49d3-8e54-d2a23cd70064'::uuid,'032','997',4397,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('69d8a82e-2f9b-434e-95e2-682d3f3fb21c'::uuid,'032','998',3812,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da413f37-b214-45e4-b538-1fd0872f6061'::uuid,'032','999',3590,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc6c9afd-5e30-4a85-bb33-dbfe992e3f34'::uuid,'033','995',4681,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f56c80e0-4e07-4494-9f4d-13690ff05d45'::uuid,'033','996',4681,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('860def77-c65f-4c1d-b9eb-a815ae48b7d0'::uuid,'033','997',4424,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('00ba3ede-1430-495d-b6b0-e1cd0d2a2582'::uuid,'033','998',3839,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a5fbdfc4-3628-4894-b132-731286f0703f'::uuid,'033','999',3617,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cf2127bb-e2a2-46cf-bfb5-ea213ffbca91'::uuid,'034','995',4682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a55782b0-d4dd-4fb4-9cba-2bdbf862c0bb'::uuid,'034','996',4682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e39e2254-f233-49b1-999c-6961a27ce2aa'::uuid,'034','998',3840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5fbef10b-3b96-4d91-84d6-6f03ad7f974a'::uuid,'034','999',3617,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('41ff3516-b6ff-4eac-8db4-4379e2d609a4'::uuid,'035','995',4591,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4188e064-785b-4a8c-ac30-c8df36e8a69c'::uuid,'035','996',4591,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0221a2ac-3cc3-4e20-b54b-3e5be6f35283'::uuid,'035','998',3749,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('67a30c66-e631-4eee-b2c3-681f88998838'::uuid,'035','999',3527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('edc51d86-0b41-4043-bb69-545e05c3a497'::uuid,'036','995',4662,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('439f5c89-7e8e-442d-a67e-d1b7a0099f42'::uuid,'036','996',4662,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c18b33a7-6820-4727-b1cd-b3e9c8ed3565'::uuid,'036','997',4405,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('acb7dba1-3b4c-4f66-9982-1ac3f2b35f1b'::uuid,'036','998',3821,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('957a725f-7f62-4c82-aa55-9b9c86e2a5b0'::uuid,'036','999',3598,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('627f8a8d-c572-4ba6-ba69-1c0bee437842'::uuid,'037','998',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d92a7af4-f29d-4d38-93b2-ee55b3c924f1'::uuid,'037','999',3561,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54060ed6-d97d-41fd-be18-cff0a856bc2d'::uuid,'038','998',3855,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3be61eba-09d0-4bba-a418-59a0c7af603f'::uuid,'038','999',3597,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('606200ea-4d9b-4ad3-b5b7-766fdcbddadb'::uuid,'039','998',3630,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b574cfa6-0b9e-4291-9215-db4b31d3f2a8'::uuid,'039','999',3630,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('55336cd9-3707-4bf4-a71d-160d72f3fa92'::uuid,'040','998',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9a2636bd-ea9a-4f63-9744-812fcc2d4e15'::uuid,'040','999',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('70be5ff2-e62c-4837-b456-6fe36d086d02'::uuid,'041','998',3869,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('cbbb707a-92e0-471e-811d-293baccd3f3f'::uuid,'041','999',3611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f07485fd-3353-45a2-90a2-4b562a5c294f'::uuid,'042','995',4657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('701ffab3-fce1-4774-828e-e81e97ebb3e3'::uuid,'042','996',4657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d12c0ad0-67d7-41d6-9abf-4eb25b96a331'::uuid,'042','997',4399,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aeaa3a31-7fff-4c1c-ab09-0b7d5eafd8bb'::uuid,'042','998',3815,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e89da113-f614-4018-9419-b3fc4e783821'::uuid,'042','999',3592,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b79011d7-66a1-45a4-91d3-9380ee9c649c'::uuid,'043','995',4700,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8d016e13-2921-4cf8-8a05-6f152b29783d'::uuid,'043','996',4700,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('73c99482-9f48-4e5b-8c23-e6c4d4f8ea5e'::uuid,'043','997',4443,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1727c04c-3a63-4497-8a8f-80f8a24145e8'::uuid,'043','998',3859,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7a57a624-33d6-427e-9498-47eb9178ed26'::uuid,'043','999',3636,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0bb77d3a-a5df-431e-b7c7-bd131356f206'::uuid,'044','998',3881,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('539fb784-eb15-4239-a703-727d35e6e541'::uuid,'044','999',3658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7b2c8971-01eb-4823-a190-1239b56c8b82'::uuid,'045','998',3624,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('39dcdc99-a113-4f79-81ce-f5566e4966e7'::uuid,'045','999',3624,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fc12a2f9-3f2d-4c8d-ba4f-8b6198dae2e6'::uuid,'046','995',4784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e95afbd7-2fd0-4b97-96ed-fa99a066d659'::uuid,'046','996',4784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8a395e2f-decc-461d-ac5d-77a72f37feeb'::uuid,'046','998',3943,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('03551858-f277-4b42-8bec-278ef5ed6478'::uuid,'046','999',3720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2479c8ff-05d9-4479-9dfe-90200c477db2'::uuid,'047','998',3953,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8f4adb4d-0ac3-4125-810d-79fe308e14e2'::uuid,'047','999',3695,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f81cf056-5dcc-4073-a339-bf58bb959beb'::uuid,'048','998',3897,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('39c9c7f0-7fee-4039-9908-f14d42f7e845'::uuid,'048','999',3639,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('64d02180-174e-45da-b990-ad9ae6acba85'::uuid,'049','998',3565,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('47c25b99-95fb-4140-ac25-cc2cf3fc0580'::uuid,'049','999',3565,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('788f3058-661c-4728-88b9-ae14ec7e918a'::uuid,'050','998',3765,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('68a33546-62c9-4f09-9418-d75eb0ad1f05'::uuid,'050','999',3507,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f872255-fab8-4d0b-a106-16968b25d8f0'::uuid,'051','995',4637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7dbf6b1c-e3ff-42d3-8197-7c7b8bf1d7dd'::uuid,'051','996',4637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43aba28f-90c9-4d99-bbcf-d155e0c11069'::uuid,'051','997',4380,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ba55e638-f6b4-47db-b3f6-334c3a386e9c'::uuid,'051','998',3796,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c41b9706-40bd-4cac-900e-f22429d1d6f1'::uuid,'051','999',3573,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6018a3dc-dfe1-402c-a080-eee2577f2ae4'::uuid,'052','995',4634,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d2ccdebf-bcdc-405f-b58b-0108b08aaf9f'::uuid,'052','996',4634,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ff63e3f3-9023-46c1-85ad-3357bb6c9dff'::uuid,'052','997',4377,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1760aff9-81fc-4c81-835a-72e264b8be81'::uuid,'052','998',3793,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7b57bc0e-f095-43e3-9822-563ae214e94f'::uuid,'052','999',3570,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1018dab3-11d8-4713-aef2-e3dba80bfacb'::uuid,'053','998',3554,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ed604122-6288-4210-9882-23f83c6a53a9'::uuid,'053','999',3554,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('01cca694-9d1e-4e1a-8344-448ad8111e4e'::uuid,'054','995',4532,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('da3b6de4-34dd-46c6-886b-8cba35ce5da6'::uuid,'054','996',4532,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5e2d84f0-fb1b-466a-8f55-a6e9a1fe8a44'::uuid,'054','997',4139,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b1542dfa-48dc-4bfd-8497-07af8384df28'::uuid,'054','998',3690,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5ece731f-8a57-41e3-85b8-485dbc051183'::uuid,'054','999',3468,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0be4d32-7de9-4357-b107-2f3ce08fc6e5'::uuid,'055','998',3883,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('31cef20d-23a0-4a68-938b-391c1a8893eb'::uuid,'055','999',3625,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7522f2ba-b855-4739-94c9-96c85d84f580'::uuid,'056','998',3726,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b5b93935-5d76-4ef3-9920-6d705191885c'::uuid,'056','999',3504,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a97be481-ef69-49d8-9082-99913f2da392'::uuid,'057','998',3758,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ea3c2aa4-0c2d-40d3-a92b-302a946bb5e4'::uuid,'057','999',3500,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('559388a0-b6dc-4018-9f72-d02fe3453723'::uuid,'058','998',3469,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2c720619-3d1e-4de4-8393-2121b1e20cb0'::uuid,'058','999',3469,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('839012d2-ebc8-4ac8-b4f9-80b5d23e8582'::uuid,'059','995',4590,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('66ff78b9-d042-47e4-8d95-d0addbc6ddd2'::uuid,'059','996',4590,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a1cea99d-68eb-4897-8f51-a95e7f5bfe21'::uuid,'059','997',4333,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('49027fa6-de2b-4eee-8e6f-3d160d90a60b'::uuid,'059','998',3749,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f15152b-f0ce-4beb-88a2-c1dc14ec5329'::uuid,'059','999',3526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('044831e6-92f5-4dc4-8d16-f13f75ecc3e8'::uuid,'060','998',3880,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7a87a204-064f-448b-b172-6876453c09f4'::uuid,'060','999',3657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('97ba64c8-307a-49ae-a898-ac1a8f921f15'::uuid,'061','995',4732,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('281b6fde-f3b5-4d0d-8333-c706cbec5e71'::uuid,'061','996',4732,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('be917bc5-a34d-4e6e-ab1f-44df1e464eb8'::uuid,'061','998',3891,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9f5109ea-08b0-434b-9de2-d825100f8cfe'::uuid,'061','999',3668,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dac648a7-1e81-475a-bd5f-256c4ed01bee'::uuid,'062','998',3915,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('59ee21c8-a05d-4c10-91f3-076bc990063b'::uuid,'062','999',3657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d2a23bb0-6206-4447-bc0e-90390ee3c4ae'::uuid,'063','998',3922,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce480feb-986f-43c5-b70a-469795dc57e2'::uuid,'063','999',3700,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('20607825-f03a-4473-bc69-6c93674f76c4'::uuid,'064','998',3623,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('61bff6b5-8560-4906-8264-9162c1e6f16c'::uuid,'064','999',3623,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8f99d969-ba61-4e10-a855-b6bcfea21a28'::uuid,'065','998',3868,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('308a7fd1-65ca-4653-8fac-d168ede3f6ba'::uuid,'065','999',3645,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('56811aae-9b4c-453c-b990-686fc4c3b19a'::uuid,'066','995',4691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6a62ce0d-f166-4bd8-be24-7f9e82b5ab82'::uuid,'066','996',4691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e7108fc0-3fc9-46a8-800a-5d9dbf7ec50a'::uuid,'066','997',4434,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e45c082a-be19-49ed-b832-e4a8b08a2a81'::uuid,'066','998',3850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d00be2e5-31ce-4969-840a-1de490fbefbd'::uuid,'066','999',3627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e9eb0522-9dba-456c-ac23-75214964cfcf'::uuid,'067','998',3606,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('101e9102-37e6-472c-ab6f-60180799c9a5'::uuid,'067','999',3606,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8311ff47-aacd-4fae-a470-b1bf3ba8d092'::uuid,'068','995',4686,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4bdca919-666c-461e-b027-d656ab0bc645'::uuid,'068','996',4686,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4a1ed2aa-4e60-4995-b73d-6d56ca308053'::uuid,'068','998',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('79c1a1af-784e-4b1c-8ccf-6b0dd3ac4917'::uuid,'068','999',3621,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('040c40fc-9fbc-4c5f-8306-c149fe8581de'::uuid,'069','998',3570,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('952e37ce-cc4d-43a6-a1f4-90e6e3666b83'::uuid,'069','999',3570,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e891c3f-88a5-4815-8b11-4cdf56c9f666'::uuid,'070','998',3792,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('46e7c90d-2cf9-4098-8354-d87dc8d6c08f'::uuid,'070','999',3569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ba19a9ad-78ff-4c71-af32-d4ee1df703b0'::uuid,'071','998',3792,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2feb6d5f-0394-4b5b-ba79-bc93c653ed8c'::uuid,'071','999',3569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ad7e46de-0eb2-40db-8fc3-c1c15b71c3be'::uuid,'072','995',4633,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('50f199f0-7bc3-4f72-9043-b45e9cb3ce79'::uuid,'072','996',4633,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ee2b5325-fb83-4212-9244-b7bdcbfa5032'::uuid,'072','997',4240,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1c074fbc-2f65-45ee-b65f-bc6cad939d39'::uuid,'072','998',3791,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b22d3520-25de-47b1-acfa-1c54c2fe5535'::uuid,'072','999',3569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('989b4d1a-1508-464f-b179-8d3fb5b76fab'::uuid,'073','995',4637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c43680c9-069a-466d-8c51-f9f4681cabfe'::uuid,'073','996',4637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('77bf717b-e164-4c4b-94df-93fa70723165'::uuid,'073','998',3795,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bc3d0498-9ae5-4b15-aef2-6f3593dee19e'::uuid,'073','999',3573,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('57825824-f728-4686-ab9f-c4f53d635e7b'::uuid,'074','998',3785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('325213c0-03ed-4338-a9b1-749fab350140'::uuid,'074','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b66831e5-f727-4309-8e59-c8d5b1183eb1'::uuid,'075','998',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b44c689b-95db-42f6-a8de-d4d7a814023e'::uuid,'075','999',3560,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65e3bac6-ecb6-41f7-93de-464ddca737a1'::uuid,'076','998',3792,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('01e604ce-4338-4551-ac5a-2d52e0edf6e5'::uuid,'076','999',3569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da3f5eb1-c567-4a71-825e-a83b8b45f7f6'::uuid,'077','995',4658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e61d48c0-48e4-4502-9624-d8d867003ad1'::uuid,'077','996',4658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0e17843c-6d32-46aa-97c7-0112d792e88b'::uuid,'077','997',4265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1a994e92-42f5-4cc3-9fa3-1b3c8b18a4e1'::uuid,'077','998',3816,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('393c7a86-c652-466d-be27-bc5752c463dd'::uuid,'077','999',3593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d280b6d4-00b0-495f-99b5-8b4a3193acf6'::uuid,'078','998',3752,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('edc18f24-a8ca-4b38-82ba-30a195a302aa'::uuid,'078','999',3529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e4400226-2408-4fcc-9324-59d93bd223d2'::uuid,'079','998',3775,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3aa1c951-89b5-4ee5-882d-9b374744c50e'::uuid,'079','999',3552,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e4e477b-f7c1-4e6f-b67b-842c5f2891ca'::uuid,'080','998',3522,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d017863a-5f12-4e72-bc37-d67c0eddecc5'::uuid,'080','999',3522,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('98721205-5aca-44cb-aab9-f471cf5e3403'::uuid,'081','995',4611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d9931c91-a0db-4ea9-a14f-61e0235f8d4d'::uuid,'081','996',4611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cae22910-ab82-411e-a869-a57849733f5b'::uuid,'081','997',4354,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('892b06af-8f9e-4222-a4b1-4b6cf360f74d'::uuid,'081','998',3769,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c065a1a9-52ee-44c0-9584-0f6daf8e8f97'::uuid,'081','999',3547,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0551b27f-d1f3-4177-bd6f-fc132b42a8ff'::uuid,'082','998',3821,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('941b7e5a-3eee-4b41-8d70-895bfa32fae5'::uuid,'082','999',3564,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5231073c-67f7-4fa7-809d-0926b07b44a0'::uuid,'083','998',3797,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('40c4114e-f636-433d-adbc-f33dbd5a9f9f'::uuid,'083','999',3575,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c6a0ceb3-8eb9-4653-9ddb-c7691f4009d9'::uuid,'084','995',4662,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43aa8580-619d-434d-9023-1a92b52bb41b'::uuid,'084','996',4662,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5c394216-40b5-4fb7-9cbc-f53a64e9486c'::uuid,'084','997',4405,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9d9863a7-a8b3-4951-a56f-a0a47b15d407'::uuid,'084','998',3821,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4fcd92fe-ec6d-404a-989b-58aeeab39f15'::uuid,'084','999',3598,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('84451f68-8c41-4de2-9a92-3d138073b7cf'::uuid,'085','998',3520,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('79bf192e-0936-4d63-8f68-244a6a2c77dd'::uuid,'085','999',3520,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e46f50c3-4d5a-43f1-a4a0-5eada6a97935'::uuid,'086','998',3520,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7d2e802a-310e-45b5-ad3b-fe3ea3aec16d'::uuid,'086','999',3520,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('89788780-35af-4300-b7f8-62523422ad06'::uuid,'087','995',4664,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('89054b40-1533-4030-b956-8227331addc2'::uuid,'087','996',4664,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7ef5b038-f747-4726-94fb-88ba6bbbdb49'::uuid,'087','997',4407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bedc4967-fbac-4650-a593-56cbe863d84d'::uuid,'087','998',3822,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7f47988c-0830-40c8-a73a-aa32fb4a45bd'::uuid,'087','999',3600,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('71dff20f-8bfe-48aa-9eba-8af8e24e5465'::uuid,'088','998',3519,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c5942b54-cb67-4148-a14e-1d3fc1955e0c'::uuid,'088','999',3519,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8c9be0f6-3eda-4f17-8473-660924f907ba'::uuid,'089','998',3794,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('19f3ed2e-1a7f-4a23-bdc4-84c2eaecb922'::uuid,'089','999',3572,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bf1fe661-59fc-4d7f-afe3-5ebd07146263'::uuid,'100','998',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2f62fee5-27ea-4b2a-90e4-fbbdf003291d'::uuid,'100','999',3586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb07c05b-4c3c-4e80-9631-ecea13ee9bbc'::uuid,'101','998',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f4dd640b-a387-405f-a901-2b38da452dad'::uuid,'101','999',3586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ec7a3d9e-e19e-4080-9ef6-5efa7cdddb85'::uuid,'102','998',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f33c616b-7860-41b2-986e-d4e446612abb'::uuid,'102','999',3586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ecc52a6b-5c6b-4674-8cf2-1237b37482fc'::uuid,'103','998',3544,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('35bbb867-64b9-42ee-823b-0c85ad66b234'::uuid,'103','999',3544,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bc94c933-efeb-4ab1-8d5d-50dd01707cbc'::uuid,'104','995',4644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0f06a17c-e79a-4c1b-9113-c463623bdcc6'::uuid,'104','996',4644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f3ba54df-36a3-4084-ad19-e3bd50e2b1a1'::uuid,'104','997',4387,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dcdadfc3-5a5b-402a-81b8-0c13d6a6434a'::uuid,'104','998',3802,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aab1ef28-eb8e-408c-8da8-6559816a94d7'::uuid,'104','999',3580,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e4ab58ca-44b3-48eb-b861-eedce7040d9c'::uuid,'105','998',3836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('053820be-b1d2-4038-891f-cd1d0cbeaabd'::uuid,'105','999',3613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('79cede23-1ade-4647-870d-7a5adf760029'::uuid,'106','998',3558,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4a72672e-09db-4c16-bac7-65550bc229a6'::uuid,'106','999',3558,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('451bc8a6-60d9-4fb4-bc2d-2a254268d37f'::uuid,'108','998',3811,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('73155e69-3304-47df-be69-7ed2b9469b5d'::uuid,'108','999',3589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('76c61e16-f055-4b1c-a64c-81dd448b1532'::uuid,'109','995',4631,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bd0beb21-2a51-417e-9113-974f5b6c0301'::uuid,'109','996',4631,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e92a1e8a-d31a-46d4-b411-b0ee1cf3c24a'::uuid,'109','997',4373,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('48d85141-bf86-4863-a1db-37d7acbdf52d'::uuid,'109','998',3789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4fe74840-3a77-4990-afe8-4721de7a089b'::uuid,'109','999',3566,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8fdbc5ae-9edf-442f-936a-213e697df409'::uuid,'110','995',4654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f23ebd6a-ebef-4de8-96dc-d07316f79b2b'::uuid,'110','996',4654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('124a4584-2526-4d7f-8c40-ee9c0235e237'::uuid,'110','998',3813,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('40038cab-e1db-4a29-a03d-c8ed00f81383'::uuid,'110','999',3590,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('780a2173-437e-4ce0-be4e-fcc167a8c276'::uuid,'111','998',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6b3a1f2e-0a4b-4d0b-8f57-98441501a60c'::uuid,'111','999',3586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f543a880-97d1-4938-86ed-1c970cff0c26'::uuid,'112','998',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f382dc5e-fa2b-49de-8858-cab2c71c25a0'::uuid,'112','999',3586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9c2f0bef-807a-4be8-bb75-c9420f7f816f'::uuid,'113','995',4650,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('98b7c844-ac29-400b-b413-8ba3f68f6dab'::uuid,'113','996',4650,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ceb2c93e-3477-4671-ae73-d5cd0bca7bbc'::uuid,'113','998',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bf3f68d6-c37a-43a2-9aac-991fa24498f0'::uuid,'113','999',3586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('413075af-a1ab-4928-8c25-cfeffea4e8d9'::uuid,'114','995',4654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3ab33e00-cd36-472e-98ba-eea80d3b9fad'::uuid,'114','996',4654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da5453a9-e657-4189-9dd7-76c1800aeb17'::uuid,'114','998',3813,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('20e0c6ff-f337-4db4-8bd1-f1db0680e0cf'::uuid,'114','999',3590,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2b1dd9c1-e552-4be2-ae57-cea97fd939af'::uuid,'115','995',4682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a9435c59-d91c-41ef-8ba4-33b11baf1ec2'::uuid,'115','996',4682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cf1178d6-1cfd-46f0-af4d-e24d326c5445'::uuid,'115','998',3840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('35a0b480-15bc-4879-999e-ef1ad726e23c'::uuid,'115','999',3617,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d1201ecd-f6d9-450e-9bb0-a5101859c612'::uuid,'116','998',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('35401e05-8a7a-48eb-869a-3421ae05805e'::uuid,'116','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a07041b9-0072-4726-8637-4f727f188ba0'::uuid,'117','995',4678,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae89cb2c-e90e-46b7-9f69-8d2774afa011'::uuid,'117','996',4678,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('06e63684-12f0-4220-8665-177aa81e3565'::uuid,'117','998',3836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1e6142fd-7e22-4813-86e8-e7c744eb1daf'::uuid,'117','999',3613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e43acdcb-f93e-4d34-8a69-88b1a43cb11c'::uuid,'118','995',4667,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('35c4f7bd-13c2-48bb-8511-85923e9d8ed0'::uuid,'118','996',4667,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c1d291ed-3cb8-4dea-9b7d-2c5d6c3f984e'::uuid,'118','998',3826,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e8fbaff1-0ad3-4033-9662-3ffbc42399fc'::uuid,'118','999',3603,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e2a88c77-0d67-480a-9372-7166631b9952'::uuid,'119','998',3873,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8757b020-2541-47c7-a2a7-dc9642130a1c'::uuid,'119','999',3615,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bfbcbba7-4d1f-4eb1-8a08-3c779a565e26'::uuid,'120','998',3768,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('38bdac92-1185-47e3-bc9c-3a1916b87521'::uuid,'120','999',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb84ef94-288a-4bfd-88d1-6347bc72afd1'::uuid,'121','998',3768,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c6a4e653-6cf7-4ce0-8738-253d3effe860'::uuid,'121','999',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1790137d-2cb2-41f3-b672-80f3dc543505'::uuid,'122','995',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5870cf94-bdad-4298-a1ab-7698ea6be035'::uuid,'122','996',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a22f3fc4-979c-45d5-a401-36069cecc29b'::uuid,'122','997',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('02ff0cfb-ef17-43f2-adba-5db6e7d5361d'::uuid,'122','998',3785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9522b35e-05a2-42d3-a101-be2590ff4dec'::uuid,'122','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('46c91f25-629e-4033-a108-a3b02d0a723f'::uuid,'123','998',3768,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f5667d42-c000-442d-9f6b-404158def1d7'::uuid,'123','999',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('224217ee-af43-4cc8-86e6-3f39de91f453'::uuid,'124','998',3822,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bb84cc03-f32d-4cac-a822-78a049ad2ef7'::uuid,'124','999',3564,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fdc1c05d-efd4-4bf6-889c-3f0cb7524f75'::uuid,'125','998',3572,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e261a390-a16f-46ff-b589-4e935c42fe85'::uuid,'125','999',3572,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('449c7f2e-3f7e-4fcd-9e1c-e7f51f8db1e8'::uuid,'126','998',3816,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6ab3bb50-5c6a-44fc-8a84-99e83a456d83'::uuid,'126','999',3558,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7320a630-18ae-4e18-83a5-8104a4a508ad'::uuid,'127','998',3789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3c60b930-4c39-46d0-81b8-718c0b673825'::uuid,'127','999',3566,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('98520779-42e5-4ea0-8859-0e3cb1c5dd48'::uuid,'128','998',3465,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('00af1364-40cc-4041-85a9-9a84ab632041'::uuid,'128','999',3465,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e658f0b0-1fc3-4ccb-81c6-8d4a3c892705'::uuid,'129','998',3673,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('502f98f3-b11a-401c-a20c-28c0249e1fdc'::uuid,'129','999',3450,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b203717f-92dc-405c-8384-27d8ba6a1a35'::uuid,'130','998',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a0a943f8-e18c-4509-8620-89bda1554fd6'::uuid,'130','999',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('62870c5d-64b9-4839-9adf-cd41f4d82a44'::uuid,'131','998',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('947f9a85-faf3-430c-b308-41cde9eec944'::uuid,'131','999',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8ed42f73-7bca-4d4a-a734-f68fbb4bb352'::uuid,'132','998',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c2f09d86-8e42-4337-ae6a-2138ad65aaad'::uuid,'132','999',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce52bc43-c9ae-4781-9dd4-23b04c1db3f2'::uuid,'133','998',3694,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a84ddda7-821d-4cc8-aad5-fc1246a5fd9d'::uuid,'133','999',3436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4379c234-65a2-4800-ae9a-a4172ceb6ac6'::uuid,'134','998',3694,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('01d553a3-884e-4ece-9798-3553c3baf182'::uuid,'134','999',3436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7364cef9-629c-4ca9-bd42-d31bae45272f'::uuid,'135','998',3433,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e816553e-69ec-4d3f-a61a-078c2cda42f3'::uuid,'135','999',3433,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('af8d199a-7029-4631-9b61-9830fbf8a6c8'::uuid,'136','995',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f0a0aef7-4b6f-4b3c-96b8-42313519d82f'::uuid,'136','996',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ac863f73-98e5-46ef-b5af-5bf91c04144f'::uuid,'136','998',3594,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c152e095-2c96-4b29-ac13-84e8050c826d'::uuid,'136','999',3372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3c46fd3b-93e0-40b3-9954-f88e0b9f69be'::uuid,'137','995',4577,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9e8a171a-9480-42eb-a22a-8d85245a77fd'::uuid,'137','996',4577,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('97ae952d-fb6f-478c-aabe-8eff14c4c854'::uuid,'137','997',4320,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ff018b57-8712-40e9-b763-dfe5d977ed72'::uuid,'137','998',3736,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c9d8253c-1541-4cba-91f6-825d429cb14f'::uuid,'137','999',3513,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7de8e3a1-49d2-464b-9f2c-74145fd944c1'::uuid,'138','995',4577,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bb4e7dc5-3f56-4e1a-ae34-82d0ab5a66e9'::uuid,'138','996',4577,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0a94cd0d-c7fb-4b3e-a548-5472f385d7c9'::uuid,'138','997',4320,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d508bcd9-f096-49b7-ad83-cc5716d2fb36'::uuid,'138','998',3736,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ff380303-a78a-45da-8ee3-720c483512d0'::uuid,'138','999',3513,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e51ff67-91a9-4b24-b62e-d934105900b2'::uuid,'139','995',4550,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7bfc1648-9af1-42a4-8ef7-130a346023ac'::uuid,'139','996',4550,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b8ff9dbc-0dc3-4195-b79b-83c1dd895821'::uuid,'139','997',4293,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('31a5b14b-6821-45bc-9a5e-f17811ddee85'::uuid,'139','998',3708,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('423fca22-186f-481f-8959-4da0176d36e7'::uuid,'139','999',3486,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('37b44b01-947f-4629-aa3b-943ad3771979'::uuid,'140','995',4394,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('159e07ae-a3ef-4e77-a86b-be9c2762c61d'::uuid,'140','996',4394,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6f33cd11-7697-4172-bff3-3f383c4e321d'::uuid,'140','997',4137,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('213e8630-c1ca-47f5-9d64-a32c7181935a'::uuid,'140','998',3552,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7b3a50c4-e4c8-40d6-b8ef-b9e759ea242a'::uuid,'140','999',3330,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7f22a7d7-a8a9-45da-add6-ba102ea38e41'::uuid,'141','995',4394,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ccf90049-1a87-4701-8a08-df9f06d30826'::uuid,'141','996',4394,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('38a22a3d-fcb2-4016-ad74-602cb1eb7027'::uuid,'141','997',4137,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88b292c5-d15b-4f24-8537-e58ae76660b7'::uuid,'141','998',3552,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4b57d327-1120-4e3a-a5c0-7832bc597330'::uuid,'141','999',3330,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4a9739db-ea42-402e-b32f-b3f9055f374a'::uuid,'142','995',4382,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33d365c6-a74c-4dc4-8825-a9cd2b611b4b'::uuid,'142','996',4382,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d4ea5ca2-2c44-40f0-82de-8fdc035b2fe4'::uuid,'142','997',4125,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('683b0848-f54e-48d4-8f85-a2d9ae9db64f'::uuid,'142','998',3541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da25a9b1-4d17-43fa-83da-e2c66b2df56c'::uuid,'142','999',3318,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7f947c03-ebf9-4c67-a12b-6f7af2d8024d'::uuid,'143','998',3543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('58cb913f-675c-422a-89ea-c9b1eb874324'::uuid,'143','999',3321,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c5e39655-2b10-4b3e-be16-fd9cc75ce3cd'::uuid,'144','998',3622,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6aac0724-b83a-40b9-a81f-5e252881115f'::uuid,'144','999',3400,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('036ca304-5318-4b01-92ac-202bc925333f'::uuid,'145','998',3622,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a129e503-1a9e-43aa-ae14-5c41979c9648'::uuid,'145','999',3400,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('929c432b-1f9d-4c9f-8b12-834fe21ed4ed'::uuid,'146','998',3604,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f175f551-5efd-4546-ae30-6a2a7d3bc49f'::uuid,'146','999',3346,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2208d302-de88-49e8-a5e3-6b63641a0caf'::uuid,'147','998',3518,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d7ca20dc-4ee4-4706-96ad-451f55ab2c3c'::uuid,'147','999',3295,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e676a417-a50f-4bc9-bcd5-b1074a112489'::uuid,'148','998',3407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('215a3828-f797-4f44-b0ba-f59c3dd91f33'::uuid,'148','999',3407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d37f41fc-93d0-4e4f-8433-3926d229ef0a'::uuid,'149','995',4493,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7f386ef2-a76f-4106-8957-95aafdc4aec9'::uuid,'149','996',4493,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('276e9cfa-5160-4061-a3d7-b32e9fa05e25'::uuid,'149','997',4100,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8bf2cb76-ec5e-4621-91f5-e03ea8891301'::uuid,'149','998',3651,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('735ac79f-9b65-4087-8d5b-02d0abec1b19'::uuid,'149','999',3429,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('58fc974f-be88-47f6-8a2c-5725da923845'::uuid,'150','995',4290,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bfe18d53-ee0a-4b11-b7ae-c3d0a4e75f48'::uuid,'150','996',4290,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8732b23d-0be2-46d6-9ed4-8ece7c2c8a46'::uuid,'150','998',3448,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8b5a86fc-e137-469d-8473-68f4a454e02e'::uuid,'150','999',3225,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e83d5bc-aa8b-45a7-a07e-8a77b2fb3db4'::uuid,'151','998',3464,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('24412e32-fd5c-4627-837b-e639c510b715'::uuid,'151','999',3206,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8d96619f-ee17-402d-b7e6-922ad7de95f5'::uuid,'152','998',3464,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b2e19e85-3fe1-4ad8-8a3f-151b5b528d54'::uuid,'152','999',3206,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4f362a7b-c5a6-4a9f-9e65-49c4b639ba33'::uuid,'153','998',3487,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3c7d8791-f630-4400-abc6-c4fe319aae8e'::uuid,'153','999',3229,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ad753d7a-18e1-437e-a791-c24a2657b815'::uuid,'154','998',3247,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dfcf4aad-1868-4c51-affb-94f3a05b6440'::uuid,'154','999',3247,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('242e7268-2ec2-474e-ba05-6ad4348b3c20'::uuid,'155','995',4382,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('12c65a40-8331-409c-af2f-4aff3edf249a'::uuid,'155','996',4382,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bf7e4b88-4b21-4cb6-b559-b92dc9edfdd6'::uuid,'155','997',4125,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('555ecd88-620d-4244-b28b-4fe11b43ad40'::uuid,'155','998',3541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('352a8690-7c8b-48bc-8d9d-aa520ea184e0'::uuid,'155','999',3318,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e41079f2-98d0-4c15-8d94-543188550eaf'::uuid,'156','995',4336,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('432130d0-9aa6-4b82-b48a-c36060ad2847'::uuid,'156','996',4336,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bf566f76-58c3-4656-a11f-e8cf67b41630'::uuid,'156','998',3495,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('de90f81a-d7ce-4b7a-ac21-099a260c8d5b'::uuid,'156','999',3272,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('10cd9b13-c604-49a3-9d6e-f7d1079eaea8'::uuid,'157','995',4343,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('68a20935-6f34-4dbd-8de3-c428d14d3da0'::uuid,'157','996',4343,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f842a4b1-50cc-4b81-8b73-b97d0594f219'::uuid,'157','998',3502,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('285bff3c-38ab-4f0e-96e4-d49851e7f2d3'::uuid,'157','999',3279,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a0a7c8e5-5ca7-4e24-89ed-dfadaa46b2da'::uuid,'158','998',3279,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c00c9066-74e5-4127-81df-b452c1044e5e'::uuid,'158','999',3279,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c61ba7ed-4b29-4e06-bb02-13c82b2e598e'::uuid,'159','995',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('87e7b5f7-f03b-497c-a1ed-fd98ccef7a33'::uuid,'159','996',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5462f740-39fe-4bcc-a628-320db98e6543'::uuid,'159','998',3530,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('499ab95a-1317-4011-9bce-0441cce1ab13'::uuid,'159','999',3307,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1defd046-3335-4701-8deb-94ea602a6d2d'::uuid,'160','995',4295,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dbaf6b80-17a1-42c6-8bd4-a357ee3ef171'::uuid,'160','996',4295,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('db80d6ec-360a-4fcf-98ca-e76c7f8b00ec'::uuid,'160','997',4038,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ba015da6-55de-41e1-a40b-835701612903'::uuid,'160','998',3454,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6943cb9c-f423-498f-b881-29311b9551b0'::uuid,'160','999',3231,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e8ee5de8-2663-4d60-8ed4-b5f7a01f808a'::uuid,'161','998',3432,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0c6fca82-2873-4024-8640-b03a07f41e18'::uuid,'161','999',3209,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('77f5e116-f922-4f2c-b462-3fc67b8c7f3e'::uuid,'162','998',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d842ed1b-c764-4c18-b1de-36e99c0412e4'::uuid,'162','999',3222,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0e9e2185-c886-498e-8480-d75c1456de94'::uuid,'163','995',4325,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d2402859-f001-4c71-90b6-a16505eaba4a'::uuid,'163','996',4325,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('980b750a-fd3d-464b-b3dc-4303ae285879'::uuid,'163','997',3932,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a7f4885f-4127-4567-84c1-5c0d13facd1c'::uuid,'163','998',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('535e1c72-cbdc-4615-916a-589559302a9e'::uuid,'163','999',3261,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('366eff11-5b81-4cc8-94ee-46070873d554'::uuid,'164','995',4286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da0ff9f3-50fe-47f9-b72a-fae74f07e427'::uuid,'164','996',4286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('492bb187-e212-4927-bac9-a60024b2bca5'::uuid,'164','997',3893,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33ab3e3a-e3bf-4689-9d14-74b08edf3961'::uuid,'164','998',3445,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4f0ef318-df43-4a13-824c-e71cb9a24d32'::uuid,'164','999',3222,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d8306512-0635-4e59-8f8e-cd032d5c9dc0'::uuid,'165','995',4288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0ddecdd-38bc-406c-9c80-1835f211e026'::uuid,'165','996',4288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e2c38a24-3a5e-420a-8e3c-840851fe9bfd'::uuid,'165','997',3895,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e12ceae9-9f8d-4547-9308-a8bd2ece6ca8'::uuid,'165','998',3446,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('055580cb-e468-43ef-9c8e-90a8b9465fd8'::uuid,'165','999',3224,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('08f08137-15e7-4584-b85e-88a6452e4429'::uuid,'166','995',4395,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('11c7e141-650b-4f05-867e-10ab794506ef'::uuid,'166','996',4395,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1afdd139-0860-4d27-b985-b3fead509d41'::uuid,'166','997',4138,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c86fb1e8-3ea8-4f19-986b-47db9d03fd99'::uuid,'166','998',3554,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('765ee2d1-b182-45cf-8559-edeec03d4930'::uuid,'166','999',3331,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb608818-4d1f-4df0-8774-560281a3de5f'::uuid,'167','998',3551,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d9be61dd-8b86-4633-8a66-041fbaaa52b1'::uuid,'167','999',3328,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bd8b77ad-6c97-428b-8b09-c94e37e20d57'::uuid,'168','998',3315,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e01c1a18-7343-4abc-9252-02957d86a9ab'::uuid,'168','999',3315,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('98e26b0d-b871-4176-8b6b-4ee33aa0b37c'::uuid,'169','998',3359,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a15d5a50-4f3a-42d8-81b0-22ea453288e0'::uuid,'169','999',3359,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7655986d-0243-420b-a27c-b7a78d8d30eb'::uuid,'170','998',3637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ba866f39-e825-4ac6-bb51-95ee03fd5c47'::uuid,'170','999',3414,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8eb8d430-6e66-45d6-9586-945b3142b4fd'::uuid,'171','995',4500,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('047b1ebb-6ec7-4da1-99fd-aaac54884eb4'::uuid,'171','996',4500,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('14bd39d6-f9d7-416c-bb88-dd8e26af3e7f'::uuid,'171','998',3658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a51ddfa0-b35f-4744-b4aa-fb7da2474c5a'::uuid,'171','999',3436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('398890b1-c627-430e-969b-8e776fba9543'::uuid,'172','995',4470,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88ac890d-606f-4b34-b12d-a9c957d12c46'::uuid,'172','996',4470,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('611ac9e8-53df-473e-b564-d3ca76ec9dc4'::uuid,'172','997',4213,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8ae38b39-3f12-47e9-807b-b4609439f3e7'::uuid,'172','998',3629,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ea5b9bef-eeab-4ada-8c2e-a7a683692695'::uuid,'172','999',3406,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('bcbfa541-5fdf-4c78-8879-5a209e970554'::uuid,'173','995',4520,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bc3f276b-a41b-4e27-bbad-3ff12b88405a'::uuid,'173','996',4520,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c2af378f-7aa2-4b64-8843-96fc464283f1'::uuid,'173','997',4263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6b861617-2a04-4aee-a495-c6950b464742'::uuid,'173','998',3679,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c26a73a7-1146-4c65-9b68-caa453cc8eed'::uuid,'173','999',3456,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0645c658-94af-4467-ad3b-8b19acc1d6e3'::uuid,'175','998',3697,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('826bae35-ad06-4e91-bd42-6d81f35e0785'::uuid,'175','999',3474,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2cf30e30-ccb1-4c26-a372-7bfce3e3c1b9'::uuid,'176','998',3697,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c10bb3fb-2d57-45e8-a682-e5204094587a'::uuid,'176','999',3474,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('317ba659-8b33-46a4-a1fc-a697d724d33d'::uuid,'177','998',3607,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3a6b72bb-a0cd-4779-87fc-9c1fb1229d34'::uuid,'177','999',3385,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e5f8d756-05f3-4485-85c1-2c5e4d7a33b9'::uuid,'178','998',3637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f29bb90f-33f1-484d-bdf4-b554c39f26b1'::uuid,'178','999',3414,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3bd1d4b2-4469-46aa-99e8-39fdc7578c75'::uuid,'179','998',3679,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f124808c-804b-40b8-8e56-14b9d553ad83'::uuid,'179','999',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0fc5fca9-dd91-412d-9936-b6dac20ea11b'::uuid,'180','998',3721,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e8cea41b-5658-4135-9543-0b7dfa849835'::uuid,'180','999',3499,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6b39f1d8-8e5f-403f-8639-69a2b87e8e2a'::uuid,'181','998',3721,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('93d77dab-9f7b-4b68-af7c-916b4e9f2426'::uuid,'181','999',3499,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('26f2c49b-7b97-4d2e-a667-6211ee87eb29'::uuid,'182','995',4524,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9b90cb0f-4bd4-4d63-8488-69ff70f71736'::uuid,'182','996',4524,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d4479cc3-c422-4422-93b7-dedccb8230b7'::uuid,'182','998',3682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f5cd16e0-815c-45fd-824f-3a2a640c0044'::uuid,'182','999',3460,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c0657c91-9e0b-4a33-b94e-dabad920c346'::uuid,'183','995',4561,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6f30c537-3ec2-4b4e-98e2-18c097651a10'::uuid,'183','996',4561,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('312bf713-b244-4f14-9a7a-8b85dd776617'::uuid,'183','997',4304,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('82fefd5b-cae0-40a1-993e-f8ed75469165'::uuid,'183','998',3720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e10687a9-c629-43ff-a678-4b4280003d1c'::uuid,'183','999',3497,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d5ee2cb8-aaeb-4978-8441-641e54b7f2ef'::uuid,'184','995',4575,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('870f5b8a-6099-4a56-9819-1b55bb535c6d'::uuid,'184','996',4575,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c6cde9f7-5220-46f8-9f6f-a928d1c93ab6'::uuid,'184','998',3734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65b42231-1141-4025-b81f-85892aceb0ef'::uuid,'184','999',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('108c9be2-ccf1-42de-afa9-54b7dcee3822'::uuid,'185','998',3704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dc6796a6-373b-4d29-9dc6-e0e3755a5b91'::uuid,'185','999',3447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5524d749-2998-409c-854c-0108daf67891'::uuid,'186','995',4522,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c1b69361-77a8-4022-8986-d39ed878cb5d'::uuid,'186','996',4522,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8339c8dd-a7da-43e9-9b65-57f3e3731d3e'::uuid,'186','997',4129,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('76535138-f67b-4107-8b6d-bb35ad43611c'::uuid,'186','998',3681,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8c12be40-ac34-4f73-bb4d-da805e0f31cd'::uuid,'186','999',3458,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9a64b2a8-6239-4cc5-970c-6ee1cd95944b'::uuid,'187','998',3432,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('91004c6f-4214-4d9a-a178-e4336334df2e'::uuid,'187','999',3432,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('377c3eec-5f5e-4bef-a3e7-7f3794763e8f'::uuid,'188','998',3692,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('84053072-f259-4aef-a6c9-a1d6076a7e43'::uuid,'188','999',3470,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4429064f-c683-4b28-986e-a449fc71819f'::uuid,'189','995',4593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1a237892-91d6-4344-83a3-4ea0b72590e1'::uuid,'189','996',4593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3007af97-bb75-4b27-ba66-99d0fe478903'::uuid,'189','997',4199,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3bfe79a8-9944-4ac4-8cec-aaf79c0955a5'::uuid,'189','998',3751,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f7e7fb61-c72f-4f73-93e8-03d36b4aa25d'::uuid,'189','999',3528,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cb191415-c30c-4c51-834e-36ad3117ae39'::uuid,'190','998',3760,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1dbbb97d-ad5c-4e8a-8ecb-c9159ba98acf'::uuid,'190','999',3502,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9f789303-4d51-4e66-8d27-8328e8b5a00b'::uuid,'191','998',3760,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d4efcaa9-012a-4fcd-8ef5-927311b76761'::uuid,'191','999',3502,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ba3809ae-7509-48ea-aa4d-d6e471274e31'::uuid,'192','998',3760,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e01fa26-eac8-4216-8105-1cb6b9ca7370'::uuid,'192','999',3502,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('92106873-acc9-46c7-b0eb-68fab6e36a47'::uuid,'193','995',4571,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e8d79db4-57e9-487f-ba9c-b305f7285f13'::uuid,'193','996',4571,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e5cd55de-fcd7-4d7b-a363-5ac2c4310ceb'::uuid,'193','997',4178,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('340519aa-dbb9-4141-96eb-b2f2e3705b7d'::uuid,'193','998',3729,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5d42fd5e-de06-4c71-b01a-e46d4d94ea1f'::uuid,'193','999',3507,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c860fff4-5f8c-4d87-8ec0-e7564e3d272e'::uuid,'194','995',4589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2c79adad-473f-4a7b-954f-ef1408489cd2'::uuid,'194','996',4589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce685ea3-7d6f-4540-9c04-9d7dc7ab88d8'::uuid,'194','998',3748,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a934cff3-83f0-4a9a-b6a0-ad24658c0ae1'::uuid,'194','999',3525,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('30ac0e24-db73-49fe-a6d7-318c75cdd2c0'::uuid,'195','998',3712,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ff415e39-5610-4eb6-8543-a69a32a7e4ed'::uuid,'195','999',3454,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9e415890-087f-4b47-ba07-819907ce7eef'::uuid,'196','998',3712,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('10121644-abb0-4ef2-b034-b29560e14c30'::uuid,'196','999',3454,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('259eb1ce-0630-41f8-8ba2-2d2672b43bd6'::uuid,'197','995',4609,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a29862fb-af75-4953-83e1-05d494880bf5'::uuid,'197','996',4609,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0e77050a-5e53-4387-98b5-0193a12ac167'::uuid,'197','998',3767,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('21d687a4-a183-498c-8845-669fb8100b1a'::uuid,'197','999',3545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4e0fb21f-f8ec-4703-bf57-e34bd5ad1819'::uuid,'198','998',3488,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a4176436-cc71-4e40-86ad-977cea2c6ed8'::uuid,'198','999',3488,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33e20eba-9907-4d0b-9781-6b9733280ba3'::uuid,'199','995',4639,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c5eb2752-9784-4aec-8639-bd317372cdde'::uuid,'199','996',4639,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3addd556-22e4-47be-a55c-bb86991ee60a'::uuid,'199','998',3797,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a9069428-2fda-412c-b90c-528da9a31a1a'::uuid,'199','999',3575,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4698b951-e74e-4c96-b726-7c78b1a62293'::uuid,'200','998',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('95302999-7e1d-48af-a876-452a7684cb9c'::uuid,'200','999',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e775f55-4935-48f9-bbbd-e4ce110187fb'::uuid,'201','995',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('88ad6aba-1004-48df-8f41-46c0d059732a'::uuid,'201','996',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d2bf0614-893d-4332-8812-ca31404078f1'::uuid,'201','998',3702,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7546deed-9313-4dac-80d1-ec8a554e7689'::uuid,'201','999',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8600ec1b-2eb5-4bb1-9f02-913abe2a52f6'::uuid,'202','998',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1194de8c-385a-4d28-9b09-dd03fed682f3'::uuid,'202','999',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1bd5558a-b110-476a-b2ba-4c0f274db3d9'::uuid,'203','998',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b450b99b-38e2-4222-bf2f-7fa1a3083da8'::uuid,'203','999',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('12b3ec64-51ef-4c76-bb89-3ad327254315'::uuid,'204','998',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('21d369f0-9aa4-455c-9e17-46350b9802a2'::uuid,'204','999',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dae1384e-634d-44a8-b19d-046187e69ecb'::uuid,'205','998',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6546e727-37da-47da-8444-95a62f8c1229'::uuid,'205','999',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4a14986e-4330-4d71-85db-fd22dee6a253'::uuid,'206','998',3752,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b4d3045c-c38d-4828-9922-5b7778fcafa7'::uuid,'206','999',3530,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9a223a8f-a65f-40ac-b180-4e9531e473c7'::uuid,'207','995',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a91bad46-fbbe-43e8-9c91-115325380720'::uuid,'207','996',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43453987-7c2a-48d2-81d0-9b15f5d3047e'::uuid,'207','997',4286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7691ea7f-2854-485e-91c4-8620343c9e9e'::uuid,'207','998',3701,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8bd33fff-e13d-4a7e-8a8e-e38d3c8719e7'::uuid,'207','999',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f2d6fb53-f223-435f-9814-ca909f7e041e'::uuid,'208','995',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b82254da-1040-4a91-ad49-b542f23f0843'::uuid,'208','996',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c92cd844-2f29-49f3-ab6f-395dd57f9ae8'::uuid,'208','997',4286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('123f3ad4-c560-49e5-b197-c9ea00c522d8'::uuid,'208','998',3701,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ac140f39-6ac4-4d02-a246-fc4298b3ae1b'::uuid,'208','999',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc8aaa05-de91-4811-8b39-589bac0315f3'::uuid,'209','995',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('052bbf2e-09ec-4f77-bb0b-5bf51e44d1ab'::uuid,'209','996',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8970f040-b6c2-431c-a392-ff282b436f92'::uuid,'209','997',4286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae6132e3-c17d-46bc-a77e-0cfb0c820c10'::uuid,'209','998',3701,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0fc5f67a-8e29-4690-9fb9-b307e5ab7d92'::uuid,'209','999',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('62322f1b-19ce-4b29-862d-528c1156fa74'::uuid,'210','995',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('86aaf8ee-227e-410a-a504-46286b72b376'::uuid,'210','996',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3083d1c0-8dae-4f1e-b845-fa39f0c42595'::uuid,'210','997',4288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cf94ba56-2d07-4522-b53d-afa141bcf0f1'::uuid,'210','998',3704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e3e8940e-e54a-413d-809a-b567e3b13399'::uuid,'210','999',3481,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2abe6e79-f02c-45a0-aae6-5e09a0dd4ad5'::uuid,'211','995',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('58967ff0-84b7-40d4-88d6-d67f3545b718'::uuid,'211','996',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('56193dd7-6cc3-4792-9d69-c1aa22a5f759'::uuid,'211','997',4288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b302217b-9966-4587-9903-3f7b09f4ca5e'::uuid,'211','998',3704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d42416fa-cb06-4f8d-9f10-725286d6b7b6'::uuid,'211','999',3481,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aedbfe89-4dbb-495e-bf26-7cc1028fd698'::uuid,'212','995',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8349a6b2-e7ae-4658-9266-d2fafd55f8bf'::uuid,'212','996',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('65cb4dfb-9b94-4501-88e2-1aefaa9f0306'::uuid,'212','997',4288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('07571a9f-e604-49c3-b2cd-b4bf934c3174'::uuid,'212','998',3704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9468acdd-43e9-4e0e-a218-8bbabf8c1025'::uuid,'212','999',3481,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ffaf6b4e-3f67-402d-ab94-f9c170d94cf4'::uuid,'213','995',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('907e8d42-2033-4c40-9bab-0d5a5d6e56e5'::uuid,'213','996',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2b5f8adc-89a0-40cf-84b0-63047410b04e'::uuid,'213','997',4288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5a48e361-9d1e-45d4-97c7-83249de94c7f'::uuid,'213','998',3704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ed8f019-43c1-4d0c-a7c8-8bc1b1b70f48'::uuid,'213','999',3481,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4b9e4418-2500-4f5d-b34d-d07198f754cd'::uuid,'214','995',4568,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43e128ae-2d13-4910-91c1-1d722ba113f3'::uuid,'214','996',4568,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ae75c908-7a96-4dcb-9a8b-fb2a426c862f'::uuid,'214','997',4310,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7cffc88a-9e01-42b1-996d-9c0fd5746980'::uuid,'214','998',3726,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('66c26f07-10a1-47cf-a5d1-e9b95f636829'::uuid,'214','999',3503,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('39187950-e2b7-4377-8fee-8114d63c5c0b'::uuid,'215','995',4409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dfbc151e-3158-4e64-9bd5-1ba4cc9c4feb'::uuid,'215','996',4409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4df9394a-3a31-431d-9b92-4fd63ee709d3'::uuid,'215','997',4016,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('50a40214-8861-44ea-a1fc-7a815843b997'::uuid,'215','998',3568,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c1e01f9d-bcbc-4c6f-afef-3b7203291c06'::uuid,'215','999',3345,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5385610c-3a1b-463d-9dea-3884d5b0da7a'::uuid,'216','995',4607,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6900f6dd-1286-4895-b086-1aab49f50578'::uuid,'216','996',4607,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2e7d3d9f-3a07-48f2-b0e1-1deaa65b4a00'::uuid,'216','997',4214,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fc902afd-e87b-4a6b-9c67-fe5869dbe205'::uuid,'216','998',3765,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e9f7e136-6d30-4b65-9f0c-e9b705f6722f'::uuid,'216','999',3543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aadd64de-8b05-44bc-8b06-e26fd35c109c'::uuid,'217','995',4484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c56b3238-8e8a-4e73-ba04-036c0d722500'::uuid,'217','996',4484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('891139f5-f64a-47a9-a0e0-8fa5ba3f630d'::uuid,'217','997',4226,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('038072cb-df9f-40a9-b9e8-e25eaa0b34e4'::uuid,'217','998',3642,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('41d00aa8-2142-4a15-9050-8582b44ecdec'::uuid,'217','999',3419,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('192a5e13-dfa1-4af6-b066-ed709b54fff3'::uuid,'218','998',3812,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e6ea1ca-83b4-426e-96e9-ad26b5e381ad'::uuid,'218','999',3554,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('934015f0-0008-4cf3-b85a-310118cefca5'::uuid,'219','995',4579,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e2bc0890-6b42-4f07-8c0e-da42545e9abf'::uuid,'219','996',4579,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('810867a6-fd99-4acf-be39-dbf2e6cfe90a'::uuid,'219','997',4322,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fd0fd2b6-a90d-499b-8cfa-4ef52ca5841c'::uuid,'219','998',3737,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('efea7887-04fe-4946-94de-6d607d68453a'::uuid,'219','999',3515,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1f7f9e87-0b89-4ab9-aec5-9413dce49fbe'::uuid,'220','995',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bfc26e7e-e54a-4240-881b-3bbe43b74ab8'::uuid,'220','996',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('36e339fe-d197-4990-b533-bbe5a963d161'::uuid,'220','998',3702,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b8993be4-a9e5-4dd3-9dfc-9f78d722b0a2'::uuid,'220','999',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('09c595af-f00f-4e5b-ad42-204dd59d4997'::uuid,'221','995',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('63025b32-412f-4015-9d8a-1bc5628b7857'::uuid,'221','996',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bc605ce8-e1ec-47c9-aef2-3862809cb6de'::uuid,'221','998',3702,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a223da78-ccc6-4918-966b-fd70c3a8c33c'::uuid,'221','999',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3f4cdd7c-087d-490a-b7e5-eaa0f9417f56'::uuid,'222','995',4547,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4662b2bd-2a83-442d-b6bb-931192c058a2'::uuid,'222','996',4547,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ad4b9c88-4816-4485-a422-42acf6f50305'::uuid,'222','997',4290,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ec31e3e9-a42a-4c4e-816e-dc82818ae71e'::uuid,'222','998',3706,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9ffccd86-aa5e-42fc-95cc-bf6a3d81d30d'::uuid,'222','999',3483,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fe49c7d1-ac49-4fdc-96de-7067b77cd2b5'::uuid,'223','995',4553,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dfb669f5-d0fe-42b3-a1ee-4e11a7182a38'::uuid,'223','996',4553,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f82520dd-ca68-4ecd-8126-978aa53251f8'::uuid,'223','997',4296,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb53756d-b37e-4d21-9078-cb3eff0d2078'::uuid,'223','998',3712,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ad09352-e4e5-45f7-9e6d-b28b1fd28891'::uuid,'223','999',3489,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c5bb8b80-3646-42a3-a94a-56a4ea4f6b2f'::uuid,'224','995',4597,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e1194220-5dc4-4b22-ae2a-a74cbe243341'::uuid,'224','996',4597,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fccb15bc-7952-4ad9-ac78-41a24f3bf3bd'::uuid,'224','997',4340,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('254f517e-e678-4d77-b9f6-fa20832ad64b'::uuid,'224','998',3755,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('63777069-3851-47ff-88cf-b24e835f93bd'::uuid,'224','999',3533,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8d1d32d2-5e5d-40c7-96dc-b1aef2353486'::uuid,'225','995',4597,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('82b84a54-5262-482b-8f92-ec1684bdec38'::uuid,'225','996',4597,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('967a3343-fa00-44e5-9347-d6372a7593de'::uuid,'225','997',4340,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7df11bb8-7035-408e-afef-836a79089a53'::uuid,'225','998',3755,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f7645cef-7d75-43bf-b71f-85b49a8c6f45'::uuid,'225','999',3533,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('303ab322-f7bf-45d4-906c-c290bb5f4113'::uuid,'226','995',4513,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b9c726e6-115f-4d6f-bc1e-d204388f19d7'::uuid,'226','996',4513,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1cea46e8-1979-474e-a6ef-e539929bf50b'::uuid,'226','998',3672,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b8bd777d-177f-45ae-9123-fe18e61f0ac7'::uuid,'226','999',3449,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ebf234b9-9050-4d4e-8020-3eff7312c19b'::uuid,'227','995',4554,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3b910efc-43f8-454e-971d-be923f36714a'::uuid,'227','996',4554,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f43c5771-567a-42ae-aa5a-5399172a7f0a'::uuid,'227','997',4161,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5a4a71ae-1325-4242-aaab-3e7b3e4d1cd0'::uuid,'227','998',3712,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('77f48d29-d203-44a4-8646-67a9c3f4ba4f'::uuid,'227','999',3489,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fdbf9b92-5054-4cff-849c-65b758112138'::uuid,'228','995',4491,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ac76abec-9b11-4efc-a1e9-34dcc3c1a6a2'::uuid,'228','996',4491,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dec78870-5ba7-46a2-8ba5-8e8669e74eb5'::uuid,'228','998',3650,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d7b4092c-7c61-413d-be77-f5c518e11785'::uuid,'228','999',3427,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dc7f0055-747c-4c3f-88f1-8c15677d3591'::uuid,'229','995',4535,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d2140439-0c00-4069-930d-a105a15e207e'::uuid,'229','996',4535,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('81808db0-3bef-4391-82e3-478cc5b0d605'::uuid,'229','997',4278,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('41cf997b-55cf-4b56-9892-0c4f7660d611'::uuid,'229','998',3694,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1d1f7a1a-ee1e-4099-8d74-1327c874303f'::uuid,'229','999',3471,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3f5e0213-314f-4c6c-aae7-40b0849cdb93'::uuid,'230','998',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6df5accb-16eb-451c-90b9-05f045d76a92'::uuid,'230','999',3504,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('39b9f122-562c-4e78-a4cf-c923d463120f'::uuid,'231','998',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5acb201d-9fd8-4ce7-abc6-fe4e020b3fd0'::uuid,'231','999',3504,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1d040592-011b-44dd-ba75-32b31446a6e8'::uuid,'232','998',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c8214066-1af1-4cc9-aa90-fd5a9b867608'::uuid,'232','999',3504,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4c3e0cb9-1667-4319-ac18-d22f06972a63'::uuid,'233','998',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b6f6f0e7-c4e3-4137-a207-b01f43353048'::uuid,'233','999',3630,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c50d64b7-ab47-4338-b33a-50e95d5ea033'::uuid,'234','998',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('87219d1a-2890-4e83-bcd8-ed28fa5cd432'::uuid,'234','999',3630,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('27ba4c6f-d69b-422d-bd40-8f7febe547e6'::uuid,'235','998',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4766a194-a112-4c62-a34b-29707a50cb4e'::uuid,'235','999',3630,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('006b31f6-3f68-4aab-88e7-1dedd59c1357'::uuid,'236','998',3836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f2f69943-9bca-4796-a93f-a9a03d30719c'::uuid,'236','999',3614,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3c79787a-6443-4760-a820-88db8494972b'::uuid,'237','998',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ca3a6e2f-55db-4318-8e9b-0254c6fbae7c'::uuid,'237','999',3595,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dd670767-1148-4dca-a962-bd107faf5798'::uuid,'238','995',4651,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b72cc58d-0d05-4471-ba9c-c1e97e53842f'::uuid,'238','996',4651,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('79eb0082-7e9d-499d-98bd-63917fe61f1d'::uuid,'238','998',3810,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('15a5e748-1b8e-449c-a798-4750f4098853'::uuid,'238','999',3587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('566bed6b-70e8-47bb-80f4-822d2c49c275'::uuid,'239','998',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1cbe03e8-c07d-45bc-b8ab-c867d7f3624b'::uuid,'239','999',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('905e12d2-7ae2-42c4-a55c-ab553ed32429'::uuid,'240','998',3644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7682c3e3-ac6d-4880-9d52-f4b61260e700'::uuid,'240','999',3386,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bb305beb-5fbe-4565-8956-c79c0c5ffbe7'::uuid,'241','998',3644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc87c8c5-e5de-4122-8420-5b48aaef0313'::uuid,'241','999',3386,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b71a6885-1663-4641-8d45-9e75c9d7cf27'::uuid,'242','998',3549,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f4fd5189-1cda-42c8-9075-079bfdd6c79f'::uuid,'242','999',3326,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('00e4b44c-54dc-4eab-942b-b3b2dc0782ce'::uuid,'244','995',4482,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b69629d6-aa1b-4f87-922e-8fbf96d89f4b'::uuid,'244','996',4482,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e5bdc299-0ca8-4ab1-9a89-a3f93aa318cc'::uuid,'244','998',3640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8dd4f7cc-7f8b-4a66-99c8-41f09c753a31'::uuid,'244','999',3418,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('acb9f728-1388-43fc-a1c7-8422a4ffb8da'::uuid,'245','998',3704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6b41c7b9-dbf5-4281-86b6-9e466a20b2a2'::uuid,'245','999',3446,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1dc32c4c-903c-4982-b771-9d1daf70c564'::uuid,'246','998',3338,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('429e53b3-bf6e-476b-8945-62f6f43cb82d'::uuid,'246','999',3338,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('74bedea3-4e05-4b15-936f-3e8a96653316'::uuid,'247','998',3565,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0a14f5ad-f1e4-4e18-b5d2-c9fbbe1d4be8'::uuid,'247','999',3307,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3cf68888-4991-46a5-a013-2dce852e7e4f'::uuid,'248','998',3310,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0d6e035b-cb0b-4ee8-9397-fc6fb788e239'::uuid,'248','999',3310,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('793e6a38-e689-4b00-98a6-b2e9e2abff33'::uuid,'249','998',3603,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c74255b9-3224-4c31-974a-e277422888cd'::uuid,'249','999',3380,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1c6de55a-9841-47b6-a8f7-3dfab21a376f'::uuid,'250','995',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1807dff4-f21b-4f1a-a9eb-cebf156ca355'::uuid,'250','996',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0c1d3783-c538-4985-8975-00a0a90c4efe'::uuid,'250','997',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('833ea784-2f03-4747-ac60-72d85dd8b1d8'::uuid,'250','998',3471,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5739785a-3b7f-4a35-b641-b7b97ade5d14'::uuid,'250','999',3248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cd3ca38a-a07c-4e3f-b601-c39af4223932'::uuid,'251','995',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('19ead668-dc8a-460b-9124-a1232a46e006'::uuid,'251','996',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f8a445bc-5153-4b4a-a80f-2a61cf23e2a7'::uuid,'251','997',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6cf7e890-720a-4124-85c7-cc9dae6207d0'::uuid,'251','998',3471,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e7681190-a16c-45ed-8bf8-31b2efedb117'::uuid,'251','999',3248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1baf2d71-c352-4296-8900-ed8cc27b09aa'::uuid,'252','995',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('00afbd0c-6189-4843-b9f8-fba03986ee9c'::uuid,'252','996',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('36f01c9b-4ef6-4515-8660-3784a3654412'::uuid,'252','997',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4957ea54-2505-485a-bf73-db88ddb5f66e'::uuid,'252','998',3471,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('80538887-8ba8-43c8-bc40-f0482f35b4a9'::uuid,'252','999',3248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('abe65c0f-8c25-4e29-8418-50bd8b472139'::uuid,'253','995',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bf4ea2d5-5d83-46ab-bf53-08e509fcfb73'::uuid,'253','996',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8f51f20f-0550-47e6-ac9b-382f54320c25'::uuid,'253','997',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e77f7ead-68d7-48bf-b3f7-2d6d73dc8c5b'::uuid,'253','998',3471,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('79464f4c-1c86-4387-a393-dbfa515a1d40'::uuid,'253','999',3248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3e275fdf-1bae-436e-94aa-96e87d24debc'::uuid,'254','998',3640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3d000ac4-294b-455a-9037-bf1275544b25'::uuid,'254','999',3417,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6df715bd-2c76-4f7e-8d78-473457f5e10e'::uuid,'255','998',3205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ff6a1611-4d78-42c4-a61b-f2369e58ad1c'::uuid,'255','999',3205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('37e33688-16de-4f7c-ad4b-5c2ffc5dd6b8'::uuid,'256','998',3508,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('04e29a5b-8619-4414-a83b-e12ede1edb42'::uuid,'256','999',3286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c48476ee-5fd8-40b1-a19e-f7e2a92b5cdc'::uuid,'257','995',4283,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('def6ff1c-3c0e-4dbd-9909-754c99bbbb89'::uuid,'257','996',4283,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5cb71164-2538-4e41-819f-be38e7edd23f'::uuid,'257','998',3442,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d3d44df-dc03-46d4-82ce-04c111e688a2'::uuid,'257','999',3219,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e25680cc-81dc-43ac-a45f-6e763a2f9adb'::uuid,'258','995',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e37be9e-19ec-4f9c-a995-38fa7445347d'::uuid,'258','996',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('824259a0-330e-45e7-b3fa-aab8b5f4e089'::uuid,'258','997',4112,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ee3a8794-5a9d-4cd2-ae04-e0f9cc1f3a2e'::uuid,'258','998',3528,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('124ff310-6527-405d-ba20-f6f250aeec50'::uuid,'258','999',3305,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cdc9c8d0-50c7-4bf6-9e48-26efc432a760'::uuid,'259','995',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('57a716ff-627d-4ff3-9bfc-42ee761980bd'::uuid,'259','996',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('00957477-c456-454e-800b-2c0024a7282f'::uuid,'259','997',4112,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3c365287-ca66-4463-a31f-0d6fb0d6a367'::uuid,'259','998',3528,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('12d40e39-49dd-4b05-b185-99f064240bf0'::uuid,'259','999',3305,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c732eced-3e08-4ebd-9746-65d3d02b101d'::uuid,'260','998',3182,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1d055639-e9ac-475c-91b3-7f6dcdf38234'::uuid,'260','999',3182,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f1b3250f-52b7-4c3e-8d8d-f46b458ce551'::uuid,'261','995',4307,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5efafb55-168a-406e-a841-d1ae9af5c2ed'::uuid,'261','996',4307,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dd03749e-5c59-451b-8bb0-c3014fa5cb3e'::uuid,'261','997',3914,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('700e5017-2fd8-411b-8706-bf0e9c953ba5'::uuid,'261','998',3465,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('163b4a2e-c841-4cb3-bf0b-a4c531e0dbfd'::uuid,'261','999',3243,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ef5cc3e9-db6a-4291-bc74-879e0d72b90a'::uuid,'262','995',4410,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e52c8dec-0f2e-4d08-83d7-eb22c7a63840'::uuid,'262','996',4410,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1ac65567-d072-42d7-8d98-01a90475c145'::uuid,'262','998',3569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bad9e1fe-9b73-4876-8f85-c2baeecf1e21'::uuid,'262','999',3346,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1ef3479f-6e1c-4bd9-8496-0841ba671b11'::uuid,'263','995',4340,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2f5a481d-8a57-4602-bb9e-28642ebbf561'::uuid,'263','996',4340,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('abf4add4-cc08-4df3-a654-05d2e43bf7ab'::uuid,'263','997',4083,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('091b1f21-9105-471a-a374-7f332ca4b6d9'::uuid,'263','998',3498,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0180302a-f78b-4805-9c10-17adbaf32797'::uuid,'263','999',3276,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5260a8ad-653e-421f-8c74-43be98fd1d37'::uuid,'264','995',4340,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ba09188d-1bae-4769-b821-0f195da24984'::uuid,'264','996',4340,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1015dbd6-4109-4548-9de4-2894533e01ee'::uuid,'264','997',4083,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1c961fbb-8905-4959-a195-96ea3ad09d7f'::uuid,'264','998',3498,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('83155307-b12b-4b20-8f75-5df50b25505a'::uuid,'264','999',3276,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('023ad1df-61cf-46b7-bd7b-242fe6242fbd'::uuid,'265','998',3512,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f803616-2354-4e12-8793-747aad08f54e'::uuid,'265','999',3290,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('479ba7dd-7269-407c-9211-879cd4404f32'::uuid,'266','998',3269,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f6f72c1e-404c-4e35-bf36-5366884b476e'::uuid,'266','999',3269,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('83e219ca-a1eb-425d-a0a1-c3335df158ea'::uuid,'267','995',4437,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('67c59219-c616-4149-bf88-c032893a2157'::uuid,'267','996',4437,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('05c525b7-70ea-41d9-aae2-16cdf2283759'::uuid,'267','998',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4c7fa33c-a547-4057-9785-525260c601ad'::uuid,'267','999',3373,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3ab51bd1-5d8e-4a47-8442-05a2def8ffc8'::uuid,'268','998',3602,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1ab005f5-6e48-4e95-84d1-a4fdd5d6196f'::uuid,'268','999',3344,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('17b10528-7e97-4b7a-8d9b-d8a237dd00d7'::uuid,'271','998',3427,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('61b3a6b6-87f1-4a0b-98e1-36eeb2e88f90'::uuid,'271','999',3427,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e505b3cc-bc2d-4b47-9893-5b9978937f1f'::uuid,'272','998',3743,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d41213b0-aeb6-4d1b-90c8-e935d27d0fa9'::uuid,'272','999',3485,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('238ccfa9-93d7-495e-8282-94458d0d3c96'::uuid,'273','998',3743,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('32bfea58-7382-4afa-9f6a-36f2142f7f40'::uuid,'273','999',3485,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b30455b1-e181-42f0-9e31-320407f95981'::uuid,'274','995',4553,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3eb27388-4c24-4bbd-bcfd-3f200dc5d164'::uuid,'274','996',4553,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d43b22dd-e699-4d43-9a7e-b3332742e517'::uuid,'274','998',3711,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bfe2d6d9-3134-46e0-a86c-a3955282276c'::uuid,'274','999',3489,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8238dc0d-3ed3-4bdb-bea2-dcc6a7250c3e'::uuid,'275','998',3537,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2186527e-21a8-42c1-a80a-a617b3204b75'::uuid,'275','999',3537,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4502afc9-69e1-4610-93b6-190344703f1b'::uuid,'276','998',3786,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6b6e073-7c34-4058-8265-a496bb4690e4'::uuid,'276','999',3529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b2be81df-500d-4f55-a1b3-74693c2e130b'::uuid,'277','995',4606,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('466c81df-c22b-4d5b-b1db-8b0c27a128a9'::uuid,'277','996',4606,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1d82d67b-9390-47d1-9d9c-5780e38d8428'::uuid,'277','997',4213,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('14f858b0-e4dd-4489-8ac3-8a11b9b72e2d'::uuid,'277','998',3764,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e4c413c-415e-4948-908d-d4885c2f1b45'::uuid,'277','999',3542,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('556205fe-6e6c-4613-81a6-1c298c300c04'::uuid,'278','995',4708,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54c05018-96a0-4ba0-88fe-707b6332f7e3'::uuid,'278','996',4708,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8c2e5190-5207-4984-b557-e70e0e913447'::uuid,'278','997',4451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b61c3482-4497-439b-babe-f14a172cac0c'::uuid,'278','998',3866,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('384b0613-a4bd-4b75-8918-78df2e31db33'::uuid,'278','999',3644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0cac00ab-4a8f-40b6-8b54-0ff1d81ef1fe'::uuid,'279','995',4761,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b21d827c-e80d-4a35-871a-a88bc35e6061'::uuid,'279','996',4761,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('78013f89-9441-4218-9c8a-70abd24a1485'::uuid,'279','997',4368,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b96c3ab6-25a0-43c7-ae57-e3c6f6683554'::uuid,'279','998',3920,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('53ddc287-805e-4f96-a287-0e2f133e2d1e'::uuid,'279','999',3697,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('746d1d06-5485-42c3-af05-36fcb107f6fa'::uuid,'280','995',4574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b90b13a0-88cd-4760-abea-ec2e0cef5f7a'::uuid,'280','996',4574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('99b1a005-e0a0-4b37-a492-f43ec93a8b13'::uuid,'280','997',4317,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('89e6fd2f-0688-424c-880b-c6ef59312c89'::uuid,'280','998',3733,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('27fd82dc-b996-4a18-ae3f-88bfa7ecbc29'::uuid,'280','999',3510,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c75c2947-35d8-4ab6-9bbb-eb4fae5afec4'::uuid,'281','995',4574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8d6bdd8e-5421-47aa-b0c7-84ea4db7ad86'::uuid,'281','996',4574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0aa49a9e-1751-4cfe-bff1-72eaf9166a32'::uuid,'281','997',4317,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bf20951b-83f5-4ef2-861d-a0aa2a92c7ee'::uuid,'281','998',3733,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('448e151f-2801-432b-89f7-e1f305f6dd9b'::uuid,'281','999',3510,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6eddb2fd-e815-4c9f-90c1-8f5b7d46658c'::uuid,'282','995',4574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7efb84f0-a666-489e-8916-23d8e6d451f5'::uuid,'282','996',4574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e96997e0-2ae8-489b-b588-044bd600fac3'::uuid,'282','997',4317,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eaf87c9e-a98a-4e12-8ab9-5eb747723ef4'::uuid,'282','998',3733,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2c9865fd-5b32-48fa-b22c-4dbe8bf743ab'::uuid,'282','999',3510,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f004d510-7224-43e1-91fe-191c832375a4'::uuid,'283','995',4661,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('01595b1d-5c45-4b8c-b1ff-7f0d57ec8e48'::uuid,'283','996',4661,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('381a8e54-4661-4f2d-b73d-a164564c004f'::uuid,'283','998',3820,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f58a095d-a4f2-4802-ac3a-202e751eb5ce'::uuid,'283','999',3597,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3d992946-7857-436f-bb15-755ff38475cd'::uuid,'284','995',4734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2a388580-b34f-4918-94ef-b1a55c1a1e05'::uuid,'284','996',4734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('84053339-ff0f-4832-8327-0839e0ef07d2'::uuid,'284','997',4477,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1168f709-9dd9-4246-9f7e-db13e947e0dd'::uuid,'284','998',3893,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc24d1c7-a33b-4168-af78-b15871b286a2'::uuid,'284','999',3670,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dac67a75-f058-4e9e-ad3e-5971453c8f63'::uuid,'285','998',3900,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('df00f689-7d86-4db8-a1ab-95e8ea288b96'::uuid,'285','999',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3dea0ed9-8ac3-42f9-8ea2-d93ab3fc0cf0'::uuid,'286','998',3417,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a8745d9a-4151-44e3-9ff4-dbb3ecb270aa'::uuid,'286','999',3417,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3e358c08-45a4-4eb2-a5db-c66a66418028'::uuid,'287','998',3363,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('77cb2a97-1221-4ed6-8fb5-17825cf8e976'::uuid,'287','999',3363,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b825841a-36d2-4649-b508-8f1137ebe072'::uuid,'288','995',4479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7504e3f9-6086-45b9-ac21-524269a87c0c'::uuid,'288','996',4479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5ac238b9-b565-4cd6-8d0f-955b8653e727'::uuid,'288','997',4222,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1aeb4f2f-ad5e-4fb1-ba8d-8d1799900ef4'::uuid,'288','998',3637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('543c38e3-068b-4e5e-89ca-bef3ff6eed6b'::uuid,'288','999',3415,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aad374c6-1197-4858-8918-c8fc4308853a'::uuid,'289','998',3653,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1efe0781-d02f-48ba-bdf5-10a0963d4e49'::uuid,'289','999',3430,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('574eecee-a32b-4b34-981c-e2047cb33e95'::uuid,'290','995',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('264fff0d-6410-4918-b9c1-efb40dfa8435'::uuid,'290','996',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a097447f-4ecb-4850-a5f8-957471a627c4'::uuid,'290','997',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eaf36a2c-c561-4e19-8063-90615d771209'::uuid,'290','998',3785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5b2eef92-147d-4a50-9006-b2ea2764944e'::uuid,'290','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('486f7153-e120-45be-a071-c87ae9723d92'::uuid,'291','995',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d526cab5-8f05-4e17-a347-246d61dd0489'::uuid,'291','996',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('90a2c2d3-d5ab-4239-a9a9-45c996dd46c5'::uuid,'291','997',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f1712c2-2229-4438-b7cb-63bde9bc0559'::uuid,'291','998',3785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6ae0ba2d-e01b-44a2-9b7b-0493143a3898'::uuid,'291','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fea5a98b-fe01-4294-b0b9-2fff6708b6ae'::uuid,'292','995',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a51b7bc9-d4e3-4888-a44b-0757f241c96b'::uuid,'292','996',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0c52c13c-8921-4601-8784-fe111d7b9009'::uuid,'292','997',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('24cbe12d-7ba1-4a4b-8fd9-7823f7f1e49c'::uuid,'292','998',3785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce9465f8-e3df-4bcf-9324-0ccbba0cb732'::uuid,'292','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dc99306e-a930-4730-8339-f0831bca3aa9'::uuid,'293','995',4557,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6a9a89e0-1afa-483e-8ee6-7adda41bf45e'::uuid,'293','996',4557,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8be25640-2b92-4b46-ad66-d4150bdc8c1a'::uuid,'293','997',4164,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a36be853-a8b0-49b5-b403-3e2b25ddfcfd'::uuid,'293','998',3715,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dcf527f9-a17e-49bd-a50a-6137db4a698c'::uuid,'293','999',3493,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('348c1614-df7b-49cf-8cdb-c2eb16322cfa'::uuid,'294','998',3875,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e043f3f2-b2f6-4d48-849c-5f7688788e66'::uuid,'294','999',3652,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c7a05be8-7d23-4c01-b23f-c5321830f66d'::uuid,'295','998',3857,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae17f170-64bd-4862-9fec-703ca5a94d54'::uuid,'295','999',3634,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88bebd36-a305-407e-9608-d500b0625613'::uuid,'296','995',4561,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('090a47d7-29af-4b15-aff7-3c65c03e48be'::uuid,'296','996',4561,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9536a3dc-b1c8-4083-8c1c-97bc356cdf6e'::uuid,'296','997',4304,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce12f03d-c312-4d97-8a8b-4fcc8a4e6f35'::uuid,'296','998',3720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('51e2169e-82c5-4271-9468-d56d397c02df'::uuid,'296','999',3497,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e475d483-98fc-47f7-9c23-51e42908f27c'::uuid,'297','995',4585,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3bc524a1-3054-45a0-8930-be02b969cf4a'::uuid,'297','996',4585,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2fb65308-c895-4971-8513-27dd5342be52'::uuid,'297','997',4328,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b1f876e8-731e-4e09-8974-5ae8209fdc64'::uuid,'297','998',3743,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('370c1d52-0097-43d3-b5a2-063e080babec'::uuid,'297','999',3521,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6d8cc489-17d6-460d-b9a0-f2a5a5cd7f4f'::uuid,'298','995',4640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('673275c2-974f-45f2-b9da-f1a19d58b1ad'::uuid,'298','996',4640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('937c90c9-c245-48b2-b98c-bf136b241a4c'::uuid,'298','997',4382,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b3f964e5-d37c-4cd1-9cd3-3ae093cc542f'::uuid,'298','998',3798,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1cc44cdb-0b5a-42e9-a435-7699ee49db67'::uuid,'298','999',3575,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d5ce60f9-1b51-45cc-9039-7dcc16a890bf'::uuid,'299','998',3896,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7fbdae02-b99d-4bac-9c58-62cb40e70d54'::uuid,'299','999',3638,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a80c574a-3796-439d-b436-f77dce59847b'::uuid,'300','995',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a8d6b9a5-58f5-493c-a50b-c1c54a22504d'::uuid,'300','996',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3508dd44-12bc-428c-b07d-ef809a960b79'::uuid,'300','997',4270,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4841c6b1-9f5f-4c00-b9ba-13777718c37c'::uuid,'300','998',3686,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2a8854ac-eabe-4412-affe-ab112549512d'::uuid,'300','999',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0fd3154f-d7cf-4ac0-8fdd-ca54fc12edc9'::uuid,'301','995',4480,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('806f6b1c-68eb-439d-a629-ffea8deeeee3'::uuid,'301','996',4480,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0d247dd-71c3-441a-b7b6-fc6f5c97973e'::uuid,'301','997',4223,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ec82172f-c73d-43bd-a55d-d0e11b5aba97'::uuid,'301','998',3639,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('81cf50e4-3e58-4915-8ce6-b41b0aa7f985'::uuid,'301','999',3416,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a67776e1-1ad5-48be-813a-8d83a27ea78a'::uuid,'302','998',3725,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ffb77760-b836-45b5-b0de-4bed04921375'::uuid,'302','999',3467,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0491b332-8916-4f24-98a9-f26738eb7a2c'::uuid,'303','995',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e71605af-17e3-4a9a-a47d-4d4cb8be41a2'::uuid,'303','996',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a5597075-133f-4d9f-8cda-59a33d4ac63b'::uuid,'303','997',4270,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('75fca57a-07c0-4419-9c03-c60d6b5b717e'::uuid,'303','998',3686,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('158e7b87-b9b2-44cd-b877-c91bc890540c'::uuid,'303','999',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('533efc44-27a8-4c7f-ae11-8a4b9cd41eee'::uuid,'304','998',3877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c32493a8-da50-45ad-91a5-a21f332e6507'::uuid,'304','999',3654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f377c71f-f771-460b-b8a1-2f1c4b601276'::uuid,'305','995',4534,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1c9f8200-203e-4648-8d32-3db256b5a2a4'::uuid,'305','996',4534,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('83e06278-1a20-457b-abae-5619d7399f52'::uuid,'305','997',4277,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8c004971-3b81-4980-9856-4d7c22995d67'::uuid,'305','998',3693,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('95ac5e69-0d4c-4972-b746-cbf38546f181'::uuid,'305','999',3470,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('999b9eaa-642f-48df-b5a1-275d9f7b5c13'::uuid,'306','998',3759,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('526b086f-a98c-4269-8b42-a0e835505662'::uuid,'306','999',3537,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b7b5fc09-7302-4331-8178-b5370b33212f'::uuid,'307','995',4444,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('99256076-a556-459a-9e7a-47f004765eaa'::uuid,'307','996',4444,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8be92583-c884-40ac-b0f4-bb3002791e4c'::uuid,'307','997',4051,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('81b64d72-5c76-4294-b35b-3c2518929c17'::uuid,'307','998',3602,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4f8761c2-3682-412e-8dfb-3485f912228a'::uuid,'307','999',3379,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8f5cbbc8-5f01-46df-b55d-15dd68f9c645'::uuid,'308','995',4650,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('890cff7b-0c22-42d8-9f39-dd1a44e09b71'::uuid,'308','996',4650,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('740c5d96-1269-40ca-8e64-bc3f07eb1089'::uuid,'308','998',3808,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e2ec8366-a3df-4c63-8626-c651bb9b1f32'::uuid,'308','999',3585,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cf75c82c-dada-456b-9a6f-3730aeb352e7'::uuid,'309','995',4644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6c54c657-9bd7-443e-849b-f8f791b3533b'::uuid,'309','996',4644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c3028237-34c2-4dbe-877d-5dfdb5800411'::uuid,'309','997',4387,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b1e9466c-327c-471f-8a52-8dd7b26ef93b'::uuid,'309','998',3803,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d3b53348-939f-43a3-88c0-62e15ba97390'::uuid,'309','999',3580,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('74eacbaa-8809-40be-af05-e273c92ee5aa'::uuid,'310','998',3806,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a64687bd-fb97-4d9a-b140-6b0786e88459'::uuid,'310','999',3583,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4b4271b2-594b-422b-b7b5-22fb71365391'::uuid,'311','995',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('95704b9d-a8ad-4da7-835a-a62e59a11a6a'::uuid,'311','996',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('542d645d-dd45-4467-97a9-308b8bc9cf54'::uuid,'311','997',4270,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eade56f4-0b47-454d-81b0-c2529e6e890e'::uuid,'311','998',3686,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('34845e0e-9baa-49ac-862f-0e70313c590e'::uuid,'311','999',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7cabfb2e-8140-41c1-9ac8-4cc377434875'::uuid,'312','998',3773,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f940bbf3-8019-4030-8306-694e3be22662'::uuid,'312','999',3550,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a90f9de2-182f-4e00-b47c-a184cb74dabb'::uuid,'313','995',4776,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6bc196bf-8709-4fe0-8b2d-15d602bda174'::uuid,'313','996',4776,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1cafc7ac-f216-43ec-82ce-2c5c34d0e6e5'::uuid,'313','998',3935,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('63208aac-72b4-4255-a631-5d35349bb2ad'::uuid,'313','999',3712,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('45f4f79b-df6a-4081-b230-f34a5d9d4158'::uuid,'314','998',3927,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b867eca8-acc3-49de-a369-60bba434df15'::uuid,'314','999',3669,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e9836516-edb0-4130-895f-da9083ecb0d6'::uuid,'315','995',4756,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6c92dad1-b028-4d2f-9600-2f5f3f700850'::uuid,'315','996',4756,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('397e60f3-6522-4667-bcc9-d54629db577a'::uuid,'315','997',4499,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7cb2b047-a2b0-425e-a3a3-1691969576fa'::uuid,'315','998',3915,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c55464ae-03f5-4bab-9bf4-9f9caa7ac4c3'::uuid,'315','999',3692,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f6c96a11-bd96-4cd6-af13-af873ab2a12b'::uuid,'316','998',3914,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b67dc948-63d8-4cb2-be38-6418b1bf9c6b'::uuid,'316','999',3692,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('93d4b82b-b03e-4529-8542-0a3395287dae'::uuid,'317','995',4689,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3122414f-34b8-4852-b9ec-5163ca3f58ea'::uuid,'317','996',4689,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('80f63a6b-4e56-429d-8b34-a322a9b04448'::uuid,'317','997',4432,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('67925a9b-1d9d-47b4-b2c6-1a9c0153012b'::uuid,'317','998',3847,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('82a72092-7dae-40a0-921c-18749a9654df'::uuid,'317','999',3625,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('39013f90-4367-449b-a0a8-c519b6fdc24a'::uuid,'318','995',4636,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('336e8d72-2217-4d41-9e0a-f26fea792fba'::uuid,'318','996',4636,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6448b3e0-898e-4047-91c3-3598784af444'::uuid,'318','997',4378,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e185c6de-0b33-44e2-aa45-e25a6068c00d'::uuid,'318','998',3794,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ea49605c-96dc-469b-96f7-c930917fbb48'::uuid,'318','999',3571,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7f5471e2-7cd9-4e8a-8d7b-66d187de75af'::uuid,'319','995',4604,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('59fb6a19-1816-4a6f-8ad1-4b854c205eb6'::uuid,'319','996',4604,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('978e0997-3d0a-4bc4-bda6-a5022684fc9a'::uuid,'319','997',4347,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ad02c38-7720-431b-b835-3c3744f155f2'::uuid,'319','998',3763,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e1f7c8cb-cb83-453c-a65e-caf200956cba'::uuid,'319','999',3540,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('066f884b-5761-4636-824e-c8ef803d0d30'::uuid,'320','998',4008,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('528f1fad-45f1-49a4-a936-3bee3775cd62'::uuid,'320','999',3785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5c4d4871-0e13-435c-9ca1-e5bd9c66cc75'::uuid,'321','995',4919,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6ec6054e-9533-4cb2-bfcc-dc42770ea9d8'::uuid,'321','996',4919,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('75038700-9e53-479a-85b4-defd6c1df4a9'::uuid,'321','997',4526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bcbbcecd-07c3-4d86-a982-efb5d8048f9c'::uuid,'321','998',4078,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('86440a6b-109c-4004-81b4-4609fbd53f35'::uuid,'321','999',3855,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5380887f-d54f-4df1-a611-975ecbdc70c0'::uuid,'322','995',4846,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e652a25-762a-4a25-9541-1fee75cfcd1b'::uuid,'322','996',4846,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4a27ab44-65ee-462e-8c32-85da68d4aa0a'::uuid,'322','998',4004,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('46252aa5-d052-4ed6-8093-817a23c6a571'::uuid,'322','999',3782,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('beec250a-1a23-4566-9490-6c0243360d57'::uuid,'323','998',3654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('514c6a04-e142-411d-8787-98f9c11d64f0'::uuid,'323','999',3654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0fcde787-df73-46d6-84af-060a364d7a6c'::uuid,'324','995',4685,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b016ffd8-7018-48d0-a0f9-74dd8f58f6f4'::uuid,'324','996',4685,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('69485c6b-6df8-42a5-9dca-3290f3cca3b2'::uuid,'324','997',4428,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('62ec5f8a-a3f5-48bc-ada5-a12325c3caf6'::uuid,'324','998',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ebc328f0-0b86-4d6e-89e8-d630bf0eef27'::uuid,'324','999',3621,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('73aee377-09cf-4766-9577-6a7fe8a5377d'::uuid,'325','998',3810,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d7842f17-f356-459c-b91c-cba5f5ea9df1'::uuid,'325','999',3587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('95e55c74-b911-4118-a14e-5a45da90ccec'::uuid,'326','995',4866,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e2af0eba-b4f9-424d-a8d8-db4a13d3c971'::uuid,'326','996',4866,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4b930a62-d29b-46b2-9b8b-5201129969f2'::uuid,'326','997',4609,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('47af5b35-d79e-4a94-b2b0-70f0f747f0e7'::uuid,'326','998',4024,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('68f93cbf-adca-408b-91e6-ba113d404ab0'::uuid,'326','999',3802,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ed768fe1-9ea4-4bc8-93c2-430f053ad88b'::uuid,'327','998',4122,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('79f02661-fa82-4084-ab1b-12e5667c9d18'::uuid,'327','999',3865,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9d0f36f6-a889-4dd2-a5bd-a46115eb2e53'::uuid,'328','998',4128,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bdffa565-85da-456b-8596-f8b919ff87a5'::uuid,'328','999',3905,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a48765cb-bb09-4100-a62e-0e122916e579'::uuid,'329','998',4178,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('670ed815-4789-42df-9929-03228667e436'::uuid,'329','999',3955,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('41f043b6-f420-40f0-a04a-1b9fe3e44e35'::uuid,'330','998',4347,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('eb08b24a-153c-4933-9556-d21f6c98acfa'::uuid,'330','999',4124,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('be39f0a1-de58-41cf-85d0-975e1400ed71'::uuid,'331','998',4347,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7a698c8d-38d4-41f8-a52a-8634179be3e6'::uuid,'331','999',4124,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5916400f-5057-448c-bb3d-00768c2f100b'::uuid,'332','998',4347,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a801589e-8fd0-40ea-bfc9-0df7f9dbf95a'::uuid,'332','999',4124,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a30ab952-e9d0-45ab-af32-d19cead1e44a'::uuid,'333','995',5166,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('09241860-f055-46bb-8e72-6690203f66c1'::uuid,'333','996',5166,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6b289fde-3b50-4f38-84de-0b6cd134bfcd'::uuid,'333','998',4324,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('49e6accd-91b5-404f-83ee-7f7e0b821b54'::uuid,'333','999',4101,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a4d22652-1060-410b-a2ba-30399b7900d3'::uuid,'334','995',5108,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c44c37e4-fbd2-4922-8d70-6efe8eb2e2b5'::uuid,'334','996',5108,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a4305a28-5b90-4d15-b1dc-bfb963d5180e'::uuid,'334','998',4267,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('782c4445-8795-4e5f-830d-d9944ad2a61b'::uuid,'334','999',4044,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a5cc6ccd-e8f2-4561-9773-14d70a993b75'::uuid,'335','998',3886,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7701a75f-5b49-4404-82e3-8c57aaf94e41'::uuid,'335','999',3886,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('246c6b1f-16f0-4fcb-8a41-8f3b9a35123e'::uuid,'336','998',3886,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('acf1591f-270d-4a8c-a05a-1d409b1890e5'::uuid,'336','999',3886,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7f07ace9-bf7f-418a-9ca6-c2e2363f218b'::uuid,'337','998',3901,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0ed7f377-0d44-4b45-8b22-a09c5dd21c94'::uuid,'337','999',3901,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2305e75a-f375-4df2-910b-87eeece111c5'::uuid,'338','995',5013,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e66b04cc-8514-4ebc-aaa0-71beb3129634'::uuid,'338','996',5013,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('928fc86d-ab08-41bb-8f67-995c8a91ee9b'::uuid,'338','998',4171,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('833c0877-1020-46d3-b69c-91a022848742'::uuid,'338','999',3948,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('74d71b33-0b94-4d01-900b-68c5fe229a83'::uuid,'339','995',5090,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b42a80b0-a90d-4936-a822-245a29ba1da7'::uuid,'339','996',5090,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e9bf9908-88d4-4839-a579-bfe28afeb000'::uuid,'339','998',4248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f7f6ffca-1cba-488c-b352-906a20c15ddb'::uuid,'339','999',4025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cfab6d7d-249f-403f-b807-f77726670270'::uuid,'341','995',5090,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6f0f5d8c-cf21-4f9d-8571-902ac6ba28e5'::uuid,'341','996',5090,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c6a4ba4f-d466-4636-b33f-5e6989d36fb3'::uuid,'341','998',4248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('bb9d5419-4f4b-496d-a20d-08109af78e22'::uuid,'341','999',4025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ff7113e5-f3bf-4d65-83c3-ba75d52fe4dd'::uuid,'342','998',4192,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2dcec900-17b3-4bad-b2c4-c012e61c9eca'::uuid,'342','999',3935,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0fabf2d6-01dc-47b1-a990-596cc4f5229f'::uuid,'344','995',4902,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b214c4a2-23c9-402f-a44d-18fd40704b24'::uuid,'344','996',4902,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('01a7f7ae-3f8c-4400-862c-2e9915edfcdb'::uuid,'344','997',4509,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('29c4815b-ccdd-44db-971b-da5423f83389'::uuid,'344','998',4060,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8c1f7751-a4cf-4abc-a613-d35bfa491f4d'::uuid,'344','999',3837,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b379b3e6-60dd-4e84-83fe-73505337be04'::uuid,'346','998',4121,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c994cdcc-3f95-473b-baec-abe56e083caa'::uuid,'346','999',3863,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('28dbb463-8a9e-46f5-b9bc-7fe0ceb1fb17'::uuid,'347','995',4981,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0cdd939a-fe2c-4939-a563-19d34e321a2a'::uuid,'347','996',4981,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('678598f4-e667-4e5d-a9eb-1e96b4ca8c97'::uuid,'347','998',4139,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e71e65a-3a93-4880-a89f-27a4e7bbde51'::uuid,'347','999',3916,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f8b0cd73-8c11-42f4-b64f-3c1dccf24d60'::uuid,'349','995',5068,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e939ad46-7fbf-4a79-bbcc-1fbaabab0204'::uuid,'349','996',5068,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5086e351-d77e-421d-9934-e5a2044b9026'::uuid,'349','998',4226,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('acd28542-237a-455c-b6e2-b15f8f0c1435'::uuid,'349','999',4003,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c35874f4-97c4-4c9b-a306-bc0a767c447d'::uuid,'350','998',3635,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4addd5fc-968d-440e-b844-96fa725aee57'::uuid,'350','999',3412,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('96bc8ad6-9e73-4b90-92b2-a7b5270bcafb'::uuid,'351','998',3635,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('39f0d7a3-b58b-475a-9a14-ed619e8b5b6a'::uuid,'351','999',3412,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f3419a3c-6976-4a2d-a2e2-392d5fb47bb5'::uuid,'352','995',4461,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('69938228-d68a-448d-9c0c-4519589106ad'::uuid,'352','996',4461,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e3ef1717-ac75-4305-90f4-8db08b5da020'::uuid,'352','997',4204,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9dcc22c7-7a3f-4d26-9b0e-84f5aa25cf4d'::uuid,'352','998',3620,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e6bb9a3b-2b7c-41de-a657-32f55d2e2f25'::uuid,'352','999',3397,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('317a6313-eb98-44e3-933d-4422709eba3a'::uuid,'354','998',3364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ccd35856-949b-492e-8790-0940b2dc78cf'::uuid,'354','999',3364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b274b018-7bfc-4328-9e4f-1dda6f529db9'::uuid,'355','995',4416,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a438cf92-c6aa-48f2-8f84-6ee7f62dc056'::uuid,'355','996',4416,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('55c91d67-cb77-4473-b930-29f164531d8e'::uuid,'355','997',4159,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('29d6eb40-3e09-45d6-90bb-94b656de6a7b'::uuid,'355','998',3574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('02761da5-ba9e-4ee0-94b4-1669ae6e3c94'::uuid,'355','999',3352,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f43c05a2-3430-4913-b310-ad7c463992ea'::uuid,'356','998',3267,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('56ebd485-75b3-49f8-9f3a-055db2ec358c'::uuid,'356','999',3267,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f2e656c-475d-40a8-b366-1fa12a43044c'::uuid,'357','998',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f8d894fd-1008-4b8b-975f-bf76c03d8b08'::uuid,'357','999',3339,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9795eef1-dfdf-4d76-9e12-c4acf179d961'::uuid,'358','995',4387,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce0747e3-be2a-441e-87ac-a1365cd8b1ca'::uuid,'358','996',4387,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0caef744-b63e-4c5e-98ca-8fd42953987e'::uuid,'358','998',3545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5765d1c5-62fc-4b24-b3f7-f743c97755ec'::uuid,'358','999',3322,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c16fd64d-b4ec-4f52-9f3b-a52fdba1d1b7'::uuid,'359','995',4452,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9250c82d-de32-4c72-952b-e08e14a698e4'::uuid,'359','996',4452,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bcb813f7-c44a-425a-8b52-2fbfc5aeef73'::uuid,'359','997',4195,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d072c8c1-16dd-496e-9495-d9cddfa4e4b2'::uuid,'359','998',3611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('343b248f-20eb-4d12-ab14-4704f453faa7'::uuid,'359','999',3388,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('41da94f6-2da9-4ef4-90da-718a0becda9c'::uuid,'360','998',3739,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c6ecedac-48e1-472d-9abb-3bff7e0dab21'::uuid,'360','999',3481,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('13ac893b-91ac-4c2d-bb41-f67a5d987a33'::uuid,'361','998',3709,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0ac1f204-f2d7-491f-83b9-c9064d035d9c'::uuid,'361','999',3486,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e1109ce-d682-4e0e-9f41-179016268026'::uuid,'362','995',4508,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ec6e2f8-bb3f-4319-a00a-e64590e378f6'::uuid,'362','996',4508,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a5f3f80c-0103-4614-902e-627e47f87ebc'::uuid,'362','997',4251,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1144d2f2-deed-4a18-9082-106794968114'::uuid,'362','998',3666,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e2870647-e388-4f51-9866-43dc876df708'::uuid,'362','999',3444,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f1af9346-b560-4e8e-8ad5-4ca4e1fe5b20'::uuid,'363','998',3793,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f8e87e2f-1e7c-4944-860b-e263145856ed'::uuid,'363','999',3570,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4faaba6b-fa03-4e40-97ce-6026ba13ba12'::uuid,'364','995',4600,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1592fdc3-ed51-436a-8d12-2141da44601b'::uuid,'364','996',4600,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8d9f1a6b-07e1-4068-a21b-ab92cd284dd4'::uuid,'364','997',4207,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('68075639-8d3c-4e07-8913-29501ef1113c'::uuid,'364','998',3759,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2d88a333-9899-40f7-b333-1329c09c7016'::uuid,'364','999',3536,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a53704ab-486a-4308-adf8-f3e2bb0db652'::uuid,'365','998',3750,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2154de3e-b053-4e28-ba1b-7a02ba744316'::uuid,'365','999',3527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3292afbb-29b2-442b-820d-a7e6836d9389'::uuid,'366','998',3761,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('334dd1b7-1222-45fc-842a-fe4f20a9bbc7'::uuid,'366','999',3539,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5499ac73-f031-4b79-bbc1-d611686de8b0'::uuid,'367','998',3404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5766c748-d158-48b8-a95c-9d3b7063b631'::uuid,'367','999',3404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('343630de-2781-44b6-aba1-849eb6181a65'::uuid,'368','998',3732,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4052d909-39c0-48f4-80ec-b0c0faca08a7'::uuid,'368','999',3509,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3d649ade-4a72-4749-8571-77771e6df737'::uuid,'369','995',4505,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5babc1fb-b480-4605-8de4-3c6e8e0d1c4c'::uuid,'369','996',4505,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('10ae8be5-8496-43ce-8807-2e9a16fe61a2'::uuid,'369','997',4247,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5ab3a171-01db-468d-b4da-df3e07db5984'::uuid,'369','998',3663,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ab44752-2958-4887-b854-82df8619cbfa'::uuid,'369','999',3440,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f2552eec-bb3a-43a7-9328-c86c74d7904e'::uuid,'370','998',3439,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88ce772a-a9ea-435f-9665-112a0fb77b28'::uuid,'370','999',3217,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('17a791d5-ef5a-4be5-98eb-f6456cbdac4b'::uuid,'371','998',3439,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('adfb832d-d82b-4966-b6f0-c7cd4eafdc46'::uuid,'371','999',3217,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3256aff4-755c-4292-aa18-0fadbdada500'::uuid,'372','998',3439,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2be87918-686d-4dee-a938-2c58d0096de9'::uuid,'372','999',3217,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('023bc02f-d736-4d84-bfe7-b38d58ac2548'::uuid,'373','995',4390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da67a3bd-9e10-4428-b2a7-a00b6ba07616'::uuid,'373','996',4390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fa5a2476-a67d-4da3-80d1-d73dc1990a36'::uuid,'373','997',3997,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e1ed6b1b-370c-4461-9904-11a027539c3c'::uuid,'373','998',3548,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bcce6f14-fad6-4e1e-bdad-1e82abef5975'::uuid,'373','999',3325,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a25d8b28-bd21-461c-8f0d-7af77d5565b4'::uuid,'374','995',4411,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce5637fe-fc28-4d8f-9c62-edc7358f0657'::uuid,'374','996',4411,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ac6c665b-404a-4579-b510-59ad783f97d4'::uuid,'374','997',4153,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0f34b759-9d2a-45ce-8159-ad9183fdb3ca'::uuid,'374','998',3569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0930ea7c-b552-4658-bf38-d0e9241e2e92'::uuid,'374','999',3346,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('31482a0c-0e45-4eb3-8807-f18d990fee7e'::uuid,'375','998',3395,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('14de41bf-9291-4678-b721-a85866be72aa'::uuid,'375','999',3172,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bb00e4ef-d779-4cde-81e6-9eb7cdffbb17'::uuid,'376','995',4447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6784401-e195-4608-bcac-c53fb47288b4'::uuid,'376','996',4447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6aace830-e50d-40ea-8291-78a4364afeb2'::uuid,'376','998',3606,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('01a02e3c-26a5-47be-990b-7c51942a4188'::uuid,'376','999',3383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33ed6a16-eff7-46e6-af12-9d82058741e7'::uuid,'377','995',4383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9faf62f8-abb4-4860-a84e-7ce3e0e2b518'::uuid,'377','996',4383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('aa4f9273-e064-410f-8ebf-c82833268af7'::uuid,'377','998',3542,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65b4f844-97db-49a5-9259-0cd132bee328'::uuid,'377','999',3319,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4f458f05-b068-42e0-be07-03ba0021285d'::uuid,'378','995',4383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f56b8e5b-621c-470e-854e-cb83ab7d7cc5'::uuid,'378','996',4383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('14c0c3b4-a6ff-43a8-b659-dda768ca4f85'::uuid,'378','998',3542,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e8ff57a0-8752-4ffa-8124-a8a2d8f90667'::uuid,'378','999',3319,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3f699a21-f962-4ff7-a0fb-e22ed431764e'::uuid,'379','995',4383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aa88c2ec-3e9d-4639-8145-93a98de29426'::uuid,'379','996',4383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('abc8b7ff-75c0-4e8d-bf8f-f7d4451666fe'::uuid,'379','998',3542,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4d157e47-58fe-45c4-bf6f-4142e05d5af9'::uuid,'379','999',3319,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('31d011af-9024-4b55-b7e2-49824b8ee034'::uuid,'380','998',3376,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e4937e54-ec9a-4774-b426-a32db6c1bb21'::uuid,'380','999',3118,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2fc0a38b-50b3-402c-8480-9c609098ca93'::uuid,'381','998',3395,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a75c026d-eff8-4210-be92-90331c0fda23'::uuid,'381','999',3172,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('007db3cc-198f-44ca-a055-3401300a048d'::uuid,'382','998',3367,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4381ab59-62d1-41ff-8bb5-677d1e153a3c'::uuid,'382','999',3144,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f2ca3f2e-5e19-4411-ba27-938538f3ce8f'::uuid,'383','998',3423,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('40372cad-872c-4e19-adf8-e63cabe7d1ed'::uuid,'383','999',3201,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('599660ec-5688-4b3a-a9ee-3c3a4dcb8e93'::uuid,'384','998',3499,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('080ea6a1-777b-4266-b75e-8d989b7c055e'::uuid,'384','999',3277,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('64288b3c-adc2-4593-bd79-f11ab844acea'::uuid,'385','995',4345,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('136654a8-df21-40a3-80a9-4ce1954569fd'::uuid,'385','996',4345,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7452fa1f-7c09-4e21-89c3-5c2087e5aa1d'::uuid,'385','997',4088,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a98ca9b8-63b9-4d00-8fa6-5213ee8ee9ab'::uuid,'385','998',3504,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9bf466a9-972a-44a4-9c18-2ffc77ebeb5e'::uuid,'385','999',3281,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('823064fe-1028-4747-b7ae-960d143094ab'::uuid,'386','998',3431,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('312f4cfb-aa8d-4f19-ad16-9b3033ea8620'::uuid,'386','999',3173,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('049ee39c-efae-4f97-a8c4-3ff03aa0c4de'::uuid,'387','995',4337,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('620bb21f-b7b0-4f11-8353-404ec32c663e'::uuid,'387','996',4337,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f41f4c97-da63-43a6-bdda-8f0f87e75387'::uuid,'387','998',3496,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4c779791-18b1-4842-bb13-4b0b1b40b27c'::uuid,'387','999',3273,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5bc49c73-9b23-47a8-8dca-099a5075e7b1'::uuid,'388','995',4327,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8f1b55b5-1412-44a8-b951-da954ca7bd64'::uuid,'388','996',4327,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('35d60a10-7d77-4dfa-9bf9-7bb967365393'::uuid,'388','997',4070,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3fc2fe24-e4b7-4a43-8518-bd14f184973e'::uuid,'388','998',3486,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9f620df4-1e51-4928-a191-8c9005978860'::uuid,'388','999',3263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3d3684c6-f739-4944-83b7-a4358096ad26'::uuid,'389','995',4334,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a896216a-0e45-4130-ab3e-2bfef3793ac0'::uuid,'389','996',4334,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7721b39b-681f-4a21-a7f1-e0671bb12d6d'::uuid,'389','998',3492,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('51bdf420-e08b-4d94-a958-2e9928c711c6'::uuid,'389','999',3269,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ee1eb773-f154-4c19-a037-ca59f45abe80'::uuid,'390','995',4407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('91cdf814-8365-4313-8bc1-85a07619d3a8'::uuid,'390','996',4407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bf68e613-128a-4fab-9908-d722b0cd7ff0'::uuid,'390','997',4150,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9f366d0f-7fc5-4d31-ac0b-f97729b1e82f'::uuid,'390','998',3566,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('60848180-a7f6-48b5-9b4b-50e0f57fcdc2'::uuid,'390','999',3343,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9658a699-793a-4f29-a62e-24d7eaa0100e'::uuid,'391','995',4407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dea4d653-8988-477a-90b3-b1a2f4da4c98'::uuid,'391','996',4407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d8e04dc4-ac04-4bd8-ae07-4b290ce7c952'::uuid,'391','997',4150,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3501487a-bbfe-47bc-aa82-5e572e42c609'::uuid,'391','998',3566,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65a3f68d-b3b8-444e-8265-435f6a8bced8'::uuid,'391','999',3343,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4258b5eb-56a4-4344-91b2-37bd6ff5467a'::uuid,'392','995',4423,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4e98d080-f450-4043-b284-5222b6f3cbcc'::uuid,'392','996',4423,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('39bf0be1-8cfd-49d4-a992-e6897ae908af'::uuid,'392','998',3581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('72b8ce71-f113-42ae-a053-619e64bc3918'::uuid,'392','999',3359,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6a9a117c-5da4-4733-a3da-20772fef3315'::uuid,'393','998',3627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8874af70-7870-4d3b-a6d3-e8f17cc27134'::uuid,'393','999',3404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4d504d60-3ae5-4c78-bd52-1b50dabd7f22'::uuid,'394','995',4512,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('03a94105-811a-4913-9aac-845e8c701a03'::uuid,'394','996',4512,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b1f3aaee-932c-4a52-9b05-db6f967bbd8b'::uuid,'394','998',3671,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3f605d8c-066c-4a9c-8453-f3982ae3e0e0'::uuid,'394','999',3448,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b2e202c3-1415-4766-aa2b-2362b392ad1f'::uuid,'395','998',3720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a4c7dbfd-0248-4774-8089-6c1b51fa1b28'::uuid,'395','999',3462,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bbfad524-115e-4c8d-b70d-3cea9ccffe33'::uuid,'396','998',3642,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('35212846-1823-42a6-880e-2c7158a3b52b'::uuid,'396','999',3419,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('09f76f18-2dd0-4e43-b9cb-c92918cbced9'::uuid,'397','998',3301,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c13766d7-234c-4343-8635-f605e29ee8d5'::uuid,'397','999',3301,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d63262f-6efe-480d-afe7-da538ba2f82e'::uuid,'398','995',4689,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('739d7b3d-a973-4e3c-b7be-7eb8c847a1de'::uuid,'398','996',4689,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9a668630-ae00-4fb0-895c-0bfbdb51c567'::uuid,'398','997',4432,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e7a081e6-ee39-4ce5-affd-2acdc2d61100'::uuid,'398','998',3847,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('44ed0a3f-1486-4e5c-817d-d10564c154b7'::uuid,'398','999',3625,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0cf617c9-35d3-4a7b-bff2-d221de9148ce'::uuid,'399','995',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5b875a1f-78c0-42cc-a9d0-3693ee609b52'::uuid,'399','996',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('21c00a55-c156-4156-b557-86f2c2ea8286'::uuid,'399','997',4270,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('45714275-cd8a-48f3-b63e-8d329e2d1198'::uuid,'399','998',3686,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65e3db99-e414-4dbb-9e45-2718d3d710d8'::uuid,'399','999',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0b6b6b69-3e2e-4332-8bc2-ae4017589ea0'::uuid,'400','998',3335,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3e49c5ca-c4da-4b3a-923b-8d597cfbd38c'::uuid,'400','999',3078,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0727a48a-be59-4754-994f-8fb95a16283f'::uuid,'401','998',3341,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4718051b-39a9-449a-9c13-ced79f0776bc'::uuid,'401','999',3083,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('54d31015-f40e-4c88-b0e8-142339c6cc0f'::uuid,'402','998',3305,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0cb6d127-9fbe-47fa-bce6-aac3aa0965a0'::uuid,'402','999',3082,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b3b519a3-3f7d-43b4-9fa0-7e291d4492a9'::uuid,'403','998',3404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7e4ccb8e-6d18-40c5-84df-348088136caf'::uuid,'403','999',3182,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fd7ff97e-e63f-4a26-9e91-496e6e18b19f'::uuid,'404','995',4253,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bd135615-0167-4814-897d-52495f191e32'::uuid,'404','996',4253,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('75781174-dacd-497f-bd5d-9b78ce7d26d9'::uuid,'404','997',3996,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d9969580-e73a-4093-a2ad-46db983c04fc'::uuid,'404','998',3412,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8564954b-bedf-4669-87e5-5f6ed41cfc37'::uuid,'404','999',3189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cdb25c90-9781-430c-8e61-e0597a20dfa8'::uuid,'405','998',3374,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('72aaeb04-f851-4e03-bb3d-82ec2fcd22ce'::uuid,'405','999',3152,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb086be5-5ffd-4d7d-aa11-e64e48647517'::uuid,'406','995',4196,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b7da705f-13df-4256-b6b2-42d00fe1d242'::uuid,'406','996',4196,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e4722139-83e6-4cda-85fa-190680ccf092'::uuid,'406','998',3355,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1f4debc6-cbc2-4091-9d77-62a4f1e94771'::uuid,'406','999',3132,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('71ba2829-f7ce-47f6-8227-525e9e9545d3'::uuid,'407','995',4306,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb4eaeb5-08cd-45af-9e71-26e47f954692'::uuid,'407','996',4306,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a2808d72-b1b5-459e-b294-3633374ad8b9'::uuid,'407','997',4049,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1b69ea3d-0f0b-4253-9d53-2dbb2b9712cc'::uuid,'407','998',3465,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3ba993b5-f407-40b3-be10-c55a322d3c5e'::uuid,'407','999',3242,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2d5551d9-f603-4952-a44f-c5ca11387961'::uuid,'408','995',4364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4e86d8a2-2018-47b9-ba64-cd02346ccd93'::uuid,'408','996',4364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e35dacff-3abc-4c62-83fe-4514717f4d01'::uuid,'408','998',3522,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae113128-7c7f-4921-ae37-40a633b0cfda'::uuid,'408','999',3300,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4a924ec4-f174-45f9-92fc-108a524ac10f'::uuid,'409','998',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('18ae6bfd-158d-45fd-876c-c6d6236cad66'::uuid,'409','999',3240,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a64629e9-4113-4a8f-a45d-7d7fee5a98b1'::uuid,'410','995',4180,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc40dc80-9788-4f3a-8315-3d43c2603468'::uuid,'410','996',4180,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4e7d0a31-0897-4dbd-9bfc-06d781d6e699'::uuid,'410','998',3338,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3a582b75-bd77-4b6d-9fcf-62daf1e80aea'::uuid,'410','999',3116,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c867619b-5827-4264-8479-e8754cdb79db'::uuid,'411','995',4262,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('edc9a6de-f032-44f8-b696-8a422b21c856'::uuid,'411','996',4262,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('596dab0c-8ed5-4b8d-b9f8-6c4c418e76ca'::uuid,'411','998',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fdcee7f2-9255-415a-9bea-a42f63bd8f1f'::uuid,'411','999',3198,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1dd5d9ca-dd5e-48b3-ad63-171c45ccecad'::uuid,'412','998',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5891ddaf-0ccf-4016-9942-8cc16f7a2ac7'::uuid,'412','999',3262,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ab631f56-5615-4d99-866a-38ecf83e5e98'::uuid,'413','995',4296,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('886f4b0b-04b6-4334-8987-0277bd530b2a'::uuid,'413','996',4296,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c1ed16d4-c684-4077-9085-d772898a6b6b'::uuid,'413','998',3454,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5e9a4d72-6ddb-4210-81c2-f0b659e27ce0'::uuid,'413','999',3231,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('78562018-9569-4ffc-8e69-157f5fd32e8f'::uuid,'414','998',3172,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('499ba6ff-92f6-484f-8215-6ae68b0fd834'::uuid,'414','999',3172,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c6ade605-d894-4f30-8031-cea418adee41'::uuid,'415','998',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('26f50081-565c-4404-93c1-13a84ce8e660'::uuid,'415','999',3253,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33c2bc23-4bea-4870-8553-628484094689'::uuid,'416','998',3486,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('28c0132a-c8e8-45e3-81ee-02209fe7465f'::uuid,'416','999',3228,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('560ea882-9d14-4cfa-a7fe-b4711943c036'::uuid,'417','995',4327,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b77a31e8-3bad-46bc-b8a4-71b5b38eb700'::uuid,'417','996',4327,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f0fac9af-312f-4344-927e-c0a1187182a0'::uuid,'417','998',3485,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1ef9ae51-152d-487a-a552-0479dd0b3aaf'::uuid,'417','999',3263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('68b52011-ea47-47f2-9960-2252971d5b2a'::uuid,'418','995',4351,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7bc38cb6-c3f6-4902-9c79-0a70c079ffb9'::uuid,'418','996',4351,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce5cef89-d83d-43f1-b37b-54e661f42ec4'::uuid,'418','998',3509,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6a9454e1-1459-49d0-8731-1ac610df71d7'::uuid,'418','999',3287,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('acbd8889-41d3-49b1-8fbb-1843a1ff07a0'::uuid,'420','995',4177,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7b1a6954-6952-4af9-b9f4-b3a8dcf9094f'::uuid,'420','996',4177,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eb2291da-7df9-4d5f-90dc-ee4cf0c72f37'::uuid,'420','997',3920,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('31fac67c-cd18-4feb-8fd0-32a2ebdc6833'::uuid,'420','998',3336,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6cdfdf0d-c176-4bdf-ab36-ec254d4e7b14'::uuid,'420','999',3113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('76386ffd-6e65-456c-a315-ef8775eefa90'::uuid,'421','995',4241,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('951ce0dd-43ca-4d44-a520-ba6e40ebb0ee'::uuid,'421','996',4241,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f516a855-b106-4a54-8e01-e2f9a334ba25'::uuid,'421','998',3399,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a39386ee-b511-4e83-b7ab-25354c8e5d79'::uuid,'421','999',3176,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d26905ee-6a4b-47e8-99bd-737eec18aa87'::uuid,'422','995',4231,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f86d01f-4707-45c3-ba11-d799bb3b8a57'::uuid,'422','996',4231,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0085648d-e52d-4957-97a2-b9f5da9b29e7'::uuid,'422','997',3838,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d3de5b71-c9fe-43c1-a9b5-9dfabd649743'::uuid,'422','998',3390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0ea77a06-6f39-424d-b3b0-bccb53bc0b78'::uuid,'422','999',3167,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3b661e76-131d-4b69-9e43-96f1390b9365'::uuid,'423','998',3345,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d93e8454-4eee-4997-815d-22d4ba756602'::uuid,'423','999',3122,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ceff5bbf-e30f-47c9-8486-2ba9b18d6d1e'::uuid,'424','998',3317,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('df1a0250-070b-4f67-ab2a-18f22ea64aea'::uuid,'424','999',3060,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('13e9f2e8-9f1b-4b07-9b9d-a4af209f009d'::uuid,'425','998',3172,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4dc8ceef-6116-4b60-a039-11a7999bbe99'::uuid,'425','999',3172,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9aacf3a1-6238-4d37-ae01-5617b632b1bf'::uuid,'426','998',3456,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9f8080e9-1e5b-4038-99b9-acf83fb8fc50'::uuid,'426','999',3233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6c7f58e0-bfe6-42b7-84a8-79e757d892c8'::uuid,'427','998',3380,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b3089819-6515-4fd3-93b1-d0ecbc6077d3'::uuid,'427','999',3122,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('841c81f2-524b-4c13-9db6-c65980e3335c'::uuid,'430','998',3055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fffc060c-fffb-4254-93d3-8c3e8c765ff8'::uuid,'430','999',3055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6d5874a5-517a-4712-90c4-9f46846c89d8'::uuid,'431','998',3079,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3a25e0f9-cdfa-4dc7-8824-ce56e704d535'::uuid,'431','999',3079,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8f049ed1-8e43-474a-b0a3-96b22e7a6305'::uuid,'432','995',4163,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6774dd5d-9bc0-4ca6-8f01-d12847a412bc'::uuid,'432','996',4163,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d28aab05-1372-4013-8035-535d7dba7adf'::uuid,'432','997',3906,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ed3b8733-e2c3-48f0-b84b-c2dea94d5584'::uuid,'432','998',3322,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9451d51b-a66e-4a1c-ab9f-a33d742aa0c3'::uuid,'432','999',3099,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('362a6b37-3b96-4b39-ba99-6be12e8c2c28'::uuid,'433','998',3277,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3addeacd-7e3e-4dc1-98c3-d0195fdbf512'::uuid,'433','999',3054,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b65a76b4-acd5-41d5-a32c-60424ef3cce4'::uuid,'434','998',3000,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('78bcd8d4-444e-4ad0-8ba8-0fd4d081dda2'::uuid,'434','999',3000,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6d31037f-6862-42de-a94e-8ed23ffda565'::uuid,'435','998',3218,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('73399d37-ff56-45b1-90ad-14232c839d71'::uuid,'435','999',2995,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e812a4fd-bf37-4285-986c-ce1fda7fdd7d'::uuid,'436','998',2988,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('907e8091-5cb1-439d-ab94-1cf86771e40a'::uuid,'436','999',2988,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e1dac34-bdf2-47ef-ac80-fbef30791239'::uuid,'437','995',4233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('497172f0-d467-423e-b976-d961e603060b'::uuid,'437','996',4233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('77741c04-a634-4999-8b2e-2a0c2d2dabb3'::uuid,'437','997',3840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('72235503-4007-49d3-875e-dc72093d4aab'::uuid,'437','998',3391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0e6b612-b56e-41e6-a1ed-39d2a5ee8a6a'::uuid,'437','999',3169,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fbe81dc6-a4ca-4438-98fc-35a892a6196a'::uuid,'438','998',3114,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6b4c6b5-cc48-4d3f-9d8e-f0dfa1f6295e'::uuid,'438','999',3114,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fba0eb0c-690a-470d-8c89-3973a5472d17'::uuid,'439','995',4260,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3fe1240e-8ca4-414f-b55a-c9919451bb21'::uuid,'439','996',4260,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1c97c205-12a7-45b3-bdc7-c6ed5434919f'::uuid,'439','997',4003,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7fa0fa4e-20fb-4d0b-9fef-9d0472b46d8e'::uuid,'439','998',3419,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ac4bc474-6364-4b5a-82bf-36eb445428b3'::uuid,'439','999',3196,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4ed3ddcb-4aba-41d8-9df1-e1f29de3fe25'::uuid,'440','998',3363,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('67afe44c-345b-4ba7-8d49-d9dd28d827e8'::uuid,'440','999',3140,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('55ebba62-2563-4d93-bdb3-11ced1843a48'::uuid,'441','995',4191,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('bcfcd15b-29df-4b67-8301-fd6458afb41b'::uuid,'441','996',4191,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('69e68fa0-0c37-469c-9291-bdf7bad09815'::uuid,'441','997',3933,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('03fe8047-d1b3-4099-8b91-97c9000ee553'::uuid,'441','998',3349,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3705e99c-64dd-46fb-9583-9a42261199f0'::uuid,'441','999',3126,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('97611df8-afa4-49c6-9b87-cea918a22e00'::uuid,'442','995',4205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3cbe54f1-c190-46b5-b506-9643d086775c'::uuid,'442','996',4205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('390d67b9-3a08-468f-94ac-bf07ae1018b3'::uuid,'442','997',3948,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e0270ac8-875f-44dd-bcf2-b2b3e8cd8c03'::uuid,'442','998',3364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('757b84d1-0c54-4ad2-8048-730f21fedf82'::uuid,'442','999',3141,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fd7e8067-fd20-4eb0-8f70-03bb52aa0ac7'::uuid,'443','995',4205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4970ddf2-62e9-4f38-b965-5165f1d66ca6'::uuid,'443','996',4205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b5857226-60e8-4e7f-aa2f-7ee984595b07'::uuid,'443','997',3948,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('75a2a4f9-776d-4017-8bb8-a0c98bd9c415'::uuid,'443','998',3364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('daa44ed0-5959-430b-8138-e401a0b98e28'::uuid,'443','999',3141,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5a9860f4-051c-4334-a3c1-6aa0b07c11f6'::uuid,'446','998',3376,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4a51f465-d53c-45e2-8840-4315227c0433'::uuid,'446','999',3153,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8c27d610-e00d-4ba6-968e-cabf8ad37b0e'::uuid,'447','995',4220,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c24ad802-7b25-4131-9d01-8563c8abba31'::uuid,'447','996',4220,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6f70a311-7092-40f3-8bc2-fd7d49c33b44'::uuid,'447','997',3963,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d3c33215-1504-48d0-aaaa-dd127b0c1593'::uuid,'447','998',3378,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('01f1981d-f656-499c-929d-2ecb987e8b19'::uuid,'447','999',3156,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('35d49a13-1d9a-4144-9eb4-e2c154a955a2'::uuid,'448','998',3305,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2050e916-57ef-40f2-beb4-60840a21219e'::uuid,'448','999',3083,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dab946e1-0736-4258-ab9a-93015ed823cd'::uuid,'449','998',3320,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7115450a-85c2-44d8-baa0-4754c1df2593'::uuid,'449','999',3097,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88370dd9-4e5c-4b38-8ae8-a665f6d13c61'::uuid,'450','995',4128,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bfc84ff1-6eb8-4f21-b1f8-c3bd107bdd9e'::uuid,'450','996',4128,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('be7f1e79-55e4-4872-80ef-48ee275cc9f2'::uuid,'450','998',3286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('81690508-4669-46d9-965c-e77cd05eac88'::uuid,'450','999',3064,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4405fb5d-c1fa-4ac8-a4e3-89f51c598ad3'::uuid,'451','995',4171,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('cc86636c-7715-4a56-9c81-bd83f0bf7bdc'::uuid,'451','996',4171,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5fbeff0b-5ea7-4ae7-8cde-18165d3e31a0'::uuid,'451','998',3329,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('83e57663-ed01-44a2-90d2-a5ca05d8e339'::uuid,'451','999',3106,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a9b58721-7d7f-4944-9649-5a178be09fde'::uuid,'452','995',4143,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('523d05a3-158b-4410-a64b-a4d6ca988d60'::uuid,'452','996',4143,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6addf6b-7a54-4a90-aacd-01c102ae0854'::uuid,'452','997',3886,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f86a8977-2c6f-488f-a0b4-063dce981d0c'::uuid,'452','998',3302,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1464e778-f959-44b4-b82c-d180b78bc499'::uuid,'452','999',3079,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7d0bf931-e8e9-48de-bcb1-5d768e4f82df'::uuid,'453','998',3010,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('48787c92-a71a-40e6-8a5b-72eb5f69ce2c'::uuid,'453','999',3010,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0e759d8c-1249-4739-8e8b-c00c8c235db4'::uuid,'454','995',4126,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4498c00f-39bf-4e84-b8cb-28dd82d3aebf'::uuid,'454','996',4126,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('38038b36-8838-4fce-ab6a-1759ead4e2fb'::uuid,'454','997',3733,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('31113846-b614-44d2-92b0-e2f4f5f18ed9'::uuid,'454','998',3284,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a242fbe8-2630-45e4-aadb-bc29d1e1718e'::uuid,'454','999',3062,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('69853267-b14e-4040-9b3e-d1ec559d1560'::uuid,'455','998',3034,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bd5e40c7-7232-4446-a3b5-d472927fc998'::uuid,'455','999',3034,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d0c3b19-0f22-419a-bf32-bd5cf703bcc6'::uuid,'456','995',4226,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b0a692d6-e2cb-4f34-9376-4ae070a5a045'::uuid,'456','996',4226,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6069e77f-24d6-4335-bbab-083e5d9a6886'::uuid,'456','998',3384,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0c96cff2-fd9f-4ed5-8c12-882de16ddb69'::uuid,'456','999',3162,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('158e10de-3954-40f7-ae7c-4b47cb96f382'::uuid,'457','995',4265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c1e3520b-d80c-4c57-a25d-9620bffbd905'::uuid,'457','996',4265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a437b1e2-23a9-4500-bd7d-08639a453bdd'::uuid,'457','997',4008,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('99828035-60ff-4781-b577-3b32e9078bab'::uuid,'457','998',3424,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e62c8a6-be42-44c1-93d1-36f367bad859'::uuid,'457','999',3201,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('670d8551-6059-4ff3-807e-834aee3b8ab7'::uuid,'458','995',4075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1035551a-d7b8-4695-ba0d-ed6fae3615c6'::uuid,'458','996',4075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6c0e1c0-a369-4674-9a63-966c05c5e526'::uuid,'458','997',3818,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2a156a5c-1b53-4ff8-b0ae-57611b33ee89'::uuid,'458','998',3233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('104fc361-570e-4712-a993-2e22013fbbea'::uuid,'458','999',3011,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d7c5d3c7-4caf-40e7-9205-21ccf1ef6a07'::uuid,'459','995',4143,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d9de9789-b22b-4191-a9e7-e701673c0b00'::uuid,'459','996',4143,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('935df46a-3780-4670-a0ad-c90aaf5f1267'::uuid,'459','997',3886,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('db1309c6-5411-4023-bc03-b434ce64e5a5'::uuid,'459','998',3302,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f8f79bc2-4985-4191-9f83-4ed4e32065c9'::uuid,'459','999',3079,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a8d68bef-6b87-4661-b576-71972bdb35a2'::uuid,'460','998',3184,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0ea02bf1-ae6b-411f-8c24-233ef3f24c6d'::uuid,'460','999',2962,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e272f2c8-764f-4e13-91ed-e7e74be4ad55'::uuid,'461','995',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e187754-bff3-43db-ad3d-a7a0643f48f7'::uuid,'461','996',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3cf436f3-380e-4c82-8c3a-435d8b77244a'::uuid,'461','998',3213,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2b24e854-55ed-4884-8534-57f162b8167e'::uuid,'461','999',2991,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('03f4c248-0f3c-4614-be27-de0307d1667e'::uuid,'462','995',4033,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f5c226c5-0590-42fb-aa30-a90b7eb6db5a'::uuid,'462','996',4033,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f302f242-99f3-4eec-8121-6af20d8b3a5e'::uuid,'462','998',3192,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6392d265-6444-45df-b6c6-a5f1a4f0be16'::uuid,'462','999',2969,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c0532ae4-7cd0-4091-bc10-4b5a35d9fcd2'::uuid,'463','998',2803,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('36cffc74-5e99-44cc-8b2f-4707f1f22944'::uuid,'463','999',2803,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ee7599a1-3a87-42bb-ae38-24db1fa78c87'::uuid,'464','995',3883,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6f28a03f-6658-41c2-8407-d1d1f641767f'::uuid,'464','996',3883,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6bc077f6-da5a-45a9-b75a-295082a62278'::uuid,'464','998',3041,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('81ea8513-e227-40a3-b3aa-8134d3226369'::uuid,'464','999',2818,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2aa13f13-f4c4-4bd5-9b70-1f1a50e8909b'::uuid,'465','998',3117,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ff9520a1-ac61-40f8-9c31-dd3ce0c2337d'::uuid,'465','999',2895,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ada7e311-befe-4ce6-80d7-e94ac2cad1dd'::uuid,'466','998',2844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ef122620-668e-4a05-bc02-28b99e6f995e'::uuid,'466','999',2844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da4261cd-c73b-4e3c-9b44-c4e402d454ab'::uuid,'467','998',3176,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('91e0ec97-321a-41f2-b6f0-e6e784eac949'::uuid,'467','999',2953,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6232335c-3c53-454f-82b6-68b204ad2e4b'::uuid,'468','995',4011,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e5a7c93-e1bf-465a-9110-32b116cdf69a'::uuid,'468','996',4011,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('dd9014f5-4ecd-477d-90f7-546f20db046a'::uuid,'468','998',3169,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a5aedf84-02cb-440f-a0f6-200f0e7ffdfd'::uuid,'468','999',2947,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9ffc5db2-911c-4f44-b90d-5a64c6a7e828'::uuid,'469','998',3152,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a8149aa9-face-42be-b6b8-68d8de6ad635'::uuid,'469','999',2929,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('32723175-e1d7-46e6-8d70-f84509e0deb1'::uuid,'470','998',3008,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4d1ffc11-9255-4fd1-bcdf-dcb183635c7b'::uuid,'470','999',3008,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f84580c2-8ee3-4171-9445-f7a1d7860535'::uuid,'471','998',3296,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('55a0a192-0669-4abc-b23e-cad10412b5c6'::uuid,'471','999',3073,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c2374335-48f9-4b80-8578-720627a41f6c'::uuid,'472','998',3255,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('559c811b-2819-4fef-afbe-efb5295fe888'::uuid,'472','999',3033,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1f858580-b1bc-4703-897c-9947aee10580'::uuid,'473','998',3233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('afcdef01-3f2b-4361-b740-50e94e87f185'::uuid,'473','999',3010,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7d606349-c417-47e7-b9ca-79280055398a'::uuid,'474','998',3247,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e67e2593-d1aa-438c-86ab-ce756f0aff81'::uuid,'474','999',3025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('741cf3c1-8248-45db-a1fc-f0224ad125c8'::uuid,'475','995',4123,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9e85d554-8e86-4aa4-913d-fa2d4c57cd43'::uuid,'475','996',4123,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a350daba-291c-44be-be0a-47da9bcdbe21'::uuid,'475','998',3281,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('263038f9-6480-4eff-a55b-b7d135992f15'::uuid,'475','999',3059,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('44f683b0-9005-44fc-bd24-97893a77ee4a'::uuid,'476','995',4142,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b7a1b344-0dc7-4f95-8138-5daada4d3bf4'::uuid,'476','996',4142,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8994e86d-a997-4fde-9e6f-9ed0220fca0c'::uuid,'476','997',3885,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f34ea4a1-051d-4ba8-80a1-82b3264b525e'::uuid,'476','998',3300,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ffbf2cb-d825-467c-950e-e0aaf0bd33fd'::uuid,'476','999',3078,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e3267571-baf6-411e-b579-fc5232f5fc66'::uuid,'477','995',4131,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('68696564-8c0b-470c-ab8b-ac2060e6a268'::uuid,'477','996',4131,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e6672af8-fc94-4223-a827-d0f2b3faaf33'::uuid,'477','997',3738,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('236a3d78-6ab0-400c-9856-e21e849d66b1'::uuid,'477','998',3290,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fae4e74b-c563-4f1b-bf5f-9db58fec4261'::uuid,'477','999',3067,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('931aa427-a87e-4507-8957-177021bcdec0'::uuid,'478','998',3199,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7c51b9a3-912f-41e2-9a28-4f0dee5f10a8'::uuid,'478','999',2941,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5a8b2315-743c-4eb9-8f23-48fa12b8e493'::uuid,'479','998',3120,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb71bd10-ad5d-4a36-91cf-e6100339f01d'::uuid,'479','999',2862,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6f025fdd-a879-4f60-8258-3d3bc38d6d33'::uuid,'480','998',3272,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e8332147-9e46-4537-b8c7-9aa4bb43e503'::uuid,'480','999',3049,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('84600821-6909-4628-88b0-bb359ffa6fb7'::uuid,'482','995',4112,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ea307d8e-f7e2-4553-9fb4-35a69d0c8d6e'::uuid,'482','996',4112,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b2b614e3-faaa-4517-ba84-d75d52e25006'::uuid,'482','997',3719,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6c55f93a-13b1-42e9-8358-4ad0f206646c'::uuid,'482','998',3270,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('90bc35d8-d08c-4b9a-ba88-5d11efa42e83'::uuid,'482','999',3048,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('079c9d3b-76bc-41c6-bfb9-f7661ec86138'::uuid,'483','998',3243,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6c3ac99a-3d5d-47c7-b737-337161a3a129'::uuid,'483','999',2985,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a79a551c-9c6c-4cd7-9112-d39aca738650'::uuid,'484','995',4050,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aebda3cf-6ea2-4bf6-ad96-93da730e3546'::uuid,'484','996',4050,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bd653868-6cfd-44bb-9290-3c9a927c47b7'::uuid,'484','998',3208,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e20f15ce-e68b-4750-98cd-f41a93bbf75b'::uuid,'484','999',2986,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('67b9d13b-ebf5-42b1-b136-6f198ba071aa'::uuid,'485','995',4050,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b358cf08-cbd1-40d1-b993-6be0269d024c'::uuid,'485','996',4050,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a5084f12-a1b6-4751-88af-c9379f11a4fb'::uuid,'485','998',3208,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c2a75629-66fc-4408-b370-b7747b3e908d'::uuid,'485','999',2986,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5d114014-d769-44f4-bde6-062b197b4162'::uuid,'486','998',2877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a6be3c1a-cedf-4326-bb58-203b84769614'::uuid,'486','999',2877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f861d0e0-d238-4bc6-a4a3-43f06b42b53e'::uuid,'487','998',2877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ef2135d2-4d1d-4327-bf00-1422ac86b1fa'::uuid,'487','999',2877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ebb4ec89-637a-439f-ba0f-4ecc0007f0f5'::uuid,'488','998',2932,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6d361b03-ffe7-4ad5-9be2-0b5ab306396d'::uuid,'488','999',2932,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0545c810-055c-4dae-a539-9ce918835424'::uuid,'489','998',3212,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da2fa586-c5e7-4071-970c-2a78086a6e1a'::uuid,'489','999',2989,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a3654db8-d43e-4e4a-a99f-6ba36dd6b775'::uuid,'490','995',3996,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f71dad92-a607-48f3-b318-b70e5684e18e'::uuid,'490','996',3996,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5823d39f-0fe7-407c-be58-f94fe8ff8ac6'::uuid,'490','998',3154,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('54a13975-0f79-4ea8-a704-665cfe64d575'::uuid,'490','999',2931,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f9a75e6-b150-41f6-b321-448b5d8ec223'::uuid,'491','998',3103,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('07130ca0-bb6e-4389-9ae8-649c9af0cbcb'::uuid,'491','999',2880,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1998b7a5-8cee-45ef-a199-9267a95a115b'::uuid,'492','995',4052,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1256f315-a443-4a44-83c4-f29bcbe47ffc'::uuid,'492','996',4052,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1fce37ef-ad2d-4893-8573-9e3e034a7e4e'::uuid,'492','998',3211,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ad50629b-552b-4942-9e40-71558f9db0aa'::uuid,'492','999',2988,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5901d033-b048-4955-96d8-c24ff5c9641e'::uuid,'493','995',4025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b248a7c2-5827-464b-8ce0-ffbb124f1da5'::uuid,'493','996',4025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f85a7369-ef12-4286-beff-11a1c0216710'::uuid,'493','998',3184,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6c6185f4-f655-4180-8b5c-963ec15cb432'::uuid,'493','999',2961,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f3e03e0b-1dd0-4a6e-9ecb-6c943fa6066d'::uuid,'494','998',3192,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('282c91aa-8ad5-40f7-8406-97b39eb41716'::uuid,'494','999',2969,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9f105d8c-edae-4e97-9555-f1fa54b8978f'::uuid,'495','995',4025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('465b025e-83f1-4f25-a6e6-52ba14c14271'::uuid,'495','996',4025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d7d49732-893b-4ca0-9bda-cfc27d3a6931'::uuid,'495','998',3184,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bcfb0e26-f0ea-4285-9c1c-352f4b09a805'::uuid,'495','999',2961,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('74c42e4a-d161-441f-8bf5-9d2b7278f584'::uuid,'496','998',3097,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e5de919a-35fb-4c38-8a5a-3a174b664c6b'::uuid,'496','999',2875,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bc862f5d-c95f-4dea-bf52-ce194ea364a4'::uuid,'497','998',2985,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f5ace281-b626-4811-b049-f8d6b968c67e'::uuid,'497','999',2762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d9448715-cfc8-4f28-a07a-dde3d6f28ea0'::uuid,'498','998',2594,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e0853c83-5aff-498e-8916-8679fc8eb995'::uuid,'498','999',2594,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a7eaca52-1f79-4d92-8e3b-074071657a2c'::uuid,'499','995',3567,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('293db368-968a-44e0-838b-f54e7d572111'::uuid,'499','996',3567,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0876cfcc-dd14-4488-972f-7486910993f9'::uuid,'499','997',3310,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('308e4839-498b-4331-b80e-2f1c48d3ff42'::uuid,'499','998',2725,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('59017588-5a5e-41f0-85de-109db0c05688'::uuid,'499','999',2503,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f6d165b7-ca2b-4eb2-8cb8-1a0ab5b2d6a5'::uuid,'500','995',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc7bd7f9-097c-433c-a14b-8a28105c5998'::uuid,'500','996',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('11c05742-0a71-4653-a7b0-414a3a31148f'::uuid,'500','997',3298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('85040b1b-6033-4c0a-b475-76c20908d5cc'::uuid,'500','998',2850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ebcdb609-7d9f-48df-ada7-70a1e50c232b'::uuid,'500','999',2627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('50f3bf41-59ca-4306-b69e-1b44dd930642'::uuid,'501','995',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('53898e62-1c3e-47eb-81c9-87022698770c'::uuid,'501','996',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae6085e3-98be-416d-953d-9c0659c6c74c'::uuid,'501','997',3298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('20d08c22-14cc-41fe-a198-29d41feda4fe'::uuid,'501','998',2850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f7747373-d741-49d8-a7e4-00e7fb5bf204'::uuid,'501','999',2627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6aff899c-d16e-4250-92d6-273b8d31a522'::uuid,'502','995',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('05b16f5e-4e39-4f4c-b36a-e6bcb01703a1'::uuid,'502','996',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8673ea86-f275-4f09-bba7-13cf1a3fcb82'::uuid,'502','997',3298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9ce0348a-0c84-4cdd-b0b0-95b20d0139bc'::uuid,'502','998',2850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7e3ea40d-cb60-4279-b6a4-65afef4b4495'::uuid,'502','999',2627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b592d2ff-7ca0-428b-941c-20a467f6e843'::uuid,'503','995',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9e51abe4-6ad2-4d3d-8c23-0c1d29acdaec'::uuid,'503','996',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('66e27e3e-0fb5-4852-8186-f037e341b353'::uuid,'503','997',3298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c5d99678-9559-45db-9024-d8cc459f404d'::uuid,'503','998',2850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('87e29bec-1b23-4a98-937f-457af738bb51'::uuid,'503','999',2627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('672a0156-9f4f-4da2-b17d-f95b13e6ad14'::uuid,'504','995',3581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('08b903e4-fc9b-442e-8321-f880c9f4c2ca'::uuid,'504','996',3581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fcc89834-78ac-4096-8b6d-55b56e90151f'::uuid,'504','997',3324,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('682736f7-72ec-497f-a190-5f68aaa9afb2'::uuid,'504','998',2739,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b02a1030-44dd-4c03-b6a6-c7726b317e94'::uuid,'504','999',2517,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('90e11ed7-df73-4c1d-ac3a-312fd16b14ec'::uuid,'505','998',2723,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('25d5b746-85b2-4aab-8780-b62800a14e6f'::uuid,'505','999',2465,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ace4d766-5305-4925-a2ba-9d06ad8010af'::uuid,'506','998',2538,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5e49e17f-4c3d-412e-8455-d95331be33ae'::uuid,'506','999',2538,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9af983f0-01c2-4d0b-8828-4620bc70fd78'::uuid,'507','998',2550,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c5d8f994-194a-4a5c-91c9-449f1c988a6c'::uuid,'507','999',2550,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('db4540c1-8664-41ac-8d39-21dfc263d48d'::uuid,'508','995',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e3d7539d-726e-4219-b3b2-c672111552e7'::uuid,'508','996',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('051a2ecb-0aa1-4a04-ade4-aedd93739dc5'::uuid,'508','997',3284,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('28fa3e2a-9a3a-4074-bb6b-e2caa662ee79'::uuid,'508','998',2836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('560cac6f-d809-4954-b41b-b9caa64fbd5f'::uuid,'508','999',2613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7a05a2a7-0ae6-46bd-9c14-0d98c07f03bf'::uuid,'509','995',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ac2e33b-7160-4940-aaa2-f4465d2c16ac'::uuid,'509','996',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b7658de4-dfb0-4a08-a0f4-b4c1df11f25d'::uuid,'509','997',3298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('78037109-49b4-42a9-a4fd-4954f0175ace'::uuid,'509','998',2850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cd35fc2c-321c-49b0-8dfc-073e2132da46'::uuid,'509','999',2627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88d5a085-a611-4a48-988f-5e405f9f2118'::uuid,'510','995',3541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('392735fb-85bd-4319-a893-4bc756bec532'::uuid,'510','996',3541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f5e311d8-bf65-4337-a0bd-f915860a86b3'::uuid,'510','997',3148,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4ee5a825-794c-4cd4-8cc9-53de90cb6a0d'::uuid,'510','998',2699,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d83b8992-cd33-4574-9099-7beaea15c5eb'::uuid,'510','999',2476,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7c7de705-37c2-4379-ba1c-189daf503304'::uuid,'511','998',2667,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7de18435-a6b4-45ea-b6d2-8b65d92aa9d2'::uuid,'511','999',2409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb9bb9c7-92b4-47ed-ab6c-b5245e2ffb0a'::uuid,'512','995',3473,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6ca08dd-95f1-4b32-9026-f1f7f570e021'::uuid,'512','996',3473,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b0ec1b5c-9442-49ab-8854-8ff675e1c649'::uuid,'512','998',2631,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('01e02d1c-794a-4a9d-98aa-4933fa2e3d5a'::uuid,'512','999',2409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e2c3ab5c-0f7f-4645-9bfc-3c4c36a84074'::uuid,'513','998',2667,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d37ca22-75b3-4dbe-952c-754d86ed0d57'::uuid,'513','999',2444,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc8ed47e-fde9-456b-8378-3607ed0ca476'::uuid,'514','998',2500,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1bd277fd-ae1e-4496-b195-900f8269512f'::uuid,'514','999',2500,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('37d5fca0-45af-4333-8d4a-2cac80a71bfe'::uuid,'515','995',3615,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d9c6b6a6-e8b5-4a49-a087-996ffe3a6744'::uuid,'515','996',3615,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4797eb1d-4085-40bc-8131-e2489f2f12f2'::uuid,'515','997',3358,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('deed655b-6136-4828-a0af-c18a111fa6ae'::uuid,'515','998',2773,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33e55130-8fa1-4cb1-92ea-c813dd96fae5'::uuid,'515','999',2551,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f854cc80-23fe-4f07-88d6-d8ecad4e0b6a'::uuid,'516','998',2817,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('624dd381-7631-4b18-a112-f44a11057a13'::uuid,'516','999',2559,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('80e9861a-f128-48ca-aaa1-55f17dd55d7c'::uuid,'520','995',3696,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('97163bf2-7471-41ad-907b-f71cf540fc85'::uuid,'520','996',3696,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('72edd028-6546-46e0-b695-08b1537a7091'::uuid,'520','998',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e5bcec1-936a-4418-aa6e-8288d5d1bc44'::uuid,'520','999',2632,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da44bc22-9bff-4b7d-9bf7-a1447aeb9356'::uuid,'521','995',3615,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9b11f426-4d48-4dbb-aaa1-de753947af50'::uuid,'521','996',3615,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('07b91069-3674-4a27-975b-6967a43bf4ad'::uuid,'521','997',3358,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('52a84590-f1e0-4392-986d-49ce670500a7'::uuid,'521','998',2774,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1693e341-df34-4eca-bfd3-7b9b1ebe1bb6'::uuid,'521','999',2551,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a36ec8f0-8b6f-4259-9340-000bb7ef1dff'::uuid,'522','995',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1715a64b-99da-4c88-84a1-559b96ac6399'::uuid,'522','996',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('364374e3-a6b1-4023-b15e-970a03f3e7af'::uuid,'522','997',3447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8b6b6ff8-4093-49e9-b3e0-26f92b6a897b'::uuid,'522','998',2863,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('18cef7f3-cee0-4352-aa42-8e82ee72ff61'::uuid,'522','999',2640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f6184722-426a-41fa-b444-5c8edba78c22'::uuid,'523','995',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54a5578a-e383-4ccd-b236-a8bc3e739ca4'::uuid,'523','996',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d062465-28b7-479a-99c5-2e73e9a735cf'::uuid,'523','997',3447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb7801c5-01ec-42df-a1e7-f405977282c6'::uuid,'523','998',2863,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('83569f57-af7a-41f5-bc46-6150badbd233'::uuid,'523','999',2640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('bbfb6b63-f44c-4fae-ac0f-2bfb0fc29614'::uuid,'524','995',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6da75008-3d6f-4bab-81eb-976a72c2b3dd'::uuid,'524','996',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eb6aa045-898e-4f44-bfba-0e07e118aa59'::uuid,'524','997',3447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7b406496-2351-4ccb-8b24-af541a942eba'::uuid,'524','998',2863,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e5e93ecd-96f1-4dca-856e-4993078d38f0'::uuid,'524','999',2640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('045b9b90-7d1b-4a97-86a0-a13b02749775'::uuid,'525','998',2925,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ed775a7f-d766-4fd6-967e-f6796ded10c9'::uuid,'525','999',2702,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1d875264-80b3-42e0-b094-c6cce7e9c36f'::uuid,'526','998',2937,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d7505e80-0d1c-41a9-b6c2-102fc97d534b'::uuid,'526','999',2714,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b375919e-70b1-487c-b91c-cbc5c93f1c15'::uuid,'527','998',2644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4565e818-0c63-4994-8813-4daa97b6256a'::uuid,'527','999',2644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('584b7841-227c-481a-966d-bc5054c5176b'::uuid,'528','995',3782,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d232818a-c7d2-4686-a9a7-c0b20c80c2bf'::uuid,'528','996',3782,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a5803583-470d-46b4-b5f1-abc036add53e'::uuid,'528','997',3389,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b978a5e3-16ff-4f32-a379-a02f44b4437c'::uuid,'528','998',2940,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4ce63fa2-a1ae-4fdf-b10c-7a6a8626348d'::uuid,'528','999',2718,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a220e2c3-b9d4-4811-8490-fc55aa19583f'::uuid,'530','998',2660,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2650f692-2775-4b1d-9858-2242f0f7fec2'::uuid,'530','999',2660,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8fff39dc-7e29-4fcc-940e-c0732ad4d8f0'::uuid,'531','998',2944,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5143dc2e-3882-4480-a72f-6fbb85d6b823'::uuid,'531','999',2722,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('154e2b80-9a5d-4d7c-9186-af81551379c5'::uuid,'532','998',2942,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ecb3aa04-6de2-4afd-905e-be5c922f7e66'::uuid,'532','999',2719,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0b6d8c62-3bb5-447d-aa6b-f2df6c44e96e'::uuid,'533','998',2942,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dfefaffd-d3a8-4d3a-9290-cb91c1914ba7'::uuid,'533','999',2719,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('95eefb0a-18e0-4a3d-8a12-0bba2669addc'::uuid,'534','998',2968,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('443e9d2d-798f-4971-9a39-cb02d8de9903'::uuid,'534','999',2710,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b9a3faa3-a369-4087-b5d0-3b576e12cf71'::uuid,'535','998',2884,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('82cd8ee9-59c5-48c9-bf64-537e195a2832'::uuid,'535','999',2661,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('281c409a-768a-47e2-958b-45ac1711ee78'::uuid,'536','998',2880,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('52727088-9d26-4c48-b7d7-8749e086ab21'::uuid,'536','999',2657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5d59aa46-101c-4ebb-bc8b-3e1fde9e71e4'::uuid,'537','998',2880,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e0a74cf0-51af-4be8-8327-48488e25f625'::uuid,'537','999',2657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8134b658-70e0-4447-8f88-97def9eabffe'::uuid,'538','998',2840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d1dc09fa-9f73-44c0-8926-4739cce8e4be'::uuid,'538','999',2618,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('307cc6f9-760f-42e9-b6f7-d41a8c318df2'::uuid,'539','998',2846,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b551bad6-ac5a-4940-aa87-8cdd2333743c'::uuid,'539','999',2588,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c297c89a-4076-49cd-9a38-690d936b2aa5'::uuid,'540','998',2657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('32ce3c5f-4677-4c82-94c2-97e756e655fe'::uuid,'540','999',2434,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9d6ace54-5385-4a98-bc19-2b2e6bcc9c40'::uuid,'541','998',2584,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('05badb97-1bd6-4402-8622-6cd3c46cd0ea'::uuid,'541','999',2584,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4d066efa-2832-40a5-a5a9-4c1b9c113d28'::uuid,'542','995',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da78b8f8-b9c8-443d-af62-9054febb398b'::uuid,'542','996',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3361e7b9-2362-4d26-b733-48cdd264ca98'::uuid,'542','997',3505,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5675ed58-620a-4a29-98a3-ff913f496355'::uuid,'542','998',2920,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('509da96f-3093-4153-bcd0-47d883f8b4fc'::uuid,'542','999',2698,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9c50c2f1-ea66-4b01-b7dc-700ab2d52be8'::uuid,'543','995',3730,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a9250ae5-591d-4d98-bbe5-87748b33d893'::uuid,'543','996',3730,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cac1ceef-e647-4733-962a-25fe7e58a685'::uuid,'543','998',2888,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e4dbe36b-b057-4ea0-8c7f-b948fa7a1d34'::uuid,'543','999',2665,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c3c52f83-0181-42d4-9390-44c62a594e11'::uuid,'544','998',2536,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d032616a-b99e-46a5-9f04-e874d1ae8d24'::uuid,'544','999',2536,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('564ffd53-0df4-4ad9-8e6f-8a65294a7e93'::uuid,'545','998',2470,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8268090b-9acc-4e8a-91d5-14758590c154'::uuid,'545','999',2470,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('56e54fb9-b73b-4f24-b59a-3687afbca812'::uuid,'546','998',2524,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f19e38ce-1db1-4521-a222-6bceb8186baa'::uuid,'546','999',2524,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0bc664ed-cdef-4665-9a46-d56ce1df89f9'::uuid,'547','995',3544,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e4d14354-19da-4bce-99bf-b8b921c14a03'::uuid,'547','996',3544,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b42dab02-79f1-4856-b5c9-1fbd1ce3c648'::uuid,'547','997',3151,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae710a5b-ee1b-4d72-aa33-bc3e4150956b'::uuid,'547','998',2703,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3204b758-5cb4-49e5-9089-8b9c7fc52f17'::uuid,'547','999',2480,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d357470a-36b5-49f2-b128-6208147ed14f'::uuid,'548','995',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('07f6729e-e0f2-4dbe-954a-72ec0cc2b855'::uuid,'548','996',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1a256afb-77fe-4fe3-b8d1-b54296ac43ff'::uuid,'548','998',2642,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ac534684-53a1-47ac-8af2-ae9bb1989f59'::uuid,'548','999',2420,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('862a322b-9b63-4fa4-8f00-43e39ff7eabc'::uuid,'549','998',2580,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('430dde37-491f-4748-b232-7b9ef03d85cc'::uuid,'549','999',2580,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4e1d3a37-5ce7-4e8c-b3ce-e77fc2f0ad1e'::uuid,'550','998',2372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1573c59f-bf00-4184-86cf-117ba40420c2'::uuid,'550','999',2372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eaef8804-a559-4db3-b264-11210bd0a612'::uuid,'551','998',2361,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b4a2c77d-0eb5-46c3-8e5c-93a20a25f641'::uuid,'551','999',2361,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e1258ac0-e9e7-4f7d-ae41-570109837123'::uuid,'553','998',2589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7aaf3717-7c83-4113-8cf5-5f8416401bef'::uuid,'553','999',2366,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e47c2a66-a16a-4b97-9776-970ffc670747'::uuid,'554','998',2611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fdbf6c2a-cde0-42f4-ae17-700a8ac52d7b'::uuid,'554','999',2389,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2d6b1b6d-771f-4cba-912b-3d732e68ff3a'::uuid,'555','998',2589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a4cdcf69-79a6-4f0c-8b27-8b36264ba3c7'::uuid,'555','999',2366,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8f0cd533-bb45-49b2-a755-abbc95fcf1d8'::uuid,'556','998',2651,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dc157c16-3ab2-4426-b193-62664ca797bb'::uuid,'556','999',2393,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e176ab82-d911-4316-85d5-23fe05a2aecf'::uuid,'557','995',3362,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a9df31a4-207d-4f91-a395-1dca7d339c63'::uuid,'557','996',3362,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0ee2d61a-58d4-4177-a3a3-1c8abb89e23b'::uuid,'557','998',2521,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f3ffd31f-db57-4cec-87be-7f92c9d872f4'::uuid,'557','999',2298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2f316561-b131-40c2-9780-280a3eb0ef5e'::uuid,'558','995',3411,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('07cdd2a7-0ab7-4490-9b21-bb17bb66289b'::uuid,'558','996',3411,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1cecbb52-c01c-47bb-b342-515ec5167364'::uuid,'558','997',3017,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a58cd870-34c3-447e-8a64-777350ca77d8'::uuid,'558','998',2569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8537d37f-d2c8-4541-a6cf-2f26d2bba7cd'::uuid,'558','999',2346,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('52cc86b4-123e-4315-bdbe-520ef59a67c4'::uuid,'559','995',3556,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('47228aaf-640e-490e-a669-cbd088fd3340'::uuid,'559','996',3556,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3cd4c910-8316-4857-9042-8483b601e5a5'::uuid,'559','997',3299,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('42034574-4ba2-441c-9a8c-3ff316feb834'::uuid,'559','998',2714,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('744093c5-b0d0-4ce5-98a2-c1fe24745cbd'::uuid,'559','999',2491,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8a23c3a4-1ed7-4a01-9ad8-2fdf84c0f19a'::uuid,'560','998',2645,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f8feae52-93f4-4402-a396-8996fa2b4a46'::uuid,'560','999',2422,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('badbb6ed-829e-448d-a8bf-be3aa63165e8'::uuid,'561','998',2336,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b678d686-b8f2-4f22-a872-d56fc8f1ff5f'::uuid,'561','999',2336,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3606cb9f-eb9a-4d38-a7da-5727e7af78a0'::uuid,'562','995',3350,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('093c06aa-2f54-4108-b3e3-bfb9995c8032'::uuid,'562','996',3350,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1ea03b2f-c45a-48f1-b754-e3e424a15159'::uuid,'562','997',3093,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5c6d0706-4d6d-4a53-ab43-0da43df1cf10'::uuid,'562','998',2509,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('92e98c7d-0771-461b-b6f3-e7f591f182b9'::uuid,'562','999',2286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e9e033c3-e258-4ca8-81b4-9f1e47e64b0f'::uuid,'563','998',2506,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e013fa19-d374-4a66-b574-443a03e0cdea'::uuid,'563','999',2248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('23874d4e-1365-44ae-853b-7a6f8efdc310'::uuid,'564','998',2490,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5323124e-0e44-4b60-b7af-4867237dde6b'::uuid,'564','999',2232,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('091f8b2f-01a7-4142-bb8b-90f630f28a66'::uuid,'565','995',3263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('82ae642a-ab2a-4081-9993-d34207a02295'::uuid,'565','996',3263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('03a071e8-1b3b-4f3e-a706-e186d016927b'::uuid,'565','997',2870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fd8cbbd4-25ce-4290-9fa9-608eae305d28'::uuid,'565','998',2422,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d8136a4c-dbc3-42d2-9f5b-5731fb274c1e'::uuid,'565','999',2199,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e7d0d72c-3474-4bd9-bce5-838ac46ca3b6'::uuid,'566','995',3274,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d002bef4-b344-4d7d-95f5-2abe3bf44774'::uuid,'566','996',3274,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae624527-b3ba-44f9-b52b-771333f3cfbf'::uuid,'566','997',3017,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('01447a9d-40fa-4e97-b74e-9e8f56f9b237'::uuid,'566','998',2433,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8ba9c60a-f7ee-4fec-a9c2-394040d87acd'::uuid,'566','999',2210,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bac06daa-e4ad-43e6-82d1-1f0dcda7dc21'::uuid,'567','995',3138,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae82e5dd-69f9-4b0d-a99e-258ba6e8a57f'::uuid,'567','996',3138,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d344c598-11d5-4fc4-8c27-9688db7a236a'::uuid,'567','998',2297,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4aaea3be-8ce2-4948-9983-e6f49c3829c7'::uuid,'567','999',2074,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b1bb320a-9f1f-4cb0-827a-1a6f7cebc96b'::uuid,'570','998',2586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('de508cf4-9513-400d-b011-6d9c6f3e1a57'::uuid,'570','999',2329,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f67871e0-e4ac-4409-9568-cc1af2a64b0c'::uuid,'571','998',2586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7b325a32-de88-470e-b390-e9f1dda0bc92'::uuid,'571','999',2329,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('48f45265-d627-402a-ba7b-1bba82d2095a'::uuid,'572','998',2225,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fa40f95e-fcc3-4236-a5e1-d156afa17e99'::uuid,'572','999',2225,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f230884b-fd02-4a67-9b83-eb9c50b37689'::uuid,'573','998',2532,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('73c0994b-ceaa-4816-9be0-f9f61aaff3c7'::uuid,'573','999',2310,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('68174f83-a713-431a-bfa5-4c470ce5a495'::uuid,'574','995',3234,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9602695a-9188-4a11-bab2-28eff43de1e0'::uuid,'574','996',3234,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e0f739e1-7fe2-43c5-a6e7-ea2a93c54dde'::uuid,'574','998',2393,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c8430abd-da25-4e06-9198-fad42e0f7389'::uuid,'574','999',2170,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5674434d-f20f-45a8-8827-a956bd5670fe'::uuid,'575','998',2450,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb7a89ff-ec6b-4607-967b-394d378465ea'::uuid,'575','999',2227,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1dbfd8b0-1f42-4007-b510-59c7ad5cc2c4'::uuid,'576','995',3189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3d0083a1-f589-44bb-b27f-d2ddc7032233'::uuid,'576','996',3189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6fba924d-6058-4462-a4a0-620b97f5a315'::uuid,'576','998',2347,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7f011bd9-d5bd-4e82-a932-5e42e6d8eadf'::uuid,'576','999',2124,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('feb42382-5b2a-4721-b6bf-a4ade12fe36f'::uuid,'577','998',2388,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('594eea09-6914-4e00-be9d-6ed478087384'::uuid,'577','999',2131,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('38642e7f-b6e7-4b0d-9c76-fa029be473be'::uuid,'580','998',2373,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('95f96e81-3e71-4363-9efb-c01ff16495c2'::uuid,'580','999',2150,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f61da887-6be8-4288-8d64-79a26785c5f0'::uuid,'581','995',3219,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('29a8b222-8b88-48d4-97e5-5f3b2daac3ff'::uuid,'581','996',3219,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6ff4392-87ce-4191-a2ad-0996aa18302a'::uuid,'581','998',2377,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a05cf28a-8d3e-42a0-b032-c55762831cd9'::uuid,'581','999',2154,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6043c1c7-9c3e-4801-9b34-0864c1d31eee'::uuid,'582','995',3161,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('159bd446-56fa-4cc5-a142-27ef71b23461'::uuid,'582','996',3161,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('712b215c-4d71-4054-8d5f-75424a16bcf7'::uuid,'582','998',2319,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f10eadcc-9dfa-422a-b864-8d90294bc51f'::uuid,'582','999',2097,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3cb9b480-8caa-4c23-96f9-8f0bbb7c838a'::uuid,'583','995',3054,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('517b77ae-cbae-4740-a901-1856e750daba'::uuid,'583','996',3054,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b7e773cd-f27d-498f-a518-1b474d47a24e'::uuid,'583','997',2796,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6ed413e7-b246-4a82-8989-80684b4794a3'::uuid,'583','998',2212,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0bef008b-cf07-4f76-9302-18b43943bba8'::uuid,'583','999',1989,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d6bc516a-f821-4242-890d-ea8d1cc7fe0e'::uuid,'584','995',3125,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('caa142ff-d7c0-4732-8f4b-f206e6accb30'::uuid,'584','996',3125,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2afcb1b9-1ade-4da9-9f4e-c58a2b30d084'::uuid,'584','998',2284,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2a326983-9245-4801-be7a-a710f3cde4d8'::uuid,'584','999',2061,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f73026f2-aa01-406c-93a8-1c36d33a88fd'::uuid,'585','995',3063,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ef337442-c49e-4a20-b128-5c35770bed62'::uuid,'585','996',3063,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4badeef4-bf49-46d5-9412-8b3e42281715'::uuid,'585','997',2806,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('feeb4199-1677-428c-8d08-c7380320518b'::uuid,'585','998',2222,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('66c1438c-777c-4851-bcbe-458ceb6f90d2'::uuid,'585','999',1999,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b6c10648-7be0-4627-bda4-74e7627b524b'::uuid,'586','995',3028,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ccae245a-7795-43cd-9ff8-422e4c8a7dbc'::uuid,'586','996',3028,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fd472422-5135-4ea9-a4ae-c9e6dfa04522'::uuid,'586','997',2635,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a08ad7e4-f3e4-49b4-a5bc-f9372284c0fd'::uuid,'586','998',2186,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9676daa7-10c9-495d-938a-7e3aacec6d16'::uuid,'586','999',1963,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9e2adfc4-8eb4-4a24-82a2-6f21d7a1f697'::uuid,'587','998',2113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('af24244c-76ba-43fb-be13-771d61583d80'::uuid,'587','999',1891,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a8f1e398-1dc2-4922-a885-7a350af14934'::uuid,'588','998',1797,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb59922b-edd3-4e72-90ab-8d7324d73b42'::uuid,'588','999',1797,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3d39b639-e9ab-4404-9a49-cf1c0fa41a9f'::uuid,'590','995',2933,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d342f80-5c02-4a09-92b8-665a9c77934c'::uuid,'590','996',2933,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6af4587a-743e-4f33-8627-b00834c496f9'::uuid,'590','997',2675,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9438b293-3f9e-40d8-bbd7-5c7321f37450'::uuid,'590','998',2081,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('15be0dae-9252-4a99-b486-a6a9f3b42a9a'::uuid,'590','999',1858,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('26381dd8-91a6-430f-9b48-297884466d31'::uuid,'591','995',2933,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a51c57dc-fb10-4485-8099-c5c7947460a8'::uuid,'591','996',2933,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('13a44dab-4221-49dd-8558-57cd8c951615'::uuid,'591','997',2675,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8fa6015e-c4fb-4919-aced-3e803aff997d'::uuid,'591','998',2081,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4853fbca-4939-41a2-bbbb-6cda75664cf0'::uuid,'591','999',1858,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('affaf773-a264-4d2e-aec6-feab899adf92'::uuid,'592','998',1772,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('883101bd-a053-460c-93b6-f834577ac4ef'::uuid,'592','999',1772,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b240f71f-12e0-4f75-886f-0d42c0da24fb'::uuid,'593','998',2179,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8a9fd9a9-fcf4-44f7-9db4-c476b6c87741'::uuid,'593','999',1957,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f0f896af-9304-4d60-bc8c-dcac292467a5'::uuid,'594','995',2716,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('56e79e35-5671-47e6-85cf-132bdce31691'::uuid,'594','996',2716,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b4c33a30-60cc-44cc-88f7-864381153d9a'::uuid,'594','998',1864,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7f637b1f-e156-4b54-a018-aecd34fa7ccc'::uuid,'594','999',1642,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a92f92cc-7415-43d5-bc98-5bbd6f4aaa69'::uuid,'595','995',2734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7161a1f0-11d4-482e-9329-77dd6ef26612'::uuid,'595','996',2734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b4e24817-ef2c-4781-836f-e46cc505de2f'::uuid,'595','998',1882,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('08127592-22d2-4876-9c78-d9ad6501839b'::uuid,'595','999',1659,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('98b12e6d-9855-4c49-b95e-ed683359fac6'::uuid,'596','995',2776,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d5294ef9-d999-4f47-9eec-c6ce61aa2d4e'::uuid,'596','996',2776,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2fdeb60f-9816-4f98-8ca8-a4c95dc940e1'::uuid,'596','998',1890,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('819118e1-c0ee-4ad5-a5ec-b92184a79797'::uuid,'596','999',1668,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ad69452c-2e97-461b-8390-8e5b40834800'::uuid,'597','998',1682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c2e6043d-aff1-419a-a2f0-86e75e92abfd'::uuid,'597','999',1682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c8cce8b4-11db-411d-9dd2-5968655ffdfd'::uuid,'598','998',1777,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5109c8de-7420-450d-be53-8a12f0606a45'::uuid,'598','999',1555,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('afe30946-7391-482a-a7d2-ff8053ed3102'::uuid,'599','995',2676,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f164b9be-d465-4551-a0bd-b91f64b64460'::uuid,'599','996',2676,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bd468b6c-2bf6-473c-ade2-fded58b48c76'::uuid,'599','998',1741,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('08d5937d-c8d0-460e-8c12-170bf37d9828'::uuid,'599','999',1518,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c17d1d35-2906-4e6d-b22f-c64eb9277dfb'::uuid,'600','998',2708,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('30ed0dc5-57d7-4640-be51-bc66828e4f3e'::uuid,'600','999',2708,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('efc0796b-a480-4f81-8f48-36d2ebd785fa'::uuid,'601','995',3834,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('29317075-b3de-48f4-b496-0c27cf78cf7e'::uuid,'601','996',3834,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b659c5fa-59ec-48a3-b4c5-9a1bc2d09514'::uuid,'601','998',2992,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d5b3b684-c8c9-47d1-8bbf-e1fe384fb73b'::uuid,'601','999',2769,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d9ba1b4e-2f46-483b-a265-b2d491832b31'::uuid,'602','995',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c58f40b6-97fb-40ca-a637-ce43e8c01449'::uuid,'602','996',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d6bab2f-a11a-42f0-9eaf-626d2f2580eb'::uuid,'602','997',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f133358-7d07-4915-996c-81381562fec3'::uuid,'602','998',3012,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3c4ed3e3-ecc4-4cfb-8a1f-bd582468d4f4'::uuid,'602','999',2789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9a796351-a7ac-4f41-9c78-efbc5b08d65b'::uuid,'603','995',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0c32971-33f8-4fba-ab0a-12a5c8fcf6f2'::uuid,'603','996',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c3259712-6d3e-425e-b09d-44924feabcbc'::uuid,'603','997',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5882c090-5502-4a20-a73e-e4cc55aca34e'::uuid,'603','998',3012,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9d114b51-4e75-4600-bc8a-7c0fc4a93800'::uuid,'603','999',2789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54d506b1-7791-4773-b312-bbb4714d3cb0'::uuid,'604','995',3870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('51e7a6fa-55b4-44a7-9812-a357bddf4e02'::uuid,'604','996',3870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0036208c-c009-4d6e-8ec2-9312af1fef16'::uuid,'604','998',3028,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e15bda6b-6233-4a4c-809e-d148d49cfed4'::uuid,'604','999',2806,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ccdf067f-9e76-4e47-a946-bca37dad5265'::uuid,'605','995',3845,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('60a838a9-41ca-401d-948c-bb2e2cca6986'::uuid,'605','996',3845,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c28ab6a8-76e2-4680-a07b-f03747eec433'::uuid,'605','997',3588,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9418f8c3-c8c0-44e0-ba54-24eb13ad1e29'::uuid,'605','998',3003,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('34a434e1-d287-40b3-a9dd-a657ac881964'::uuid,'605','999',2781,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e5f363a8-62fc-420f-8fb6-01118c48d876'::uuid,'606','995',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('677819c8-1db4-469f-b920-d60dbafde746'::uuid,'606','996',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4fa446ac-b92c-48a3-a190-2c2eef1b494c'::uuid,'606','997',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5a3dbc30-7902-4ba3-a7f8-650987442530'::uuid,'606','998',3012,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('396d750a-f3d2-49a1-8e2f-42d2ce6693d1'::uuid,'606','999',2789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a7f2d255-6212-42fd-b852-36eb7ac4c3a3'::uuid,'607','995',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c7225724-e250-4fe9-bbb4-ea872b7d175f'::uuid,'607','996',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2fa0f8c7-6f72-4ced-a990-7920bbedb4ec'::uuid,'607','997',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aa4516e2-00f8-492c-a7bb-9875e2854bb8'::uuid,'607','998',3012,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('313a7a0e-111e-485b-ac28-3a3f4141436e'::uuid,'607','999',2789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('216ed3b2-1b06-48fe-8110-c2ab1a849eda'::uuid,'608','995',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('089b5212-d62b-400b-83fd-73aaed0f74dd'::uuid,'608','996',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1bff9c00-9ebf-45fb-82be-29de6ebbf8dd'::uuid,'608','997',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('60599c3b-7dea-42d2-8e48-094dd44c5874'::uuid,'608','998',3012,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('473b3c00-1212-4636-951d-a3be619d066a'::uuid,'608','999',2789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ef115955-f435-420d-bbc7-0d2b8cc85676'::uuid,'609','995',3929,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a3349128-7498-43b9-8bb3-6c1811221026'::uuid,'609','996',3929,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('85e11610-cf9d-45e5-96ac-6f6728e64b0b'::uuid,'609','998',3087,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ef6644b2-ad5b-40b4-a2e5-81f8deceb510'::uuid,'609','999',2865,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('eb403c20-c713-45b7-a08c-493abb0cdf0c'::uuid,'610','995',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('92182b0c-a4b1-4132-8f08-b66cd190ab26'::uuid,'610','996',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9a7fce7c-c4b0-4e7d-916a-02d2340acb66'::uuid,'610','998',2941,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d8ff7155-a628-4e04-a324-da93e574dcb2'::uuid,'610','999',2719,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a547a4a9-9448-4a2c-945a-e1f53de05574'::uuid,'611','998',2942,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e5e24e5-8d3e-46b1-b3d4-06c9f50be386'::uuid,'611','999',2684,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6312ef1d-f4c1-41d4-a724-123c4f0db011'::uuid,'612','995',3788,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d82a5ebf-33ea-4114-973f-50151b7678d7'::uuid,'612','996',3788,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('520ba3c9-98bf-4fed-978e-f7fa86f0c6cb'::uuid,'612','997',3531,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2eb6b8ba-ae42-46fd-aa90-9be947754afb'::uuid,'612','998',2946,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a6febd9f-0406-4628-b3b8-085ba04c162d'::uuid,'612','999',2724,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b5272acf-b89a-4fc2-be13-589567de068c'::uuid,'613','998',3007,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5fc33253-02a9-4249-97ab-a71dc2dfee6c'::uuid,'613','999',2785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('838e7a36-e099-4e80-a0df-6c90ff41e712'::uuid,'614','995',3822,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('596e7115-4a8d-4386-9e99-052646458b61'::uuid,'614','996',3822,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7708d37b-58ee-4774-82f3-8226a2f542c0'::uuid,'614','998',2981,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('32ff3263-ab4f-421c-a1fa-427c75b9b0ec'::uuid,'614','999',2758,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6d00dd3a-3e1e-4f45-aae1-46ad89c5669e'::uuid,'615','998',3028,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ecbf1812-261d-4465-860a-a6641859ed0c'::uuid,'615','999',2805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b71f945d-9171-4875-ae9f-ac8890a034bc'::uuid,'616','998',3028,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8f9b58b7-e0f8-4b10-9baa-5c5abe830cf9'::uuid,'616','999',2805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2f455a3d-893a-475f-a938-2e0cca36c49a'::uuid,'617','995',3907,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1ff5b3e4-3ced-43a7-b25d-d096776ab802'::uuid,'617','996',3907,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('41260d35-1f4a-4c85-b1a0-66f7609d62ae'::uuid,'617','997',3650,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cce85e6d-9452-498c-a9de-31d432807505'::uuid,'617','998',3065,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dd46989e-5650-4e1c-9246-84834f254a1d'::uuid,'617','999',2843,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ea3a67a-0dd1-4017-a8d5-2db91a02d9fa'::uuid,'618','998',3136,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b0bb4720-943a-4cbb-8f10-eb1003bdcc48'::uuid,'618','999',2913,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4f7ed0be-33b8-40ec-899e-e9cca8072e7f'::uuid,'619','995',3986,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('67b3a147-3139-4c3b-823e-2649e5dd057b'::uuid,'619','996',3986,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2ef8fdac-7e51-4d2c-b104-f17d5ae9dfb8'::uuid,'619','997',3729,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5410eda9-c2f0-40be-8c5c-ecd34e9cf2f7'::uuid,'619','998',3144,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e26b5c95-3e01-48c7-b10a-4b356626c92a'::uuid,'619','999',2922,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fba822cf-a42e-43a3-9872-f68f250176ec'::uuid,'620','995',3955,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4fac0793-6233-4496-bf91-dd37ef6e5d9a'::uuid,'620','996',3955,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('111e5e34-38db-4c6c-b16b-64c147709b69'::uuid,'620','998',3113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4081bceb-b2e0-431e-8dfa-69261e04d1dd'::uuid,'620','999',2890,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88ad2dc7-72f0-4ee1-ba26-a6a43da03f47'::uuid,'622','995',4020,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4bb0aa95-3a51-4236-8bcb-10a03fbb1737'::uuid,'622','996',4020,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('84bf52d0-2b91-4e91-80d3-6b3fdc66e8e4'::uuid,'622','998',3178,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('001abfed-9b7c-41e7-8394-0d45e81ee301'::uuid,'622','999',2956,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dca90755-c8ba-4803-8d56-5ed28aa702ad'::uuid,'623','995',3869,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae809a3a-39fa-47ec-880a-8c65e9f13126'::uuid,'623','996',3869,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('396b34b7-4496-42e3-b549-4677c637dae7'::uuid,'623','997',3612,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('25e94773-66da-4e4d-bafd-514fb9e41e99'::uuid,'623','998',3028,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8670ddd1-57bb-4102-be9a-72eb73ed3301'::uuid,'623','999',2805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a717fd44-ee96-49c0-90aa-41a6b1cb7b32'::uuid,'624','998',3197,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8b08d747-c6e1-4631-a266-bdf0ddab1fa2'::uuid,'624','999',2974,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4c59ca3f-c7d2-4937-b389-1fff6c42ae41'::uuid,'625','998',3090,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7b017d23-102a-43b9-80b5-4399ca7fd9fb'::uuid,'625','999',2867,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('02f42e73-f25c-4edd-8fa8-2163270ae23d'::uuid,'626','995',3927,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('09e9672b-7322-4f9b-a1ef-69b7db1db72b'::uuid,'626','996',3927,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('23ccb4c9-450e-48c3-8477-8027091418c0'::uuid,'626','998',3085,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b191cbbe-19a5-4e94-bfbc-f39cba25a996'::uuid,'626','999',2862,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d6310fcf-363f-4405-bee6-25f7c0a5345a'::uuid,'627','995',3931,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('82a09106-2dbe-4458-8aa4-5caff133dd33'::uuid,'627','996',3931,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ff8c459c-02d2-45c4-94bd-72231bb55f19'::uuid,'627','998',3089,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c31db31d-5185-4fd6-8116-c9ba93f6851a'::uuid,'627','999',2867,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('70fa3f48-e552-4c08-9814-3cae56ed39ca'::uuid,'628','995',4075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('59db1a4a-058e-44b2-8080-6570d0de38a3'::uuid,'628','996',4075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('53bc2164-eea9-4752-a117-d21f77155076'::uuid,'628','998',3234,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2365bd9e-94c4-43b7-9ee3-5ab2f95e0627'::uuid,'628','999',3011,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6f834141-ed6a-4a10-9b64-c9406930dce4'::uuid,'629','998',3020,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fcf69349-d948-46ec-849f-40e1329015f9'::uuid,'629','999',3020,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4773cc1f-6bad-4530-811f-c8cbbc5cd868'::uuid,'630','995',3994,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5cf87413-4e71-4e7b-b646-c57f380a97dd'::uuid,'630','996',3994,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b396a991-2064-4ee5-be1a-acbfc7653863'::uuid,'630','997',3601,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('041be5b6-9aa3-4404-8e7a-bf7916acc3fa'::uuid,'630','998',3152,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('83da839b-9b3c-464e-a81e-c0e56d15bac4'::uuid,'630','999',2930,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8646eaa0-d0a8-44c6-a0f7-c117c7861061'::uuid,'631','998',2892,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ea921a9f-06dc-4b46-940d-73cbf0ce574f'::uuid,'631','999',2892,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('127928d5-92a6-45e7-95b1-6754671e6111'::uuid,'633','998',2836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7ab003ee-3b2a-477b-84d6-49dd125f9393'::uuid,'633','999',2836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e528be4c-2110-48da-9120-8e1dd52b0009'::uuid,'634','998',3032,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3875b8fe-e20f-411d-a832-9314cd7120ed'::uuid,'634','999',2809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('56d1e786-40d7-47e3-ab24-bfa3c0a33308'::uuid,'635','995',3828,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3f34a692-0500-4b10-a2a6-cd434a4a93dd'::uuid,'635','996',3828,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d5a70347-4685-4e50-adb6-37f2e7d91526'::uuid,'635','998',2987,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6c5a84bc-d037-4477-9f91-756b1c6ab794'::uuid,'635','999',2764,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('48f45851-aea8-4913-a991-df3d971ac991'::uuid,'636','995',4075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9071a24b-f6d3-49a8-b062-e0038a0428b5'::uuid,'636','996',4075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a0086ae4-4225-422d-b1a4-6da9f79de1fd'::uuid,'636','997',3817,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8eeecac7-d72d-4e2a-906e-b4abd580ef9b'::uuid,'636','998',3233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('19b969e1-ce50-4659-b4f6-893e406ff8c8'::uuid,'636','999',3010,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce9381c5-2384-4550-9f6e-569c2a192a8a'::uuid,'637','995',4083,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('205a35bd-178b-42a8-a01a-2803bcbe3f1e'::uuid,'637','996',4083,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('db120b5f-4625-40a5-b6bd-b34da5920b22'::uuid,'637','998',3241,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1b7ad21d-09a6-482f-aa86-294ab98063e8'::uuid,'637','999',3018,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b64aa8cf-8fcb-4433-931d-9a272e6688f8'::uuid,'638','998',3311,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2fe50ea5-69d5-4de2-a5f6-24c2a1006049'::uuid,'638','999',3053,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b4fc9e3a-0dc9-4a13-a139-93c0085bd5ee'::uuid,'639','998',3019,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a3fdf37c-3386-4c99-87ce-76645d44c5f6'::uuid,'639','999',3019,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8a262ad5-ddb6-4e9e-9a0f-1830505f9272'::uuid,'640','995',3805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bf03d6f4-3760-42d0-8ea1-b393f34e9486'::uuid,'640','996',3805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33db773e-bcdd-4f04-89b2-df2828d16319'::uuid,'640','998',2964,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a53f9c86-be83-462b-bf45-b37b2a27ee98'::uuid,'640','999',2741,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('97761497-a131-4934-a08d-634895c2ed2e'::uuid,'641','995',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eefdf64f-7b97-4838-bd70-631843b0cd47'::uuid,'641','996',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5991bbe3-a14c-406a-a03e-4488853b0492'::uuid,'641','998',2942,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('59300cc1-80e0-489b-850b-329f39817668'::uuid,'641','999',2719,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fecf1f7f-1eff-419a-811b-dea9bac54967'::uuid,'644','998',2887,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ca93fb41-62b3-42db-980f-607990efb09b'::uuid,'644','999',2629,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2030bed4-a451-46cf-bc11-9b1206033b06'::uuid,'645','998',2633,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7e3fad0b-cef7-416b-802f-b7ca3863d2ba'::uuid,'645','999',2633,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6cef11a7-6466-4821-ab70-876dadfc7617'::uuid,'646','995',3802,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('23c52a87-0d7f-455e-8513-c6d8c60802a8'::uuid,'646','996',3802,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b4af1614-7012-48e2-82c3-87ba4b298ff7'::uuid,'646','997',3545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6b100881-e6a3-4f99-bbdd-5713acd7e608'::uuid,'646','998',2960,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7bdcbbd0-e171-4596-ba1c-c49aa9a3fb2d'::uuid,'646','999',2738,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d188b8dc-6230-4816-88b3-4dea75f8ea02'::uuid,'647','995',3850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8a7fc1ea-b770-4470-9ce8-05ce69a1f4bb'::uuid,'647','996',3850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1808eb5e-443e-4ece-b2d9-fd540341375e'::uuid,'647','997',3593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('838727ab-fd79-468b-81d6-12a419c461db'::uuid,'647','998',3008,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fd3905b1-c1a1-4f2d-bac9-0ae0ff3be177'::uuid,'647','999',2786,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('00045660-9ba6-4ec7-83a3-51792c3b5391'::uuid,'648','998',3111,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6b1e691f-4eea-4591-a2eb-e176448b51b4'::uuid,'648','999',2888,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('901285f8-9473-4121-afde-d2830fb500cd'::uuid,'649','995',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9241ce99-aeac-47b5-8537-1a9fb1bb8674'::uuid,'649','996',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a8853c2d-c536-40e8-aabc-c29a92cb511b'::uuid,'649','998',2942,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d3962b54-f414-4f24-8925-2542ed43dd66'::uuid,'649','999',2719,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f045f85e-8861-410d-b514-8ee96f97ea85'::uuid,'650','995',3934,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('185b45bc-c9fa-4f51-bf12-36698c4da9ec'::uuid,'650','996',3934,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('79094362-7f66-436e-86d7-9eb5f9c48692'::uuid,'650','998',3093,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0cce7911-a1c6-4eef-b225-7f6839d6b2da'::uuid,'650','999',2870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f15ef513-f9e0-4576-9e48-633e99350ff5'::uuid,'651','995',3934,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce923100-6a30-47ea-a1dc-c935fce3ed09'::uuid,'651','996',3934,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('81dd53c1-fa4e-44c3-9128-7fc1b76ed1e5'::uuid,'651','998',3093,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('26b67ccb-f8ef-42b8-9d55-4b5ab45d9364'::uuid,'651','999',2870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('47bba21c-d563-437e-8242-476ff5a33db4'::uuid,'652','998',3041,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2cc8d262-64c8-4666-992f-3b55d39972d0'::uuid,'652','999',2819,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('70fb57ad-b050-4143-864a-0185585b4ef5'::uuid,'653','998',3033,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e430efc7-905c-417c-b828-5e3d136552a6'::uuid,'653','999',2775,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('93aa5322-7e64-45ce-8a59-c5f3c383742b'::uuid,'654','998',3189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('53e12b3a-2d76-44a4-8ffb-e89e2b342176'::uuid,'654','999',2967,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d706e46c-be40-471c-beab-8383e8d264b5'::uuid,'655','998',3189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2114cf20-cf17-4edb-a6ea-6a8ffba14aec'::uuid,'655','999',2967,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88352316-b152-44f5-9f56-eb851ad74e1a'::uuid,'656','998',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f0985853-0971-40a6-a456-b4f20501d535'::uuid,'656','999',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a3bdc9b9-c57d-4602-bd69-aad5fdbfc6bb'::uuid,'657','998',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8f82cba4-3a53-4c42-91d3-ced56e23d19e'::uuid,'657','999',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3523d042-8593-4c83-88e1-2ecb4ff1e9cf'::uuid,'658','998',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dcdc672f-2f04-41ab-a7a4-cf7454b7c787'::uuid,'658','999',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e04375f0-7cff-4303-a2a5-68740c611b6c'::uuid,'660','998',2951,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bbe9eaca-37be-4776-b75b-127c539ffb5c'::uuid,'660','999',2728,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c6f3343c-23eb-4063-b88b-70d37fdfc6c4'::uuid,'661','995',3784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('efdb5ed7-2b0f-4682-96a1-6cd90cac24de'::uuid,'661','996',3784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ba476972-2006-400a-9f49-87ea025d7676'::uuid,'661','998',2943,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1fc9c033-50ea-4e46-99be-4b86cb2084cf'::uuid,'661','999',2720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c9686765-c0c1-40c9-a7a5-ec2db079bf82'::uuid,'662','995',3784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e7673477-ef45-46a8-9841-9cb59d0d5fbe'::uuid,'662','996',3784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0bc9de2f-f111-41ab-ae7c-5d6c3f161f42'::uuid,'662','998',2943,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a4c93b75-1f5d-4008-b3b4-a18d0130f477'::uuid,'662','999',2720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('75207433-0fa4-452c-af96-492479925e41'::uuid,'664','998',2658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('048dc895-c7b2-419c-8cbf-d48ff2c968ce'::uuid,'664','999',2658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8726ba13-9f00-45d0-9d14-b35d7dd1a81f'::uuid,'665','998',2658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eceb2c19-a80e-41b3-a997-4e651f682e09'::uuid,'665','999',2658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ee5112fb-93db-45c4-88a1-5c614d8c55e2'::uuid,'666','998',2666,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d30af589-7c26-4175-9274-92dd9d4bd135'::uuid,'666','999',2666,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aa97d875-2448-4856-825d-f66a4742e6d3'::uuid,'667','995',3877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('90f53d3d-3022-4637-9b94-a2874ba79996'::uuid,'667','996',3877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b11b5850-23aa-4321-96cb-c86086d3b1a0'::uuid,'667','997',3620,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('574d460d-5b90-464d-b25b-e50bca204a5c'::uuid,'667','998',3035,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fe205168-41f4-491f-8c24-e008b7f51e27'::uuid,'667','999',2813,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('69073106-748f-48d2-a77f-6c2ee06aff0a'::uuid,'668','998',2715,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4d2580fe-de51-4096-ad75-f7da3b487c57'::uuid,'668','999',2715,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f01799ec-62d8-4d9a-bdc1-6ee03cc5ae17'::uuid,'669','995',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c69d9564-9aee-43f2-9c01-6bf9d24e01ed'::uuid,'669','996',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1d83c828-7da9-4c79-944c-e954cfb8532c'::uuid,'669','997',3420,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6d4e1308-7c98-4fd2-846b-8c00f52f6f49'::uuid,'669','998',2835,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54fec7aa-27a5-4403-92c0-bd0cf6a7763e'::uuid,'669','999',2613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6c85d235-21c5-4ffd-9f0c-769c3e08804f'::uuid,'670','998',2757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f20d444c-27c9-4095-bca6-34064ebd56cb'::uuid,'670','999',2757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f2200909-ffda-4120-b37a-f291f30d464f'::uuid,'671','998',2757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4c5a0f64-6881-4c32-9950-79ecf9bbd9c4'::uuid,'671','999',2757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e913d3d-1ac3-4755-83d4-8eab37458956'::uuid,'672','998',2734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c6b341fb-b35e-4487-8731-b686764f622c'::uuid,'672','999',2734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9710bab0-f869-4414-b99c-37a3bcd3365d'::uuid,'673','995',3901,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6894b7f7-d298-4bec-84f0-79558241ae82'::uuid,'673','996',3901,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c904fa88-3a9b-4f69-a548-5d5cc0589d56'::uuid,'673','998',3059,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cd77e2d8-251a-46c8-b30a-fa491c67d756'::uuid,'673','999',2837,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('06732ddb-6b1d-4901-99b5-a024f741703b'::uuid,'674','998',2903,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4f308c92-a5e4-47fd-9dd1-ef63660e3d80'::uuid,'674','999',2645,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a44dae0d-5890-494a-848e-e296f0f6e786'::uuid,'675','995',3757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8bbdf04d-f1d3-4ed3-9ad4-d0ff8c76bc7d'::uuid,'675','996',3757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d74467b7-3894-46ea-9e73-0e832e1dee21'::uuid,'675','998',2915,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aac8cffa-860f-4d1c-8574-32c59d095550'::uuid,'675','999',2693,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e9a4f213-13f7-48cf-b2ab-c08e4054d34f'::uuid,'676','998',2560,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('85fcb517-4187-4c4f-9826-47920d486013'::uuid,'676','999',2560,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('31cae2d9-cfe2-427d-b768-a22cb97cf58b'::uuid,'677','995',3657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cff5bdaf-3cba-47fc-858e-45201d20ffcd'::uuid,'677','996',3657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ce258b4e-f403-40d6-b4e5-0fd1a1ce0210'::uuid,'677','997',3400,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('86ab2387-7b3f-4da0-8916-9fbcf85b1bbe'::uuid,'677','998',2806,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e445bae-40e5-4133-ae16-d54ddf7f6925'::uuid,'677','999',2584,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c55d290c-47ae-4b8e-b7e3-01ca08e2a964'::uuid,'678','995',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6dfc1f77-2452-43ac-a630-e69932254853'::uuid,'678','996',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4515022f-0fe6-4978-ab74-843208dd1ed9'::uuid,'678','998',2911,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d2770a1c-3619-4b33-b8d6-bac59cce9c66'::uuid,'678','999',2689,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c985c0da-f8ed-412b-84f7-08a6c414969f'::uuid,'679','995',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b2859e7e-8015-4b54-bf22-38274628035d'::uuid,'679','996',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fdea4026-ff19-4d37-9db1-d3739a37cb99'::uuid,'679','998',2957,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('99c3c500-49f2-4fc9-90b7-9a0f5b71ef45'::uuid,'679','999',2735,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('00889718-aa74-43e1-8f63-30b0104dc994'::uuid,'680','995',3581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e1b895a-09a1-493f-8f98-53668599dfef'::uuid,'680','996',3581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3db1b6d6-149e-4425-80f2-aba96babf25f'::uuid,'680','997',3324,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b4be244d-fc06-47b4-9658-77bfe43b4907'::uuid,'680','998',2740,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('653b6142-8bd7-4032-9b7d-18e00ac57554'::uuid,'680','999',2517,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1cde235b-df7e-49ee-b470-db4f74f6c1b5'::uuid,'681','998',2764,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('99f243d9-9f03-43c2-a7a9-c083b13fd184'::uuid,'681','999',2541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('edd43b75-d00c-4e2c-bb1b-98d5012e82fe'::uuid,'683','998',2549,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3d52a522-09ad-4792-b50e-54a07c61e36b'::uuid,'683','999',2549,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b9e38f32-7f4e-490a-8e97-10094257edeb'::uuid,'684','998',2549,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d77465f8-b5fd-4459-a113-28e30715fdc7'::uuid,'684','999',2549,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8da5081b-c66c-41f2-b086-1a259ae19556'::uuid,'685','998',2792,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('96d39bca-14dc-4511-849c-719497a5302d'::uuid,'685','999',2569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('211d583d-3c7b-48ad-aa43-431d8dd29673'::uuid,'686','995',3557,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('683d12f4-6311-4e25-b1be-3be1edd2fe15'::uuid,'686','996',3557,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b0f3bff0-882d-4cfb-b437-afdca47dcb4b'::uuid,'686','998',2716,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6d7cb43f-5160-4fa3-9d48-2d1a91a36eda'::uuid,'686','999',2493,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('747f6e3d-d5c6-4c19-9fe3-fd50b1eda9af'::uuid,'687','998',2666,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0984fe2e-f20a-42d9-8aaf-780ae97776af'::uuid,'687','999',2408,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('50e27e3f-3288-4ebc-9f78-74b4b919d82f'::uuid,'688','998',2705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54055077-ea56-4513-a7e8-0d54a4efe36c'::uuid,'688','999',2482,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('15dbe8db-43e3-43b2-a2f9-0e14119dfe82'::uuid,'689','998',2756,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f14c3c6-3106-4b8b-ab69-6b6e9738863a'::uuid,'689','999',2533,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b5171ae0-2ebf-4d92-b709-6dba98faaeb2'::uuid,'690','998',2735,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c614c9df-8258-4f08-b3c3-4ffa47ad7241'::uuid,'690','999',2512,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6dc55e66-6e1d-47d8-970c-81a497056512'::uuid,'691','998',2404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e6ba8cd4-772b-4204-96b9-8d87cc9a6a50'::uuid,'691','999',2404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43da48ed-7c3c-415b-992b-532c860ac01d'::uuid,'692','998',2303,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f95eb2eb-aca2-4c8a-acfc-66d029e03dcf'::uuid,'692','999',2303,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c535ba5e-bc9f-48a7-af2b-f8e926fb70da'::uuid,'693','995',3388,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65693017-03d2-4bcf-9013-6ea9b5206581'::uuid,'693','996',3388,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1d5f862a-c505-4a27-b458-36478fab9c13'::uuid,'693','997',3130,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a1ebd89b-c187-42c4-9ab3-96fddd8b0a2d'::uuid,'693','998',2546,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e762fadf-2d9f-44f6-8f5c-c94d2219993f'::uuid,'693','999',2323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a0a1bc67-8aa5-404e-afa0-294dde97d513'::uuid,'700','998',3748,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3fa34098-93a4-45f8-abb7-bc35864e8904'::uuid,'700','999',3526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6da21701-37fd-47a4-9e6f-15dd0a64f906'::uuid,'701','998',3748,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54edea52-fbb9-4edd-8f3f-9720e8e6cde6'::uuid,'701','999',3526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bafe41c5-e4f9-410e-9602-0c67544d6107'::uuid,'703','998',3492,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('45085ad8-f866-490a-8627-1e135a72542c'::uuid,'703','999',3492,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5d7a271d-f991-4fba-b382-aec7176d297d'::uuid,'704','995',4537,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dd4029af-193e-4269-bf23-88164ba29cfa'::uuid,'704','996',4537,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('29b0cfde-5915-4280-8112-1b40726ef57a'::uuid,'704','998',3695,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5730f499-eb35-43cc-b037-b10147ad2b07'::uuid,'704','999',3472,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2fbb97cd-73bf-453c-b993-140b8ab0453b'::uuid,'705','995',4510,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cbcd53e5-3466-4c57-a1c5-659f2080ab2b'::uuid,'705','996',4510,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e4a536f-8cc4-49ce-a2d3-76c67f062dda'::uuid,'705','997',4117,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('407d8bbd-5e81-4bf3-ba5e-dc404ce9de5b'::uuid,'705','998',3668,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('99c21a1d-cf80-4702-8bbc-e1cd57732a3e'::uuid,'705','999',3446,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('12755424-33e4-45ec-b87a-88f6536bdf9f'::uuid,'706','998',3667,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2f2f7390-6a22-4715-8eac-add689cfd69c'::uuid,'706','999',3409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a22cbe7e-acbe-47db-92b3-d5c8a973afb6'::uuid,'707','995',4526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('72a2f0da-b12f-47d2-9b41-cda82fce1af0'::uuid,'707','996',4526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4a6afc28-e046-4ebd-b409-62edd673d160'::uuid,'707','997',4268,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('94fad128-1371-4472-8be3-f53972840835'::uuid,'707','998',3684,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('63250df3-dc03-4a4b-a460-ad6dd4cbd390'::uuid,'707','999',3461,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('21b3b2d7-0597-48d4-8d58-a916882c2213'::uuid,'708','995',4526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('82f266e3-0cb4-4ec4-831b-1eb97cf41655'::uuid,'708','996',4526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d3958497-87aa-4172-b14a-26952fa3c4ca'::uuid,'708','997',4268,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('45969e6c-b521-4893-b383-e8d8298d3812'::uuid,'708','998',3684,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d83b2d9e-c470-4684-a9fa-dad81ad99148'::uuid,'708','999',3461,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a9507806-7ef7-4894-a704-22123578d681'::uuid,'710','998',3543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6bbb7570-2e4b-4776-8c71-abf28c0a8cbb'::uuid,'710','999',3285,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a11d5b31-f9c4-4137-9309-091077a71abe'::uuid,'711','998',3480,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('be4d2511-5fb6-4865-b3f9-69dc19b632d2'::uuid,'711','999',3222,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c6425321-8c65-45ce-a8a7-a98d614dcc60'::uuid,'712','998',3513,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c8e21a26-976a-4c66-bf43-be183b8cf48d'::uuid,'712','999',3255,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('61072550-1880-4e79-b38d-c69dca93faf4'::uuid,'713','995',4441,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('537ddb94-8eaa-45db-9386-fb1be935956b'::uuid,'713','996',4441,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('59cea103-002f-4870-b297-389e12d72e7d'::uuid,'713','998',3599,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43b722e1-c70b-4dfb-baeb-ca404abec37f'::uuid,'713','999',3376,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d7542f59-b9a6-47d1-9b4b-5f4321cd6550'::uuid,'714','998',3558,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4e8b4b8b-40b8-40f6-a478-4da958c71fb9'::uuid,'714','999',3335,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bff1b2c1-2e59-446a-8258-0bf1e74aa2d5'::uuid,'716','998',3419,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('68c25cea-8787-4e09-a214-23000d196368'::uuid,'716','999',3196,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c1d44784-c646-4dea-a1ac-b0a0a4ed6207'::uuid,'717','995',4265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0281bf2a-a9f7-43f5-b81b-d2bb2515c654'::uuid,'717','996',4265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('93deaca2-01b3-4cec-91e7-97bc640847e8'::uuid,'717','997',4008,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8ef106d0-a0d4-4223-8433-e893677bd1d7'::uuid,'717','998',3424,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('11bdd44a-7948-4dc3-abdb-a8668b95e6e3'::uuid,'717','999',3201,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2215da4d-d69e-4b04-9247-0678b61d8e52'::uuid,'718','995',4248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dcd33adb-7063-488c-9d94-4ad4322ec071'::uuid,'718','996',4248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('66a0fc1a-581d-4baf-809e-787dfbaa5eb8'::uuid,'718','998',3407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7e674b17-887f-489a-a84f-a25e707ac6cf'::uuid,'718','999',3184,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e9e24086-1e6a-49c0-916c-10ebf010b02f'::uuid,'719','995',4184,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d3b84ed9-f79e-423e-a69d-909e1a002355'::uuid,'719','996',4184,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('146e3a1e-ccff-4116-805a-9a6fb83880b1'::uuid,'719','998',3342,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('07033998-7b75-4699-ac0d-b32c87bf9513'::uuid,'719','999',3120,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('05fbc079-d809-4618-8346-537e1e2b9350'::uuid,'720','998',3322,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('52a8c415-4e3c-4626-b663-740d5b4d3508'::uuid,'720','999',3064,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('14f429af-e365-400e-b46b-91cb72bac6cb'::uuid,'721','998',3322,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('91e2484d-f474-47e9-b3e0-f95aab65aaf4'::uuid,'721','999',3064,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d4fd1c83-9c8f-44fd-8636-0b260a1c4589'::uuid,'722','998',3327,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3458017e-16f2-4132-b8ec-1acb88a66627'::uuid,'722','999',3105,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ac1f5eeb-11a9-45d2-9706-4089e56cab85'::uuid,'723','995',4228,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('53de671a-8ef3-42d9-91f3-5aaf39f61439'::uuid,'723','996',4228,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('243f3007-4b11-4ad9-9013-e846445d47ce'::uuid,'723','998',3386,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ba0e7443-502f-4690-b407-b12043b717f7'::uuid,'723','999',3164,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('36fa9d09-44a2-4015-8e6d-80adbf34bb67'::uuid,'724','995',4145,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fb122669-b374-4294-a643-94400598d2dd'::uuid,'724','996',4145,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e426c54-b960-45c6-a7f4-80770e503b05'::uuid,'724','998',3303,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('be86232a-a3e3-4d3a-86ca-13bf295566ad'::uuid,'724','999',3080,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9781138f-ab7b-4364-b604-2a18aa143d52'::uuid,'725','995',4107,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6e813686-c4b6-4d5f-a9d5-a598fa15992d'::uuid,'725','996',4107,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('228fedd3-c0b1-4bb8-b3b6-3dadf308c60f'::uuid,'725','997',3850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1ac5639e-d30e-4953-97f1-b56c45de43e8'::uuid,'725','998',3265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e058c9cd-aafe-4cd8-b244-fa58c3c6ee95'::uuid,'725','999',3043,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('56cd9e03-efe3-4941-884a-74b60f18b3a3'::uuid,'726','995',4049,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cfc4f1f3-550a-4e87-ad9f-33f851933f04'::uuid,'726','996',4049,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('bfa16fc2-d4e8-427d-8a87-9b71310368ad'::uuid,'726','998',3207,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a3e75e1f-f88f-42a8-8836-6b1ebf78a1a4'::uuid,'726','999',2985,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c1a5af9c-c6f2-4348-989e-6ab860b4ee64'::uuid,'727','995',4016,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5124fe80-e839-4020-b853-16435a3f91bb'::uuid,'727','996',4016,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e3b51211-85f6-4aeb-b74d-4a0a0e7f24bb'::uuid,'727','998',3175,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e2a8a643-e0f1-4b78-b23f-9b778867332e'::uuid,'727','999',2952,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('77e4dbda-b42b-4ebd-bd4d-7e51cd1c7c53'::uuid,'728','995',4093,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9ae35d45-f18b-4f1f-b11e-20c3a4ca4449'::uuid,'728','996',4093,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e02c1857-5449-482d-9bf7-5be6d06b9257'::uuid,'728','997',3836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4cac20f0-d294-4f10-bb3f-7390ac5e966d'::uuid,'728','998',3251,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('54095aad-6822-411c-8b8a-22c6de7d8cb3'::uuid,'728','999',3029,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3c1b60cc-5f6f-46c9-820b-9fa2836a300b'::uuid,'729','995',4091,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('df8707b0-4c71-41ac-a98e-7c4f104ab588'::uuid,'729','996',4091,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ec19f8fa-7882-478e-b9c5-672bbaf56a28'::uuid,'729','997',3833,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('79db6a0b-f041-4fb4-9c1b-17a7bb645df8'::uuid,'729','998',3249,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('51f17190-4f04-4073-b732-b5fd12400162'::uuid,'729','999',3026,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('84042ce4-9935-4171-b81a-a466995ba8d4'::uuid,'730','998',3165,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f3816b9e-ea7c-4129-b2e2-cadb591ea9ea'::uuid,'730','999',2943,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('10706464-443b-44c0-95ca-9397e36090ce'::uuid,'731','998',3149,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c9eb8623-3eda-47b9-a495-2b5c7fa33a0b'::uuid,'731','999',2927,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d6ea9b02-f88c-49e2-9a04-cc0b3fc07baf'::uuid,'733','995',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('370d3a1a-3c96-44c0-8b6b-b36f191a5621'::uuid,'733','996',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d7e4f21f-4db0-4c6a-95f9-ccc0d7e034c7'::uuid,'733','997',4113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('56048c62-b4d9-42e6-8dc4-47218b1bfad7'::uuid,'733','998',3529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('213e8a6a-a2ae-4391-9c2e-ec0a123f5281'::uuid,'733','999',3306,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('051c5a45-6e30-45e9-9fb6-e087374eeb2f'::uuid,'734','995',4088,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a71ccff1-13d5-439f-94f0-b89749805a78'::uuid,'734','996',4088,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33dd5b04-90d3-4083-b8ad-cab962cff067'::uuid,'734','997',3830,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a558a4a3-ac8c-4039-a2d4-7fda24039114'::uuid,'734','998',3246,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('618ac59a-d227-484c-8313-82eb93b01868'::uuid,'734','999',3023,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9bff27a1-abf4-4f7e-805b-2989b8a33755'::uuid,'735','998',2920,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4aae6242-dfb1-49f1-bd1a-18ec5348c981'::uuid,'735','999',2920,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b13aa411-6f1b-46ce-a930-917ad224dc9c'::uuid,'736','995',3937,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('92f1f99f-6528-44f9-a043-57617c467b07'::uuid,'736','996',3937,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d6dcd39a-1abd-47cd-adf2-e7343b3f4daf'::uuid,'736','998',3096,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3b179f06-47b3-4bbf-b418-e7eab14bc7cd'::uuid,'736','999',2873,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f5c69656-6d1d-4d88-a0bf-b0b671d000d6'::uuid,'737','995',3938,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('afe0cb0e-cd7b-4dd6-82ef-9d3057c2f086'::uuid,'737','996',3938,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1cec8e65-b10b-4cf6-9641-56166529cf66'::uuid,'737','997',3545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0eeebcfd-9f41-477a-9510-e3d2bafc2e85'::uuid,'737','998',3096,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a24b5cd4-4243-4460-a471-01879b341b52'::uuid,'737','999',2874,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bbe6e422-9b1e-4c7f-82a7-f4774d5c6894'::uuid,'738','998',2778,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a4428f34-50e8-4ee4-800c-97ef26543bcc'::uuid,'738','999',2778,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0267434e-a055-4f66-b47c-6fc6c902fad5'::uuid,'739','995',3840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('56b9ad03-7650-42f2-8c29-4f411a6a1066'::uuid,'739','996',3840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1a760300-54b9-4e43-8b86-b80f676c5402'::uuid,'739','998',2988,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('16c0cb97-b8c0-46b9-9a99-d71dd9a02663'::uuid,'739','999',2765,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c6a81126-d91d-453c-b0f9-44b34f4a12cf'::uuid,'740','995',3969,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1623e39f-52ac-45c3-9ce5-fbc52d05b8bc'::uuid,'740','996',3969,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a539d535-1e6c-4cb1-9659-752795e0b674'::uuid,'740','998',3127,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('04ef9894-f0c9-455f-85de-f9bc33298bde'::uuid,'740','999',2905,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f3433ed7-a0e4-4527-b619-6e1571ceeccb'::uuid,'741','998',2887,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e8cc16d8-0b67-4947-818b-5b38e5983e41'::uuid,'741','999',2887,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4d9e44ca-06de-42ab-918b-6994d982b5e3'::uuid,'743','998',2870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aaa4b2e6-bce7-4733-8fb4-1108bf2dec3b'::uuid,'743','999',2870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c16ea93a-b2e4-473c-af26-980e504108bf'::uuid,'744','998',3192,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c71d0081-6142-42fa-b71f-d99f33ec3510'::uuid,'744','999',2969,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('55f47dec-8613-44b3-8cf1-98bbd0be5903'::uuid,'745','995',4150,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('86eb7418-abaa-46e9-9e95-75eb88329b0c'::uuid,'745','996',4150,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('45693e64-fbf2-423f-88aa-a4df8c6cbfa2'::uuid,'745','997',3893,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4ff7fbdb-6f17-4b37-b684-b5ee1f3b5068'::uuid,'745','998',3308,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e2375acc-4bbb-4372-a4c2-37dcb3695af1'::uuid,'745','999',3086,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9561186e-2378-47b3-94c5-900a2ef3330a'::uuid,'746','998',3071,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9bae5b9e-d5ed-4c86-9092-a89c4ced986f'::uuid,'746','999',2814,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3cd1363f-49ac-4105-bde3-f7f0f13e71a5'::uuid,'747','995',4155,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7300e595-eb53-4d39-8453-13d18742eb03'::uuid,'747','996',4155,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('939e7de0-b646-4da6-a88d-46e247befaad'::uuid,'747','998',3313,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f1896cc1-4d51-47b3-a84c-a37d616c0cf0'::uuid,'747','999',3090,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ff308d0d-79fb-4006-a23b-ccfd66a071c7'::uuid,'748','998',3191,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('13712051-7a49-4b04-aa95-9681159528aa'::uuid,'748','999',2933,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('910d8d5a-223c-44ca-b1bb-53809836c070'::uuid,'749','998',3260,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f1422f61-b2f3-4ed8-af2a-3a23d462b329'::uuid,'749','999',3002,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8f60a0a2-755b-4647-817b-1840092fbd39'::uuid,'750','998',3345,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e3f07e3b-550c-4566-a8b0-1af8ddb6351b'::uuid,'750','999',3122,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('544eb236-ddd5-4827-bf10-fe5ba007c520'::uuid,'751','995',4229,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3d25486e-7862-4a3a-887a-79159706fd94'::uuid,'751','996',4229,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e722204e-1529-4527-9d01-720d8879959e'::uuid,'751','998',3387,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0c423c86-f778-457f-bcb1-00f2c2e25e6e'::uuid,'751','999',3165,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('efcf4216-aee5-4ebd-a01c-9859876d98fe'::uuid,'752','995',4194,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('200fbb87-ab82-4aba-a691-da7d6f64a1b7'::uuid,'752','996',4194,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('91fb2392-7674-4218-ae2c-0727a721e3e3'::uuid,'752','997',3801,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('974f049c-2b4a-4bb7-8004-559354dca7bb'::uuid,'752','998',3353,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('968cbf43-7ba9-406b-91db-aabe37e47479'::uuid,'752','999',3130,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f401d56d-1a89-4a21-9535-2dee5fb7365c'::uuid,'753','995',4194,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da0a54e2-b141-4691-86f7-fc9518846103'::uuid,'753','996',4194,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dd7be9c3-b28a-423a-96f1-fa357cd9b6cd'::uuid,'753','997',3801,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('01326b0b-b9ee-41ea-a8ad-7d92be2d241a'::uuid,'753','998',3353,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('16d27e40-e4f5-4e26-a1d0-b01c448f734d'::uuid,'753','999',3130,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d4e7a1c1-fbc2-471c-85a4-8e8cbbf4a40f'::uuid,'754','995',4202,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fc9c01e4-bae9-4b34-832c-b008f0ddb165'::uuid,'754','996',4202,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f573ed76-1191-4ac6-bc39-2497b4428ef8'::uuid,'754','997',3945,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fbd7d290-4ede-4185-8a54-4af89595705d'::uuid,'754','998',3360,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b804d08e-654a-4de2-b960-16e4f7b02df2'::uuid,'754','999',3138,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('41cd7635-bef7-46db-a960-504a8a8dde6c'::uuid,'755','998',3415,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1a500329-b353-4c1f-a140-fc6cc32af0f0'::uuid,'755','999',3192,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4ddfffe4-d7e4-440b-acd5-2a3cf02fce07'::uuid,'756','998',3442,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d094cef2-640a-4727-a7ad-aac7cbe9dcf3'::uuid,'756','999',3220,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e76ea27-315d-4979-8d82-3f36148de84f'::uuid,'757','998',3182,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6d9966b6-db5c-484c-9621-c2a2a4ef7ac9'::uuid,'757','999',3182,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0dd1403a-2f88-411c-bdb4-89130fcac152'::uuid,'758','995',4337,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9468d760-2145-4a66-8999-8b03ba6be44d'::uuid,'758','996',4337,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f66f631b-34e9-42be-a6ea-1ed2b82fbaf3'::uuid,'758','997',3944,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3630b5f6-6148-4cef-9ff9-0f700f16383a'::uuid,'758','998',3496,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('759abcf2-36ab-4ee1-bc24-d930b5702ba8'::uuid,'758','999',3273,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f2f33ce9-a75c-4f52-8d6a-b0eacdc45328'::uuid,'759','998',3526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('160d0834-8138-4083-a5c4-b6fac0ae8119'::uuid,'759','999',3268,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7c24190f-7d6f-44d2-9262-400174e67937'::uuid,'760','998',3102,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('13c4971a-6212-4877-9a9c-899429bab619'::uuid,'760','999',3102,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('93af5b39-b969-407c-9a7e-713f676e5d48'::uuid,'761','995',4189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('292fc7d8-1af8-483d-9ed5-48fd47e3d52b'::uuid,'761','996',4189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7542cfb3-5c45-4154-b5b6-d02d2ee541af'::uuid,'761','998',3348,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('922e2988-0561-4205-bee6-28152a136897'::uuid,'761','999',3125,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4a3ce0a6-b2e2-4d58-8347-652a89e5bb84'::uuid,'762','998',3042,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc17424f-3ebb-46f7-a522-59f18d396b8b'::uuid,'762','999',3042,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b310d30d-8cf6-434c-8b04-2fa49cff6520'::uuid,'763','995',4106,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f6700c72-9fa7-4d50-b7db-ce140f9dd247'::uuid,'763','996',4106,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3b100324-4de2-4fe6-933e-aa4ca15d5065'::uuid,'763','997',3849,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('764d91e2-8643-4b35-bd48-76cf5f110015'::uuid,'763','998',3265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5063c60e-e508-4590-8b68-8acadeea2f56'::uuid,'763','999',3042,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('20af318e-e28d-4b8a-a40c-ab337c0556c6'::uuid,'764','995',4185,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('be0347b3-58d5-485f-a42d-07dc58d6eea9'::uuid,'764','996',4185,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('95a833af-916d-4c08-bc5a-506e4144c0d5'::uuid,'764','997',3792,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d6ad669a-7fc8-42a5-b041-b72accea5fbd'::uuid,'764','998',3343,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('be16d5da-dbb3-428a-b592-64621097a869'::uuid,'764','999',3121,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('182b6a8f-0bb7-4fce-b738-00b45f0132fd'::uuid,'765','998',3211,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da448aa9-1cd1-4969-b763-56e57c680b12'::uuid,'765','999',3211,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('36eafc32-cd17-467d-802b-8b680dbe32fd'::uuid,'766','998',3179,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('799f50af-a252-440f-8c97-9b7c7b06a660'::uuid,'766','999',3179,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c9231b56-277a-43f1-9073-0eab5e5f78e0'::uuid,'767','998',3179,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8fcad0a9-a9c2-4199-8140-cf5b01cd3f72'::uuid,'767','999',3179,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1fe2c8de-4a52-4329-8d85-7d3152b56983'::uuid,'768','995',4269,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2c78881f-dad8-4a72-8c02-138cb2533cb1'::uuid,'768','996',4269,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f9d31f9d-fce3-4b85-9481-fe37e5349664'::uuid,'768','997',4012,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('58b21591-705f-47ea-8114-c8a9e6dd763c'::uuid,'768','998',3417,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('81cba574-5b67-4223-9705-356e38375f2c'::uuid,'768','999',3194,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0407a9fd-b2b0-48f1-942a-444b3cf28ca6'::uuid,'769','995',4214,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6098941b-0e60-4448-a068-8eb70c904b7d'::uuid,'769','996',4214,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('396a42c5-0350-4c88-af78-b339c869027f'::uuid,'769','997',3956,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8b569e27-a54a-471b-8459-86e6b6ec010d'::uuid,'769','998',3353,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('492cb192-389b-4bc6-9d42-f9720577323f'::uuid,'769','999',3130,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('df57c217-cf89-4c31-8af9-b959c1c4f10e'::uuid,'770','995',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2835c53c-698f-4ca4-b5eb-6b3e55e9a2b4'::uuid,'770','996',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6a64f1d2-7090-48b4-80af-684fce10e22c'::uuid,'770','998',3595,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('793c0303-3195-4c7d-a575-19f8bcf95b4b'::uuid,'770','999',3372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('de42bcc0-cf2e-43ae-adc2-fccc34944435'::uuid,'771','995',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f305afb3-7f70-44ad-97f5-b51cda70b889'::uuid,'771','996',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('739bb0be-8fe4-447d-b89f-4e175889ef7a'::uuid,'771','998',3595,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('17493edc-56b4-4016-a556-5af0bd715b8e'::uuid,'771','999',3372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ba8acaf3-9c7f-4487-8fc4-57f235bf111f'::uuid,'772','995',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('496d56a6-e10f-45cc-acf7-65960f7a5fad'::uuid,'772','996',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('72a05ea9-6d8c-4595-9832-03e3d8379b81'::uuid,'772','998',3595,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1a02ed40-127b-4d05-8ac8-961a0d7e5901'::uuid,'772','999',3372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8b772421-a8be-4e31-bdd3-e527f9f9ca16'::uuid,'773','998',3571,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d5791c1e-11bd-40f0-b2f8-0464272a1fe0'::uuid,'773','999',3314,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('970cc711-43b5-4606-8330-5d742811afea'::uuid,'774','995',4453,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('27083004-d71f-4e75-9765-7667533c30cd'::uuid,'774','996',4453,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8613d847-c804-48c3-a733-263db5312856'::uuid,'774','997',4059,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('848a6ec0-5e4e-4664-8517-0fc3b3029261'::uuid,'774','998',3611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('df2c9835-9220-47f8-ac23-1d91efbce01c'::uuid,'774','999',3388,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2eb2fba0-4481-4746-aa79-df17a9606fa4'::uuid,'775','995',4462,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c2f96185-04f9-41ce-886d-64964710af6f'::uuid,'775','996',4462,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a285a62e-d874-4862-ab4f-93c4580db3b5'::uuid,'775','997',4205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('058a3af7-3745-4407-a58b-71ddf684800d'::uuid,'775','998',3620,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f1cb01c5-f15f-480e-8b51-c3441e6fbedd'::uuid,'775','999',3398,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a088f7e0-e729-442b-871b-fbcaf2d4d7dd'::uuid,'776','995',4468,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('98ae01ad-c47a-42fe-847c-7762f8b8bb77'::uuid,'776','996',4468,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c46387f1-57cc-441c-a827-552440f62719'::uuid,'776','997',4211,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('843315e4-115d-42da-b257-375c4f5d4c14'::uuid,'776','998',3626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54b546b8-efaf-4199-8b2d-c90cedd15b1a'::uuid,'776','999',3404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('02eca49c-4c68-437c-b23d-5d3974769c9e'::uuid,'777','995',4468,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('33d44b9f-1829-40df-9b72-194f6143bbe7'::uuid,'777','996',4468,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6d35d116-2b74-4a78-8096-4bb16b8fd5bd'::uuid,'777','997',4211,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('73886e26-3505-4833-aaba-e005efa1cf68'::uuid,'777','998',3626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9cf86ab3-5ddd-47c7-93c8-a4812cb1d65c'::uuid,'777','999',3404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c612cf97-c61e-40e8-be41-90884141c31f'::uuid,'778','995',4356,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8ffbcead-bee9-4838-b385-4fca44c78d44'::uuid,'778','996',4356,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('973ee4ce-bb55-4a19-aaa7-fe612c0babd6'::uuid,'778','997',4099,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54d568c2-3475-44b8-b588-c518410ea58d'::uuid,'778','998',3514,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ef8190e9-66d3-41d3-be57-c5a6fab8c234'::uuid,'778','999',3292,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a5cec0b7-47bb-4e63-90e9-7ee62ef43342'::uuid,'779','998',3391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4ef7f537-962d-48f6-af3c-d87aab7d1c42'::uuid,'779','999',3391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dc7f6064-9ab7-491f-951f-92b95308e181'::uuid,'780','995',4439,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e93eb9d0-5b26-4398-9994-d838286e60fe'::uuid,'780','996',4439,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5c8d59d6-c64a-42b3-aaa8-ef4e7acbd76a'::uuid,'780','998',3587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('58deb89b-6ba4-436f-a3b8-3310eda2feba'::uuid,'780','999',3365,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2bfade10-9a6d-43f6-a084-bbe6b091c33c'::uuid,'781','998',3333,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('59ec7892-adb9-4e91-b52f-6303240658b2'::uuid,'781','999',3333,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9468666d-76da-4b97-81b3-2bb320f32b85'::uuid,'782','998',3552,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7930bbd1-4262-4c11-b061-79108c8ee2c7'::uuid,'782','999',3294,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7c766fea-5acd-4105-8bf7-04d31f5c7929'::uuid,'783','995',4529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('48360a60-26bc-4c4d-872a-46437d116887'::uuid,'783','996',4529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1f7209b4-bcee-4251-a5b3-3522e3b0021f'::uuid,'783','997',4272,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e9601125-9d8b-4990-8e2e-523f6ed039f7'::uuid,'783','998',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('40f4e44b-daab-4ff2-a6bc-d710873bb322'::uuid,'783','999',3454,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65075a29-9ab2-4c81-b4b2-112ead7b8613'::uuid,'784','995',4546,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1b5f3c6b-d2ae-4b38-913e-2b2f3c65fed1'::uuid,'784','996',4546,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e38a6492-4552-4255-bff8-988f3a089beb'::uuid,'784','997',4153,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a39fb2e7-b90a-42e4-8cbb-2fba8dd42c07'::uuid,'784','998',3694,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2392327a-e872-423e-bc2d-5e31ca8e3e3c'::uuid,'784','999',3472,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e734cff5-3ef9-49a4-b5c6-91f589ef4639'::uuid,'785','998',3774,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f55f7c4c-b9d2-4fd6-a074-0f3ab1b923b3'::uuid,'785','999',3551,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a0b0acb8-794a-4cc7-a75c-12f5818483d6'::uuid,'786','995',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dedab282-0320-4998-b1e4-453590876f87'::uuid,'786','996',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('711d0b3d-32a1-4845-8fe9-bf1899f090fc'::uuid,'786','997',4113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1301ce15-d5b3-42ef-b50c-6e67b45e8914'::uuid,'786','998',3529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('94d438e7-84d6-46d3-aa34-0bf51f9294c5'::uuid,'786','999',3306,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('debbf784-89e5-4189-9a10-dd7153035646'::uuid,'787','995',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1f8cafab-0ee2-4fca-a4a6-3364a3316ee4'::uuid,'787','996',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c13816dd-1949-41ef-8934-fe8b6f0c96b6'::uuid,'787','997',4113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('be9783ac-4a01-4a1b-8d3a-9cdddd9c39e8'::uuid,'787','998',3529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d80f3c35-5c1e-4926-9c3b-135c0a03ab7e'::uuid,'787','999',3306,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('94fdfd63-53fd-470c-945e-602cd0463d50'::uuid,'788','998',3263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f39c91bc-df64-4eff-b5bf-3c2a9feafaab'::uuid,'788','999',3263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aea0aae9-0644-4d82-b473-188fc8505b19'::uuid,'789','998',3574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('341a954e-985a-4225-946b-1f6ef0ddd2bf'::uuid,'789','999',3351,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('80aeef72-093b-4a6f-87b4-7bc371ae45cd'::uuid,'790','995',3898,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e64f15d-1e23-4d4b-aafa-6dd695c69160'::uuid,'790','996',3898,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('45ef0651-c617-4687-b4f4-5166fe80f222'::uuid,'790','997',3641,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7d922574-fdcc-4570-8007-0047a706716e'::uuid,'790','998',3046,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1a7ea09b-a20e-4504-a578-7189c892acd3'::uuid,'790','999',2824,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3262ae9b-1a6e-433b-8b2d-92d3eab24f91'::uuid,'791','995',3898,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('99bbfea1-5038-4b9f-9853-fd8bf3ca81d0'::uuid,'791','996',3898,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('18c70f17-e71c-4ab4-9b38-e4f611bdf12c'::uuid,'791','997',3641,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('40cf827d-5cdc-433b-9abd-78c9be336311'::uuid,'791','998',3046,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65d9e55d-278d-4e0f-a36e-7de409084acc'::uuid,'791','999',2824,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('34c5b2dc-9339-4380-8d72-400172179263'::uuid,'792','998',3174,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5ee8a918-51f9-4c39-9b5e-a8e717541edb'::uuid,'792','999',2951,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('103c2dae-2573-4cf0-a9b2-c1d207f6b35b'::uuid,'793','995',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ca80a5c4-74c9-4a9d-a209-85815a35c9ba'::uuid,'793','996',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2b4cd4fc-eb03-4fb0-bce9-0267bd6cf8a9'::uuid,'793','997',3798,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4a23be17-9112-4143-8d60-aa31b96206fe'::uuid,'793','998',3182,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5ac078c0-2221-4a62-855d-82d55358eabd'::uuid,'793','999',2959,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5ce3e995-03ca-463b-8499-fa715c1d5757'::uuid,'794','998',3166,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('626bd578-2191-4b82-abb2-1a5d9e798e8c'::uuid,'794','999',2943,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5bb6ecda-8830-432b-87c9-2a2ec8fcac29'::uuid,'795','998',3277,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('173dbc5a-e580-49a1-9c66-27233383b73e'::uuid,'795','999',3019,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f61e8ea3-1b8f-4e0c-98ba-ce36c2080236'::uuid,'796','995',4165,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cd8849ae-eb2e-4ef2-890e-f9891027897c'::uuid,'796','996',4165,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a31637fb-a7fc-450e-86a3-08b6c91db07f'::uuid,'796','997',3908,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8586b3bb-a16c-4eeb-9219-f3e32f787152'::uuid,'796','998',3313,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2d851c79-e243-478a-aba5-a993b146838d'::uuid,'796','999',3091,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54e58813-9822-47c2-9686-001b5f44cacf'::uuid,'797','998',3249,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('503fd9cf-f7ab-4541-a4a8-29f1ecea2f1b'::uuid,'797','999',3026,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('81d92e1a-ae7d-450c-9bbc-0bc72eaed820'::uuid,'798','998',2975,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('638fa33f-c064-432c-b3ce-091583c16114'::uuid,'798','999',2975,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d6666445-7913-4d39-92b0-5b4dda237f7c'::uuid,'799','995',4111,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('19a97b26-9e55-42be-991a-a6ffac1a5849'::uuid,'799','996',4111,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f32712da-a79e-446a-b458-93f1778561ed'::uuid,'799','997',3718,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fec4602f-8165-4141-a444-b130f732b1d1'::uuid,'799','998',3114,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9fa853da-4d9b-43b7-b459-da13a4cca449'::uuid,'799','999',2891,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9bf20743-ad4f-45f1-b728-01a0ae51f6be'::uuid,'800','995',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5598f827-84c9-4056-bd50-a488e180e752'::uuid,'800','996',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9951e42c-96dc-4b07-99f9-ff45140668e3'::uuid,'800','997',3091,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5712d751-91dc-4d44-83dd-c55660e26444'::uuid,'800','998',2632,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e6d8b692-3fa1-441c-9b7b-86834b130de5'::uuid,'800','999',2409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('af0154e3-c8bb-43ac-963e-0463ea755433'::uuid,'801','995',3514,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5889d1a2-560a-4885-b53e-dabe65fcc6e6'::uuid,'801','996',3514,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('68c40d72-a33c-4230-ac2f-ae7ec4919474'::uuid,'801','998',2662,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('356d0bd7-6fe7-4534-a3b5-8d0798ffa854'::uuid,'801','999',2439,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('62ca44a3-a540-4b80-856e-5d8428896f20'::uuid,'802','995',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1e466a53-cb2f-4e9b-ab84-0dec45a1febf'::uuid,'802','996',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d9419d88-32f2-4c50-9b6a-be0bea4e64ea'::uuid,'802','997',3091,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d4c4121d-c40d-47a6-a250-9efca8190a45'::uuid,'802','998',2632,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('739a057c-249c-40e9-8ac4-a817e8420a73'::uuid,'802','999',2409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b1d56db5-907c-4257-9f55-05e582751d9e'::uuid,'803','995',3466,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7a248ef5-8b8a-473e-a5c3-58e16d44779b'::uuid,'803','996',3466,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('368ee8c2-dfd8-4ebf-9734-8426f33e3d1f'::uuid,'803','997',3209,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('89f97248-da28-4302-b020-4a7e0a0918a6'::uuid,'803','998',2614,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6a8c70f2-5ed7-4771-b58b-d42684ebb3fb'::uuid,'803','999',2391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('14ef7610-340c-4f94-b42c-be7522677e42'::uuid,'804','998',2596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('636e3d92-0431-42c0-9d7b-885eb840b02d'::uuid,'804','999',2374,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('11543451-4c2c-432c-bc7c-7e6e5b38c5cd'::uuid,'805','995',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ba3c1b1c-c9b2-4cde-a65b-d1e363c785ec'::uuid,'805','996',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('52626361-2fa4-4e8f-9962-2b1365b08ad6'::uuid,'805','998',2568,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('14a95caf-d36e-462b-91fb-4a40d6e25f15'::uuid,'805','999',2346,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ca0e6ebe-a38f-4be8-98f1-1fb8a16c2f8c'::uuid,'806','995',3438,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88e925c4-9c86-4bec-adc5-467826c15a0e'::uuid,'806','996',3438,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6ca6afa8-267f-498a-b5d5-bb0d2d689e16'::uuid,'806','998',2586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7fe8f985-93a4-447f-95da-0f427151b2e5'::uuid,'806','999',2364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6123d083-0768-43b0-af8a-9c3fdd69f1fc'::uuid,'807','998',2391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a108b92b-f6a7-4ccc-a978-588d5d530997'::uuid,'807','999',2391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ff34b9de-4cde-4e00-bf36-2cd2f40bafbe'::uuid,'808','998',2712,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bbed833d-db65-4389-8a22-70292368a8e0'::uuid,'808','999',2489,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7b1237cb-36a4-4bbd-b4a2-7479560532ec'::uuid,'809','995',3555,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0e7f1d3d-ed68-4d94-8431-7db0dbfbd638'::uuid,'809','996',3555,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f2771fcd-28c0-4458-814c-2f025ca7cdf5'::uuid,'809','997',3298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eea732fd-19d7-42ff-b2ed-44145047b758'::uuid,'809','998',2703,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('383bf30f-40f5-412d-bdc8-95a50d5f1077'::uuid,'809','999',2480,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b6167d04-ae60-4086-a1d7-9d373768e84d'::uuid,'810','998',2807,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('70378cab-228c-4afa-ad7c-dd05118cbdfa'::uuid,'810','999',2585,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d421b793-c671-467f-8e29-6a3e6e0b2153'::uuid,'811','995',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('247528fc-1e67-40e5-a7c6-3c2802caa37c'::uuid,'811','996',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33fa5677-2a47-4615-bb62-bf7ba25ee51d'::uuid,'811','997',3284,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('71fc15e3-d7cc-4c29-9422-9c21ca684fa5'::uuid,'811','998',2757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b29c6b26-213f-4f91-b15b-842cd7f11f15'::uuid,'811','999',2534,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4c9556aa-da6f-4961-9961-1b58fde8a42b'::uuid,'812','998',2722,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5fa35c18-af52-48e5-a065-66fac49e6cf3'::uuid,'812','999',2464,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('155f8de7-b2ae-4b0a-9b19-83b07e209899'::uuid,'813','995',3593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fdc13d09-0841-4696-bafd-a95f99b9a98e'::uuid,'813','996',3593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5e174c72-1b11-40f4-81c3-bc680e6255cf'::uuid,'813','997',3200,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ae7d1a86-446a-4a8f-93ec-dd7ab1b88f45'::uuid,'813','998',2596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('729c99a7-dde4-4e16-9a08-773a6dda94ad'::uuid,'813','999',2373,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4e4c1532-9715-4209-a5b6-2df9f2fa5856'::uuid,'814','998',2592,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3ff15518-5857-4074-902d-485e2013284a'::uuid,'814','999',2370,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3fe48fdd-edfd-485f-8475-5e128ac930e6'::uuid,'815','995',3526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7a0671cd-2f79-46e6-a812-2bacd026b5f5'::uuid,'815','996',3526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('00e4a918-d697-423c-ad9d-7a2f66fd801b'::uuid,'815','998',2531,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9b2ff2af-f648-4146-8cd1-31477f6ab572'::uuid,'815','999',2308,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7bd21e3e-ea6b-45c6-b428-e9f6142d3e71'::uuid,'816','998',2530,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('53ca18b5-10fb-40e5-acc6-202d8c6f795e'::uuid,'816','999',2307,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('bcf4688f-0825-4753-9b19-47733ea77b2b'::uuid,'820','998',2504,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fe126a02-0c27-4bdd-bddc-07e9ae448c09'::uuid,'820','999',2281,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c32d4a4f-0d54-4365-a9e4-7e2cc7ba18d1'::uuid,'821','998',2113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5b9acb11-f79c-44e7-ae98-6532ffdfb711'::uuid,'821','999',1890,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1a381863-3687-42ca-91f2-96f39b5ed2dc'::uuid,'822','998',2461,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d36a66de-58e3-4ee8-b01e-24ca754ba54d'::uuid,'822','999',2238,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('11ef91e0-4709-4062-952d-2615c602a513'::uuid,'823','998',2437,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0e71fe74-de57-4e9f-8c7e-79b8fec47dd3'::uuid,'823','999',2179,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8fc89026-4bb5-4520-90e4-9b431be28b22'::uuid,'824','995',3053,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('64df49a8-a3c9-421c-a47c-952dfe68a30a'::uuid,'824','996',3053,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2abffb70-419e-4b6e-9af7-4920504606fa'::uuid,'824','997',2660,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8c03d676-dae3-4a55-a414-cea4c1a9b56e'::uuid,'824','998',2201,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3a7efe2e-0b7f-43a7-98b6-30a149f3bd23'::uuid,'824','999',1978,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a3e83014-a5a1-40b4-9572-d24e5dc410eb'::uuid,'825','998',2323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6bd9305c-5dc7-41ed-aaef-3ad81ce4682e'::uuid,'825','999',2065,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('50954769-384e-4676-889b-9f71ef62301c'::uuid,'826','995',3209,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('05f67669-fd93-4130-8795-c719ac4a4968'::uuid,'826','996',3209,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43913918-5c2f-4cea-9204-958726c2cf2f'::uuid,'826','997',2952,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dd1d5754-27dd-4df2-a708-dc08c5fc5c19'::uuid,'826','998',2357,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2f7f6bd7-54b3-4efe-afd0-878e1872a829'::uuid,'826','999',2135,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('09a71777-88ad-40aa-ba5c-db4aa33f435e'::uuid,'827','998',2341,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6c8d7f2e-20cb-4aa9-a090-380655a20995'::uuid,'827','999',2118,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5ef5ceef-0e63-4827-8a86-bb793e3e180d'::uuid,'828','995',3098,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ee91fdf8-0a69-4e0d-a5b0-168912b8adf1'::uuid,'828','996',3098,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7ff066ba-0a3c-4591-8e04-fa561f5cb030'::uuid,'828','997',2841,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c2f38237-d5f3-476e-bdc5-f5c43b272200'::uuid,'828','998',2246,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b9256019-d088-4bc5-9ec2-fb8d3f9833ff'::uuid,'828','999',2023,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5770ec43-6d25-4417-8551-7f9a8bc61f3c'::uuid,'829','998',2328,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1464a511-b5aa-47c3-bdc1-63e45e343446'::uuid,'829','999',2070,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8f29f8b5-2626-4445-ad1c-455dd5d8c1be'::uuid,'830','995',3126,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('02782516-3e30-4fb5-85a9-46cd88fcc092'::uuid,'830','996',3126,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('07c7b246-e924-42de-a610-949027c91b90'::uuid,'830','998',2180,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('07c16376-2f2c-4b16-92d2-b1fc8cedf2cb'::uuid,'830','999',1957,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c9334e04-b699-4bb4-9338-d1c0dae8be06'::uuid,'831','995',3167,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc2d180e-a100-40d7-83f9-9836ac3e12db'::uuid,'831','996',3167,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('baf2859e-1983-41d1-93e7-711360b1ebcd'::uuid,'831','997',2774,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('64ad98bd-b74f-4f55-833a-61ce4ad565f2'::uuid,'831','998',2221,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('365c3aa3-a55c-4d76-9400-8c05da56eaec'::uuid,'831','999',1998,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cf8c455e-bb04-484f-8453-1e0713c7b79e'::uuid,'832','995',3062,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7c74bd05-b17c-4887-983c-993f5de37cc2'::uuid,'832','996',3062,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a537f332-1ac0-476f-ac56-e64e214f4e70'::uuid,'832','997',2805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('83c904cb-cc71-4e7e-85fe-189121e37569'::uuid,'832','998',2103,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da70f09f-4158-4d3c-9263-927e0f1b7fb3'::uuid,'832','999',1881,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c3fb0784-62c3-4a97-bbdb-165bbab3993c'::uuid,'833','998',2027,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('21b3ce86-174f-4204-b46f-bfc9a6935953'::uuid,'833','999',1770,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4c37210f-9fb7-4d61-9e96-06cc5c73f511'::uuid,'834','998',1825,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('deba3e18-971d-43f8-b924-69d6e064832e'::uuid,'834','999',1825,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d5f968f0-5f4e-4a95-9169-0a4afd05f2c6'::uuid,'835','995',2806,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dde0096e-012b-4d33-a590-34b2b4843164'::uuid,'835','996',2806,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('41898070-92c2-4b8b-bc4b-00e2fad3a448'::uuid,'835','998',1740,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f7ee0791-5cc3-4cd5-be95-5f719ef97fba'::uuid,'835','999',1517,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('94579535-cd7d-4fbc-8488-a942b64eed13'::uuid,'836','995',2977,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('729fe30d-1a8c-4991-ba64-b21cd2986d24'::uuid,'836','996',2977,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a4c68ee9-956c-4aeb-87dd-7714885e6172'::uuid,'836','997',2720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('064e9193-e225-42bc-9fc4-33c7566669f3'::uuid,'836','998',1911,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d5c846a1-981e-413a-a822-78abb1443881'::uuid,'836','999',1688,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3877b87e-1f73-4a59-921f-159e6930940b'::uuid,'837','995',2977,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33fc932c-05b0-4978-aedc-44e8284d2663'::uuid,'837','996',2977,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('615ab569-8f05-4571-8a68-b37a7d1b4bbf'::uuid,'837','997',2720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('17d1550f-64a8-4d0e-b8ef-7ade458a28f1'::uuid,'837','998',1911,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9c5ff2e9-f473-4c84-9f82-ad159521a345'::uuid,'837','999',1688,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5a5e13ff-c820-4a2f-8510-e030c7023b45'::uuid,'838','995',2677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4786806e-6280-4b37-b70d-530f9a20b3ba'::uuid,'838','996',2677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2cb4b259-e719-4dbe-bd81-4f13fff7bf73'::uuid,'838','997',2420,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('799106b4-9417-44ba-b83f-414aab60fb4c'::uuid,'838','998',1611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ca571b5e-4b7b-4ead-b508-1cf001fe7cfb'::uuid,'838','999',1388,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('af3ca401-4ef9-4f27-a294-02412ddf8cce'::uuid,'840','998',2249,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4f4e83cc-1c87-433b-80e5-7b85e378f8fb'::uuid,'840','999',1991,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('12e675bd-5f21-4312-9c83-69d375aad976'::uuid,'841','998',2249,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c701b3d4-45a2-462e-8ef6-359877e4a51b'::uuid,'841','999',1991,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e3eb9c5d-b6b5-47c6-aff5-9763c3523300'::uuid,'842','998',2249,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('acf0bbac-a468-4d9c-aff1-5afb9fe6f3f5'::uuid,'842','999',1991,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7594a2c9-258d-402e-bdce-f4adb80525ec'::uuid,'843','995',3177,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f1758cfa-643d-4b43-a974-5af15a6d540b'::uuid,'843','996',3177,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ebf0607b-859e-4fa9-83f3-2d675dafa02d'::uuid,'843','997',2784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e4ae54e8-6420-44df-9e27-7c2071a63773'::uuid,'843','998',2180,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9b01e169-4ea4-4f10-b3d2-05dc46894b06'::uuid,'843','999',1958,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7920523e-c939-4f0d-b946-a0ed5508a7aa'::uuid,'844','998',2213,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4f76bfc9-2225-4aa6-828e-b34b1258240d'::uuid,'844','999',1990,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7c2a7a68-58b8-48a9-91c1-f3e5f0508c3f'::uuid,'845','998',2483,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b11e9c22-6501-4a1e-8392-0e501e1559fb'::uuid,'845','999',2260,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('641d1523-7fe5-4b77-b9c6-587bf1bad79f'::uuid,'846','995',3367,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('be04f3d2-0aec-4f61-8cd0-79865877c3f2'::uuid,'846','996',3367,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('52b7aa0c-16ae-4b3d-93c7-2e811035ec05'::uuid,'846','997',2974,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e3ac5d2-49e4-4e62-8ef6-17988de2ac1b'::uuid,'846','998',2370,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7739dc40-bd32-40b7-94c2-bb2bec096354'::uuid,'846','999',2147,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('14123361-02e7-4b28-9147-dfa55fdcb935'::uuid,'847','995',3494,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f8f2bf5c-0108-4782-85a8-b3268996cd11'::uuid,'847','996',3494,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c9e27d42-5e40-4077-b2ce-037abd9d2456'::uuid,'847','997',3237,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8ffff393-4f3d-432e-95da-bf45cb096d70'::uuid,'847','998',2485,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1a30f0a2-2c69-4139-8932-ed6f23cbd736'::uuid,'847','999',2263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f1027bd1-3691-43f8-b3cc-8f41e2af432a'::uuid,'850','998',2839,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('096e3f88-5166-4010-b791-3a6a67f13fc4'::uuid,'850','999',2581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7eda0e58-5da6-4b3b-9628-e26ab3ac02c1'::uuid,'851','998',2839,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b07d6ead-fc84-4c03-9a6b-967dad0616b4'::uuid,'851','999',2581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0593ac6-71e0-4e68-b895-4b6f25842502'::uuid,'852','995',3955,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8c2530a2-f4c0-4ff2-bdcf-bcd2baec972e'::uuid,'852','996',3955,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('375c640f-ed1c-4929-b916-21d89a393695'::uuid,'852','998',2904,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3cd80c77-1323-4e60-9ed2-f2455b12683c'::uuid,'852','999',2681,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a16ea5d9-ed5e-4066-b4be-dfce0fa8ee25'::uuid,'853','995',3908,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('cfbeb9c4-8cf4-4653-9556-f31cdf3a35ff'::uuid,'853','996',3908,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7a9581d2-3957-44de-9471-6973c8302d02'::uuid,'853','997',3651,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1482554e-da01-4911-a496-88a8e3819e1c'::uuid,'853','998',2842,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f0a328d6-6e75-45f2-910e-4b238259dfdc'::uuid,'853','999',2619,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a73cd696-d9f7-4128-b430-4740f47e9113'::uuid,'855','995',3932,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a747d1d2-1f8f-4442-8f2d-a22af56f81a0'::uuid,'855','996',3932,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('89f02de2-35de-4413-99a7-55416fbf9008'::uuid,'855','998',2929,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ace99720-41d0-406d-8494-93536dbaf511'::uuid,'855','999',2706,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('003764a6-e41b-4177-8019-aabee7140373'::uuid,'856','995',4053,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('29037999-8ff4-451f-86e6-a57f13d47d9d'::uuid,'856','996',4053,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('979c8e8e-be9d-4b54-acb9-ad83a7939657'::uuid,'856','997',3795,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1814a238-7078-48fc-b0e6-34a4b2233d53'::uuid,'856','998',3002,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('091e29ea-5573-4d73-a513-5bb72763fcdc'::uuid,'856','999',2779,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f4138556-fc12-4ecd-b115-66ed813ea3ec'::uuid,'857','998',2696,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bc4d2c0d-fc9f-4dab-a59c-47765d8c5fd0'::uuid,'857','999',2696,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('29938f27-1720-4893-9467-c4418bea57f4'::uuid,'859','998',2847,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('32d2a8d5-9663-461e-bab5-62aa6b4a535d'::uuid,'859','999',2589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0ca75492-9b7d-4650-8f76-d068cfdcab9d'::uuid,'860','995',3750,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('974c7ba5-a367-491a-9c8c-29e775f45622'::uuid,'860','996',3750,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('86cc5a3f-3b34-4989-adc6-505df87881cc'::uuid,'860','998',2753,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('dda7de30-55c8-4b47-be18-9d0086a00e14'::uuid,'860','999',2530,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cedb414d-55dc-4d92-9525-41cc212a23a8'::uuid,'863','998',2805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce518c21-d647-475f-b6b4-129e10ee1321'::uuid,'863','999',2547,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a0943c49-cc3a-4797-a920-d7010bb5390d'::uuid,'864','995',3723,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bd7ca0c4-ead2-4195-baf4-2816db87a424'::uuid,'864','996',3723,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('35207817-42d8-41da-affd-ce6bd5278636'::uuid,'864','998',2657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c77a0269-61c3-4696-9e82-24f32bc42b98'::uuid,'864','999',2435,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cbd9e177-f941-44ba-8d3a-8fd21f6a46c8'::uuid,'865','995',3711,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0c4bea6b-a670-45fc-b6ee-d4d2a4229eb1'::uuid,'865','996',3711,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f2ba5f6-5398-4886-8d61-d81339d1c825'::uuid,'865','998',2714,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c1431e86-d495-4c17-8c38-f53e227eca3a'::uuid,'865','999',2492,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9c09f830-b67c-4c25-ae21-3895570b2918'::uuid,'870','995',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9831ef14-d309-406c-bf5b-e6a2ed2bcd38'::uuid,'870','996',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f8346070-9bce-49f3-b4da-78aacf33d6f0'::uuid,'870','997',3587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('74a7191d-4a09-43ba-a3b0-98019a15e3e8'::uuid,'870','998',2847,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('00cb483f-f804-495b-8d19-e41cdeb1df11'::uuid,'870','999',2624,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('74bf4e4a-49ee-4953-bfa3-a1d5265a0f0c'::uuid,'871','995',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da4e759f-dc6d-4af9-872a-300ea21a832a'::uuid,'871','996',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dfd0b166-69a8-434a-a2df-0a4f888495d5'::uuid,'871','997',3587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('503ae9b3-47c5-451d-8dd1-86d7ddc4a84e'::uuid,'871','998',2847,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('cdef1c81-206e-421e-b7f1-62302d357c6a'::uuid,'871','999',2624,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d729b702-5bdd-424e-85d2-3590b8ba74b2'::uuid,'872','995',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('449f406a-fc61-433d-9afe-b3a02ebb4fe8'::uuid,'872','996',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3303401d-0b96-4766-ae34-1c2d77c48cd7'::uuid,'872','997',3587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('613bf0c9-279c-4719-a1bb-d937132af2ed'::uuid,'872','998',2847,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8b21d8a1-2b11-47a5-ba5a-37398b8c6fd7'::uuid,'872','999',2624,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c595c2c5-b7f0-4e8f-af54-bbc2ea195b28'::uuid,'873','995',3727,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('595fc89b-dc24-484f-8747-85354b94d563'::uuid,'873','996',3727,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('53f13fa0-0445-4b5e-8303-6360e85d3810'::uuid,'873','998',2730,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ff7bf545-aae8-43ba-b305-487605400382'::uuid,'873','999',2507,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e5faacce-0572-4b91-9073-a344878c3566'::uuid,'874','995',3663,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3cd6731b-4fca-4f8b-abd4-b7e7938fcc43'::uuid,'874','996',3663,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9aaeddcc-5e55-4634-ae83-c892a833af05'::uuid,'874','998',2666,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('afbe0cf2-5d38-4d5e-8693-fbd35f819061'::uuid,'874','999',2444,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43250438-8323-46bf-bbd5-9a131691fa0e'::uuid,'875','998',2840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('073107fd-48b7-4dec-8feb-c05cf3fb7a98'::uuid,'875','999',2618,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('85b9165e-bb4b-46a9-be26-95bf34213fa0'::uuid,'877','998',2659,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aec35b7e-8064-42b2-b872-8fecdd9971cc'::uuid,'877','999',2659,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('321e1504-2ff8-4b05-85c7-5af79b7b3464'::uuid,'878','995',3929,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7d4d8260-f383-4fc6-903b-0ac75c2c3754'::uuid,'878','996',3929,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('43529c84-6e43-4b88-974c-7353be5c27e2'::uuid,'878','997',3536,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3e5976ec-18d5-4e78-a3cb-283a029df62a'::uuid,'878','998',2932,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4e308c44-744d-433f-9e1e-4967bd5c7438'::uuid,'878','999',2709,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5c83db13-028f-41de-8417-4a6a4bfa02df'::uuid,'879','998',2738,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e5ac3534-d378-457b-9afb-7745dbb950e9'::uuid,'879','999',2738,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2007125e-aa80-4027-bbfc-69067d9561aa'::uuid,'880','995',4035,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ef41e618-3dfb-459a-aace-5e473038c8d3'::uuid,'880','996',4035,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('065dcba3-c527-4cc6-9d80-fbe9dfbaa106'::uuid,'880','997',3642,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f7092da3-3bb6-42be-8f8b-fd493590ea79'::uuid,'880','998',3038,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1bc46b9e-2671-4c93-9013-c86ddd55e6a5'::uuid,'880','999',2816,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('03a1592c-999d-411a-bbdd-7c7d577126cc'::uuid,'881','995',3982,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e7318352-b9c9-4945-b87a-a2b75ebdecf1'::uuid,'881','996',3982,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a9549a8a-11b2-422a-baa6-765be2eff0ac'::uuid,'881','997',3589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cdf0061b-0797-41cd-8b3f-5e5c50c20a33'::uuid,'881','998',3099,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('18933378-fdb1-43bf-bef6-85f30dc5d171'::uuid,'881','999',2877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bd9106e8-abfe-4762-8adb-411dfd39459c'::uuid,'882','998',3118,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('46545428-646c-4c5a-9a7e-1245b8c648a2'::uuid,'882','999',2895,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('778cbd76-fa36-450b-bb24-09aff122c7c3'::uuid,'883','995',4032,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ddde297b-056c-4b2b-89c0-33524505a61b'::uuid,'883','996',4032,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d64b62e9-0c39-487c-ba18-52ed6b55c0a9'::uuid,'883','998',3042,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c3793354-fb9c-4e7f-b3d8-ef73c1a57bae'::uuid,'883','999',2819,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3ced66ad-8fde-416f-b227-bf38e199ca34'::uuid,'884','998',2760,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9472f6ae-c098-42a7-aad1-0871511b4668'::uuid,'884','999',2760,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('99c52cef-94b9-487f-ac31-76742185350c'::uuid,'885','995',4111,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('05850e92-edaf-48ac-96b6-a5d46ea286b7'::uuid,'885','996',4111,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eedccae1-2aeb-410b-afc3-5beeea52ea1e'::uuid,'885','997',3718,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('246629f6-1ccf-4253-bb7b-fb0329d7d952'::uuid,'885','998',3114,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3ed3eb3e-3863-4143-a59f-cf75ef60ae23'::uuid,'885','999',2891,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9a6d8519-7487-4ab5-87d9-4480014db52e'::uuid,'889','998',2532,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4a077efc-17b4-492f-a137-d7bf25664134'::uuid,'889','999',2309,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4225a4e3-c5fb-4355-9ce6-cb1bff9090af'::uuid,'890','998',2532,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b8c45974-b9d5-482c-9c23-be6745fdac35'::uuid,'890','999',2309,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e25e09c6-70b9-4d7f-8435-d07cc895be0e'::uuid,'891','998',2532,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d263068-46a3-4fa3-9ed2-809f8fced7c7'::uuid,'891','999',2309,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('61f1a70a-5ff6-4cd1-98c7-ad0f4b6de49e'::uuid,'893','995',3320,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('76557d71-f357-4ba5-8e3a-c3563bd1c018'::uuid,'893','996',3320,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('047035e9-e554-4175-a706-011446aef94b'::uuid,'893','997',2926,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('318efbf8-ba01-48e4-a88b-d899e74b72d3'::uuid,'893','998',2254,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f68548d1-b6ba-4140-ad20-1a9fbe6b2eed'::uuid,'893','999',2031,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e2540999-44d1-4e97-9d41-b97cdc0eeac5'::uuid,'894','998',2191,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('36853432-bbf1-4630-8e8e-60eb6f74d646'::uuid,'894','999',1968,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('caaa42a8-cea4-49a2-81b0-70d196499d5d'::uuid,'895','998',2212,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('589fcc0e-ef03-4d34-9d75-8bdc21ed6ed9'::uuid,'895','999',1954,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9f26c49a-0faf-4f48-b720-7322dcb487df'::uuid,'896','998',2212,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('76f74300-db1f-416b-9f5f-8562fb0efe42'::uuid,'896','999',1954,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d1c9e95-3efa-4350-a31f-202facb2256b'::uuid,'897','995',3308,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9bc392b2-e9cd-4985-8b77-21f98c182758'::uuid,'897','996',3308,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('af9e8f15-eb8c-4346-9112-a6ef4d43455f'::uuid,'897','997',3051,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ee99372a-f7e8-45e4-ab49-f45bd40dda4f'::uuid,'897','998',2242,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f79d1fdc-d868-4a9b-8089-c324c1ba0236'::uuid,'897','999',2019,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('91fadf8f-bfd6-49d7-8af1-0c875eb1837c'::uuid,'898','995',3206,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('40ee2eb2-0b2e-463c-a995-17f5b745b064'::uuid,'898','996',3206,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('00df1c64-dcd2-4da2-b659-fb1686d9a119'::uuid,'898','997',2813,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('75e7e76a-a288-4f0b-9ace-6aff15066d67'::uuid,'898','998',2140,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d26ea265-c508-4887-bcbb-51e52be82d6b'::uuid,'898','999',1918,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('77501771-13cb-4a23-a153-fb08e1d02372'::uuid,'900','998',2613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e2c4dd7-7650-41ee-bde0-4393baa5cb34'::uuid,'900','999',2390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('85ee5102-bbe4-475d-90c5-d5b5fb21a0b4'::uuid,'901','998',2613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('15daafbd-1892-4af2-ab2a-6b6fa0ff0f5c'::uuid,'901','999',2390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('483f1f42-8a51-49f7-bd14-a94c344ed126'::uuid,'902','995',3678,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('159bac5c-d6c2-4c8d-a935-a49fdf0795cf'::uuid,'902','996',3678,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6333e31d-6514-43b3-8c78-d753872b0841'::uuid,'902','997',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('28646c4b-5f0b-4c2f-9b0e-d2cd128d187d'::uuid,'902','998',2612,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3ecb18e7-a559-4708-9f83-605380ce43d7'::uuid,'902','999',2390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('022ced8d-1e04-48c0-91f9-8d551d4c9f5d'::uuid,'903','995',3683,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8bb8e3af-9c32-4e67-af7b-725a962dffe3'::uuid,'903','996',3683,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c638bdad-c0b2-4be5-b35f-bb749cf03d2a'::uuid,'903','998',2617,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4111ca0a-eb3f-4a40-9107-cfedeab5797a'::uuid,'903','999',2395,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7607f73d-916d-4b79-9706-683842d7bab6'::uuid,'904','998',2614,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f2dd75ae-03d6-47e8-b4ba-b52dfdbc7489'::uuid,'904','999',2356,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d8e2105e-641e-48fc-acdd-c3c9743bb153'::uuid,'905','998',2371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('26041a79-c8db-4185-8c8b-933113f466ae'::uuid,'905','999',2371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c933c534-e28a-430a-89bc-d8c64764f99f'::uuid,'906','998',2629,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('77f38e7e-527f-4c14-a590-64f1fd6a2b4f'::uuid,'906','999',2407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('16ba1e86-cd40-4885-abf8-3d09ff58622d'::uuid,'907','998',2633,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('875d68c8-aa33-483e-84b4-330d2cb12529'::uuid,'907','999',2411,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('852ed1e3-51ab-42bd-8016-a214213b2038'::uuid,'908','998',2635,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('59d3ea5c-c785-4591-a46e-d363f323047e'::uuid,'908','999',2377,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cbf306a6-45d7-4ab9-aebd-0c2657ac0336'::uuid,'909','998',2613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3ca8dbf1-c1d6-4e14-9afb-2fe8d830c4cd'::uuid,'909','999',2390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e0b953a3-b94c-4599-acc4-6c2e3e2e1271'::uuid,'910','998',2614,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('008344d9-ac7e-4cec-b5f4-0682cfc7932d'::uuid,'910','999',2391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2a23830f-6996-484a-a54f-85ba95c1feaa'::uuid,'911','998',2614,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('61bc56c1-5203-40f8-8231-baa7036b7f61'::uuid,'911','999',2391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('98127bc8-928b-4d6e-bb94-2bdfae9fc426'::uuid,'912','998',2614,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3e5d8546-5a7b-4b21-ac0f-d831bb826ac5'::uuid,'912','999',2391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cda4b9a9-3ac6-4111-b460-414f69d77bd3'::uuid,'913','998',2593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('68c9a20e-0c18-4564-8e4a-18c67468b888'::uuid,'913','999',2335,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('58f2b5ab-153b-44a7-92b4-5a64dd1e103c'::uuid,'914','998',2601,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f14a296-b152-4cf0-bf91-ed9a710abf4d'::uuid,'914','999',2343,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('235e0118-cbc0-4ddd-a917-816b4ab33ebe'::uuid,'915','995',3670,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dc4d8ae8-8fd6-41d4-87ec-038b1d9c4bfe'::uuid,'915','996',3670,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88fdca35-7353-4633-b8d8-48bf7edbdac9'::uuid,'915','997',3412,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4263d6fa-f06e-4484-917c-7ad37b33a199'::uuid,'915','998',2604,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4a965f28-82a7-4e9f-bdd4-d92b91ac4342'::uuid,'915','999',2381,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('819cdd81-9fbd-4c15-91e6-e9ef1f20caab'::uuid,'916','995',3670,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae93b1af-36a8-4063-aaf1-6c19bebd172f'::uuid,'916','996',3670,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('db4aeea6-f983-4b3c-b78c-1fee6987ca50'::uuid,'916','997',3412,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f17bab16-39cf-4462-a032-0dd1829d346b'::uuid,'916','998',2604,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7d8ce794-1d08-45dd-bb06-3e32b27f18ce'::uuid,'916','999',2381,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8a0a82a3-ba2d-480f-8d4a-fa313cc1f93e'::uuid,'917','998',2372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b87c7f7b-d048-4a81-a421-ae1199381172'::uuid,'917','999',2372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8f8c6394-91e1-40ed-976f-4a7ba2855e15'::uuid,'918','995',3685,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('58e1c51f-d579-405f-bbd3-f313e7ebd4ea'::uuid,'918','996',3685,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('41bdb145-135a-4709-b40c-3d3ea0bc0c9e'::uuid,'918','997',3427,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a11ff6e4-24d9-4e37-8211-db3ed5a91446'::uuid,'918','998',2619,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a1f6ac02-325c-41e4-8092-dae3597c7f2e'::uuid,'918','999',2396,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0b56958f-d9e8-4da6-855d-959e9b1fe4a4'::uuid,'919','995',3823,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8cdfed5f-7986-4624-b035-f61c73e028e5'::uuid,'919','996',3823,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0101f071-041b-414e-a09e-9c7257e88f5d'::uuid,'919','997',3430,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0ddfbcd7-8f37-4a8c-967a-c6384474b63e'::uuid,'919','998',2757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0c7f33e-d7fd-44a5-8dbf-1eab32bc63f6'::uuid,'919','999',2534,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ca60699e-6647-4411-9a67-20d140b9195e'::uuid,'920','998',2726,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('03add82c-cecc-4a2d-aaa1-c43af8fb99fa'::uuid,'920','999',2468,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e765509c-fd6d-4b1e-bacb-9c7cac8088bd'::uuid,'921','998',2733,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e1685a26-6a91-4fe9-9bca-74fd41dff446'::uuid,'921','999',2475,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8b7fceba-c45c-4cde-81b6-81b2e874a7e6'::uuid,'922','995',3825,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5e835b22-3d2b-4a44-bd55-66f3d6d45221'::uuid,'922','996',3825,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('447d06ea-c094-4a85-80aa-80003856a815'::uuid,'922','998',2759,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('64ff197d-fd33-4716-a25f-e80b20de435a'::uuid,'922','999',2536,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('00590561-9a27-4913-b9e4-2501d5dde6d3'::uuid,'923','995',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('855f4b23-e92d-4bfd-9e9e-8264f943f6b5'::uuid,'923','996',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('77a4591b-e1f4-40a3-b7ba-4119cb2e740f'::uuid,'923','997',3434,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f702816e-a4b1-48b0-8237-a03eedd06615'::uuid,'923','998',2625,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f24cdd04-e02d-4f4c-90e3-105d5a102d78'::uuid,'923','999',2402,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1ea864bc-982d-47f4-8bb7-2667d500fae2'::uuid,'924','998',2662,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc06ba3f-b7c2-4df8-95fd-7eb499504bcb'::uuid,'924','999',2404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7b58a050-4747-435c-81e0-ad3f7a62cc77'::uuid,'925','998',2665,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43ac3624-34ff-48c1-9dd9-2a880baba0f0'::uuid,'925','999',2407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d200e366-4b94-40c4-a3f3-7f41d0baff73'::uuid,'926','998',2644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('77c59bbf-9917-466d-88d7-975f63be858f'::uuid,'926','999',2386,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('851010b5-be85-41db-8a30-82583d0095e1'::uuid,'927','998',2644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0fc85b97-1304-4ba6-8f71-14eae5e6c4b1'::uuid,'927','999',2386,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('183056f8-444a-415c-bd4b-3a6b23622d34'::uuid,'928','995',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1f4b18d5-ca9a-4c06-92f6-ff36fb88e28c'::uuid,'928','996',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f9d74ff2-e916-4ff0-b346-3daecaa755c2'::uuid,'928','997',3447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aed5e0c5-ceca-4ffd-aeb8-a8f0a0c953c9'::uuid,'928','998',2639,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aeab1f30-c8d3-46e6-bcaa-7380a3327c74'::uuid,'928','999',2416,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ebce3fc6-2495-410c-813b-08d3c81c7a52'::uuid,'930','998',2364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9cf3833a-b417-4664-83b8-e296cdccad7d'::uuid,'930','999',2364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e2b553df-96f4-42c9-bc9b-07cd7901a014'::uuid,'931','998',2606,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0b82513c-1c60-4bfe-a8ce-b39d3b62b9f6'::uuid,'931','999',2348,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f4ce00dc-74b2-4ad4-a463-2359b858e570'::uuid,'932','995',3541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b041fa51-e93f-4a85-b271-bbe55d6e50d2'::uuid,'932','996',3541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ed14623d-811f-4a0a-a358-c5b22d2c1185'::uuid,'932','997',3148,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d82302fd-ee2c-452e-8821-b420a6f1c528'::uuid,'932','998',2475,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ac3eec1f-ec2a-440f-ac0b-82cdecc1c334'::uuid,'932','999',2253,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b8054c36-8100-499a-aedb-e6db8610ae68'::uuid,'933','995',3573,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e69d29ca-3a9f-4d48-904a-1e4e830f4c95'::uuid,'933','996',3573,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('059cccab-3b60-497b-b251-de2de6e6da28'::uuid,'933','997',3316,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('30b5cf86-b509-47e6-8dcf-61a9bde3df55'::uuid,'933','998',2508,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e96a284a-bb41-44e5-81b8-934c407d5bdd'::uuid,'933','999',2285,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5ac2682d-b1b6-40d8-bfbe-324dc58dbb26'::uuid,'934','998',2501,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4d1556ba-5ae9-4764-bdaf-6cfb3b055950'::uuid,'934','999',2243,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e566ef79-7bc2-4a16-ada1-4d844a535d1e'::uuid,'935','998',2495,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7dd6ef0a-9423-49bf-ad4e-61fff33bcbab'::uuid,'935','999',2272,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f407684e-ddf4-4027-a064-a50a7dcc3050'::uuid,'936','995',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4383b740-d29c-418c-b71c-8fce4be28edf'::uuid,'936','996',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('017ec8d0-16a9-4704-bfe0-a174b16a77cb'::uuid,'936','998',2397,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('290ec10d-c0cf-46ce-ba1b-aea88480003a'::uuid,'936','999',2175,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5a06f0a8-00c2-4e06-943c-5af3710120c5'::uuid,'937','995',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7ca8900b-ba83-4c28-bad7-33ab8c662f35'::uuid,'937','996',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f18dc52a-8cf4-416c-906b-a88b8522ed42'::uuid,'937','998',2397,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a3f13314-6d74-4299-993c-3ffc1310eb10'::uuid,'937','999',2175,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('19687533-5566-4416-a63e-3389e1dd2fa6'::uuid,'938','995',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e30308bb-c8cb-4de2-b4a4-7e55c287a20b'::uuid,'938','996',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bebe7186-33ef-4b7e-8642-582e91ef0909'::uuid,'938','998',2397,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6f5e00f5-457b-4006-a7a3-aee9d2a61e5f'::uuid,'938','999',2175,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('53bc7d01-c175-455a-91c8-51bcb3eee33d'::uuid,'939','998',2376,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1ab75d47-bf2f-4b80-802e-b5f64c4792b4'::uuid,'939','999',2118,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9280c152-c831-4684-8342-3d529f5a3c05'::uuid,'940','995',3376,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e3406ca4-25a3-4420-a7c0-f44786b447cb'::uuid,'940','996',3376,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0452d48-6cf5-4955-8999-8a64bde87a13'::uuid,'940','997',3119,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5991f9c1-ebc6-4f03-b0ac-0d65c2a0f33b'::uuid,'940','998',2310,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1ae6c998-33c0-43e0-963a-d04baf540973'::uuid,'940','999',2087,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3aefeb0d-29ac-4e7c-bb99-4a42f4cdf445'::uuid,'941','998',2288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6a34db64-a890-4cc9-aa45-e1a69ae9cce9'::uuid,'941','999',2030,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8dbc6437-3b8e-4708-a782-766e500b7e0a'::uuid,'942','998',2233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e8867b4-7670-454d-8af3-e3d83d4c085d'::uuid,'942','999',1975,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('00f38731-9c78-45f6-ace9-aca58f54c5af'::uuid,'943','998',2319,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ac2dee37-892e-46e1-addd-e16713a1cfef'::uuid,'943','999',2097,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('29284959-8065-4d45-a921-9be1c3b36486'::uuid,'944','998',2307,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f41f1b07-f2cb-4381-8d1b-1acca7b69a5c'::uuid,'944','999',2049,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('67df4e23-a3f3-4ad9-a120-207f67ce1991'::uuid,'945','998',2015,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('df9ec58a-6901-497b-b27e-ad5b9f537642'::uuid,'945','999',2015,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cd523be2-1e7f-4e4f-82a5-ca6caadede0e'::uuid,'946','998',2280,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('556035ab-46e7-4657-b30f-a7d829793fee'::uuid,'946','999',2057,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f6030d06-f9fd-4b6d-9be3-ef406fec9707'::uuid,'947','998',2280,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3ca47423-74cd-4b95-8ae1-da7ae396e273'::uuid,'947','999',2057,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('98aa2bd4-d0bf-45e9-b85a-1fb921ff6e31'::uuid,'948','998',2279,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8e1da881-9023-4bb6-859f-90e7d4a3a316'::uuid,'948','999',2021,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('15ac7628-a7f1-45a5-b4e6-c17b0f7095b3'::uuid,'949','998',2284,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5891e070-5e15-4857-9e87-0354870bf62a'::uuid,'949','999',2026,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0f3da50e-ebc6-42d1-9968-1907b71eb33c'::uuid,'950','995',3413,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9617c28d-9571-4227-a96a-b77d36cc163c'::uuid,'950','996',3413,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('12c9b2fe-4dd4-40d3-9f41-ff77083da38d'::uuid,'950','998',2347,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('27aada10-6608-42b7-9f1f-793f27291e32'::uuid,'950','999',2125,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9e384dd7-1f9d-497e-9667-b4dcb01775e1'::uuid,'951','998',2316,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1b0a20ee-16af-48ca-b607-ee0e5f1feaa8'::uuid,'951','999',2058,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7e4060a6-aa4f-455d-a805-534bc45f385b'::uuid,'952','998',2019,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9c9eac23-7275-4f12-9efe-b6ea8dd1b3a1'::uuid,'952','999',2019,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('51638b48-3129-4952-b721-8fd6cd6d7e56'::uuid,'953','998',2305,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('06bcf225-d576-47e3-870a-c03d32d71fce'::uuid,'953','999',2082,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aaffd517-06af-4392-861a-f9dda353d7d6'::uuid,'954','995',3300,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bfead90b-755d-4f85-8827-8505d540e0c2'::uuid,'954','996',3300,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0c55ff7e-6a5e-41ba-948b-295459aae1c3'::uuid,'954','998',2234,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('92fbc802-ada3-4a01-92d2-73f42f38545c'::uuid,'954','999',2011,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('be63cd8c-08a1-4600-8608-5f5d6b4ec733'::uuid,'955','995',3129,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f8e1b682-7788-4592-9474-1ad562b3cbfd'::uuid,'955','996',3129,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('69984096-4c1b-4bb2-b41f-19ecfa99ee60'::uuid,'955','997',2735,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3a56b9d5-c19e-4f04-b848-66e2d594719e'::uuid,'955','998',2063,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5a115aa9-061b-498a-afbf-4361997c6d9b'::uuid,'955','999',1840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e0bb6c41-c987-4f26-9dcd-1afebbf6625e'::uuid,'956','998',2233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8ab7a15e-3fd7-4c57-bd5c-190bd522dda6'::uuid,'956','999',1975,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f0cbf820-70a0-4e68-93aa-04caad971e61'::uuid,'957','995',3329,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e2428ab-6b15-47b6-bb9b-a4722658095a'::uuid,'957','996',3329,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1f8bb5bb-8a45-4093-bb5f-661809100a54'::uuid,'957','998',2263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('53450b97-36d1-4429-b6c5-ae0dd9ce16f3'::uuid,'957','999',2040,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('84209b3f-99d6-4c9e-a9c4-c51212779159'::uuid,'958','998',2233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cb1f2666-1b36-45c4-82be-addbd99111bd'::uuid,'958','999',1975,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('728aab7b-6e48-4d43-a3cf-86913597deea'::uuid,'959','998',2167,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c383f13b-f374-4d43-af97-d4f52da1c988'::uuid,'959','999',1944,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5638c60c-6f7d-4cee-b2b0-fa436f818a5d'::uuid,'960','998',2075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d2ff0a8d-ec69-4871-a599-182cc734beac'::uuid,'960','999',1817,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('149b6699-76fc-4a98-942c-22834b6f54d7'::uuid,'961','995',3198,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e9cd510c-fe9f-4566-846a-39f956e5167c'::uuid,'961','996',3198,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('70297ba9-f61e-46eb-bef6-3e4e2c1b329c'::uuid,'961','998',2132,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('84de9fa3-7ab5-4287-a1ee-4f50fcde907e'::uuid,'961','999',1910,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('19267ad4-8113-47a0-8974-2c0dbc17b153'::uuid,'970','998',1654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b50e7b0d-23c0-4f0c-906a-aa88b557dd7a'::uuid,'970','999',1396,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('df336bc5-30c2-4cf5-a44b-cba6df98cf59'::uuid,'971','995',2743,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('78736c80-cd27-4c1a-8d0b-fff5c8c1f9f5'::uuid,'971','996',2743,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b8a8dfd4-4a88-4d8a-a09c-934941a35901'::uuid,'971','998',1677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('186bb618-c2c8-46bd-8a94-83d3d650c502'::uuid,'971','999',1455,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('72d6bc1c-bbdd-417a-ba71-5fda033fa3f6'::uuid,'972','998',1654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c91eaf5a-dedf-408d-a028-50549c7674fd'::uuid,'972','999',1396,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a8786c1e-3428-4ddd-88b8-5726a3aece46'::uuid,'973','995',2790,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b6f63d00-9642-43bb-899b-0ef2a5cacecb'::uuid,'973','996',2790,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b31a7abd-4b1d-47f9-a72b-92dd60f9a7a2'::uuid,'973','997',2533,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b984d898-2991-4643-a1db-43bc6443b8d0'::uuid,'973','998',1724,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('403239ed-6fde-4573-b177-55a1b6945275'::uuid,'973','999',1501,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5fe53380-a00f-41c4-8717-24516391ebd3'::uuid,'974','998',1839,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('167448d3-223d-4b0b-b573-4bead2c6ded5'::uuid,'974','999',1581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f23b1654-cfb3-4553-87a2-b522994318a9'::uuid,'975','998',1927,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3d756af3-1ea1-43bc-8175-7c9e3db4dbea'::uuid,'975','999',1705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('99b79117-47f5-4926-beee-d07c941e8342'::uuid,'976','998',1704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65a26abd-75c2-484a-abd0-47377b2af00b'::uuid,'976','999',1704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6e5d5b20-ceba-4efa-9040-efef0cb591e9'::uuid,'977','995',2876,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('949a0ff1-250f-462d-8165-84aedc1a9a0e'::uuid,'977','996',2876,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dbedf4c6-07a9-45ad-803e-ab8e91ffa6f5'::uuid,'977','997',2619,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1e17841c-ba1f-4cf0-b4c0-461faeff9c5d'::uuid,'977','998',1810,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('009c6f63-6b1d-41aa-95e0-d35571fff7ca'::uuid,'977','999',1587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8adbbf84-607a-4325-888d-1843c74ccf65'::uuid,'978','998',1767,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f910ca1b-984c-427f-a53e-d75f4662217a'::uuid,'978','999',1545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d811eb20-e8f9-4834-8fe6-a7892a84b93b'::uuid,'979','998',1617,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('99cf0bf7-1015-4d33-8455-e94b161d480f'::uuid,'979','999',1617,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4821731e-177e-465b-816d-d9b0d38c2bc8'::uuid,'980','998',1500,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cfdd7982-c17b-4a34-a04b-e474f13b5c43'::uuid,'980','999',1278,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('615e4af9-4756-41f7-874b-41493feb60a2'::uuid,'981','998',1482,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7330afa3-3a7e-40b7-a5b2-54794266cfd9'::uuid,'981','999',1224,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c44908f7-fa65-4b26-a092-14f67cf0a4ae'::uuid,'982','998',1412,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d74977b3-9949-4f95-9a8b-bf7c2987ba77'::uuid,'982','999',1154,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4f548e0b-3f33-41a0-9c3b-9b8720ae1db0'::uuid,'983','998',1255,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('36b22b11-5724-41ef-9648-4cc7bbd63ad0'::uuid,'983','999',1255,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b5c3ae76-7ded-4729-8438-5671ed459fc9'::uuid,'984','998',1255,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('63037344-073d-414e-b6f0-bb3906a94bbc'::uuid,'984','999',1255,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8fa80007-cc09-4cb8-81fe-ed56a644a800'::uuid,'985','995',2626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6c76a7ef-cee2-4cc8-88ef-818c15e9ad9a'::uuid,'985','996',2626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('107ac44d-3931-405b-9894-a7bd1f9f99f6'::uuid,'985','997',2233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4435924e-75a3-4ef0-9e11-45eb95716387'::uuid,'985','998',1560,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('bd431a9a-c65a-4f81-9538-e3a73948da04'::uuid,'985','999',1337,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('44578e46-55a0-4deb-a605-9aa8d30a0df6'::uuid,'986','998',1402,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8140c08a-48d3-453a-b413-5342b1b35148'::uuid,'986','999',1402,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d58b652-08da-432c-97ec-6cefa9d39947'::uuid,'988','995',2539,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2d01dcbf-ee4b-47b6-ba37-09c77a42a4da'::uuid,'988','996',2539,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('27f0eee4-afca-4388-a157-83bd7cac8f03'::uuid,'988','997',2282,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1bc1aef9-3863-4973-bda7-8c1195296bdc'::uuid,'988','998',1473,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9cfb0f14-3de8-4406-a31a-377746f3e638'::uuid,'988','999',1250,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8bdd8590-2427-4126-bbee-54736be4f677'::uuid,'990','998',1323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('16f8e729-0878-47f1-a212-a22b4ba5bde8'::uuid,'990','999',1323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('191e629a-cb16-497f-b985-0f11425b3e17'::uuid,'991','995',2612,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f00adb20-d63f-4416-b1dc-babb8e713afa'::uuid,'991','996',2612,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8850376b-e8dd-465f-81ef-92a6017f44da'::uuid,'991','997',2218,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('80cc80c5-bed1-4155-b012-22ea3ba76b51'::uuid,'991','998',1546,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5445b0c2-0b76-4a6b-8a89-bb60788397bb'::uuid,'991','999',1323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('414f0165-1087-40f3-83fd-69fa9d9caa83'::uuid,'992','998',1323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b20c0f3f-e17c-4dfd-ba5a-3a29b962c3ee'::uuid,'992','999',1323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('05c7f3d5-a027-4799-bb5f-cb80293eca61'::uuid,'993','998',1626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7ee30ae6-7bac-475c-9492-c52e44fa72e0'::uuid,'993','999',1404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e98289e-97eb-48a0-b19e-668ede74690a'::uuid,'994','995',2747,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8ef44264-5fdc-42a0-af55-720459549963'::uuid,'994','996',2747,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('be0835f0-7119-489b-8df5-a1259251a538'::uuid,'994','997',2489,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1b19f547-e211-4be5-b59b-ad03fb852fba'::uuid,'994','998',1681,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fd00a1c7-c25e-4be9-a871-be904062680e'::uuid,'994','999',1458,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f6378646-8ad2-4748-a395-12f945119023'::uuid,'995','996',329,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e032eb39-1392-4143-9e37-a830ab5107c2'::uuid,'995','997',358,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f3b250e-23b2-44a3-839c-3997e54c246a'::uuid,'995','998',1286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aac845e4-d3c9-4707-8c37-35046af8c9d2'::uuid,'995','999',1286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce299517-637c-4ece-a514-1d26a4441f99'::uuid,'996','997',358,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aa50ed06-8b18-4288-8035-c1a381c012de'::uuid,'996','998',1286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('aa818f47-e945-42dc-8a9c-8ce2340dd6b4'::uuid,'996','999',1286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e6993533-2857-4ed4-b720-dfeef114f24d'::uuid,'997','998',1029,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('59280b50-2227-401b-8a14-0e9847a33fc0'::uuid,'997','999',1156,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('297a3af8-5a07-4d88-b515-c359085b5eb9'::uuid,'998','999',316,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); \ No newline at end of file From 6aefaf9f6e308481bcc505e797a4cd4d18af312b Mon Sep 17 00:00:00 2001 From: pambecker Date: Fri, 13 Dec 2024 13:41:12 -0600 Subject: [PATCH 03/32] more updates per Beth G --- ...1212161012_insert_ak_zip3_distances.up.sql | 29 +++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) diff --git a/migrations/app/schema/20241212161012_insert_ak_zip3_distances.up.sql b/migrations/app/schema/20241212161012_insert_ak_zip3_distances.up.sql index f2e257d86c7..85e188b2ae4 100644 --- a/migrations/app/schema/20241212161012_insert_ak_zip3_distances.up.sql +++ b/migrations/app/schema/20241212161012_insert_ak_zip3_distances.up.sql @@ -1,5 +1,29 @@ -UPDATE postal_code_to_gblocs set gbloc = 'MAPS', updated_at = now() -where postal_code = '99574'; +delete from postal_code_to_gblocs where postal_code in ( +select uspr_zip_id from v_locations where state = 'AK'); + +drop view move_to_gbloc; +CREATE OR REPLACE VIEW public.move_to_gbloc +AS +SELECT DISTINCT ON (sh.move_id) sh.move_id, + COALESCE(pctg.gbloc, coalesce(pctg_oconus.gbloc, pctg_ppm.gbloc)) AS gbloc + FROM mto_shipments sh + LEFT JOIN ( SELECT a.id AS address_id, + pctg_1.gbloc + FROM addresses a + JOIN postal_code_to_gblocs pctg_1 ON a.postal_code::text = pctg_1.postal_code::text) pctg ON pctg.address_id = sh.pickup_address_id + LEFT JOIN ( SELECT ppm.shipment_id, + pctg_1.gbloc + FROM ppm_shipments ppm + JOIN addresses ppm_address ON ppm.pickup_postal_address_id = ppm_address.id + JOIN postal_code_to_gblocs pctg_1 ON ppm_address.postal_code::text = pctg_1.postal_code::text) pctg_ppm ON pctg_ppm.shipment_id = sh.id + LEFT JOIN ( SELECT a.id AS address_id, + cast(pctg_1.code as varchar) AS gbloc + FROM addresses a + JOIN re_oconus_rate_areas ora ON a.us_post_region_cities_id = ora.us_post_region_cities_id + JOIN gbloc_aors ga ON ora.id = ga.oconus_rate_area_id + JOIN jppso_regions pctg_1 ON ga.jppso_regions_id = pctg_1.id ) pctg_oconus ON pctg_oconus.address_id = sh.pickup_address_id + WHERE sh.deleted_at IS NULL; + INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES ('c62a1c34-2fc9-4ed8-adb8-5a5519633537'::uuid,'010','998',3612,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), @@ -2046,6 +2070,7 @@ INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updat ('4081bceb-b2e0-431e-8dfa-69261e04d1dd'::uuid,'620','999',2890,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), ('88ad2dc7-72f0-4ee1-ba26-a6a43da03f47'::uuid,'622','995',4020,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), ('4bb0aa95-3a51-4236-8bcb-10a03fbb1737'::uuid,'622','996',4020,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('47d836b8-26ef-4409-a47c-5343f600f8b0'::uuid,'622','997',3763,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), ('84bf52d0-2b91-4e91-80d3-6b3fdc66e8e4'::uuid,'622','998',3178,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES ('001abfed-9b7c-41e7-8394-0d45e81ee301'::uuid,'622','999',2956,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), From 6dfa28ae1c64f3c7ab133b5c2f05b682e9218ea8 Mon Sep 17 00:00:00 2001 From: pambecker Date: Tue, 17 Dec 2024 10:29:30 -0600 Subject: [PATCH 04/32] tests --- ...1212161012_insert_ak_zip3_distances.up.sql | 4 +- pkg/factory/jppso_regions_factory.go | 40 +++++++++++++++++++ pkg/factory/shared.go | 2 + pkg/handlers/internalapi/orders_test.go | 24 +++++++++-- 4 files changed, 65 insertions(+), 5 deletions(-) create mode 100644 pkg/factory/jppso_regions_factory.go diff --git a/migrations/app/schema/20241212161012_insert_ak_zip3_distances.up.sql b/migrations/app/schema/20241212161012_insert_ak_zip3_distances.up.sql index 85e188b2ae4..32f5c063995 100644 --- a/migrations/app/schema/20241212161012_insert_ak_zip3_distances.up.sql +++ b/migrations/app/schema/20241212161012_insert_ak_zip3_distances.up.sql @@ -17,11 +17,11 @@ SELECT DISTINCT ON (sh.move_id) sh.move_id, JOIN addresses ppm_address ON ppm.pickup_postal_address_id = ppm_address.id JOIN postal_code_to_gblocs pctg_1 ON ppm_address.postal_code::text = pctg_1.postal_code::text) pctg_ppm ON pctg_ppm.shipment_id = sh.id LEFT JOIN ( SELECT a.id AS address_id, - cast(pctg_1.code as varchar) AS gbloc + cast(jr.code as varchar) AS gbloc FROM addresses a JOIN re_oconus_rate_areas ora ON a.us_post_region_cities_id = ora.us_post_region_cities_id JOIN gbloc_aors ga ON ora.id = ga.oconus_rate_area_id - JOIN jppso_regions pctg_1 ON ga.jppso_regions_id = pctg_1.id ) pctg_oconus ON pctg_oconus.address_id = sh.pickup_address_id + JOIN jppso_regions jr ON ga.jppso_regions_id = jr.id ) pctg_oconus ON pctg_oconus.address_id = sh.pickup_address_id WHERE sh.deleted_at IS NULL; diff --git a/pkg/factory/jppso_regions_factory.go b/pkg/factory/jppso_regions_factory.go new file mode 100644 index 00000000000..7b07219de86 --- /dev/null +++ b/pkg/factory/jppso_regions_factory.go @@ -0,0 +1,40 @@ +package factory + +import ( + "github.com/gobuffalo/pop/v6" + + "github.com/transcom/mymove/pkg/models" + "github.com/transcom/mymove/pkg/testdatagen" +) + +// BuildJppsoRegions creates a single JppsoRegions entry. +// Params: +// - customs is a slice that will be modified by the factory +// - db can be set to nil to create a stubbed model that is not stored in DB. +func BuildJppsoRegions(db *pop.Connection, customs []Customization, traits []Trait) models.JppsoRegions { + customs = setupCustomizations(customs, traits) + + // Find JppsoRegions assertion and convert to models.JppsoRegions + var cJppsoRegions models.JppsoRegions + if result := findValidCustomization(customs, JppsoRegions); result != nil { + cJppsoRegions = result.Model.(models.JppsoRegions) + if result.LinkOnly { + return cJppsoRegions + } + } + + // Create JppsoRegions + jppsoRegions := models.JppsoRegions{ + Code: "KKFA", + Name: "JPPSO-North Central", + } + + // Overwrite values with those from customizations + testdatagen.MergeModels(&jppsoRegions, cJppsoRegions) + + // If db is false, it's a stub. No need to create in database + if db != nil { + mustCreate(db, &jppsoRegions) + } + return jppsoRegions +} diff --git a/pkg/factory/shared.go b/pkg/factory/shared.go index 7b76ce0529c..2aeda441630 100644 --- a/pkg/factory/shared.go +++ b/pkg/factory/shared.go @@ -101,6 +101,7 @@ var WeightTicket CustomType = "WeightTicket" var UsPostRegionCity CustomType = "UsPostRegionCity" var UsersPrivileges CustomType = "UsersPrivileges" var Privilege CustomType = "Privilege" +var JppsoRegions CustomType = "JppsoRegions" // defaultTypesMap allows us to assign CustomTypes for most default types var defaultTypesMap = map[string]CustomType{ @@ -165,6 +166,7 @@ var defaultTypesMap = map[string]CustomType{ "roles.Role": Role, "models.UsersPrivileges": UsersPrivileges, "models.Privilege": Privilege, + "models.JppsoRegions": JppsoRegions, } // Instead of nesting structs, we create specific CustomTypes here to give devs diff --git a/pkg/handlers/internalapi/orders_test.go b/pkg/handlers/internalapi/orders_test.go index a4a74bb81e0..162bbb7ff70 100644 --- a/pkg/handlers/internalapi/orders_test.go +++ b/pkg/handlers/internalapi/orders_test.go @@ -35,7 +35,14 @@ func (suite *HandlerSuite) TestCreateOrder() { }, }, nil) }) - sm := factory.BuildExtendedServiceMember(suite.DB(), nil, nil) + customAffiliation := models.AffiliationARMY + sm := factory.BuildExtendedServiceMember(suite.DB(), []factory.Customization{ + { + Model: models.ServiceMember{ + Affiliation: &customAffiliation, + }, + }, + }, nil) suite.Run("can create conus and oconus orders", func() { testCases := []struct { test string @@ -49,6 +56,7 @@ func (suite *HandlerSuite) TestCreateOrder() { { Model: models.Address{ IsOconus: &tc.isOconus, + ID: uuid.Must(uuid.NewV4()), }, }, }, nil) @@ -64,9 +72,18 @@ func (suite *HandlerSuite) TestCreateOrder() { LinkOnly: true, }, }, nil) - dutyLocation := factory.FetchOrBuildCurrentDutyLocation(suite.DB()) - factory.FetchOrBuildPostalCodeToGBLOC(suite.DB(), dutyLocation.Address.PostalCode, "KKFA") + if !tc.isOconus { + factory.FetchOrBuildPostalCodeToGBLOC(suite.DB(), dutyLocation.Address.PostalCode, "KKFA") + } else { + factory.BuildJppsoRegions(suite.DB(), []factory.Customization{ + { + Model: models.JppsoRegions{ + Code: "KKFA", + }, + }, + }, nil) + } factory.FetchOrBuildDefaultContractor(suite.DB(), nil, nil) req := httptest.NewRequest("POST", "/orders", nil) @@ -113,6 +130,7 @@ func (suite *HandlerSuite) TestCreateOrder() { suite.Assertions.IsType(&ordersop.CreateOrdersCreated{}, response) okResponse := response.(*ordersop.CreateOrdersCreated) + orderID := okResponse.Payload.ID.String() createdOrder, _ := models.FetchOrder(suite.DB(), uuid.FromStringOrNil(orderID)) var createdEntitlement models.Entitlement From a42308d11e2cb86740917467012ca76b0c00e4b7 Mon Sep 17 00:00:00 2001 From: pambecker Date: Wed, 18 Dec 2024 15:29:09 +0000 Subject: [PATCH 05/32] SC update orders fix --- pkg/services/order/order_updater.go | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/pkg/services/order/order_updater.go b/pkg/services/order/order_updater.go index 30d7b713e7f..4263310f8c5 100644 --- a/pkg/services/order/order_updater.go +++ b/pkg/services/order/order_updater.go @@ -695,16 +695,27 @@ func updateOrderInTx(appCtx appcontext.AppContext, order models.Order, checks .. order.OriginDutyLocationID = &originDutyLocation.ID order.OriginDutyLocation = &originDutyLocation - dutyLocationGBLOC, err2 := models.FetchGBLOCForPostalCode(appCtx.DB(), originDutyLocation.Address.PostalCode) - if err2 != nil { - switch err2 { - case sql.ErrNoRows: - return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location PostalCodeToGBLOC") - default: - return nil, apperror.NewQueryError("PostalCodeToGBLOC", err, "") + var originDutyLocationGBLOC *string + if *originDutyLocation.Address.IsOconus { + originDutyLocationGBLOCOconus, err := models.FetchOconusDutyLocationGbloc(appCtx.DB(), originDutyLocation, order.ServiceMember) + if err != nil { + return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") + } + originDutyLocationGBLOC = &originDutyLocationGBLOCOconus.Gbloc + } else { + originDutyLocationGBLOCConus, err2 := models.FetchGBLOCForPostalCode(appCtx.DB(), originDutyLocation.Address.PostalCode) + if err2 != nil { + switch err2 { + case sql.ErrNoRows: + return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location PostalCodeToGBLOC") + default: + return nil, apperror.NewQueryError("PostalCodeToGBLOC", err, "") + } } + originDutyLocationGBLOC = &originDutyLocationGBLOCConus.GBLOC } - order.OriginDutyLocationGBLOC = &dutyLocationGBLOC.GBLOC + + order.OriginDutyLocationGBLOC = originDutyLocationGBLOC } if order.Grade != nil || order.OriginDutyLocationID != nil { From 9aa6b88b552ed1cca1664006f0215f559edc1d9e Mon Sep 17 00:00:00 2001 From: pambecker Date: Wed, 18 Dec 2024 20:41:15 +0000 Subject: [PATCH 06/32] sql update --- migrations/app/migrations_manifest.txt | 2 +- ...1212161012_insert_ak_zip3_distances.up.sql | 3223 ----------------- ...7191012_update_move_to_gbloc_for_ak.up.sql | 43 + 3 files changed, 44 insertions(+), 3224 deletions(-) delete mode 100644 migrations/app/schema/20241212161012_insert_ak_zip3_distances.up.sql create mode 100644 migrations/app/schema/20241217191012_update_move_to_gbloc_for_ak.up.sql diff --git a/migrations/app/migrations_manifest.txt b/migrations/app/migrations_manifest.txt index 43af40065cd..fff56a6908e 100644 --- a/migrations/app/migrations_manifest.txt +++ b/migrations/app/migrations_manifest.txt @@ -1050,4 +1050,4 @@ 20241203024453_add_ppm_max_incentive_column.up.sql 20241204155919_update_ordering_proc.up.sql 20241204210208_retroactive_update_of_ppm_max_and_estimated_incentives_prd.up.sql -20241212161012_insert_ak_zip3_distances.up.sql +20241217191012_update_move_to_gbloc_for_ak.up.sql diff --git a/migrations/app/schema/20241212161012_insert_ak_zip3_distances.up.sql b/migrations/app/schema/20241212161012_insert_ak_zip3_distances.up.sql deleted file mode 100644 index 32f5c063995..00000000000 --- a/migrations/app/schema/20241212161012_insert_ak_zip3_distances.up.sql +++ /dev/null @@ -1,3223 +0,0 @@ -delete from postal_code_to_gblocs where postal_code in ( -select uspr_zip_id from v_locations where state = 'AK'); - -drop view move_to_gbloc; -CREATE OR REPLACE VIEW public.move_to_gbloc -AS -SELECT DISTINCT ON (sh.move_id) sh.move_id, - COALESCE(pctg.gbloc, coalesce(pctg_oconus.gbloc, pctg_ppm.gbloc)) AS gbloc - FROM mto_shipments sh - LEFT JOIN ( SELECT a.id AS address_id, - pctg_1.gbloc - FROM addresses a - JOIN postal_code_to_gblocs pctg_1 ON a.postal_code::text = pctg_1.postal_code::text) pctg ON pctg.address_id = sh.pickup_address_id - LEFT JOIN ( SELECT ppm.shipment_id, - pctg_1.gbloc - FROM ppm_shipments ppm - JOIN addresses ppm_address ON ppm.pickup_postal_address_id = ppm_address.id - JOIN postal_code_to_gblocs pctg_1 ON ppm_address.postal_code::text = pctg_1.postal_code::text) pctg_ppm ON pctg_ppm.shipment_id = sh.id - LEFT JOIN ( SELECT a.id AS address_id, - cast(jr.code as varchar) AS gbloc - FROM addresses a - JOIN re_oconus_rate_areas ora ON a.us_post_region_cities_id = ora.us_post_region_cities_id - JOIN gbloc_aors ga ON ora.id = ga.oconus_rate_area_id - JOIN jppso_regions jr ON ga.jppso_regions_id = jr.id ) pctg_oconus ON pctg_oconus.address_id = sh.pickup_address_id - WHERE sh.deleted_at IS NULL; - - -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('c62a1c34-2fc9-4ed8-adb8-5a5519633537'::uuid,'010','998',3612,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e8438313-c130-4369-b633-99d208b740a8'::uuid,'010','999',3612,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('894e9d41-3017-4b90-8ea5-4834ceb55dbd'::uuid,'011','998',3607,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3e99a6ca-35eb-4067-9a46-8a405a1dd771'::uuid,'011','999',3607,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3f29c823-6e97-4e82-8d3d-eb3a99ad3502'::uuid,'012','998',3820,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e1c36b29-a964-4fac-9521-0226bc3de513'::uuid,'012','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('231eb38f-86a7-49dd-b3d9-4b4b566b0dfb'::uuid,'013','995',4693,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('30ea7960-4225-43aa-aec4-e2f11d57b03c'::uuid,'013','996',4693,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fb4d8727-3a63-4581-8478-99178eceae53'::uuid,'013','998',3852,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d7a1ca72-4282-4194-b17f-849d2ac8c15d'::uuid,'013','999',3629,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('ac36b7b5-603e-49f7-ab17-7c0a7ab0846d'::uuid,'014','995',4721,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7fdaac4a-ebe5-4c60-9cbb-60129773a7da'::uuid,'014','996',4721,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f307f161-034d-41ae-bbfc-eabb58639e9f'::uuid,'014','998',3880,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4191c495-c3ad-4797-b389-a64377e0f6cc'::uuid,'014','999',3657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('09dd3498-1e2a-46b5-b5bb-06d275f902de'::uuid,'015','998',3640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2e325c4b-ead2-4c45-b39f-f7f0b129e718'::uuid,'015','999',3640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('93d1c10b-db1a-4255-bdfc-2b69c3f65722'::uuid,'016','998',3640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dd10b3c3-f70f-42a2-b7f5-c1634d20f2c4'::uuid,'016','999',3640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5729abad-cd5d-4dfb-8697-811c4d8c2a01'::uuid,'017','998',3647,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('52e93656-77d2-490b-ae8f-b01ca44cb5f8'::uuid,'017','999',3647,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('041bc235-5538-436e-b336-06ae1586a56f'::uuid,'018','998',3883,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fb8123a0-a309-4a16-9c88-67ebaccdd56a'::uuid,'018','999',3625,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('752f897f-a538-4689-9dd0-10df33ddf447'::uuid,'019','998',3641,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4717fe63-4847-467a-b5af-cd0ea227b250'::uuid,'019','999',3641,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1beb9543-fbfe-44de-a05b-3662ac9e9edf'::uuid,'020','995',4758,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bb8fe68f-8228-4626-925a-fc5d14d5f729'::uuid,'020','996',4758,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('36163852-b9c2-4471-8d44-9169b0dcf5ca'::uuid,'020','997',4365,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dff756cc-68b9-4ca7-a149-1ba3257955d6'::uuid,'020','998',3917,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bea1c968-30a3-4d75-ae10-e30f139f8ae4'::uuid,'020','999',3694,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ad15e112-f156-4cba-be31-72a193781be9'::uuid,'021','995',4745,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('707712ef-3e94-4ae1-968a-eb5d3e124a89'::uuid,'021','996',4745,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('55aa9f05-5fbf-4bbb-ac9f-14be19fe9cf6'::uuid,'021','997',4487,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('43bffcc4-13a9-43a7-be29-10a49263b0ba'::uuid,'021','998',3903,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('27daa3e3-9d4a-4f21-941b-2c3c2ade1992'::uuid,'021','999',3680,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('575c5e33-cbfd-4f23-a328-4b4c28ad6d35'::uuid,'022','995',4745,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('55c3f82e-6942-4182-9009-67fad4262aef'::uuid,'022','996',4745,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('527b5256-f3ff-4bf9-8a42-fcf63c25c23a'::uuid,'022','997',4487,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('75797cf2-8c72-4030-bdfa-15e779deee73'::uuid,'022','998',3903,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('29b732b6-f43d-474c-8e0d-8a301614d80e'::uuid,'022','999',3680,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('84901878-5112-4040-95b3-3491bd60e59c'::uuid,'023','995',4773,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('2d2a1682-b6af-4849-8a62-15e4aa488fee'::uuid,'023','996',4773,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('39960dbe-10d1-43b2-aff8-0deeeea95986'::uuid,'023','997',4380,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6b9fab0a-b371-4bc1-913f-7b52992ce666'::uuid,'023','998',3931,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c932d332-363a-4349-9d85-b57da5188dca'::uuid,'023','999',3709,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c3298bd9-a700-4ff6-80b4-d028939d1bb1'::uuid,'024','995',4767,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4ac7f1b1-b3d8-4011-9333-68939dbfd23f'::uuid,'024','996',4767,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a6f2b525-fdc3-4b4a-b227-cec597637681'::uuid,'024','997',4510,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5037eb49-ca6f-4e7c-be87-2c6d386d36ca'::uuid,'024','998',3925,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fec07b04-954e-4b36-af53-7a8ff1278535'::uuid,'024','999',3703,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6f318f19-2029-4022-a0c1-738919551bdb'::uuid,'025','995',4802,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('c4dc4ca3-403d-4f1c-9e08-15244ad23b6f'::uuid,'025','996',4802,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3c019c70-eb46-4d57-ab28-244cd3d5e4fc'::uuid,'025','997',4544,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('38a4cf6a-cfcb-45d7-84bd-2ed04844f4d9'::uuid,'025','998',3960,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e1b0ff3b-c932-4489-aeb9-703127328332'::uuid,'025','999',3737,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b21c9f26-6670-4d0d-ab81-7685e9095cd8'::uuid,'026','998',3718,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('edbd084b-e275-44ab-ad96-28070b02017a'::uuid,'026','999',3718,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7cf56b05-9b6f-460d-9e41-77f748b561e5'::uuid,'027','995',4796,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('60983cb5-687b-452a-93d0-75af1a7bd8ec'::uuid,'027','996',4796,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8fee2bc6-17f1-4397-be05-40ce49b17ed7'::uuid,'027','998',3954,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e43d778a-e963-40e3-9438-c73c87eed163'::uuid,'027','999',3732,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('d9fa6aa2-5f95-41d9-9374-ab862016f83b'::uuid,'028','998',3690,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1123f091-1c50-47fb-8057-3e0a5cb52872'::uuid,'028','999',3690,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('108c07e1-88c7-4beb-91ce-860d359f5859'::uuid,'029','998',3946,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('554453cf-f6f8-4aef-a813-30c0d86a1735'::uuid,'029','999',3688,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8a784f80-6c6a-4ebd-b31c-acadadfb9acf'::uuid,'030','998',3854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fb367795-e573-4da2-9cdb-f10038ffc169'::uuid,'030','999',3632,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('44016cfb-e114-4644-843d-7ce9e6b633b8'::uuid,'031','998',3854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a145a8b8-baae-4016-9da1-a61842546dd4'::uuid,'031','999',3632,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('eb01b866-5838-4318-967c-b9c29a0c7501'::uuid,'032','995',4654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4cc61834-fdcb-4730-b645-a82f3f251139'::uuid,'032','996',4654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('c9bd8ac0-274d-49d3-8e54-d2a23cd70064'::uuid,'032','997',4397,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('69d8a82e-2f9b-434e-95e2-682d3f3fb21c'::uuid,'032','998',3812,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('da413f37-b214-45e4-b538-1fd0872f6061'::uuid,'032','999',3590,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cc6c9afd-5e30-4a85-bb33-dbfe992e3f34'::uuid,'033','995',4681,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f56c80e0-4e07-4494-9f4d-13690ff05d45'::uuid,'033','996',4681,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('860def77-c65f-4c1d-b9eb-a815ae48b7d0'::uuid,'033','997',4424,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('00ba3ede-1430-495d-b6b0-e1cd0d2a2582'::uuid,'033','998',3839,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a5fbdfc4-3628-4894-b132-731286f0703f'::uuid,'033','999',3617,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cf2127bb-e2a2-46cf-bfb5-ea213ffbca91'::uuid,'034','995',4682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a55782b0-d4dd-4fb4-9cba-2bdbf862c0bb'::uuid,'034','996',4682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('e39e2254-f233-49b1-999c-6961a27ce2aa'::uuid,'034','998',3840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5fbef10b-3b96-4d91-84d6-6f03ad7f974a'::uuid,'034','999',3617,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('41ff3516-b6ff-4eac-8db4-4379e2d609a4'::uuid,'035','995',4591,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4188e064-785b-4a8c-ac30-c8df36e8a69c'::uuid,'035','996',4591,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0221a2ac-3cc3-4e20-b54b-3e5be6f35283'::uuid,'035','998',3749,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('67a30c66-e631-4eee-b2c3-681f88998838'::uuid,'035','999',3527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('edc51d86-0b41-4043-bb69-545e05c3a497'::uuid,'036','995',4662,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('439f5c89-7e8e-442d-a67e-d1b7a0099f42'::uuid,'036','996',4662,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c18b33a7-6820-4727-b1cd-b3e9c8ed3565'::uuid,'036','997',4405,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('acb7dba1-3b4c-4f66-9982-1ac3f2b35f1b'::uuid,'036','998',3821,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('957a725f-7f62-4c82-aa55-9b9c86e2a5b0'::uuid,'036','999',3598,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('627f8a8d-c572-4ba6-ba69-1c0bee437842'::uuid,'037','998',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d92a7af4-f29d-4d38-93b2-ee55b3c924f1'::uuid,'037','999',3561,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('54060ed6-d97d-41fd-be18-cff0a856bc2d'::uuid,'038','998',3855,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3be61eba-09d0-4bba-a418-59a0c7af603f'::uuid,'038','999',3597,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('606200ea-4d9b-4ad3-b5b7-766fdcbddadb'::uuid,'039','998',3630,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b574cfa6-0b9e-4291-9215-db4b31d3f2a8'::uuid,'039','999',3630,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('55336cd9-3707-4bf4-a71d-160d72f3fa92'::uuid,'040','998',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9a2636bd-ea9a-4f63-9744-812fcc2d4e15'::uuid,'040','999',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('70be5ff2-e62c-4837-b456-6fe36d086d02'::uuid,'041','998',3869,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('cbbb707a-92e0-471e-811d-293baccd3f3f'::uuid,'041','999',3611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f07485fd-3353-45a2-90a2-4b562a5c294f'::uuid,'042','995',4657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('701ffab3-fce1-4774-828e-e81e97ebb3e3'::uuid,'042','996',4657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d12c0ad0-67d7-41d6-9abf-4eb25b96a331'::uuid,'042','997',4399,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('aeaa3a31-7fff-4c1c-ab09-0b7d5eafd8bb'::uuid,'042','998',3815,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e89da113-f614-4018-9419-b3fc4e783821'::uuid,'042','999',3592,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b79011d7-66a1-45a4-91d3-9380ee9c649c'::uuid,'043','995',4700,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8d016e13-2921-4cf8-8a05-6f152b29783d'::uuid,'043','996',4700,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('73c99482-9f48-4e5b-8c23-e6c4d4f8ea5e'::uuid,'043','997',4443,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1727c04c-3a63-4497-8a8f-80f8a24145e8'::uuid,'043','998',3859,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('7a57a624-33d6-427e-9498-47eb9178ed26'::uuid,'043','999',3636,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0bb77d3a-a5df-431e-b7c7-bd131356f206'::uuid,'044','998',3881,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('539fb784-eb15-4239-a703-727d35e6e541'::uuid,'044','999',3658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7b2c8971-01eb-4823-a190-1239b56c8b82'::uuid,'045','998',3624,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('39dcdc99-a113-4f79-81ce-f5566e4966e7'::uuid,'045','999',3624,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fc12a2f9-3f2d-4c8d-ba4f-8b6198dae2e6'::uuid,'046','995',4784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e95afbd7-2fd0-4b97-96ed-fa99a066d659'::uuid,'046','996',4784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8a395e2f-decc-461d-ac5d-77a72f37feeb'::uuid,'046','998',3943,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('03551858-f277-4b42-8bec-278ef5ed6478'::uuid,'046','999',3720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2479c8ff-05d9-4479-9dfe-90200c477db2'::uuid,'047','998',3953,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('8f4adb4d-0ac3-4125-810d-79fe308e14e2'::uuid,'047','999',3695,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f81cf056-5dcc-4073-a339-bf58bb959beb'::uuid,'048','998',3897,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('39c9c7f0-7fee-4039-9908-f14d42f7e845'::uuid,'048','999',3639,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('64d02180-174e-45da-b990-ad9ae6acba85'::uuid,'049','998',3565,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('47c25b99-95fb-4140-ac25-cc2cf3fc0580'::uuid,'049','999',3565,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('788f3058-661c-4728-88b9-ae14ec7e918a'::uuid,'050','998',3765,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('68a33546-62c9-4f09-9418-d75eb0ad1f05'::uuid,'050','999',3507,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5f872255-fab8-4d0b-a106-16968b25d8f0'::uuid,'051','995',4637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7dbf6b1c-e3ff-42d3-8197-7c7b8bf1d7dd'::uuid,'051','996',4637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('43aba28f-90c9-4d99-bbcf-d155e0c11069'::uuid,'051','997',4380,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('ba55e638-f6b4-47db-b3f6-334c3a386e9c'::uuid,'051','998',3796,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c41b9706-40bd-4cac-900e-f22429d1d6f1'::uuid,'051','999',3573,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6018a3dc-dfe1-402c-a080-eee2577f2ae4'::uuid,'052','995',4634,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d2ccdebf-bcdc-405f-b58b-0108b08aaf9f'::uuid,'052','996',4634,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ff63e3f3-9023-46c1-85ad-3357bb6c9dff'::uuid,'052','997',4377,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1760aff9-81fc-4c81-835a-72e264b8be81'::uuid,'052','998',3793,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7b57bc0e-f095-43e3-9822-563ae214e94f'::uuid,'052','999',3570,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1018dab3-11d8-4713-aef2-e3dba80bfacb'::uuid,'053','998',3554,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ed604122-6288-4210-9882-23f83c6a53a9'::uuid,'053','999',3554,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('01cca694-9d1e-4e1a-8344-448ad8111e4e'::uuid,'054','995',4532,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('da3b6de4-34dd-46c6-886b-8cba35ce5da6'::uuid,'054','996',4532,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5e2d84f0-fb1b-466a-8f55-a6e9a1fe8a44'::uuid,'054','997',4139,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b1542dfa-48dc-4bfd-8497-07af8384df28'::uuid,'054','998',3690,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5ece731f-8a57-41e3-85b8-485dbc051183'::uuid,'054','999',3468,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d0be4d32-7de9-4357-b107-2f3ce08fc6e5'::uuid,'055','998',3883,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('31cef20d-23a0-4a68-938b-391c1a8893eb'::uuid,'055','999',3625,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7522f2ba-b855-4739-94c9-96c85d84f580'::uuid,'056','998',3726,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b5b93935-5d76-4ef3-9920-6d705191885c'::uuid,'056','999',3504,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a97be481-ef69-49d8-9082-99913f2da392'::uuid,'057','998',3758,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ea3c2aa4-0c2d-40d3-a92b-302a946bb5e4'::uuid,'057','999',3500,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('559388a0-b6dc-4018-9f72-d02fe3453723'::uuid,'058','998',3469,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2c720619-3d1e-4de4-8393-2121b1e20cb0'::uuid,'058','999',3469,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('839012d2-ebc8-4ac8-b4f9-80b5d23e8582'::uuid,'059','995',4590,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('66ff78b9-d042-47e4-8d95-d0addbc6ddd2'::uuid,'059','996',4590,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a1cea99d-68eb-4897-8f51-a95e7f5bfe21'::uuid,'059','997',4333,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('49027fa6-de2b-4eee-8e6f-3d160d90a60b'::uuid,'059','998',3749,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5f15152b-f0ce-4beb-88a2-c1dc14ec5329'::uuid,'059','999',3526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('044831e6-92f5-4dc4-8d16-f13f75ecc3e8'::uuid,'060','998',3880,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7a87a204-064f-448b-b172-6876453c09f4'::uuid,'060','999',3657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('97ba64c8-307a-49ae-a898-ac1a8f921f15'::uuid,'061','995',4732,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('281b6fde-f3b5-4d0d-8333-c706cbec5e71'::uuid,'061','996',4732,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('be917bc5-a34d-4e6e-ab1f-44df1e464eb8'::uuid,'061','998',3891,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9f5109ea-08b0-434b-9de2-d825100f8cfe'::uuid,'061','999',3668,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dac648a7-1e81-475a-bd5f-256c4ed01bee'::uuid,'062','998',3915,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('59ee21c8-a05d-4c10-91f3-076bc990063b'::uuid,'062','999',3657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d2a23bb0-6206-4447-bc0e-90390ee3c4ae'::uuid,'063','998',3922,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ce480feb-986f-43c5-b70a-469795dc57e2'::uuid,'063','999',3700,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('20607825-f03a-4473-bc69-6c93674f76c4'::uuid,'064','998',3623,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('61bff6b5-8560-4906-8264-9162c1e6f16c'::uuid,'064','999',3623,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8f99d969-ba61-4e10-a855-b6bcfea21a28'::uuid,'065','998',3868,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('308a7fd1-65ca-4653-8fac-d168ede3f6ba'::uuid,'065','999',3645,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('56811aae-9b4c-453c-b990-686fc4c3b19a'::uuid,'066','995',4691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6a62ce0d-f166-4bd8-be24-7f9e82b5ab82'::uuid,'066','996',4691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e7108fc0-3fc9-46a8-800a-5d9dbf7ec50a'::uuid,'066','997',4434,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e45c082a-be19-49ed-b832-e4a8b08a2a81'::uuid,'066','998',3850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d00be2e5-31ce-4969-840a-1de490fbefbd'::uuid,'066','999',3627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e9eb0522-9dba-456c-ac23-75214964cfcf'::uuid,'067','998',3606,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('101e9102-37e6-472c-ab6f-60180799c9a5'::uuid,'067','999',3606,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8311ff47-aacd-4fae-a470-b1bf3ba8d092'::uuid,'068','995',4686,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4bdca919-666c-461e-b027-d656ab0bc645'::uuid,'068','996',4686,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('4a1ed2aa-4e60-4995-b73d-6d56ca308053'::uuid,'068','998',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('79c1a1af-784e-4b1c-8ccf-6b0dd3ac4917'::uuid,'068','999',3621,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('040c40fc-9fbc-4c5f-8306-c149fe8581de'::uuid,'069','998',3570,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('952e37ce-cc4d-43a6-a1f4-90e6e3666b83'::uuid,'069','999',3570,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1e891c3f-88a5-4815-8b11-4cdf56c9f666'::uuid,'070','998',3792,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('46e7c90d-2cf9-4098-8354-d87dc8d6c08f'::uuid,'070','999',3569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ba19a9ad-78ff-4c71-af32-d4ee1df703b0'::uuid,'071','998',3792,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2feb6d5f-0394-4b5b-ba79-bc93c653ed8c'::uuid,'071','999',3569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ad7e46de-0eb2-40db-8fc3-c1c15b71c3be'::uuid,'072','995',4633,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('50f199f0-7bc3-4f72-9043-b45e9cb3ce79'::uuid,'072','996',4633,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('ee2b5325-fb83-4212-9244-b7bdcbfa5032'::uuid,'072','997',4240,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1c074fbc-2f65-45ee-b65f-bc6cad939d39'::uuid,'072','998',3791,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b22d3520-25de-47b1-acfa-1c54c2fe5535'::uuid,'072','999',3569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('989b4d1a-1508-464f-b179-8d3fb5b76fab'::uuid,'073','995',4637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c43680c9-069a-466d-8c51-f9f4681cabfe'::uuid,'073','996',4637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('77bf717b-e164-4c4b-94df-93fa70723165'::uuid,'073','998',3795,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bc3d0498-9ae5-4b15-aef2-6f3593dee19e'::uuid,'073','999',3573,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('57825824-f728-4686-ab9f-c4f53d635e7b'::uuid,'074','998',3785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('325213c0-03ed-4338-a9b1-749fab350140'::uuid,'074','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b66831e5-f727-4309-8e59-c8d5b1183eb1'::uuid,'075','998',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('b44c689b-95db-42f6-a8de-d4d7a814023e'::uuid,'075','999',3560,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('65e3bac6-ecb6-41f7-93de-464ddca737a1'::uuid,'076','998',3792,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('01e604ce-4338-4551-ac5a-2d52e0edf6e5'::uuid,'076','999',3569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('da3f5eb1-c567-4a71-825e-a83b8b45f7f6'::uuid,'077','995',4658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e61d48c0-48e4-4502-9624-d8d867003ad1'::uuid,'077','996',4658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0e17843c-6d32-46aa-97c7-0112d792e88b'::uuid,'077','997',4265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1a994e92-42f5-4cc3-9fa3-1b3c8b18a4e1'::uuid,'077','998',3816,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('393c7a86-c652-466d-be27-bc5752c463dd'::uuid,'077','999',3593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d280b6d4-00b0-495f-99b5-8b4a3193acf6'::uuid,'078','998',3752,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('edc18f24-a8ca-4b38-82ba-30a195a302aa'::uuid,'078','999',3529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('e4400226-2408-4fcc-9324-59d93bd223d2'::uuid,'079','998',3775,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3aa1c951-89b5-4ee5-882d-9b374744c50e'::uuid,'079','999',3552,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2e4e477b-f7c1-4e6f-b67b-842c5f2891ca'::uuid,'080','998',3522,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d017863a-5f12-4e72-bc37-d67c0eddecc5'::uuid,'080','999',3522,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('98721205-5aca-44cb-aab9-f471cf5e3403'::uuid,'081','995',4611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d9931c91-a0db-4ea9-a14f-61e0235f8d4d'::uuid,'081','996',4611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cae22910-ab82-411e-a869-a57849733f5b'::uuid,'081','997',4354,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('892b06af-8f9e-4222-a4b1-4b6cf360f74d'::uuid,'081','998',3769,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c065a1a9-52ee-44c0-9584-0f6daf8e8f97'::uuid,'081','999',3547,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0551b27f-d1f3-4177-bd6f-fc132b42a8ff'::uuid,'082','998',3821,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('941b7e5a-3eee-4b41-8d70-895bfa32fae5'::uuid,'082','999',3564,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5231073c-67f7-4fa7-809d-0926b07b44a0'::uuid,'083','998',3797,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('40c4114e-f636-433d-adbc-f33dbd5a9f9f'::uuid,'083','999',3575,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c6a0ceb3-8eb9-4653-9ddb-c7691f4009d9'::uuid,'084','995',4662,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('43aa8580-619d-434d-9023-1a92b52bb41b'::uuid,'084','996',4662,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5c394216-40b5-4fb7-9cbc-f53a64e9486c'::uuid,'084','997',4405,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9d9863a7-a8b3-4951-a56f-a0a47b15d407'::uuid,'084','998',3821,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4fcd92fe-ec6d-404a-989b-58aeeab39f15'::uuid,'084','999',3598,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('84451f68-8c41-4de2-9a92-3d138073b7cf'::uuid,'085','998',3520,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('79bf192e-0936-4d63-8f68-244a6a2c77dd'::uuid,'085','999',3520,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('e46f50c3-4d5a-43f1-a4a0-5eada6a97935'::uuid,'086','998',3520,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7d2e802a-310e-45b5-ad3b-fe3ea3aec16d'::uuid,'086','999',3520,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('89788780-35af-4300-b7f8-62523422ad06'::uuid,'087','995',4664,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('89054b40-1533-4030-b956-8227331addc2'::uuid,'087','996',4664,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7ef5b038-f747-4726-94fb-88ba6bbbdb49'::uuid,'087','997',4407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bedc4967-fbac-4650-a593-56cbe863d84d'::uuid,'087','998',3822,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7f47988c-0830-40c8-a73a-aa32fb4a45bd'::uuid,'087','999',3600,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('71dff20f-8bfe-48aa-9eba-8af8e24e5465'::uuid,'088','998',3519,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c5942b54-cb67-4148-a14e-1d3fc1955e0c'::uuid,'088','999',3519,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8c9be0f6-3eda-4f17-8473-660924f907ba'::uuid,'089','998',3794,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('19f3ed2e-1a7f-4a23-bdc4-84c2eaecb922'::uuid,'089','999',3572,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bf1fe661-59fc-4d7f-afe3-5ebd07146263'::uuid,'100','998',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2f62fee5-27ea-4b2a-90e4-fbbdf003291d'::uuid,'100','999',3586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fb07c05b-4c3c-4e80-9631-ecea13ee9bbc'::uuid,'101','998',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f4dd640b-a387-405f-a901-2b38da452dad'::uuid,'101','999',3586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ec7a3d9e-e19e-4080-9ef6-5efa7cdddb85'::uuid,'102','998',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f33c616b-7860-41b2-986e-d4e446612abb'::uuid,'102','999',3586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ecc52a6b-5c6b-4674-8cf2-1237b37482fc'::uuid,'103','998',3544,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('35bbb867-64b9-42ee-823b-0c85ad66b234'::uuid,'103','999',3544,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bc94c933-efeb-4ab1-8d5d-50dd01707cbc'::uuid,'104','995',4644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('0f06a17c-e79a-4c1b-9113-c463623bdcc6'::uuid,'104','996',4644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f3ba54df-36a3-4084-ad19-e3bd50e2b1a1'::uuid,'104','997',4387,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dcdadfc3-5a5b-402a-81b8-0c13d6a6434a'::uuid,'104','998',3802,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('aab1ef28-eb8e-408c-8da8-6559816a94d7'::uuid,'104','999',3580,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e4ab58ca-44b3-48eb-b861-eedce7040d9c'::uuid,'105','998',3836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('053820be-b1d2-4038-891f-cd1d0cbeaabd'::uuid,'105','999',3613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('79cede23-1ade-4647-870d-7a5adf760029'::uuid,'106','998',3558,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4a72672e-09db-4c16-bac7-65550bc229a6'::uuid,'106','999',3558,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('451bc8a6-60d9-4fb4-bc2d-2a254268d37f'::uuid,'108','998',3811,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('73155e69-3304-47df-be69-7ed2b9469b5d'::uuid,'108','999',3589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('76c61e16-f055-4b1c-a64c-81dd448b1532'::uuid,'109','995',4631,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bd0beb21-2a51-417e-9113-974f5b6c0301'::uuid,'109','996',4631,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e92a1e8a-d31a-46d4-b411-b0ee1cf3c24a'::uuid,'109','997',4373,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('48d85141-bf86-4863-a1db-37d7acbdf52d'::uuid,'109','998',3789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4fe74840-3a77-4990-afe8-4721de7a089b'::uuid,'109','999',3566,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8fdbc5ae-9edf-442f-936a-213e697df409'::uuid,'110','995',4654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f23ebd6a-ebef-4de8-96dc-d07316f79b2b'::uuid,'110','996',4654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('124a4584-2526-4d7f-8c40-ee9c0235e237'::uuid,'110','998',3813,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('40038cab-e1db-4a29-a03d-c8ed00f81383'::uuid,'110','999',3590,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('780a2173-437e-4ce0-be4e-fcc167a8c276'::uuid,'111','998',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('6b3a1f2e-0a4b-4d0b-8f57-98441501a60c'::uuid,'111','999',3586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f543a880-97d1-4938-86ed-1c970cff0c26'::uuid,'112','998',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f382dc5e-fa2b-49de-8858-cab2c71c25a0'::uuid,'112','999',3586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9c2f0bef-807a-4be8-bb75-c9420f7f816f'::uuid,'113','995',4650,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('98b7c844-ac29-400b-b413-8ba3f68f6dab'::uuid,'113','996',4650,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ceb2c93e-3477-4671-ae73-d5cd0bca7bbc'::uuid,'113','998',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bf3f68d6-c37a-43a2-9aac-991fa24498f0'::uuid,'113','999',3586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('413075af-a1ab-4928-8c25-cfeffea4e8d9'::uuid,'114','995',4654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3ab33e00-cd36-472e-98ba-eea80d3b9fad'::uuid,'114','996',4654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('da5453a9-e657-4189-9dd7-76c1800aeb17'::uuid,'114','998',3813,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('20e0c6ff-f337-4db4-8bd1-f1db0680e0cf'::uuid,'114','999',3590,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2b1dd9c1-e552-4be2-ae57-cea97fd939af'::uuid,'115','995',4682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a9435c59-d91c-41ef-8ba4-33b11baf1ec2'::uuid,'115','996',4682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cf1178d6-1cfd-46f0-af4d-e24d326c5445'::uuid,'115','998',3840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('35a0b480-15bc-4879-999e-ef1ad726e23c'::uuid,'115','999',3617,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d1201ecd-f6d9-450e-9bb0-a5101859c612'::uuid,'116','998',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('35401e05-8a7a-48eb-869a-3421ae05805e'::uuid,'116','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a07041b9-0072-4726-8637-4f727f188ba0'::uuid,'117','995',4678,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ae89cb2c-e90e-46b7-9f69-8d2774afa011'::uuid,'117','996',4678,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('06e63684-12f0-4220-8665-177aa81e3565'::uuid,'117','998',3836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('1e6142fd-7e22-4813-86e8-e7c744eb1daf'::uuid,'117','999',3613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e43acdcb-f93e-4d34-8a69-88b1a43cb11c'::uuid,'118','995',4667,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('35c4f7bd-13c2-48bb-8511-85923e9d8ed0'::uuid,'118','996',4667,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c1d291ed-3cb8-4dea-9b7d-2c5d6c3f984e'::uuid,'118','998',3826,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e8fbaff1-0ad3-4033-9662-3ffbc42399fc'::uuid,'118','999',3603,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e2a88c77-0d67-480a-9372-7166631b9952'::uuid,'119','998',3873,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8757b020-2541-47c7-a2a7-dc9642130a1c'::uuid,'119','999',3615,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bfbcbba7-4d1f-4eb1-8a08-3c779a565e26'::uuid,'120','998',3768,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('38bdac92-1185-47e3-bc9c-3a1916b87521'::uuid,'120','999',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fb84ef94-288a-4bfd-88d1-6347bc72afd1'::uuid,'121','998',3768,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('c6a4e653-6cf7-4ce0-8738-253d3effe860'::uuid,'121','999',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1790137d-2cb2-41f3-b672-80f3dc543505'::uuid,'122','995',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5870cf94-bdad-4298-a1ab-7698ea6be035'::uuid,'122','996',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a22f3fc4-979c-45d5-a401-36069cecc29b'::uuid,'122','997',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('02ff0cfb-ef17-43f2-adba-5db6e7d5361d'::uuid,'122','998',3785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9522b35e-05a2-42d3-a101-be2590ff4dec'::uuid,'122','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('46c91f25-629e-4033-a108-a3b02d0a723f'::uuid,'123','998',3768,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f5667d42-c000-442d-9f6b-404158def1d7'::uuid,'123','999',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('224217ee-af43-4cc8-86e6-3f39de91f453'::uuid,'124','998',3822,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bb84cc03-f32d-4cac-a822-78a049ad2ef7'::uuid,'124','999',3564,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('fdc1c05d-efd4-4bf6-889c-3f0cb7524f75'::uuid,'125','998',3572,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e261a390-a16f-46ff-b589-4e935c42fe85'::uuid,'125','999',3572,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('449c7f2e-3f7e-4fcd-9e1c-e7f51f8db1e8'::uuid,'126','998',3816,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6ab3bb50-5c6a-44fc-8a84-99e83a456d83'::uuid,'126','999',3558,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7320a630-18ae-4e18-83a5-8104a4a508ad'::uuid,'127','998',3789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3c60b930-4c39-46d0-81b8-718c0b673825'::uuid,'127','999',3566,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('98520779-42e5-4ea0-8859-0e3cb1c5dd48'::uuid,'128','998',3465,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('00af1364-40cc-4041-85a9-9a84ab632041'::uuid,'128','999',3465,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e658f0b0-1fc3-4ccb-81c6-8d4a3c892705'::uuid,'129','998',3673,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('502f98f3-b11a-401c-a20c-28c0249e1fdc'::uuid,'129','999',3450,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('b203717f-92dc-405c-8384-27d8ba6a1a35'::uuid,'130','998',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a0a943f8-e18c-4509-8620-89bda1554fd6'::uuid,'130','999',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('62870c5d-64b9-4839-9adf-cd41f4d82a44'::uuid,'131','998',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('947f9a85-faf3-430c-b308-41cde9eec944'::uuid,'131','999',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8ed42f73-7bca-4d4a-a734-f68fbb4bb352'::uuid,'132','998',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c2f09d86-8e42-4337-ae6a-2138ad65aaad'::uuid,'132','999',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ce52bc43-c9ae-4781-9dd4-23b04c1db3f2'::uuid,'133','998',3694,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a84ddda7-821d-4cc8-aad5-fc1246a5fd9d'::uuid,'133','999',3436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4379c234-65a2-4800-ae9a-a4172ceb6ac6'::uuid,'134','998',3694,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('01d553a3-884e-4ece-9798-3553c3baf182'::uuid,'134','999',3436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('7364cef9-629c-4ca9-bd42-d31bae45272f'::uuid,'135','998',3433,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e816553e-69ec-4d3f-a61a-078c2cda42f3'::uuid,'135','999',3433,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('af8d199a-7029-4631-9b61-9830fbf8a6c8'::uuid,'136','995',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f0a0aef7-4b6f-4b3c-96b8-42313519d82f'::uuid,'136','996',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ac863f73-98e5-46ef-b5af-5bf91c04144f'::uuid,'136','998',3594,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c152e095-2c96-4b29-ac13-84e8050c826d'::uuid,'136','999',3372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3c46fd3b-93e0-40b3-9954-f88e0b9f69be'::uuid,'137','995',4577,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9e8a171a-9480-42eb-a22a-8d85245a77fd'::uuid,'137','996',4577,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('97ae952d-fb6f-478c-aabe-8eff14c4c854'::uuid,'137','997',4320,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ff018b57-8712-40e9-b763-dfe5d977ed72'::uuid,'137','998',3736,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('c9d8253c-1541-4cba-91f6-825d429cb14f'::uuid,'137','999',3513,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7de8e3a1-49d2-464b-9f2c-74145fd944c1'::uuid,'138','995',4577,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bb4e7dc5-3f56-4e1a-ae34-82d0ab5a66e9'::uuid,'138','996',4577,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0a94cd0d-c7fb-4b3e-a548-5472f385d7c9'::uuid,'138','997',4320,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d508bcd9-f096-49b7-ad83-cc5716d2fb36'::uuid,'138','998',3736,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ff380303-a78a-45da-8ee3-720c483512d0'::uuid,'138','999',3513,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8e51ff67-91a9-4b24-b62e-d934105900b2'::uuid,'139','995',4550,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7bfc1648-9af1-42a4-8ef7-130a346023ac'::uuid,'139','996',4550,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b8ff9dbc-0dc3-4195-b79b-83c1dd895821'::uuid,'139','997',4293,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('31a5b14b-6821-45bc-9a5e-f17811ddee85'::uuid,'139','998',3708,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('423fca22-186f-481f-8959-4da0176d36e7'::uuid,'139','999',3486,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('37b44b01-947f-4629-aa3b-943ad3771979'::uuid,'140','995',4394,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('159e07ae-a3ef-4e77-a86b-be9c2762c61d'::uuid,'140','996',4394,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6f33cd11-7697-4172-bff3-3f383c4e321d'::uuid,'140','997',4137,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('213e8630-c1ca-47f5-9d64-a32c7181935a'::uuid,'140','998',3552,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7b3a50c4-e4c8-40d6-b8ef-b9e759ea242a'::uuid,'140','999',3330,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7f22a7d7-a8a9-45da-add6-ba102ea38e41'::uuid,'141','995',4394,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ccf90049-1a87-4701-8a08-df9f06d30826'::uuid,'141','996',4394,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('38a22a3d-fcb2-4016-ad74-602cb1eb7027'::uuid,'141','997',4137,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('88b292c5-d15b-4f24-8537-e58ae76660b7'::uuid,'141','998',3552,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('4b57d327-1120-4e3a-a5c0-7832bc597330'::uuid,'141','999',3330,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4a9739db-ea42-402e-b32f-b3f9055f374a'::uuid,'142','995',4382,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('33d365c6-a74c-4dc4-8825-a9cd2b611b4b'::uuid,'142','996',4382,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d4ea5ca2-2c44-40f0-82de-8fdc035b2fe4'::uuid,'142','997',4125,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('683b0848-f54e-48d4-8f85-a2d9ae9db64f'::uuid,'142','998',3541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('da25a9b1-4d17-43fa-83da-e2c66b2df56c'::uuid,'142','999',3318,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7f947c03-ebf9-4c67-a12b-6f7af2d8024d'::uuid,'143','998',3543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('58cb913f-675c-422a-89ea-c9b1eb874324'::uuid,'143','999',3321,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c5e39655-2b10-4b3e-be16-fd9cc75ce3cd'::uuid,'144','998',3622,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6aac0724-b83a-40b9-a81f-5e252881115f'::uuid,'144','999',3400,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('036ca304-5318-4b01-92ac-202bc925333f'::uuid,'145','998',3622,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a129e503-1a9e-43aa-ae14-5c41979c9648'::uuid,'145','999',3400,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('929c432b-1f9d-4c9f-8b12-834fe21ed4ed'::uuid,'146','998',3604,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f175f551-5efd-4546-ae30-6a2a7d3bc49f'::uuid,'146','999',3346,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2208d302-de88-49e8-a5e3-6b63641a0caf'::uuid,'147','998',3518,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d7ca20dc-4ee4-4706-96ad-451f55ab2c3c'::uuid,'147','999',3295,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e676a417-a50f-4bc9-bcd5-b1074a112489'::uuid,'148','998',3407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('215a3828-f797-4f44-b0ba-f59c3dd91f33'::uuid,'148','999',3407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d37f41fc-93d0-4e4f-8433-3926d229ef0a'::uuid,'149','995',4493,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7f386ef2-a76f-4106-8957-95aafdc4aec9'::uuid,'149','996',4493,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('276e9cfa-5160-4061-a3d7-b32e9fa05e25'::uuid,'149','997',4100,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8bf2cb76-ec5e-4621-91f5-e03ea8891301'::uuid,'149','998',3651,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('735ac79f-9b65-4087-8d5b-02d0abec1b19'::uuid,'149','999',3429,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('58fc974f-be88-47f6-8a2c-5725da923845'::uuid,'150','995',4290,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bfe18d53-ee0a-4b11-b7ae-c3d0a4e75f48'::uuid,'150','996',4290,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8732b23d-0be2-46d6-9ed4-8ece7c2c8a46'::uuid,'150','998',3448,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8b5a86fc-e137-469d-8473-68f4a454e02e'::uuid,'150','999',3225,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1e83d5bc-aa8b-45a7-a07e-8a77b2fb3db4'::uuid,'151','998',3464,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('24412e32-fd5c-4627-837b-e639c510b715'::uuid,'151','999',3206,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8d96619f-ee17-402d-b7e6-922ad7de95f5'::uuid,'152','998',3464,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('b2e19e85-3fe1-4ad8-8a3f-151b5b528d54'::uuid,'152','999',3206,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4f362a7b-c5a6-4a9f-9e65-49c4b639ba33'::uuid,'153','998',3487,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3c7d8791-f630-4400-abc6-c4fe319aae8e'::uuid,'153','999',3229,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ad753d7a-18e1-437e-a791-c24a2657b815'::uuid,'154','998',3247,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dfcf4aad-1868-4c51-affb-94f3a05b6440'::uuid,'154','999',3247,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('242e7268-2ec2-474e-ba05-6ad4348b3c20'::uuid,'155','995',4382,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('12c65a40-8331-409c-af2f-4aff3edf249a'::uuid,'155','996',4382,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bf7e4b88-4b21-4cb6-b559-b92dc9edfdd6'::uuid,'155','997',4125,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('555ecd88-620d-4244-b28b-4fe11b43ad40'::uuid,'155','998',3541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('352a8690-7c8b-48bc-8d9d-aa520ea184e0'::uuid,'155','999',3318,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('e41079f2-98d0-4c15-8d94-543188550eaf'::uuid,'156','995',4336,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('432130d0-9aa6-4b82-b48a-c36060ad2847'::uuid,'156','996',4336,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bf566f76-58c3-4656-a11f-e8cf67b41630'::uuid,'156','998',3495,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('de90f81a-d7ce-4b7a-ac21-099a260c8d5b'::uuid,'156','999',3272,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('10cd9b13-c604-49a3-9d6e-f7d1079eaea8'::uuid,'157','995',4343,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('68a20935-6f34-4dbd-8de3-c428d14d3da0'::uuid,'157','996',4343,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f842a4b1-50cc-4b81-8b73-b97d0594f219'::uuid,'157','998',3502,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('285bff3c-38ab-4f0e-96e4-d49851e7f2d3'::uuid,'157','999',3279,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a0a7c8e5-5ca7-4e24-89ed-dfadaa46b2da'::uuid,'158','998',3279,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c00c9066-74e5-4127-81df-b452c1044e5e'::uuid,'158','999',3279,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('c61ba7ed-4b29-4e06-bb02-13c82b2e598e'::uuid,'159','995',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('87e7b5f7-f03b-497c-a1ed-fd98ccef7a33'::uuid,'159','996',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5462f740-39fe-4bcc-a628-320db98e6543'::uuid,'159','998',3530,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('499ab95a-1317-4011-9bce-0441cce1ab13'::uuid,'159','999',3307,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1defd046-3335-4701-8deb-94ea602a6d2d'::uuid,'160','995',4295,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dbaf6b80-17a1-42c6-8bd4-a357ee3ef171'::uuid,'160','996',4295,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('db80d6ec-360a-4fcf-98ca-e76c7f8b00ec'::uuid,'160','997',4038,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ba015da6-55de-41e1-a40b-835701612903'::uuid,'160','998',3454,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6943cb9c-f423-498f-b881-29311b9551b0'::uuid,'160','999',3231,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e8ee5de8-2663-4d60-8ed4-b5f7a01f808a'::uuid,'161','998',3432,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('0c6fca82-2873-4024-8640-b03a07f41e18'::uuid,'161','999',3209,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('77f5e116-f922-4f2c-b462-3fc67b8c7f3e'::uuid,'162','998',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d842ed1b-c764-4c18-b1de-36e99c0412e4'::uuid,'162','999',3222,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0e9e2185-c886-498e-8480-d75c1456de94'::uuid,'163','995',4325,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d2402859-f001-4c71-90b6-a16505eaba4a'::uuid,'163','996',4325,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('980b750a-fd3d-464b-b3dc-4303ae285879'::uuid,'163','997',3932,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a7f4885f-4127-4567-84c1-5c0d13facd1c'::uuid,'163','998',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('535e1c72-cbdc-4615-916a-589559302a9e'::uuid,'163','999',3261,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('366eff11-5b81-4cc8-94ee-46070873d554'::uuid,'164','995',4286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('da0ff9f3-50fe-47f9-b72a-fae74f07e427'::uuid,'164','996',4286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('492bb187-e212-4927-bac9-a60024b2bca5'::uuid,'164','997',3893,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('33ab3e3a-e3bf-4689-9d14-74b08edf3961'::uuid,'164','998',3445,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4f0ef318-df43-4a13-824c-e71cb9a24d32'::uuid,'164','999',3222,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d8306512-0635-4e59-8f8e-cd032d5c9dc0'::uuid,'165','995',4288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d0ddecdd-38bc-406c-9c80-1835f211e026'::uuid,'165','996',4288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e2c38a24-3a5e-420a-8e3c-840851fe9bfd'::uuid,'165','997',3895,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e12ceae9-9f8d-4547-9308-a8bd2ece6ca8'::uuid,'165','998',3446,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('055580cb-e468-43ef-9c8e-90a8b9465fd8'::uuid,'165','999',3224,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('08f08137-15e7-4584-b85e-88a6452e4429'::uuid,'166','995',4395,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('11c7e141-650b-4f05-867e-10ab794506ef'::uuid,'166','996',4395,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('1afdd139-0860-4d27-b985-b3fead509d41'::uuid,'166','997',4138,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c86fb1e8-3ea8-4f19-986b-47db9d03fd99'::uuid,'166','998',3554,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('765ee2d1-b182-45cf-8559-edeec03d4930'::uuid,'166','999',3331,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fb608818-4d1f-4df0-8774-560281a3de5f'::uuid,'167','998',3551,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d9be61dd-8b86-4633-8a66-041fbaaa52b1'::uuid,'167','999',3328,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bd8b77ad-6c97-428b-8b09-c94e37e20d57'::uuid,'168','998',3315,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e01c1a18-7343-4abc-9252-02957d86a9ab'::uuid,'168','999',3315,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('98e26b0d-b871-4176-8b6b-4ee33aa0b37c'::uuid,'169','998',3359,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a15d5a50-4f3a-42d8-81b0-22ea453288e0'::uuid,'169','999',3359,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7655986d-0243-420b-a27c-b7a78d8d30eb'::uuid,'170','998',3637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('ba866f39-e825-4ac6-bb51-95ee03fd5c47'::uuid,'170','999',3414,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8eb8d430-6e66-45d6-9586-945b3142b4fd'::uuid,'171','995',4500,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('047b1ebb-6ec7-4da1-99fd-aaac54884eb4'::uuid,'171','996',4500,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('14bd39d6-f9d7-416c-bb88-dd8e26af3e7f'::uuid,'171','998',3658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a51ddfa0-b35f-4744-b4aa-fb7da2474c5a'::uuid,'171','999',3436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('398890b1-c627-430e-969b-8e776fba9543'::uuid,'172','995',4470,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('88ac890d-606f-4b34-b12d-a9c957d12c46'::uuid,'172','996',4470,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('611ac9e8-53df-473e-b564-d3ca76ec9dc4'::uuid,'172','997',4213,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8ae38b39-3f12-47e9-807b-b4609439f3e7'::uuid,'172','998',3629,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ea5b9bef-eeab-4ada-8c2e-a7a683692695'::uuid,'172','999',3406,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('bcbfa541-5fdf-4c78-8879-5a209e970554'::uuid,'173','995',4520,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bc3f276b-a41b-4e27-bbad-3ff12b88405a'::uuid,'173','996',4520,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c2af378f-7aa2-4b64-8843-96fc464283f1'::uuid,'173','997',4263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6b861617-2a04-4aee-a495-c6950b464742'::uuid,'173','998',3679,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c26a73a7-1146-4c65-9b68-caa453cc8eed'::uuid,'173','999',3456,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0645c658-94af-4467-ad3b-8b19acc1d6e3'::uuid,'175','998',3697,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('826bae35-ad06-4e91-bd42-6d81f35e0785'::uuid,'175','999',3474,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2cf30e30-ccb1-4c26-a372-7bfce3e3c1b9'::uuid,'176','998',3697,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c10bb3fb-2d57-45e8-a682-e5204094587a'::uuid,'176','999',3474,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('317ba659-8b33-46a4-a1fc-a697d724d33d'::uuid,'177','998',3607,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('3a6b72bb-a0cd-4779-87fc-9c1fb1229d34'::uuid,'177','999',3385,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e5f8d756-05f3-4485-85c1-2c5e4d7a33b9'::uuid,'178','998',3637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f29bb90f-33f1-484d-bdf4-b554c39f26b1'::uuid,'178','999',3414,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3bd1d4b2-4469-46aa-99e8-39fdc7578c75'::uuid,'179','998',3679,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f124808c-804b-40b8-8e56-14b9d553ad83'::uuid,'179','999',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0fc5fca9-dd91-412d-9936-b6dac20ea11b'::uuid,'180','998',3721,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e8cea41b-5658-4135-9543-0b7dfa849835'::uuid,'180','999',3499,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6b39f1d8-8e5f-403f-8639-69a2b87e8e2a'::uuid,'181','998',3721,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('93d77dab-9f7b-4b68-af7c-916b4e9f2426'::uuid,'181','999',3499,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('26f2c49b-7b97-4d2e-a667-6211ee87eb29'::uuid,'182','995',4524,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('9b90cb0f-4bd4-4d63-8488-69ff70f71736'::uuid,'182','996',4524,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d4479cc3-c422-4422-93b7-dedccb8230b7'::uuid,'182','998',3682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f5cd16e0-815c-45fd-824f-3a2a640c0044'::uuid,'182','999',3460,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c0657c91-9e0b-4a33-b94e-dabad920c346'::uuid,'183','995',4561,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6f30c537-3ec2-4b4e-98e2-18c097651a10'::uuid,'183','996',4561,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('312bf713-b244-4f14-9a7a-8b85dd776617'::uuid,'183','997',4304,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('82fefd5b-cae0-40a1-993e-f8ed75469165'::uuid,'183','998',3720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e10687a9-c629-43ff-a678-4b4280003d1c'::uuid,'183','999',3497,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d5ee2cb8-aaeb-4978-8441-641e54b7f2ef'::uuid,'184','995',4575,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('870f5b8a-6099-4a56-9819-1b55bb535c6d'::uuid,'184','996',4575,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('c6cde9f7-5220-46f8-9f6f-a928d1c93ab6'::uuid,'184','998',3734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('65b42231-1141-4025-b81f-85892aceb0ef'::uuid,'184','999',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('108c9be2-ccf1-42de-afa9-54b7dcee3822'::uuid,'185','998',3704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dc6796a6-373b-4d29-9dc6-e0e3755a5b91'::uuid,'185','999',3447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5524d749-2998-409c-854c-0108daf67891'::uuid,'186','995',4522,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c1b69361-77a8-4022-8986-d39ed878cb5d'::uuid,'186','996',4522,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8339c8dd-a7da-43e9-9b65-57f3e3731d3e'::uuid,'186','997',4129,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('76535138-f67b-4107-8b6d-bb35ad43611c'::uuid,'186','998',3681,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8c12be40-ac34-4f73-bb4d-da805e0f31cd'::uuid,'186','999',3458,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9a64b2a8-6239-4cc5-970c-6ee1cd95944b'::uuid,'187','998',3432,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('91004c6f-4214-4d9a-a178-e4336334df2e'::uuid,'187','999',3432,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('377c3eec-5f5e-4bef-a3e7-7f3794763e8f'::uuid,'188','998',3692,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('84053072-f259-4aef-a6c9-a1d6076a7e43'::uuid,'188','999',3470,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4429064f-c683-4b28-986e-a449fc71819f'::uuid,'189','995',4593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1a237892-91d6-4344-83a3-4ea0b72590e1'::uuid,'189','996',4593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3007af97-bb75-4b27-ba66-99d0fe478903'::uuid,'189','997',4199,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3bfe79a8-9944-4ac4-8cec-aaf79c0955a5'::uuid,'189','998',3751,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f7e7fb61-c72f-4f73-93e8-03d36b4aa25d'::uuid,'189','999',3528,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cb191415-c30c-4c51-834e-36ad3117ae39'::uuid,'190','998',3760,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1dbbb97d-ad5c-4e8a-8ecb-c9159ba98acf'::uuid,'190','999',3502,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('9f789303-4d51-4e66-8d27-8328e8b5a00b'::uuid,'191','998',3760,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d4efcaa9-012a-4fcd-8ef5-927311b76761'::uuid,'191','999',3502,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ba3809ae-7509-48ea-aa4d-d6e471274e31'::uuid,'192','998',3760,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8e01fa26-eac8-4216-8105-1cb6b9ca7370'::uuid,'192','999',3502,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('92106873-acc9-46c7-b0eb-68fab6e36a47'::uuid,'193','995',4571,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e8d79db4-57e9-487f-ba9c-b305f7285f13'::uuid,'193','996',4571,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e5cd55de-fcd7-4d7b-a363-5ac2c4310ceb'::uuid,'193','997',4178,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('340519aa-dbb9-4141-96eb-b2f2e3705b7d'::uuid,'193','998',3729,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5d42fd5e-de06-4c71-b01a-e46d4d94ea1f'::uuid,'193','999',3507,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c860fff4-5f8c-4d87-8ec0-e7564e3d272e'::uuid,'194','995',4589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('2c79adad-473f-4a7b-954f-ef1408489cd2'::uuid,'194','996',4589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ce685ea3-7d6f-4540-9c04-9d7dc7ab88d8'::uuid,'194','998',3748,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a934cff3-83f0-4a9a-b6a0-ad24658c0ae1'::uuid,'194','999',3525,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('30ac0e24-db73-49fe-a6d7-318c75cdd2c0'::uuid,'195','998',3712,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ff415e39-5610-4eb6-8543-a69a32a7e4ed'::uuid,'195','999',3454,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9e415890-087f-4b47-ba07-819907ce7eef'::uuid,'196','998',3712,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('10121644-abb0-4ef2-b034-b29560e14c30'::uuid,'196','999',3454,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('259eb1ce-0630-41f8-8ba2-2d2672b43bd6'::uuid,'197','995',4609,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a29862fb-af75-4953-83e1-05d494880bf5'::uuid,'197','996',4609,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0e77050a-5e53-4387-98b5-0193a12ac167'::uuid,'197','998',3767,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('21d687a4-a183-498c-8845-669fb8100b1a'::uuid,'197','999',3545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4e0fb21f-f8ec-4703-bf57-e34bd5ad1819'::uuid,'198','998',3488,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a4176436-cc71-4e40-86ad-977cea2c6ed8'::uuid,'198','999',3488,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('33e20eba-9907-4d0b-9781-6b9733280ba3'::uuid,'199','995',4639,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c5eb2752-9784-4aec-8639-bd317372cdde'::uuid,'199','996',4639,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3addd556-22e4-47be-a55c-bb86991ee60a'::uuid,'199','998',3797,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a9069428-2fda-412c-b90c-528da9a31a1a'::uuid,'199','999',3575,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4698b951-e74e-4c96-b726-7c78b1a62293'::uuid,'200','998',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('95302999-7e1d-48af-a876-452a7684cb9c'::uuid,'200','999',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2e775f55-4935-48f9-bbbd-e4ce110187fb'::uuid,'201','995',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('88ad6aba-1004-48df-8f41-46c0d059732a'::uuid,'201','996',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d2bf0614-893d-4332-8812-ca31404078f1'::uuid,'201','998',3702,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7546deed-9313-4dac-80d1-ec8a554e7689'::uuid,'201','999',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8600ec1b-2eb5-4bb1-9f02-913abe2a52f6'::uuid,'202','998',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1194de8c-385a-4d28-9b09-dd03fed682f3'::uuid,'202','999',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1bd5558a-b110-476a-b2ba-4c0f274db3d9'::uuid,'203','998',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b450b99b-38e2-4222-bf2f-7fa1a3083da8'::uuid,'203','999',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('12b3ec64-51ef-4c76-bb89-3ad327254315'::uuid,'204','998',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('21d369f0-9aa4-455c-9e17-46350b9802a2'::uuid,'204','999',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dae1384e-634d-44a8-b19d-046187e69ecb'::uuid,'205','998',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('6546e727-37da-47da-8444-95a62f8c1229'::uuid,'205','999',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4a14986e-4330-4d71-85db-fd22dee6a253'::uuid,'206','998',3752,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b4d3045c-c38d-4828-9922-5b7778fcafa7'::uuid,'206','999',3530,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9a223a8f-a65f-40ac-b180-4e9531e473c7'::uuid,'207','995',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a91bad46-fbbe-43e8-9c91-115325380720'::uuid,'207','996',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('43453987-7c2a-48d2-81d0-9b15f5d3047e'::uuid,'207','997',4286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7691ea7f-2854-485e-91c4-8620343c9e9e'::uuid,'207','998',3701,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8bd33fff-e13d-4a7e-8a8e-e38d3c8719e7'::uuid,'207','999',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f2d6fb53-f223-435f-9814-ca909f7e041e'::uuid,'208','995',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b82254da-1040-4a91-ad49-b542f23f0843'::uuid,'208','996',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('c92cd844-2f29-49f3-ab6f-395dd57f9ae8'::uuid,'208','997',4286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('123f3ad4-c560-49e5-b197-c9ea00c522d8'::uuid,'208','998',3701,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ac140f39-6ac4-4d02-a246-fc4298b3ae1b'::uuid,'208','999',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cc8aaa05-de91-4811-8b39-589bac0315f3'::uuid,'209','995',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('052bbf2e-09ec-4f77-bb0b-5bf51e44d1ab'::uuid,'209','996',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8970f040-b6c2-431c-a392-ff282b436f92'::uuid,'209','997',4286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ae6132e3-c17d-46bc-a77e-0cfb0c820c10'::uuid,'209','998',3701,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0fc5f67a-8e29-4690-9fb9-b307e5ab7d92'::uuid,'209','999',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('62322f1b-19ce-4b29-862d-528c1156fa74'::uuid,'210','995',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('86aaf8ee-227e-410a-a504-46286b72b376'::uuid,'210','996',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('3083d1c0-8dae-4f1e-b845-fa39f0c42595'::uuid,'210','997',4288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cf94ba56-2d07-4522-b53d-afa141bcf0f1'::uuid,'210','998',3704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e3e8940e-e54a-413d-809a-b567e3b13399'::uuid,'210','999',3481,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2abe6e79-f02c-45a0-aae6-5e09a0dd4ad5'::uuid,'211','995',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('58967ff0-84b7-40d4-88d6-d67f3545b718'::uuid,'211','996',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('56193dd7-6cc3-4792-9d69-c1aa22a5f759'::uuid,'211','997',4288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b302217b-9966-4587-9903-3f7b09f4ca5e'::uuid,'211','998',3704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d42416fa-cb06-4f8d-9f10-725286d6b7b6'::uuid,'211','999',3481,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('aedbfe89-4dbb-495e-bf26-7cc1028fd698'::uuid,'212','995',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8349a6b2-e7ae-4658-9266-d2fafd55f8bf'::uuid,'212','996',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('65cb4dfb-9b94-4501-88e2-1aefaa9f0306'::uuid,'212','997',4288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('07571a9f-e604-49c3-b2cd-b4bf934c3174'::uuid,'212','998',3704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9468acdd-43e9-4e0e-a218-8bbabf8c1025'::uuid,'212','999',3481,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ffaf6b4e-3f67-402d-ab94-f9c170d94cf4'::uuid,'213','995',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('907e8d42-2033-4c40-9bab-0d5a5d6e56e5'::uuid,'213','996',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2b5f8adc-89a0-40cf-84b0-63047410b04e'::uuid,'213','997',4288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5a48e361-9d1e-45d4-97c7-83249de94c7f'::uuid,'213','998',3704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2ed8f019-43c1-4d0c-a7c8-8bc1b1b70f48'::uuid,'213','999',3481,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4b9e4418-2500-4f5d-b34d-d07198f754cd'::uuid,'214','995',4568,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('43e128ae-2d13-4910-91c1-1d722ba113f3'::uuid,'214','996',4568,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('ae75c908-7a96-4dcb-9a8b-fb2a426c862f'::uuid,'214','997',4310,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7cffc88a-9e01-42b1-996d-9c0fd5746980'::uuid,'214','998',3726,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('66c26f07-10a1-47cf-a5d1-e9b95f636829'::uuid,'214','999',3503,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('39187950-e2b7-4377-8fee-8114d63c5c0b'::uuid,'215','995',4409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dfbc151e-3158-4e64-9bd5-1ba4cc9c4feb'::uuid,'215','996',4409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4df9394a-3a31-431d-9b92-4fd63ee709d3'::uuid,'215','997',4016,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('50a40214-8861-44ea-a1fc-7a815843b997'::uuid,'215','998',3568,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c1e01f9d-bcbc-4c6f-afef-3b7203291c06'::uuid,'215','999',3345,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5385610c-3a1b-463d-9dea-3884d5b0da7a'::uuid,'216','995',4607,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6900f6dd-1286-4895-b086-1aab49f50578'::uuid,'216','996',4607,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('2e7d3d9f-3a07-48f2-b0e1-1deaa65b4a00'::uuid,'216','997',4214,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fc902afd-e87b-4a6b-9c67-fe5869dbe205'::uuid,'216','998',3765,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e9f7e136-6d30-4b65-9f0c-e9b705f6722f'::uuid,'216','999',3543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('aadd64de-8b05-44bc-8b06-e26fd35c109c'::uuid,'217','995',4484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c56b3238-8e8a-4e73-ba04-036c0d722500'::uuid,'217','996',4484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('891139f5-f64a-47a9-a0e0-8fa5ba3f630d'::uuid,'217','997',4226,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('038072cb-df9f-40a9-b9e8-e25eaa0b34e4'::uuid,'217','998',3642,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('41d00aa8-2142-4a15-9050-8582b44ecdec'::uuid,'217','999',3419,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('192a5e13-dfa1-4af6-b066-ed709b54fff3'::uuid,'218','998',3812,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8e6ea1ca-83b4-426e-96e9-ad26b5e381ad'::uuid,'218','999',3554,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('934015f0-0008-4cf3-b85a-310118cefca5'::uuid,'219','995',4579,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e2bc0890-6b42-4f07-8c0e-da42545e9abf'::uuid,'219','996',4579,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('810867a6-fd99-4acf-be39-dbf2e6cfe90a'::uuid,'219','997',4322,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fd0fd2b6-a90d-499b-8cfa-4ef52ca5841c'::uuid,'219','998',3737,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('efea7887-04fe-4946-94de-6d607d68453a'::uuid,'219','999',3515,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1f7f9e87-0b89-4ab9-aec5-9413dce49fbe'::uuid,'220','995',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bfc26e7e-e54a-4240-881b-3bbe43b74ab8'::uuid,'220','996',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('36e339fe-d197-4990-b533-bbe5a963d161'::uuid,'220','998',3702,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b8993be4-a9e5-4dd3-9dfc-9f78d722b0a2'::uuid,'220','999',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('09c595af-f00f-4e5b-ad42-204dd59d4997'::uuid,'221','995',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('63025b32-412f-4015-9d8a-1bc5628b7857'::uuid,'221','996',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bc605ce8-e1ec-47c9-aef2-3862809cb6de'::uuid,'221','998',3702,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a223da78-ccc6-4918-966b-fd70c3a8c33c'::uuid,'221','999',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3f4cdd7c-087d-490a-b7e5-eaa0f9417f56'::uuid,'222','995',4547,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4662b2bd-2a83-442d-b6bb-931192c058a2'::uuid,'222','996',4547,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ad4b9c88-4816-4485-a422-42acf6f50305'::uuid,'222','997',4290,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ec31e3e9-a42a-4c4e-816e-dc82818ae71e'::uuid,'222','998',3706,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9ffccd86-aa5e-42fc-95cc-bf6a3d81d30d'::uuid,'222','999',3483,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fe49c7d1-ac49-4fdc-96de-7067b77cd2b5'::uuid,'223','995',4553,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dfb669f5-d0fe-42b3-a1ee-4e11a7182a38'::uuid,'223','996',4553,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('f82520dd-ca68-4ecd-8126-978aa53251f8'::uuid,'223','997',4296,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fb53756d-b37e-4d21-9078-cb3eff0d2078'::uuid,'223','998',3712,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2ad09352-e4e5-45f7-9e6d-b28b1fd28891'::uuid,'223','999',3489,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c5bb8b80-3646-42a3-a94a-56a4ea4f6b2f'::uuid,'224','995',4597,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e1194220-5dc4-4b22-ae2a-a74cbe243341'::uuid,'224','996',4597,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fccb15bc-7952-4ad9-ac78-41a24f3bf3bd'::uuid,'224','997',4340,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('254f517e-e678-4d77-b9f6-fa20832ad64b'::uuid,'224','998',3755,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('63777069-3851-47ff-88cf-b24e835f93bd'::uuid,'224','999',3533,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8d1d32d2-5e5d-40c7-96dc-b1aef2353486'::uuid,'225','995',4597,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('82b84a54-5262-482b-8f92-ec1684bdec38'::uuid,'225','996',4597,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('967a3343-fa00-44e5-9347-d6372a7593de'::uuid,'225','997',4340,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7df11bb8-7035-408e-afef-836a79089a53'::uuid,'225','998',3755,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f7645cef-7d75-43bf-b71f-85b49a8c6f45'::uuid,'225','999',3533,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('303ab322-f7bf-45d4-906c-c290bb5f4113'::uuid,'226','995',4513,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b9c726e6-115f-4d6f-bc1e-d204388f19d7'::uuid,'226','996',4513,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1cea46e8-1979-474e-a6ef-e539929bf50b'::uuid,'226','998',3672,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b8bd777d-177f-45ae-9123-fe18e61f0ac7'::uuid,'226','999',3449,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ebf234b9-9050-4d4e-8020-3eff7312c19b'::uuid,'227','995',4554,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3b910efc-43f8-454e-971d-be923f36714a'::uuid,'227','996',4554,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f43c5771-567a-42ae-aa5a-5399172a7f0a'::uuid,'227','997',4161,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('5a4a71ae-1325-4242-aaab-3e7b3e4d1cd0'::uuid,'227','998',3712,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('77f48d29-d203-44a4-8646-67a9c3f4ba4f'::uuid,'227','999',3489,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fdbf9b92-5054-4cff-849c-65b758112138'::uuid,'228','995',4491,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ac76abec-9b11-4efc-a1e9-34dcc3c1a6a2'::uuid,'228','996',4491,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dec78870-5ba7-46a2-8ba5-8e8669e74eb5'::uuid,'228','998',3650,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d7b4092c-7c61-413d-be77-f5c518e11785'::uuid,'228','999',3427,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dc7f0055-747c-4c3f-88f1-8c15677d3591'::uuid,'229','995',4535,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d2140439-0c00-4069-930d-a105a15e207e'::uuid,'229','996',4535,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('81808db0-3bef-4391-82e3-478cc5b0d605'::uuid,'229','997',4278,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('41cf997b-55cf-4b56-9892-0c4f7660d611'::uuid,'229','998',3694,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('1d1f7a1a-ee1e-4099-8d74-1327c874303f'::uuid,'229','999',3471,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3f5e0213-314f-4c6c-aae7-40b0849cdb93'::uuid,'230','998',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6df5accb-16eb-451c-90b9-05f045d76a92'::uuid,'230','999',3504,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('39b9f122-562c-4e78-a4cf-c923d463120f'::uuid,'231','998',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5acb201d-9fd8-4ce7-abc6-fe4e020b3fd0'::uuid,'231','999',3504,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1d040592-011b-44dd-ba75-32b31446a6e8'::uuid,'232','998',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c8214066-1af1-4cc9-aa90-fd5a9b867608'::uuid,'232','999',3504,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4c3e0cb9-1667-4319-ac18-d22f06972a63'::uuid,'233','998',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b6f6f0e7-c4e3-4137-a207-b01f43353048'::uuid,'233','999',3630,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c50d64b7-ab47-4338-b33a-50e95d5ea033'::uuid,'234','998',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('87219d1a-2890-4e83-bcd8-ed28fa5cd432'::uuid,'234','999',3630,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('27ba4c6f-d69b-422d-bd40-8f7febe547e6'::uuid,'235','998',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4766a194-a112-4c62-a34b-29707a50cb4e'::uuid,'235','999',3630,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('006b31f6-3f68-4aab-88e7-1dedd59c1357'::uuid,'236','998',3836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f2f69943-9bca-4796-a93f-a9a03d30719c'::uuid,'236','999',3614,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3c79787a-6443-4760-a820-88db8494972b'::uuid,'237','998',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ca3a6e2f-55db-4318-8e9b-0254c6fbae7c'::uuid,'237','999',3595,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dd670767-1148-4dca-a962-bd107faf5798'::uuid,'238','995',4651,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b72cc58d-0d05-4471-ba9c-c1e97e53842f'::uuid,'238','996',4651,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('79eb0082-7e9d-499d-98bd-63917fe61f1d'::uuid,'238','998',3810,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('15a5e748-1b8e-449c-a798-4750f4098853'::uuid,'238','999',3587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('566bed6b-70e8-47bb-80f4-822d2c49c275'::uuid,'239','998',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1cbe03e8-c07d-45bc-b8ab-c867d7f3624b'::uuid,'239','999',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('905e12d2-7ae2-42c4-a55c-ab553ed32429'::uuid,'240','998',3644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7682c3e3-ac6d-4880-9d52-f4b61260e700'::uuid,'240','999',3386,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bb305beb-5fbe-4565-8956-c79c0c5ffbe7'::uuid,'241','998',3644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cc87c8c5-e5de-4122-8420-5b48aaef0313'::uuid,'241','999',3386,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b71a6885-1663-4641-8d45-9e75c9d7cf27'::uuid,'242','998',3549,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f4fd5189-1cda-42c8-9075-079bfdd6c79f'::uuid,'242','999',3326,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('00e4b44c-54dc-4eab-942b-b3b2dc0782ce'::uuid,'244','995',4482,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('b69629d6-aa1b-4f87-922e-8fbf96d89f4b'::uuid,'244','996',4482,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e5bdc299-0ca8-4ab1-9a89-a3f93aa318cc'::uuid,'244','998',3640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8dd4f7cc-7f8b-4a66-99c8-41f09c753a31'::uuid,'244','999',3418,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('acb9f728-1388-43fc-a1c7-8422a4ffb8da'::uuid,'245','998',3704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6b41c7b9-dbf5-4281-86b6-9e466a20b2a2'::uuid,'245','999',3446,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1dc32c4c-903c-4982-b771-9d1daf70c564'::uuid,'246','998',3338,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('429e53b3-bf6e-476b-8945-62f6f43cb82d'::uuid,'246','999',3338,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('74bedea3-4e05-4b15-936f-3e8a96653316'::uuid,'247','998',3565,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0a14f5ad-f1e4-4e18-b5d2-c9fbbe1d4be8'::uuid,'247','999',3307,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3cf68888-4991-46a5-a013-2dce852e7e4f'::uuid,'248','998',3310,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('0d6e035b-cb0b-4ee8-9397-fc6fb788e239'::uuid,'248','999',3310,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('793e6a38-e689-4b00-98a6-b2e9e2abff33'::uuid,'249','998',3603,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c74255b9-3224-4c31-974a-e277422888cd'::uuid,'249','999',3380,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1c6de55a-9841-47b6-a8f7-3dfab21a376f'::uuid,'250','995',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1807dff4-f21b-4f1a-a9eb-cebf156ca355'::uuid,'250','996',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0c1d3783-c538-4985-8975-00a0a90c4efe'::uuid,'250','997',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('833ea784-2f03-4747-ac60-72d85dd8b1d8'::uuid,'250','998',3471,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5739785a-3b7f-4a35-b641-b7b97ade5d14'::uuid,'250','999',3248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cd3ca38a-a07c-4e3f-b601-c39af4223932'::uuid,'251','995',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('19ead668-dc8a-460b-9124-a1232a46e006'::uuid,'251','996',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('f8a445bc-5153-4b4a-a80f-2a61cf23e2a7'::uuid,'251','997',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6cf7e890-720a-4124-85c7-cc9dae6207d0'::uuid,'251','998',3471,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e7681190-a16c-45ed-8bf8-31b2efedb117'::uuid,'251','999',3248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1baf2d71-c352-4296-8900-ed8cc27b09aa'::uuid,'252','995',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('00afbd0c-6189-4843-b9f8-fba03986ee9c'::uuid,'252','996',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('36f01c9b-4ef6-4515-8660-3784a3654412'::uuid,'252','997',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4957ea54-2505-485a-bf73-db88ddb5f66e'::uuid,'252','998',3471,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('80538887-8ba8-43c8-bc40-f0482f35b4a9'::uuid,'252','999',3248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('abe65c0f-8c25-4e29-8418-50bd8b472139'::uuid,'253','995',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bf4ea2d5-5d83-46ab-bf53-08e509fcfb73'::uuid,'253','996',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('8f51f20f-0550-47e6-ac9b-382f54320c25'::uuid,'253','997',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e77f7ead-68d7-48bf-b3f7-2d6d73dc8c5b'::uuid,'253','998',3471,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('79464f4c-1c86-4387-a393-dbfa515a1d40'::uuid,'253','999',3248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3e275fdf-1bae-436e-94aa-96e87d24debc'::uuid,'254','998',3640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3d000ac4-294b-455a-9037-bf1275544b25'::uuid,'254','999',3417,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6df715bd-2c76-4f7e-8d78-473457f5e10e'::uuid,'255','998',3205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ff6a1611-4d78-42c4-a61b-f2369e58ad1c'::uuid,'255','999',3205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('37e33688-16de-4f7c-ad4b-5c2ffc5dd6b8'::uuid,'256','998',3508,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('04e29a5b-8619-4414-a83b-e12ede1edb42'::uuid,'256','999',3286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c48476ee-5fd8-40b1-a19e-f7e2a92b5cdc'::uuid,'257','995',4283,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('def6ff1c-3c0e-4dbd-9909-754c99bbbb89'::uuid,'257','996',4283,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5cb71164-2538-4e41-819f-be38e7edd23f'::uuid,'257','998',3442,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0d3d44df-dc03-46d4-82ce-04c111e688a2'::uuid,'257','999',3219,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e25680cc-81dc-43ac-a45f-6e763a2f9adb'::uuid,'258','995',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1e37be9e-19ec-4f9c-a995-38fa7445347d'::uuid,'258','996',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('824259a0-330e-45e7-b3fa-aab8b5f4e089'::uuid,'258','997',4112,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ee3a8794-5a9d-4cd2-ae04-e0f9cc1f3a2e'::uuid,'258','998',3528,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('124ff310-6527-405d-ba20-f6f250aeec50'::uuid,'258','999',3305,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cdc9c8d0-50c7-4bf6-9e48-26efc432a760'::uuid,'259','995',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('57a716ff-627d-4ff3-9bfc-42ee761980bd'::uuid,'259','996',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('00957477-c456-454e-800b-2c0024a7282f'::uuid,'259','997',4112,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3c365287-ca66-4463-a31f-0d6fb0d6a367'::uuid,'259','998',3528,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('12d40e39-49dd-4b05-b185-99f064240bf0'::uuid,'259','999',3305,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c732eced-3e08-4ebd-9746-65d3d02b101d'::uuid,'260','998',3182,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1d055639-e9ac-475c-91b3-7f6dcdf38234'::uuid,'260','999',3182,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f1b3250f-52b7-4c3e-8d8d-f46b458ce551'::uuid,'261','995',4307,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5efafb55-168a-406e-a841-d1ae9af5c2ed'::uuid,'261','996',4307,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dd03749e-5c59-451b-8bb0-c3014fa5cb3e'::uuid,'261','997',3914,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('700e5017-2fd8-411b-8706-bf0e9c953ba5'::uuid,'261','998',3465,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('163b4a2e-c841-4cb3-bf0b-a4c531e0dbfd'::uuid,'261','999',3243,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('ef5cc3e9-db6a-4291-bc74-879e0d72b90a'::uuid,'262','995',4410,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e52c8dec-0f2e-4d08-83d7-eb22c7a63840'::uuid,'262','996',4410,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1ac65567-d072-42d7-8d98-01a90475c145'::uuid,'262','998',3569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bad9e1fe-9b73-4876-8f85-c2baeecf1e21'::uuid,'262','999',3346,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1ef3479f-6e1c-4bd9-8496-0841ba671b11'::uuid,'263','995',4340,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2f5a481d-8a57-4602-bb9e-28642ebbf561'::uuid,'263','996',4340,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('abf4add4-cc08-4df3-a654-05d2e43bf7ab'::uuid,'263','997',4083,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('091b1f21-9105-471a-a374-7f332ca4b6d9'::uuid,'263','998',3498,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0180302a-f78b-4805-9c10-17adbaf32797'::uuid,'263','999',3276,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5260a8ad-653e-421f-8c74-43be98fd1d37'::uuid,'264','995',4340,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('ba09188d-1bae-4769-b821-0f195da24984'::uuid,'264','996',4340,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1015dbd6-4109-4548-9de4-2894533e01ee'::uuid,'264','997',4083,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1c961fbb-8905-4959-a195-96ea3ad09d7f'::uuid,'264','998',3498,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('83155307-b12b-4b20-8f75-5df50b25505a'::uuid,'264','999',3276,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('023ad1df-61cf-46b7-bd7b-242fe6242fbd'::uuid,'265','998',3512,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5f803616-2354-4e12-8793-747aad08f54e'::uuid,'265','999',3290,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('479ba7dd-7269-407c-9211-879cd4404f32'::uuid,'266','998',3269,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f6f72c1e-404c-4e35-bf36-5366884b476e'::uuid,'266','999',3269,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('83e219ca-a1eb-425d-a0a1-c3335df158ea'::uuid,'267','995',4437,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('67c59219-c616-4149-bf88-c032893a2157'::uuid,'267','996',4437,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('05c525b7-70ea-41d9-aae2-16cdf2283759'::uuid,'267','998',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4c7fa33c-a547-4057-9785-525260c601ad'::uuid,'267','999',3373,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3ab51bd1-5d8e-4a47-8442-05a2def8ffc8'::uuid,'268','998',3602,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1ab005f5-6e48-4e95-84d1-a4fdd5d6196f'::uuid,'268','999',3344,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('17b10528-7e97-4b7a-8d9b-d8a237dd00d7'::uuid,'271','998',3427,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('61b3a6b6-87f1-4a0b-98e1-36eeb2e88f90'::uuid,'271','999',3427,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e505b3cc-bc2d-4b47-9893-5b9978937f1f'::uuid,'272','998',3743,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d41213b0-aeb6-4d1b-90c8-e935d27d0fa9'::uuid,'272','999',3485,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('238ccfa9-93d7-495e-8282-94458d0d3c96'::uuid,'273','998',3743,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('32bfea58-7382-4afa-9f6a-36f2142f7f40'::uuid,'273','999',3485,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('b30455b1-e181-42f0-9e31-320407f95981'::uuid,'274','995',4553,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3eb27388-4c24-4bbd-bcfd-3f200dc5d164'::uuid,'274','996',4553,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d43b22dd-e699-4d43-9a7e-b3332742e517'::uuid,'274','998',3711,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bfe2d6d9-3134-46e0-a86c-a3955282276c'::uuid,'274','999',3489,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8238dc0d-3ed3-4bdb-bea2-dcc6a7250c3e'::uuid,'275','998',3537,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2186527e-21a8-42c1-a80a-a617b3204b75'::uuid,'275','999',3537,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4502afc9-69e1-4610-93b6-190344703f1b'::uuid,'276','998',3786,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a6b6e073-7c34-4058-8265-a496bb4690e4'::uuid,'276','999',3529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b2be81df-500d-4f55-a1b3-74693c2e130b'::uuid,'277','995',4606,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('466c81df-c22b-4d5b-b1db-8b0c27a128a9'::uuid,'277','996',4606,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('1d82d67b-9390-47d1-9d9c-5780e38d8428'::uuid,'277','997',4213,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('14f858b0-e4dd-4489-8ac3-8a11b9b72e2d'::uuid,'277','998',3764,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1e4c413c-415e-4948-908d-d4885c2f1b45'::uuid,'277','999',3542,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('556205fe-6e6c-4613-81a6-1c298c300c04'::uuid,'278','995',4708,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('54c05018-96a0-4ba0-88fe-707b6332f7e3'::uuid,'278','996',4708,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8c2e5190-5207-4984-b557-e70e0e913447'::uuid,'278','997',4451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b61c3482-4497-439b-babe-f14a172cac0c'::uuid,'278','998',3866,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('384b0613-a4bd-4b75-8918-78df2e31db33'::uuid,'278','999',3644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0cac00ab-4a8f-40b6-8b54-0ff1d81ef1fe'::uuid,'279','995',4761,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b21d827c-e80d-4a35-871a-a88bc35e6061'::uuid,'279','996',4761,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('78013f89-9441-4218-9c8a-70abd24a1485'::uuid,'279','997',4368,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b96c3ab6-25a0-43c7-ae57-e3c6f6683554'::uuid,'279','998',3920,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('53ddc287-805e-4f96-a287-0e2f133e2d1e'::uuid,'279','999',3697,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('746d1d06-5485-42c3-af05-36fcb107f6fa'::uuid,'280','995',4574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b90b13a0-88cd-4760-abea-ec2e0cef5f7a'::uuid,'280','996',4574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('99b1a005-e0a0-4b37-a492-f43ec93a8b13'::uuid,'280','997',4317,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('89e6fd2f-0688-424c-880b-c6ef59312c89'::uuid,'280','998',3733,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('27fd82dc-b996-4a18-ae3f-88bfa7ecbc29'::uuid,'280','999',3510,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c75c2947-35d8-4ab6-9bbb-eb4fae5afec4'::uuid,'281','995',4574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8d6bdd8e-5421-47aa-b0c7-84ea4db7ad86'::uuid,'281','996',4574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('0aa49a9e-1751-4cfe-bff1-72eaf9166a32'::uuid,'281','997',4317,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bf20951b-83f5-4ef2-861d-a0aa2a92c7ee'::uuid,'281','998',3733,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('448e151f-2801-432b-89f7-e1f305f6dd9b'::uuid,'281','999',3510,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6eddb2fd-e815-4c9f-90c1-8f5b7d46658c'::uuid,'282','995',4574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7efb84f0-a666-489e-8916-23d8e6d451f5'::uuid,'282','996',4574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e96997e0-2ae8-489b-b588-044bd600fac3'::uuid,'282','997',4317,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('eaf87c9e-a98a-4e12-8ab9-5eb747723ef4'::uuid,'282','998',3733,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2c9865fd-5b32-48fa-b22c-4dbe8bf743ab'::uuid,'282','999',3510,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f004d510-7224-43e1-91fe-191c832375a4'::uuid,'283','995',4661,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('01595b1d-5c45-4b8c-b1ff-7f0d57ec8e48'::uuid,'283','996',4661,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('381a8e54-4661-4f2d-b73d-a164564c004f'::uuid,'283','998',3820,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f58a095d-a4f2-4802-ac3a-202e751eb5ce'::uuid,'283','999',3597,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3d992946-7857-436f-bb15-755ff38475cd'::uuid,'284','995',4734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2a388580-b34f-4918-94ef-b1a55c1a1e05'::uuid,'284','996',4734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('84053339-ff0f-4832-8327-0839e0ef07d2'::uuid,'284','997',4477,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1168f709-9dd9-4246-9f7e-db13e947e0dd'::uuid,'284','998',3893,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cc24d1c7-a33b-4168-af78-b15871b286a2'::uuid,'284','999',3670,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dac67a75-f058-4e9e-ad3e-5971453c8f63'::uuid,'285','998',3900,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('df00f689-7d86-4db8-a1ab-95e8ea288b96'::uuid,'285','999',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3dea0ed9-8ac3-42f9-8ea2-d93ab3fc0cf0'::uuid,'286','998',3417,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('a8745d9a-4151-44e3-9ff4-dbb3ecb270aa'::uuid,'286','999',3417,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3e358c08-45a4-4eb2-a5db-c66a66418028'::uuid,'287','998',3363,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('77cb2a97-1221-4ed6-8fb5-17825cf8e976'::uuid,'287','999',3363,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b825841a-36d2-4649-b508-8f1137ebe072'::uuid,'288','995',4479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7504e3f9-6086-45b9-ac21-524269a87c0c'::uuid,'288','996',4479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5ac238b9-b565-4cd6-8d0f-955b8653e727'::uuid,'288','997',4222,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1aeb4f2f-ad5e-4fb1-ba8d-8d1799900ef4'::uuid,'288','998',3637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('543c38e3-068b-4e5e-89ca-bef3ff6eed6b'::uuid,'288','999',3415,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('aad374c6-1197-4858-8918-c8fc4308853a'::uuid,'289','998',3653,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1efe0781-d02f-48ba-bdf5-10a0963d4e49'::uuid,'289','999',3430,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('574eecee-a32b-4b34-981c-e2047cb33e95'::uuid,'290','995',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('264fff0d-6410-4918-b9c1-efb40dfa8435'::uuid,'290','996',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a097447f-4ecb-4850-a5f8-957471a627c4'::uuid,'290','997',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('eaf36a2c-c561-4e19-8063-90615d771209'::uuid,'290','998',3785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5b2eef92-147d-4a50-9006-b2ea2764944e'::uuid,'290','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('486f7153-e120-45be-a071-c87ae9723d92'::uuid,'291','995',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d526cab5-8f05-4e17-a347-246d61dd0489'::uuid,'291','996',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('90a2c2d3-d5ab-4239-a9a9-45c996dd46c5'::uuid,'291','997',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5f1712c2-2229-4438-b7cb-63bde9bc0559'::uuid,'291','998',3785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6ae0ba2d-e01b-44a2-9b7b-0493143a3898'::uuid,'291','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('fea5a98b-fe01-4294-b0b9-2fff6708b6ae'::uuid,'292','995',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a51b7bc9-d4e3-4888-a44b-0757f241c96b'::uuid,'292','996',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0c52c13c-8921-4601-8784-fe111d7b9009'::uuid,'292','997',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('24cbe12d-7ba1-4a4b-8fd9-7823f7f1e49c'::uuid,'292','998',3785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ce9465f8-e3df-4bcf-9324-0ccbba0cb732'::uuid,'292','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dc99306e-a930-4730-8339-f0831bca3aa9'::uuid,'293','995',4557,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6a9a89e0-1afa-483e-8ee6-7adda41bf45e'::uuid,'293','996',4557,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8be25640-2b92-4b46-ad66-d4150bdc8c1a'::uuid,'293','997',4164,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a36be853-a8b0-49b5-b403-3e2b25ddfcfd'::uuid,'293','998',3715,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dcf527f9-a17e-49bd-a50a-6137db4a698c'::uuid,'293','999',3493,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('348c1614-df7b-49cf-8cdb-c2eb16322cfa'::uuid,'294','998',3875,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e043f3f2-b2f6-4d48-849c-5f7688788e66'::uuid,'294','999',3652,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c7a05be8-7d23-4c01-b23f-c5321830f66d'::uuid,'295','998',3857,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ae17f170-64bd-4862-9fec-703ca5a94d54'::uuid,'295','999',3634,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('88bebd36-a305-407e-9608-d500b0625613'::uuid,'296','995',4561,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('090a47d7-29af-4b15-aff7-3c65c03e48be'::uuid,'296','996',4561,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9536a3dc-b1c8-4083-8c1c-97bc356cdf6e'::uuid,'296','997',4304,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ce12f03d-c312-4d97-8a8b-4fcc8a4e6f35'::uuid,'296','998',3720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('51e2169e-82c5-4271-9468-d56d397c02df'::uuid,'296','999',3497,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e475d483-98fc-47f7-9c23-51e42908f27c'::uuid,'297','995',4585,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('3bc524a1-3054-45a0-8930-be02b969cf4a'::uuid,'297','996',4585,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2fb65308-c895-4971-8513-27dd5342be52'::uuid,'297','997',4328,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b1f876e8-731e-4e09-8974-5ae8209fdc64'::uuid,'297','998',3743,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('370c1d52-0097-43d3-b5a2-063e080babec'::uuid,'297','999',3521,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6d8cc489-17d6-460d-b9a0-f2a5a5cd7f4f'::uuid,'298','995',4640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('673275c2-974f-45f2-b9da-f1a19d58b1ad'::uuid,'298','996',4640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('937c90c9-c245-48b2-b98c-bf136b241a4c'::uuid,'298','997',4382,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b3f964e5-d37c-4cd1-9cd3-3ae093cc542f'::uuid,'298','998',3798,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1cc44cdb-0b5a-42e9-a435-7699ee49db67'::uuid,'298','999',3575,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d5ce60f9-1b51-45cc-9039-7dcc16a890bf'::uuid,'299','998',3896,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('7fbdae02-b99d-4bac-9c58-62cb40e70d54'::uuid,'299','999',3638,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a80c574a-3796-439d-b436-f77dce59847b'::uuid,'300','995',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a8d6b9a5-58f5-493c-a50b-c1c54a22504d'::uuid,'300','996',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3508dd44-12bc-428c-b07d-ef809a960b79'::uuid,'300','997',4270,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4841c6b1-9f5f-4c00-b9ba-13777718c37c'::uuid,'300','998',3686,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2a8854ac-eabe-4412-affe-ab112549512d'::uuid,'300','999',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0fd3154f-d7cf-4ac0-8fdd-ca54fc12edc9'::uuid,'301','995',4480,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('806f6b1c-68eb-439d-a629-ffea8deeeee3'::uuid,'301','996',4480,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d0d247dd-71c3-441a-b7b6-fc6f5c97973e'::uuid,'301','997',4223,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ec82172f-c73d-43bd-a55d-d0e11b5aba97'::uuid,'301','998',3639,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('81cf50e4-3e58-4915-8ce6-b41b0aa7f985'::uuid,'301','999',3416,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a67776e1-1ad5-48be-813a-8d83a27ea78a'::uuid,'302','998',3725,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ffb77760-b836-45b5-b0de-4bed04921375'::uuid,'302','999',3467,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0491b332-8916-4f24-98a9-f26738eb7a2c'::uuid,'303','995',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e71605af-17e3-4a9a-a47d-4d4cb8be41a2'::uuid,'303','996',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a5597075-133f-4d9f-8cda-59a33d4ac63b'::uuid,'303','997',4270,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('75fca57a-07c0-4419-9c03-c60d6b5b717e'::uuid,'303','998',3686,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('158e7b87-b9b2-44cd-b877-c91bc890540c'::uuid,'303','999',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('533efc44-27a8-4c7f-ae11-8a4b9cd41eee'::uuid,'304','998',3877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c32493a8-da50-45ad-91a5-a21f332e6507'::uuid,'304','999',3654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('f377c71f-f771-460b-b8a1-2f1c4b601276'::uuid,'305','995',4534,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1c9f8200-203e-4648-8d32-3db256b5a2a4'::uuid,'305','996',4534,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('83e06278-1a20-457b-abae-5619d7399f52'::uuid,'305','997',4277,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8c004971-3b81-4980-9856-4d7c22995d67'::uuid,'305','998',3693,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('95ac5e69-0d4c-4972-b746-cbf38546f181'::uuid,'305','999',3470,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('999b9eaa-642f-48df-b5a1-275d9f7b5c13'::uuid,'306','998',3759,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('526b086f-a98c-4269-8b42-a0e835505662'::uuid,'306','999',3537,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b7b5fc09-7302-4331-8178-b5370b33212f'::uuid,'307','995',4444,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('99256076-a556-459a-9e7a-47f004765eaa'::uuid,'307','996',4444,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8be92583-c884-40ac-b0f4-bb3002791e4c'::uuid,'307','997',4051,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('81b64d72-5c76-4294-b35b-3c2518929c17'::uuid,'307','998',3602,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4f8761c2-3682-412e-8dfb-3485f912228a'::uuid,'307','999',3379,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8f5cbbc8-5f01-46df-b55d-15dd68f9c645'::uuid,'308','995',4650,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('890cff7b-0c22-42d8-9f39-dd1a44e09b71'::uuid,'308','996',4650,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('740c5d96-1269-40ca-8e64-bc3f07eb1089'::uuid,'308','998',3808,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e2ec8366-a3df-4c63-8626-c651bb9b1f32'::uuid,'308','999',3585,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cf75c82c-dada-456b-9a6f-3730aeb352e7'::uuid,'309','995',4644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6c54c657-9bd7-443e-849b-f8f791b3533b'::uuid,'309','996',4644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c3028237-34c2-4dbe-877d-5dfdb5800411'::uuid,'309','997',4387,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b1e9466c-327c-471f-8a52-8dd7b26ef93b'::uuid,'309','998',3803,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('d3b53348-939f-43a3-88c0-62e15ba97390'::uuid,'309','999',3580,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('74eacbaa-8809-40be-af05-e273c92ee5aa'::uuid,'310','998',3806,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a64687bd-fb97-4d9a-b140-6b0786e88459'::uuid,'310','999',3583,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4b4271b2-594b-422b-b7b5-22fb71365391'::uuid,'311','995',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('95704b9d-a8ad-4da7-835a-a62e59a11a6a'::uuid,'311','996',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('542d645d-dd45-4467-97a9-308b8bc9cf54'::uuid,'311','997',4270,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('eade56f4-0b47-454d-81b0-c2529e6e890e'::uuid,'311','998',3686,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('34845e0e-9baa-49ac-862f-0e70313c590e'::uuid,'311','999',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7cabfb2e-8140-41c1-9ac8-4cc377434875'::uuid,'312','998',3773,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f940bbf3-8019-4030-8306-694e3be22662'::uuid,'312','999',3550,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('a90f9de2-182f-4e00-b47c-a184cb74dabb'::uuid,'313','995',4776,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6bc196bf-8709-4fe0-8b2d-15d602bda174'::uuid,'313','996',4776,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1cafc7ac-f216-43ec-82ce-2c5c34d0e6e5'::uuid,'313','998',3935,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('63208aac-72b4-4255-a631-5d35349bb2ad'::uuid,'313','999',3712,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('45f4f79b-df6a-4081-b230-f34a5d9d4158'::uuid,'314','998',3927,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b867eca8-acc3-49de-a369-60bba434df15'::uuid,'314','999',3669,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e9836516-edb0-4130-895f-da9083ecb0d6'::uuid,'315','995',4756,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6c92dad1-b028-4d2f-9600-2f5f3f700850'::uuid,'315','996',4756,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('397e60f3-6522-4667-bcc9-d54629db577a'::uuid,'315','997',4499,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7cb2b047-a2b0-425e-a3a3-1691969576fa'::uuid,'315','998',3915,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('c55464ae-03f5-4bab-9bf4-9f9caa7ac4c3'::uuid,'315','999',3692,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f6c96a11-bd96-4cd6-af13-af873ab2a12b'::uuid,'316','998',3914,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b67dc948-63d8-4cb2-be38-6418b1bf9c6b'::uuid,'316','999',3692,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('93d4b82b-b03e-4529-8542-0a3395287dae'::uuid,'317','995',4689,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3122414f-34b8-4852-b9ec-5163ca3f58ea'::uuid,'317','996',4689,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('80f63a6b-4e56-429d-8b34-a322a9b04448'::uuid,'317','997',4432,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('67925a9b-1d9d-47b4-b2c6-1a9c0153012b'::uuid,'317','998',3847,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('82a72092-7dae-40a0-921c-18749a9654df'::uuid,'317','999',3625,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('39013f90-4367-449b-a0a8-c519b6fdc24a'::uuid,'318','995',4636,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('336e8d72-2217-4d41-9e0a-f26fea792fba'::uuid,'318','996',4636,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('6448b3e0-898e-4047-91c3-3598784af444'::uuid,'318','997',4378,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e185c6de-0b33-44e2-aa45-e25a6068c00d'::uuid,'318','998',3794,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ea49605c-96dc-469b-96f7-c930917fbb48'::uuid,'318','999',3571,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7f5471e2-7cd9-4e8a-8d7b-66d187de75af'::uuid,'319','995',4604,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('59fb6a19-1816-4a6f-8ad1-4b854c205eb6'::uuid,'319','996',4604,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('978e0997-3d0a-4bc4-bda6-a5022684fc9a'::uuid,'319','997',4347,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2ad02c38-7720-431b-b835-3c3744f155f2'::uuid,'319','998',3763,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e1f7c8cb-cb83-453c-a65e-caf200956cba'::uuid,'319','999',3540,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('066f884b-5761-4636-824e-c8ef803d0d30'::uuid,'320','998',4008,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('528f1fad-45f1-49a4-a936-3bee3775cd62'::uuid,'320','999',3785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('5c4d4871-0e13-435c-9ca1-e5bd9c66cc75'::uuid,'321','995',4919,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6ec6054e-9533-4cb2-bfcc-dc42770ea9d8'::uuid,'321','996',4919,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('75038700-9e53-479a-85b4-defd6c1df4a9'::uuid,'321','997',4526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bcbbcecd-07c3-4d86-a982-efb5d8048f9c'::uuid,'321','998',4078,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('86440a6b-109c-4004-81b4-4609fbd53f35'::uuid,'321','999',3855,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5380887f-d54f-4df1-a611-975ecbdc70c0'::uuid,'322','995',4846,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1e652a25-762a-4a25-9541-1fee75cfcd1b'::uuid,'322','996',4846,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4a27ab44-65ee-462e-8c32-85da68d4aa0a'::uuid,'322','998',4004,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('46252aa5-d052-4ed6-8093-817a23c6a571'::uuid,'322','999',3782,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('beec250a-1a23-4566-9490-6c0243360d57'::uuid,'323','998',3654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('514c6a04-e142-411d-8787-98f9c11d64f0'::uuid,'323','999',3654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0fcde787-df73-46d6-84af-060a364d7a6c'::uuid,'324','995',4685,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b016ffd8-7018-48d0-a0f9-74dd8f58f6f4'::uuid,'324','996',4685,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('69485c6b-6df8-42a5-9dca-3290f3cca3b2'::uuid,'324','997',4428,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('62ec5f8a-a3f5-48bc-ada5-a12325c3caf6'::uuid,'324','998',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ebc328f0-0b86-4d6e-89e8-d630bf0eef27'::uuid,'324','999',3621,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('73aee377-09cf-4766-9577-6a7fe8a5377d'::uuid,'325','998',3810,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d7842f17-f356-459c-b91c-cba5f5ea9df1'::uuid,'325','999',3587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('95e55c74-b911-4118-a14e-5a45da90ccec'::uuid,'326','995',4866,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e2af0eba-b4f9-424d-a8d8-db4a13d3c971'::uuid,'326','996',4866,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('4b930a62-d29b-46b2-9b8b-5201129969f2'::uuid,'326','997',4609,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('47af5b35-d79e-4a94-b2b0-70f0f747f0e7'::uuid,'326','998',4024,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('68f93cbf-adca-408b-91e6-ba113d404ab0'::uuid,'326','999',3802,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ed768fe1-9ea4-4bc8-93c2-430f053ad88b'::uuid,'327','998',4122,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('79f02661-fa82-4084-ab1b-12e5667c9d18'::uuid,'327','999',3865,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9d0f36f6-a889-4dd2-a5bd-a46115eb2e53'::uuid,'328','998',4128,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bdffa565-85da-456b-8596-f8b919ff87a5'::uuid,'328','999',3905,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a48765cb-bb09-4100-a62e-0e122916e579'::uuid,'329','998',4178,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('670ed815-4789-42df-9929-03228667e436'::uuid,'329','999',3955,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('41f043b6-f420-40f0-a04a-1b9fe3e44e35'::uuid,'330','998',4347,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('eb08b24a-153c-4933-9556-d21f6c98acfa'::uuid,'330','999',4124,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('be39f0a1-de58-41cf-85d0-975e1400ed71'::uuid,'331','998',4347,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7a698c8d-38d4-41f8-a52a-8634179be3e6'::uuid,'331','999',4124,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5916400f-5057-448c-bb3d-00768c2f100b'::uuid,'332','998',4347,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a801589e-8fd0-40ea-bfc9-0df7f9dbf95a'::uuid,'332','999',4124,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a30ab952-e9d0-45ab-af32-d19cead1e44a'::uuid,'333','995',5166,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('09241860-f055-46bb-8e72-6690203f66c1'::uuid,'333','996',5166,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6b289fde-3b50-4f38-84de-0b6cd134bfcd'::uuid,'333','998',4324,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('49e6accd-91b5-404f-83ee-7f7e0b821b54'::uuid,'333','999',4101,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a4d22652-1060-410b-a2ba-30399b7900d3'::uuid,'334','995',5108,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('c44c37e4-fbd2-4922-8d70-6efe8eb2e2b5'::uuid,'334','996',5108,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a4305a28-5b90-4d15-b1dc-bfb963d5180e'::uuid,'334','998',4267,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('782c4445-8795-4e5f-830d-d9944ad2a61b'::uuid,'334','999',4044,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a5cc6ccd-e8f2-4561-9773-14d70a993b75'::uuid,'335','998',3886,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7701a75f-5b49-4404-82e3-8c57aaf94e41'::uuid,'335','999',3886,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('246c6b1f-16f0-4fcb-8a41-8f3b9a35123e'::uuid,'336','998',3886,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('acf1591f-270d-4a8c-a05a-1d409b1890e5'::uuid,'336','999',3886,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7f07ace9-bf7f-418a-9ca6-c2e2363f218b'::uuid,'337','998',3901,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0ed7f377-0d44-4b45-8b22-a09c5dd21c94'::uuid,'337','999',3901,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2305e75a-f375-4df2-910b-87eeece111c5'::uuid,'338','995',5013,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('e66b04cc-8514-4ebc-aaa0-71beb3129634'::uuid,'338','996',5013,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('928fc86d-ab08-41bb-8f67-995c8a91ee9b'::uuid,'338','998',4171,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('833c0877-1020-46d3-b69c-91a022848742'::uuid,'338','999',3948,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('74d71b33-0b94-4d01-900b-68c5fe229a83'::uuid,'339','995',5090,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b42a80b0-a90d-4936-a822-245a29ba1da7'::uuid,'339','996',5090,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e9bf9908-88d4-4839-a579-bfe28afeb000'::uuid,'339','998',4248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f7f6ffca-1cba-488c-b352-906a20c15ddb'::uuid,'339','999',4025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cfab6d7d-249f-403f-b807-f77726670270'::uuid,'341','995',5090,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6f0f5d8c-cf21-4f9d-8571-902ac6ba28e5'::uuid,'341','996',5090,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c6a4ba4f-d466-4636-b33f-5e6989d36fb3'::uuid,'341','998',4248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('bb9d5419-4f4b-496d-a20d-08109af78e22'::uuid,'341','999',4025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ff7113e5-f3bf-4d65-83c3-ba75d52fe4dd'::uuid,'342','998',4192,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2dcec900-17b3-4bad-b2c4-c012e61c9eca'::uuid,'342','999',3935,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0fabf2d6-01dc-47b1-a990-596cc4f5229f'::uuid,'344','995',4902,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b214c4a2-23c9-402f-a44d-18fd40704b24'::uuid,'344','996',4902,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('01a7f7ae-3f8c-4400-862c-2e9915edfcdb'::uuid,'344','997',4509,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('29c4815b-ccdd-44db-971b-da5423f83389'::uuid,'344','998',4060,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8c1f7751-a4cf-4abc-a613-d35bfa491f4d'::uuid,'344','999',3837,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b379b3e6-60dd-4e84-83fe-73505337be04'::uuid,'346','998',4121,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c994cdcc-3f95-473b-baec-abe56e083caa'::uuid,'346','999',3863,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('28dbb463-8a9e-46f5-b9bc-7fe0ceb1fb17'::uuid,'347','995',4981,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0cdd939a-fe2c-4939-a563-19d34e321a2a'::uuid,'347','996',4981,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('678598f4-e667-4e5d-a9eb-1e96b4ca8c97'::uuid,'347','998',4139,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8e71e65a-3a93-4880-a89f-27a4e7bbde51'::uuid,'347','999',3916,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f8b0cd73-8c11-42f4-b64f-3c1dccf24d60'::uuid,'349','995',5068,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e939ad46-7fbf-4a79-bbcc-1fbaabab0204'::uuid,'349','996',5068,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5086e351-d77e-421d-9934-e5a2044b9026'::uuid,'349','998',4226,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('acd28542-237a-455c-b6e2-b15f8f0c1435'::uuid,'349','999',4003,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c35874f4-97c4-4c9b-a306-bc0a767c447d'::uuid,'350','998',3635,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4addd5fc-968d-440e-b844-96fa725aee57'::uuid,'350','999',3412,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('96bc8ad6-9e73-4b90-92b2-a7b5270bcafb'::uuid,'351','998',3635,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('39f0d7a3-b58b-475a-9a14-ed619e8b5b6a'::uuid,'351','999',3412,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f3419a3c-6976-4a2d-a2e2-392d5fb47bb5'::uuid,'352','995',4461,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('69938228-d68a-448d-9c0c-4519589106ad'::uuid,'352','996',4461,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e3ef1717-ac75-4305-90f4-8db08b5da020'::uuid,'352','997',4204,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9dcc22c7-7a3f-4d26-9b0e-84f5aa25cf4d'::uuid,'352','998',3620,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e6bb9a3b-2b7c-41de-a657-32f55d2e2f25'::uuid,'352','999',3397,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('317a6313-eb98-44e3-933d-4422709eba3a'::uuid,'354','998',3364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ccd35856-949b-492e-8790-0940b2dc78cf'::uuid,'354','999',3364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b274b018-7bfc-4328-9e4f-1dda6f529db9'::uuid,'355','995',4416,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('a438cf92-c6aa-48f2-8f84-6ee7f62dc056'::uuid,'355','996',4416,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('55c91d67-cb77-4473-b930-29f164531d8e'::uuid,'355','997',4159,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('29d6eb40-3e09-45d6-90bb-94b656de6a7b'::uuid,'355','998',3574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('02761da5-ba9e-4ee0-94b4-1669ae6e3c94'::uuid,'355','999',3352,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f43c05a2-3430-4913-b310-ad7c463992ea'::uuid,'356','998',3267,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('56ebd485-75b3-49f8-9f3a-055db2ec358c'::uuid,'356','999',3267,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5f2e656c-475d-40a8-b366-1fa12a43044c'::uuid,'357','998',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f8d894fd-1008-4b8b-975f-bf76c03d8b08'::uuid,'357','999',3339,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9795eef1-dfdf-4d76-9e12-c4acf179d961'::uuid,'358','995',4387,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ce0747e3-be2a-441e-87ac-a1365cd8b1ca'::uuid,'358','996',4387,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('0caef744-b63e-4c5e-98ca-8fd42953987e'::uuid,'358','998',3545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5765d1c5-62fc-4b24-b3f7-f743c97755ec'::uuid,'358','999',3322,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c16fd64d-b4ec-4f52-9f3b-a52fdba1d1b7'::uuid,'359','995',4452,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9250c82d-de32-4c72-952b-e08e14a698e4'::uuid,'359','996',4452,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bcb813f7-c44a-425a-8b52-2fbfc5aeef73'::uuid,'359','997',4195,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d072c8c1-16dd-496e-9495-d9cddfa4e4b2'::uuid,'359','998',3611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('343b248f-20eb-4d12-ab14-4704f453faa7'::uuid,'359','999',3388,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('41da94f6-2da9-4ef4-90da-718a0becda9c'::uuid,'360','998',3739,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c6ecedac-48e1-472d-9abb-3bff7e0dab21'::uuid,'360','999',3481,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('13ac893b-91ac-4c2d-bb41-f67a5d987a33'::uuid,'361','998',3709,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('0ac1f204-f2d7-491f-83b9-c9064d035d9c'::uuid,'361','999',3486,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2e1109ce-d682-4e0e-9f41-179016268026'::uuid,'362','995',4508,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2ec6e2f8-bb3f-4319-a00a-e64590e378f6'::uuid,'362','996',4508,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a5f3f80c-0103-4614-902e-627e47f87ebc'::uuid,'362','997',4251,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1144d2f2-deed-4a18-9082-106794968114'::uuid,'362','998',3666,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e2870647-e388-4f51-9866-43dc876df708'::uuid,'362','999',3444,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f1af9346-b560-4e8e-8ad5-4ca4e1fe5b20'::uuid,'363','998',3793,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f8e87e2f-1e7c-4944-860b-e263145856ed'::uuid,'363','999',3570,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4faaba6b-fa03-4e40-97ce-6026ba13ba12'::uuid,'364','995',4600,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1592fdc3-ed51-436a-8d12-2141da44601b'::uuid,'364','996',4600,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('8d9f1a6b-07e1-4068-a21b-ab92cd284dd4'::uuid,'364','997',4207,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('68075639-8d3c-4e07-8913-29501ef1113c'::uuid,'364','998',3759,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2d88a333-9899-40f7-b333-1329c09c7016'::uuid,'364','999',3536,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a53704ab-486a-4308-adf8-f3e2bb0db652'::uuid,'365','998',3750,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2154de3e-b053-4e28-ba1b-7a02ba744316'::uuid,'365','999',3527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3292afbb-29b2-442b-820d-a7e6836d9389'::uuid,'366','998',3761,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('334dd1b7-1222-45fc-842a-fe4f20a9bbc7'::uuid,'366','999',3539,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5499ac73-f031-4b79-bbc1-d611686de8b0'::uuid,'367','998',3404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5766c748-d158-48b8-a95c-9d3b7063b631'::uuid,'367','999',3404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('343630de-2781-44b6-aba1-849eb6181a65'::uuid,'368','998',3732,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('4052d909-39c0-48f4-80ec-b0c0faca08a7'::uuid,'368','999',3509,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3d649ade-4a72-4749-8571-77771e6df737'::uuid,'369','995',4505,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5babc1fb-b480-4605-8de4-3c6e8e0d1c4c'::uuid,'369','996',4505,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('10ae8be5-8496-43ce-8807-2e9a16fe61a2'::uuid,'369','997',4247,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5ab3a171-01db-468d-b4da-df3e07db5984'::uuid,'369','998',3663,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2ab44752-2958-4887-b854-82df8619cbfa'::uuid,'369','999',3440,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f2552eec-bb3a-43a7-9328-c86c74d7904e'::uuid,'370','998',3439,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('88ce772a-a9ea-435f-9665-112a0fb77b28'::uuid,'370','999',3217,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('17a791d5-ef5a-4be5-98eb-f6456cbdac4b'::uuid,'371','998',3439,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('adfb832d-d82b-4966-b6f0-c7cd4eafdc46'::uuid,'371','999',3217,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('3256aff4-755c-4292-aa18-0fadbdada500'::uuid,'372','998',3439,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2be87918-686d-4dee-a938-2c58d0096de9'::uuid,'372','999',3217,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('023bc02f-d736-4d84-bfe7-b38d58ac2548'::uuid,'373','995',4390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('da67a3bd-9e10-4428-b2a7-a00b6ba07616'::uuid,'373','996',4390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fa5a2476-a67d-4da3-80d1-d73dc1990a36'::uuid,'373','997',3997,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e1ed6b1b-370c-4461-9904-11a027539c3c'::uuid,'373','998',3548,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bcce6f14-fad6-4e1e-bdad-1e82abef5975'::uuid,'373','999',3325,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a25d8b28-bd21-461c-8f0d-7af77d5565b4'::uuid,'374','995',4411,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ce5637fe-fc28-4d8f-9c62-edc7358f0657'::uuid,'374','996',4411,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ac6c665b-404a-4579-b510-59ad783f97d4'::uuid,'374','997',4153,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('0f34b759-9d2a-45ce-8159-ad9183fdb3ca'::uuid,'374','998',3569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0930ea7c-b552-4658-bf38-d0e9241e2e92'::uuid,'374','999',3346,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('31482a0c-0e45-4eb3-8807-f18d990fee7e'::uuid,'375','998',3395,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('14de41bf-9291-4678-b721-a85866be72aa'::uuid,'375','999',3172,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bb00e4ef-d779-4cde-81e6-9eb7cdffbb17'::uuid,'376','995',4447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a6784401-e195-4608-bcac-c53fb47288b4'::uuid,'376','996',4447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6aace830-e50d-40ea-8291-78a4364afeb2'::uuid,'376','998',3606,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('01a02e3c-26a5-47be-990b-7c51942a4188'::uuid,'376','999',3383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('33ed6a16-eff7-46e6-af12-9d82058741e7'::uuid,'377','995',4383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9faf62f8-abb4-4860-a84e-7ce3e0e2b518'::uuid,'377','996',4383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('aa4f9273-e064-410f-8ebf-c82833268af7'::uuid,'377','998',3542,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('65b4f844-97db-49a5-9259-0cd132bee328'::uuid,'377','999',3319,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4f458f05-b068-42e0-be07-03ba0021285d'::uuid,'378','995',4383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f56b8e5b-621c-470e-854e-cb83ab7d7cc5'::uuid,'378','996',4383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('14c0c3b4-a6ff-43a8-b659-dda768ca4f85'::uuid,'378','998',3542,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e8ff57a0-8752-4ffa-8124-a8a2d8f90667'::uuid,'378','999',3319,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3f699a21-f962-4ff7-a0fb-e22ed431764e'::uuid,'379','995',4383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('aa88c2ec-3e9d-4639-8145-93a98de29426'::uuid,'379','996',4383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('abc8b7ff-75c0-4e8d-bf8f-f7d4451666fe'::uuid,'379','998',3542,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4d157e47-58fe-45c4-bf6f-4142e05d5af9'::uuid,'379','999',3319,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('31d011af-9024-4b55-b7e2-49824b8ee034'::uuid,'380','998',3376,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e4937e54-ec9a-4774-b426-a32db6c1bb21'::uuid,'380','999',3118,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2fc0a38b-50b3-402c-8480-9c609098ca93'::uuid,'381','998',3395,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a75c026d-eff8-4210-be92-90331c0fda23'::uuid,'381','999',3172,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('007db3cc-198f-44ca-a055-3401300a048d'::uuid,'382','998',3367,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4381ab59-62d1-41ff-8bb5-677d1e153a3c'::uuid,'382','999',3144,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f2ca3f2e-5e19-4411-ba27-938538f3ce8f'::uuid,'383','998',3423,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('40372cad-872c-4e19-adf8-e63cabe7d1ed'::uuid,'383','999',3201,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('599660ec-5688-4b3a-a9ee-3c3a4dcb8e93'::uuid,'384','998',3499,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('080ea6a1-777b-4266-b75e-8d989b7c055e'::uuid,'384','999',3277,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('64288b3c-adc2-4593-bd79-f11ab844acea'::uuid,'385','995',4345,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('136654a8-df21-40a3-80a9-4ce1954569fd'::uuid,'385','996',4345,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7452fa1f-7c09-4e21-89c3-5c2087e5aa1d'::uuid,'385','997',4088,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a98ca9b8-63b9-4d00-8fa6-5213ee8ee9ab'::uuid,'385','998',3504,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9bf466a9-972a-44a4-9c18-2ffc77ebeb5e'::uuid,'385','999',3281,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('823064fe-1028-4747-b7ae-960d143094ab'::uuid,'386','998',3431,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('312f4cfb-aa8d-4f19-ad16-9b3033ea8620'::uuid,'386','999',3173,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('049ee39c-efae-4f97-a8c4-3ff03aa0c4de'::uuid,'387','995',4337,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('620bb21f-b7b0-4f11-8353-404ec32c663e'::uuid,'387','996',4337,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f41f4c97-da63-43a6-bdda-8f0f87e75387'::uuid,'387','998',3496,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('4c779791-18b1-4842-bb13-4b0b1b40b27c'::uuid,'387','999',3273,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5bc49c73-9b23-47a8-8dca-099a5075e7b1'::uuid,'388','995',4327,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8f1b55b5-1412-44a8-b951-da954ca7bd64'::uuid,'388','996',4327,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('35d60a10-7d77-4dfa-9bf9-7bb967365393'::uuid,'388','997',4070,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3fc2fe24-e4b7-4a43-8518-bd14f184973e'::uuid,'388','998',3486,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9f620df4-1e51-4928-a191-8c9005978860'::uuid,'388','999',3263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3d3684c6-f739-4944-83b7-a4358096ad26'::uuid,'389','995',4334,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a896216a-0e45-4130-ab3e-2bfef3793ac0'::uuid,'389','996',4334,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7721b39b-681f-4a21-a7f1-e0671bb12d6d'::uuid,'389','998',3492,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('51bdf420-e08b-4d94-a958-2e9928c711c6'::uuid,'389','999',3269,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('ee1eb773-f154-4c19-a037-ca59f45abe80'::uuid,'390','995',4407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('91cdf814-8365-4313-8bc1-85a07619d3a8'::uuid,'390','996',4407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bf68e613-128a-4fab-9908-d722b0cd7ff0'::uuid,'390','997',4150,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9f366d0f-7fc5-4d31-ac0b-f97729b1e82f'::uuid,'390','998',3566,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('60848180-a7f6-48b5-9b4b-50e0f57fcdc2'::uuid,'390','999',3343,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9658a699-793a-4f29-a62e-24d7eaa0100e'::uuid,'391','995',4407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dea4d653-8988-477a-90b3-b1a2f4da4c98'::uuid,'391','996',4407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d8e04dc4-ac04-4bd8-ae07-4b290ce7c952'::uuid,'391','997',4150,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3501487a-bbfe-47bc-aa82-5e572e42c609'::uuid,'391','998',3566,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('65a3f68d-b3b8-444e-8265-435f6a8bced8'::uuid,'391','999',3343,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('4258b5eb-56a4-4344-91b2-37bd6ff5467a'::uuid,'392','995',4423,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4e98d080-f450-4043-b284-5222b6f3cbcc'::uuid,'392','996',4423,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('39bf0be1-8cfd-49d4-a992-e6897ae908af'::uuid,'392','998',3581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('72b8ce71-f113-42ae-a053-619e64bc3918'::uuid,'392','999',3359,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6a9a117c-5da4-4733-a3da-20772fef3315'::uuid,'393','998',3627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8874af70-7870-4d3b-a6d3-e8f17cc27134'::uuid,'393','999',3404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4d504d60-3ae5-4c78-bd52-1b50dabd7f22'::uuid,'394','995',4512,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('03a94105-811a-4913-9aac-845e8c701a03'::uuid,'394','996',4512,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b1f3aaee-932c-4a52-9b05-db6f967bbd8b'::uuid,'394','998',3671,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3f605d8c-066c-4a9c-8453-f3982ae3e0e0'::uuid,'394','999',3448,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('b2e202c3-1415-4766-aa2b-2362b392ad1f'::uuid,'395','998',3720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a4c7dbfd-0248-4774-8089-6c1b51fa1b28'::uuid,'395','999',3462,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bbfad524-115e-4c8d-b70d-3cea9ccffe33'::uuid,'396','998',3642,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('35212846-1823-42a6-880e-2c7158a3b52b'::uuid,'396','999',3419,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('09f76f18-2dd0-4e43-b9cb-c92918cbced9'::uuid,'397','998',3301,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c13766d7-234c-4343-8635-f605e29ee8d5'::uuid,'397','999',3301,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0d63262f-6efe-480d-afe7-da538ba2f82e'::uuid,'398','995',4689,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('739d7b3d-a973-4e3c-b7be-7eb8c847a1de'::uuid,'398','996',4689,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9a668630-ae00-4fb0-895c-0bfbdb51c567'::uuid,'398','997',4432,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e7a081e6-ee39-4ce5-affd-2acdc2d61100'::uuid,'398','998',3847,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('44ed0a3f-1486-4e5c-817d-d10564c154b7'::uuid,'398','999',3625,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0cf617c9-35d3-4a7b-bff2-d221de9148ce'::uuid,'399','995',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5b875a1f-78c0-42cc-a9d0-3693ee609b52'::uuid,'399','996',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('21c00a55-c156-4156-b557-86f2c2ea8286'::uuid,'399','997',4270,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('45714275-cd8a-48f3-b63e-8d329e2d1198'::uuid,'399','998',3686,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('65e3db99-e414-4dbb-9e45-2718d3d710d8'::uuid,'399','999',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0b6b6b69-3e2e-4332-8bc2-ae4017589ea0'::uuid,'400','998',3335,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3e49c5ca-c4da-4b3a-923b-8d597cfbd38c'::uuid,'400','999',3078,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0727a48a-be59-4754-994f-8fb95a16283f'::uuid,'401','998',3341,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4718051b-39a9-449a-9c13-ced79f0776bc'::uuid,'401','999',3083,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('54d31015-f40e-4c88-b0e8-142339c6cc0f'::uuid,'402','998',3305,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0cb6d127-9fbe-47fa-bce6-aac3aa0965a0'::uuid,'402','999',3082,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b3b519a3-3f7d-43b4-9fa0-7e291d4492a9'::uuid,'403','998',3404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7e4ccb8e-6d18-40c5-84df-348088136caf'::uuid,'403','999',3182,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fd7ff97e-e63f-4a26-9e91-496e6e18b19f'::uuid,'404','995',4253,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bd135615-0167-4814-897d-52495f191e32'::uuid,'404','996',4253,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('75781174-dacd-497f-bd5d-9b78ce7d26d9'::uuid,'404','997',3996,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d9969580-e73a-4093-a2ad-46db983c04fc'::uuid,'404','998',3412,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8564954b-bedf-4669-87e5-5f6ed41cfc37'::uuid,'404','999',3189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cdb25c90-9781-430c-8e61-e0597a20dfa8'::uuid,'405','998',3374,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('72aaeb04-f851-4e03-bb3d-82ec2fcd22ce'::uuid,'405','999',3152,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fb086be5-5ffd-4d7d-aa11-e64e48647517'::uuid,'406','995',4196,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b7da705f-13df-4256-b6b2-42d00fe1d242'::uuid,'406','996',4196,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e4722139-83e6-4cda-85fa-190680ccf092'::uuid,'406','998',3355,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1f4debc6-cbc2-4091-9d77-62a4f1e94771'::uuid,'406','999',3132,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('71ba2829-f7ce-47f6-8227-525e9e9545d3'::uuid,'407','995',4306,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fb4eaeb5-08cd-45af-9e71-26e47f954692'::uuid,'407','996',4306,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a2808d72-b1b5-459e-b294-3633374ad8b9'::uuid,'407','997',4049,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1b69ea3d-0f0b-4253-9d53-2dbb2b9712cc'::uuid,'407','998',3465,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3ba993b5-f407-40b3-be10-c55a322d3c5e'::uuid,'407','999',3242,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('2d5551d9-f603-4952-a44f-c5ca11387961'::uuid,'408','995',4364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4e86d8a2-2018-47b9-ba64-cd02346ccd93'::uuid,'408','996',4364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e35dacff-3abc-4c62-83fe-4514717f4d01'::uuid,'408','998',3522,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ae113128-7c7f-4921-ae37-40a633b0cfda'::uuid,'408','999',3300,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4a924ec4-f174-45f9-92fc-108a524ac10f'::uuid,'409','998',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('18ae6bfd-158d-45fd-876c-c6d6236cad66'::uuid,'409','999',3240,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a64629e9-4113-4a8f-a45d-7d7fee5a98b1'::uuid,'410','995',4180,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cc40dc80-9788-4f3a-8315-3d43c2603468'::uuid,'410','996',4180,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4e7d0a31-0897-4dbd-9bfc-06d781d6e699'::uuid,'410','998',3338,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3a582b75-bd77-4b6d-9fcf-62daf1e80aea'::uuid,'410','999',3116,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('c867619b-5827-4264-8479-e8754cdb79db'::uuid,'411','995',4262,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('edc9a6de-f032-44f8-b696-8a422b21c856'::uuid,'411','996',4262,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('596dab0c-8ed5-4b8d-b9f8-6c4c418e76ca'::uuid,'411','998',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fdcee7f2-9255-415a-9bea-a42f63bd8f1f'::uuid,'411','999',3198,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1dd5d9ca-dd5e-48b3-ad63-171c45ccecad'::uuid,'412','998',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5891ddaf-0ccf-4016-9942-8cc16f7a2ac7'::uuid,'412','999',3262,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ab631f56-5615-4d99-866a-38ecf83e5e98'::uuid,'413','995',4296,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('886f4b0b-04b6-4334-8987-0277bd530b2a'::uuid,'413','996',4296,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c1ed16d4-c684-4077-9085-d772898a6b6b'::uuid,'413','998',3454,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5e9a4d72-6ddb-4210-81c2-f0b659e27ce0'::uuid,'413','999',3231,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('78562018-9569-4ffc-8e69-157f5fd32e8f'::uuid,'414','998',3172,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('499ba6ff-92f6-484f-8215-6ae68b0fd834'::uuid,'414','999',3172,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c6ade605-d894-4f30-8031-cea418adee41'::uuid,'415','998',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('26f50081-565c-4404-93c1-13a84ce8e660'::uuid,'415','999',3253,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('33c2bc23-4bea-4870-8553-628484094689'::uuid,'416','998',3486,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('28c0132a-c8e8-45e3-81ee-02209fe7465f'::uuid,'416','999',3228,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('560ea882-9d14-4cfa-a7fe-b4711943c036'::uuid,'417','995',4327,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b77a31e8-3bad-46bc-b8a4-71b5b38eb700'::uuid,'417','996',4327,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f0fac9af-312f-4344-927e-c0a1187182a0'::uuid,'417','998',3485,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1ef9ae51-152d-487a-a552-0479dd0b3aaf'::uuid,'417','999',3263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('68b52011-ea47-47f2-9960-2252971d5b2a'::uuid,'418','995',4351,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7bc38cb6-c3f6-4902-9c79-0a70c079ffb9'::uuid,'418','996',4351,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ce5cef89-d83d-43f1-b37b-54e661f42ec4'::uuid,'418','998',3509,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6a9454e1-1459-49d0-8731-1ac610df71d7'::uuid,'418','999',3287,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('acbd8889-41d3-49b1-8fbb-1843a1ff07a0'::uuid,'420','995',4177,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7b1a6954-6952-4af9-b9f4-b3a8dcf9094f'::uuid,'420','996',4177,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('eb2291da-7df9-4d5f-90dc-ee4cf0c72f37'::uuid,'420','997',3920,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('31fac67c-cd18-4feb-8fd0-32a2ebdc6833'::uuid,'420','998',3336,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6cdfdf0d-c176-4bdf-ab36-ec254d4e7b14'::uuid,'420','999',3113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('76386ffd-6e65-456c-a315-ef8775eefa90'::uuid,'421','995',4241,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('951ce0dd-43ca-4d44-a520-ba6e40ebb0ee'::uuid,'421','996',4241,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f516a855-b106-4a54-8e01-e2f9a334ba25'::uuid,'421','998',3399,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a39386ee-b511-4e83-b7ab-25354c8e5d79'::uuid,'421','999',3176,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d26905ee-6a4b-47e8-99bd-737eec18aa87'::uuid,'422','995',4231,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5f86d01f-4707-45c3-ba11-d799bb3b8a57'::uuid,'422','996',4231,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0085648d-e52d-4957-97a2-b9f5da9b29e7'::uuid,'422','997',3838,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d3de5b71-c9fe-43c1-a9b5-9dfabd649743'::uuid,'422','998',3390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0ea77a06-6f39-424d-b3b0-bccb53bc0b78'::uuid,'422','999',3167,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3b661e76-131d-4b69-9e43-96f1390b9365'::uuid,'423','998',3345,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d93e8454-4eee-4997-815d-22d4ba756602'::uuid,'423','999',3122,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('ceff5bbf-e30f-47c9-8486-2ba9b18d6d1e'::uuid,'424','998',3317,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('df1a0250-070b-4f67-ab2a-18f22ea64aea'::uuid,'424','999',3060,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('13e9f2e8-9f1b-4b07-9b9d-a4af209f009d'::uuid,'425','998',3172,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4dc8ceef-6116-4b60-a039-11a7999bbe99'::uuid,'425','999',3172,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9aacf3a1-6238-4d37-ae01-5617b632b1bf'::uuid,'426','998',3456,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9f8080e9-1e5b-4038-99b9-acf83fb8fc50'::uuid,'426','999',3233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6c7f58e0-bfe6-42b7-84a8-79e757d892c8'::uuid,'427','998',3380,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b3089819-6515-4fd3-93b1-d0ecbc6077d3'::uuid,'427','999',3122,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('841c81f2-524b-4c13-9db6-c65980e3335c'::uuid,'430','998',3055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fffc060c-fffb-4254-93d3-8c3e8c765ff8'::uuid,'430','999',3055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('6d5874a5-517a-4712-90c4-9f46846c89d8'::uuid,'431','998',3079,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3a25e0f9-cdfa-4dc7-8824-ce56e704d535'::uuid,'431','999',3079,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8f049ed1-8e43-474a-b0a3-96b22e7a6305'::uuid,'432','995',4163,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6774dd5d-9bc0-4ca6-8f01-d12847a412bc'::uuid,'432','996',4163,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d28aab05-1372-4013-8035-535d7dba7adf'::uuid,'432','997',3906,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ed3b8733-e2c3-48f0-b84b-c2dea94d5584'::uuid,'432','998',3322,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9451d51b-a66e-4a1c-ab9f-a33d742aa0c3'::uuid,'432','999',3099,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('362a6b37-3b96-4b39-ba99-6be12e8c2c28'::uuid,'433','998',3277,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3addeacd-7e3e-4dc1-98c3-d0195fdbf512'::uuid,'433','999',3054,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b65a76b4-acd5-41d5-a32c-60424ef3cce4'::uuid,'434','998',3000,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('78bcd8d4-444e-4ad0-8ba8-0fd4d081dda2'::uuid,'434','999',3000,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6d31037f-6862-42de-a94e-8ed23ffda565'::uuid,'435','998',3218,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('73399d37-ff56-45b1-90ad-14232c839d71'::uuid,'435','999',2995,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e812a4fd-bf37-4285-986c-ce1fda7fdd7d'::uuid,'436','998',2988,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('907e8091-5cb1-439d-ab94-1cf86771e40a'::uuid,'436','999',2988,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1e1dac34-bdf2-47ef-ac80-fbef30791239'::uuid,'437','995',4233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('497172f0-d467-423e-b976-d961e603060b'::uuid,'437','996',4233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('77741c04-a634-4999-8b2e-2a0c2d2dabb3'::uuid,'437','997',3840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('72235503-4007-49d3-875e-dc72093d4aab'::uuid,'437','998',3391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d0e6b612-b56e-41e6-a1ed-39d2a5ee8a6a'::uuid,'437','999',3169,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('fbe81dc6-a4ca-4438-98fc-35a892a6196a'::uuid,'438','998',3114,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a6b4c6b5-cc48-4d3f-9d8e-f0dfa1f6295e'::uuid,'438','999',3114,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fba0eb0c-690a-470d-8c89-3973a5472d17'::uuid,'439','995',4260,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3fe1240e-8ca4-414f-b55a-c9919451bb21'::uuid,'439','996',4260,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1c97c205-12a7-45b3-bdc7-c6ed5434919f'::uuid,'439','997',4003,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7fa0fa4e-20fb-4d0b-9fef-9d0472b46d8e'::uuid,'439','998',3419,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ac4bc474-6364-4b5a-82bf-36eb445428b3'::uuid,'439','999',3196,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4ed3ddcb-4aba-41d8-9df1-e1f29de3fe25'::uuid,'440','998',3363,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('67afe44c-345b-4ba7-8d49-d9dd28d827e8'::uuid,'440','999',3140,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('55ebba62-2563-4d93-bdb3-11ced1843a48'::uuid,'441','995',4191,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('bcfcd15b-29df-4b67-8301-fd6458afb41b'::uuid,'441','996',4191,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('69e68fa0-0c37-469c-9291-bdf7bad09815'::uuid,'441','997',3933,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('03fe8047-d1b3-4099-8b91-97c9000ee553'::uuid,'441','998',3349,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3705e99c-64dd-46fb-9583-9a42261199f0'::uuid,'441','999',3126,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('97611df8-afa4-49c6-9b87-cea918a22e00'::uuid,'442','995',4205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3cbe54f1-c190-46b5-b506-9643d086775c'::uuid,'442','996',4205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('390d67b9-3a08-468f-94ac-bf07ae1018b3'::uuid,'442','997',3948,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e0270ac8-875f-44dd-bcf2-b2b3e8cd8c03'::uuid,'442','998',3364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('757b84d1-0c54-4ad2-8048-730f21fedf82'::uuid,'442','999',3141,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fd7e8067-fd20-4eb0-8f70-03bb52aa0ac7'::uuid,'443','995',4205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('4970ddf2-62e9-4f38-b965-5165f1d66ca6'::uuid,'443','996',4205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b5857226-60e8-4e7f-aa2f-7ee984595b07'::uuid,'443','997',3948,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('75a2a4f9-776d-4017-8bb8-a0c98bd9c415'::uuid,'443','998',3364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('daa44ed0-5959-430b-8138-e401a0b98e28'::uuid,'443','999',3141,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5a9860f4-051c-4334-a3c1-6aa0b07c11f6'::uuid,'446','998',3376,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4a51f465-d53c-45e2-8840-4315227c0433'::uuid,'446','999',3153,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8c27d610-e00d-4ba6-968e-cabf8ad37b0e'::uuid,'447','995',4220,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c24ad802-7b25-4131-9d01-8563c8abba31'::uuid,'447','996',4220,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6f70a311-7092-40f3-8bc2-fd7d49c33b44'::uuid,'447','997',3963,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d3c33215-1504-48d0-aaaa-dd127b0c1593'::uuid,'447','998',3378,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('01f1981d-f656-499c-929d-2ecb987e8b19'::uuid,'447','999',3156,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('35d49a13-1d9a-4144-9eb4-e2c154a955a2'::uuid,'448','998',3305,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2050e916-57ef-40f2-beb4-60840a21219e'::uuid,'448','999',3083,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dab946e1-0736-4258-ab9a-93015ed823cd'::uuid,'449','998',3320,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7115450a-85c2-44d8-baa0-4754c1df2593'::uuid,'449','999',3097,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('88370dd9-4e5c-4b38-8ae8-a665f6d13c61'::uuid,'450','995',4128,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bfc84ff1-6eb8-4f21-b1f8-c3bd107bdd9e'::uuid,'450','996',4128,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('be7f1e79-55e4-4872-80ef-48ee275cc9f2'::uuid,'450','998',3286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('81690508-4669-46d9-965c-e77cd05eac88'::uuid,'450','999',3064,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4405fb5d-c1fa-4ac8-a4e3-89f51c598ad3'::uuid,'451','995',4171,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('cc86636c-7715-4a56-9c81-bd83f0bf7bdc'::uuid,'451','996',4171,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5fbeff0b-5ea7-4ae7-8cde-18165d3e31a0'::uuid,'451','998',3329,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('83e57663-ed01-44a2-90d2-a5ca05d8e339'::uuid,'451','999',3106,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a9b58721-7d7f-4944-9649-5a178be09fde'::uuid,'452','995',4143,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('523d05a3-158b-4410-a64b-a4d6ca988d60'::uuid,'452','996',4143,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a6addf6b-7a54-4a90-aacd-01c102ae0854'::uuid,'452','997',3886,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f86a8977-2c6f-488f-a0b4-063dce981d0c'::uuid,'452','998',3302,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1464e778-f959-44b4-b82c-d180b78bc499'::uuid,'452','999',3079,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7d0bf931-e8e9-48de-bcb1-5d768e4f82df'::uuid,'453','998',3010,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('48787c92-a71a-40e6-8a5b-72eb5f69ce2c'::uuid,'453','999',3010,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('0e759d8c-1249-4739-8e8b-c00c8c235db4'::uuid,'454','995',4126,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4498c00f-39bf-4e84-b8cb-28dd82d3aebf'::uuid,'454','996',4126,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('38038b36-8838-4fce-ab6a-1759ead4e2fb'::uuid,'454','997',3733,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('31113846-b614-44d2-92b0-e2f4f5f18ed9'::uuid,'454','998',3284,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a242fbe8-2630-45e4-aadb-bc29d1e1718e'::uuid,'454','999',3062,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('69853267-b14e-4040-9b3e-d1ec559d1560'::uuid,'455','998',3034,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bd5e40c7-7232-4446-a3b5-d472927fc998'::uuid,'455','999',3034,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0d0c3b19-0f22-419a-bf32-bd5cf703bcc6'::uuid,'456','995',4226,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b0a692d6-e2cb-4f34-9376-4ae070a5a045'::uuid,'456','996',4226,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6069e77f-24d6-4335-bbab-083e5d9a6886'::uuid,'456','998',3384,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('0c96cff2-fd9f-4ed5-8c12-882de16ddb69'::uuid,'456','999',3162,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('158e10de-3954-40f7-ae7c-4b47cb96f382'::uuid,'457','995',4265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c1e3520b-d80c-4c57-a25d-9620bffbd905'::uuid,'457','996',4265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a437b1e2-23a9-4500-bd7d-08639a453bdd'::uuid,'457','997',4008,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('99828035-60ff-4781-b577-3b32e9078bab'::uuid,'457','998',3424,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2e62c8a6-be42-44c1-93d1-36f367bad859'::uuid,'457','999',3201,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('670d8551-6059-4ff3-807e-834aee3b8ab7'::uuid,'458','995',4075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1035551a-d7b8-4695-ba0d-ed6fae3615c6'::uuid,'458','996',4075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a6c0e1c0-a369-4674-9a63-966c05c5e526'::uuid,'458','997',3818,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2a156a5c-1b53-4ff8-b0ae-57611b33ee89'::uuid,'458','998',3233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('104fc361-570e-4712-a993-2e22013fbbea'::uuid,'458','999',3011,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d7c5d3c7-4caf-40e7-9205-21ccf1ef6a07'::uuid,'459','995',4143,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d9de9789-b22b-4191-a9e7-e701673c0b00'::uuid,'459','996',4143,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('935df46a-3780-4670-a0ad-c90aaf5f1267'::uuid,'459','997',3886,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('db1309c6-5411-4023-bc03-b434ce64e5a5'::uuid,'459','998',3302,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f8f79bc2-4985-4191-9f83-4ed4e32065c9'::uuid,'459','999',3079,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a8d68bef-6b87-4661-b576-71972bdb35a2'::uuid,'460','998',3184,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0ea02bf1-ae6b-411f-8c24-233ef3f24c6d'::uuid,'460','999',2962,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e272f2c8-764f-4e13-91ed-e7e74be4ad55'::uuid,'461','995',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8e187754-bff3-43db-ad3d-a7a0643f48f7'::uuid,'461','996',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('3cf436f3-380e-4c82-8c3a-435d8b77244a'::uuid,'461','998',3213,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2b24e854-55ed-4884-8534-57f162b8167e'::uuid,'461','999',2991,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('03f4c248-0f3c-4614-be27-de0307d1667e'::uuid,'462','995',4033,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f5c226c5-0590-42fb-aa30-a90b7eb6db5a'::uuid,'462','996',4033,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f302f242-99f3-4eec-8121-6af20d8b3a5e'::uuid,'462','998',3192,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6392d265-6444-45df-b6c6-a5f1a4f0be16'::uuid,'462','999',2969,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c0532ae4-7cd0-4091-bc10-4b5a35d9fcd2'::uuid,'463','998',2803,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('36cffc74-5e99-44cc-8b2f-4707f1f22944'::uuid,'463','999',2803,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ee7599a1-3a87-42bb-ae38-24db1fa78c87'::uuid,'464','995',3883,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6f28a03f-6658-41c2-8407-d1d1f641767f'::uuid,'464','996',3883,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('6bc077f6-da5a-45a9-b75a-295082a62278'::uuid,'464','998',3041,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('81ea8513-e227-40a3-b3aa-8134d3226369'::uuid,'464','999',2818,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2aa13f13-f4c4-4bd5-9b70-1f1a50e8909b'::uuid,'465','998',3117,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ff9520a1-ac61-40f8-9c31-dd3ce0c2337d'::uuid,'465','999',2895,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ada7e311-befe-4ce6-80d7-e94ac2cad1dd'::uuid,'466','998',2844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ef122620-668e-4a05-bc02-28b99e6f995e'::uuid,'466','999',2844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('da4261cd-c73b-4e3c-9b44-c4e402d454ab'::uuid,'467','998',3176,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('91e0ec97-321a-41f2-b6f0-e6e784eac949'::uuid,'467','999',2953,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6232335c-3c53-454f-82b6-68b204ad2e4b'::uuid,'468','995',4011,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1e5a7c93-e1bf-465a-9110-32b116cdf69a'::uuid,'468','996',4011,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('dd9014f5-4ecd-477d-90f7-546f20db046a'::uuid,'468','998',3169,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a5aedf84-02cb-440f-a0f6-200f0e7ffdfd'::uuid,'468','999',2947,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9ffc5db2-911c-4f44-b90d-5a64c6a7e828'::uuid,'469','998',3152,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a8149aa9-face-42be-b6b8-68d8de6ad635'::uuid,'469','999',2929,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('32723175-e1d7-46e6-8d70-f84509e0deb1'::uuid,'470','998',3008,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4d1ffc11-9255-4fd1-bcdf-dcb183635c7b'::uuid,'470','999',3008,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f84580c2-8ee3-4171-9445-f7a1d7860535'::uuid,'471','998',3296,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('55a0a192-0669-4abc-b23e-cad10412b5c6'::uuid,'471','999',3073,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c2374335-48f9-4b80-8578-720627a41f6c'::uuid,'472','998',3255,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('559c811b-2819-4fef-afbe-efb5295fe888'::uuid,'472','999',3033,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('1f858580-b1bc-4703-897c-9947aee10580'::uuid,'473','998',3233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('afcdef01-3f2b-4361-b740-50e94e87f185'::uuid,'473','999',3010,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7d606349-c417-47e7-b9ca-79280055398a'::uuid,'474','998',3247,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e67e2593-d1aa-438c-86ab-ce756f0aff81'::uuid,'474','999',3025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('741cf3c1-8248-45db-a1fc-f0224ad125c8'::uuid,'475','995',4123,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9e85d554-8e86-4aa4-913d-fa2d4c57cd43'::uuid,'475','996',4123,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a350daba-291c-44be-be0a-47da9bcdbe21'::uuid,'475','998',3281,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('263038f9-6480-4eff-a55b-b7d135992f15'::uuid,'475','999',3059,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('44f683b0-9005-44fc-bd24-97893a77ee4a'::uuid,'476','995',4142,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b7a1b344-0dc7-4f95-8138-5daada4d3bf4'::uuid,'476','996',4142,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('8994e86d-a997-4fde-9e6f-9ed0220fca0c'::uuid,'476','997',3885,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f34ea4a1-051d-4ba8-80a1-82b3264b525e'::uuid,'476','998',3300,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2ffbf2cb-d825-467c-950e-e0aaf0bd33fd'::uuid,'476','999',3078,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e3267571-baf6-411e-b579-fc5232f5fc66'::uuid,'477','995',4131,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('68696564-8c0b-470c-ab8b-ac2060e6a268'::uuid,'477','996',4131,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e6672af8-fc94-4223-a827-d0f2b3faaf33'::uuid,'477','997',3738,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('236a3d78-6ab0-400c-9856-e21e849d66b1'::uuid,'477','998',3290,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fae4e74b-c563-4f1b-bf5f-9db58fec4261'::uuid,'477','999',3067,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('931aa427-a87e-4507-8957-177021bcdec0'::uuid,'478','998',3199,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7c51b9a3-912f-41e2-9a28-4f0dee5f10a8'::uuid,'478','999',2941,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('5a8b2315-743c-4eb9-8f23-48fa12b8e493'::uuid,'479','998',3120,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fb71bd10-ad5d-4a36-91cf-e6100339f01d'::uuid,'479','999',2862,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6f025fdd-a879-4f60-8258-3d3bc38d6d33'::uuid,'480','998',3272,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e8332147-9e46-4537-b8c7-9aa4bb43e503'::uuid,'480','999',3049,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('84600821-6909-4628-88b0-bb359ffa6fb7'::uuid,'482','995',4112,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ea307d8e-f7e2-4553-9fb4-35a69d0c8d6e'::uuid,'482','996',4112,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b2b614e3-faaa-4517-ba84-d75d52e25006'::uuid,'482','997',3719,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6c55f93a-13b1-42e9-8358-4ad0f206646c'::uuid,'482','998',3270,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('90bc35d8-d08c-4b9a-ba88-5d11efa42e83'::uuid,'482','999',3048,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('079c9d3b-76bc-41c6-bfb9-f7661ec86138'::uuid,'483','998',3243,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('6c3ac99a-3d5d-47c7-b737-337161a3a129'::uuid,'483','999',2985,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a79a551c-9c6c-4cd7-9112-d39aca738650'::uuid,'484','995',4050,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('aebda3cf-6ea2-4bf6-ad96-93da730e3546'::uuid,'484','996',4050,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bd653868-6cfd-44bb-9290-3c9a927c47b7'::uuid,'484','998',3208,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e20f15ce-e68b-4750-98cd-f41a93bbf75b'::uuid,'484','999',2986,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('67b9d13b-ebf5-42b1-b136-6f198ba071aa'::uuid,'485','995',4050,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b358cf08-cbd1-40d1-b993-6be0269d024c'::uuid,'485','996',4050,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a5084f12-a1b6-4751-88af-c9379f11a4fb'::uuid,'485','998',3208,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c2a75629-66fc-4408-b370-b7747b3e908d'::uuid,'485','999',2986,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5d114014-d769-44f4-bde6-062b197b4162'::uuid,'486','998',2877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('a6be3c1a-cedf-4326-bb58-203b84769614'::uuid,'486','999',2877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f861d0e0-d238-4bc6-a4a3-43f06b42b53e'::uuid,'487','998',2877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ef2135d2-4d1d-4327-bf00-1422ac86b1fa'::uuid,'487','999',2877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ebb4ec89-637a-439f-ba0f-4ecc0007f0f5'::uuid,'488','998',2932,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6d361b03-ffe7-4ad5-9be2-0b5ab306396d'::uuid,'488','999',2932,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0545c810-055c-4dae-a539-9ce918835424'::uuid,'489','998',3212,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('da2fa586-c5e7-4071-970c-2a78086a6e1a'::uuid,'489','999',2989,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a3654db8-d43e-4e4a-a99f-6ba36dd6b775'::uuid,'490','995',3996,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f71dad92-a607-48f3-b318-b70e5684e18e'::uuid,'490','996',3996,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5823d39f-0fe7-407c-be58-f94fe8ff8ac6'::uuid,'490','998',3154,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('54a13975-0f79-4ea8-a704-665cfe64d575'::uuid,'490','999',2931,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5f9a75e6-b150-41f6-b321-448b5d8ec223'::uuid,'491','998',3103,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('07130ca0-bb6e-4389-9ae8-649c9af0cbcb'::uuid,'491','999',2880,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1998b7a5-8cee-45ef-a199-9267a95a115b'::uuid,'492','995',4052,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1256f315-a443-4a44-83c4-f29bcbe47ffc'::uuid,'492','996',4052,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1fce37ef-ad2d-4893-8573-9e3e034a7e4e'::uuid,'492','998',3211,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ad50629b-552b-4942-9e40-71558f9db0aa'::uuid,'492','999',2988,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5901d033-b048-4955-96d8-c24ff5c9641e'::uuid,'493','995',4025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b248a7c2-5827-464b-8ce0-ffbb124f1da5'::uuid,'493','996',4025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f85a7369-ef12-4286-beff-11a1c0216710'::uuid,'493','998',3184,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('6c6185f4-f655-4180-8b5c-963ec15cb432'::uuid,'493','999',2961,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f3e03e0b-1dd0-4a6e-9ecb-6c943fa6066d'::uuid,'494','998',3192,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('282c91aa-8ad5-40f7-8406-97b39eb41716'::uuid,'494','999',2969,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9f105d8c-edae-4e97-9555-f1fa54b8978f'::uuid,'495','995',4025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('465b025e-83f1-4f25-a6e6-52ba14c14271'::uuid,'495','996',4025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d7d49732-893b-4ca0-9bda-cfc27d3a6931'::uuid,'495','998',3184,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bcfb0e26-f0ea-4285-9c1c-352f4b09a805'::uuid,'495','999',2961,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('74c42e4a-d161-441f-8bf5-9d2b7278f584'::uuid,'496','998',3097,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e5de919a-35fb-4c38-8a5a-3a174b664c6b'::uuid,'496','999',2875,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bc862f5d-c95f-4dea-bf52-ce194ea364a4'::uuid,'497','998',2985,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('f5ace281-b626-4811-b049-f8d6b968c67e'::uuid,'497','999',2762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d9448715-cfc8-4f28-a07a-dde3d6f28ea0'::uuid,'498','998',2594,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e0853c83-5aff-498e-8916-8679fc8eb995'::uuid,'498','999',2594,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a7eaca52-1f79-4d92-8e3b-074071657a2c'::uuid,'499','995',3567,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('293db368-968a-44e0-838b-f54e7d572111'::uuid,'499','996',3567,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0876cfcc-dd14-4488-972f-7486910993f9'::uuid,'499','997',3310,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('308e4839-498b-4331-b80e-2f1c48d3ff42'::uuid,'499','998',2725,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('59017588-5a5e-41f0-85de-109db0c05688'::uuid,'499','999',2503,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f6d165b7-ca2b-4eb2-8cb8-1a0ab5b2d6a5'::uuid,'500','995',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cc7bd7f9-097c-433c-a14b-8a28105c5998'::uuid,'500','996',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('11c05742-0a71-4653-a7b0-414a3a31148f'::uuid,'500','997',3298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('85040b1b-6033-4c0a-b475-76c20908d5cc'::uuid,'500','998',2850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ebcdb609-7d9f-48df-ada7-70a1e50c232b'::uuid,'500','999',2627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('50f3bf41-59ca-4306-b69e-1b44dd930642'::uuid,'501','995',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('53898e62-1c3e-47eb-81c9-87022698770c'::uuid,'501','996',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ae6085e3-98be-416d-953d-9c0659c6c74c'::uuid,'501','997',3298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('20d08c22-14cc-41fe-a198-29d41feda4fe'::uuid,'501','998',2850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f7747373-d741-49d8-a7e4-00e7fb5bf204'::uuid,'501','999',2627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6aff899c-d16e-4250-92d6-273b8d31a522'::uuid,'502','995',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('05b16f5e-4e39-4f4c-b36a-e6bcb01703a1'::uuid,'502','996',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('8673ea86-f275-4f09-bba7-13cf1a3fcb82'::uuid,'502','997',3298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9ce0348a-0c84-4cdd-b0b0-95b20d0139bc'::uuid,'502','998',2850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7e3ea40d-cb60-4279-b6a4-65afef4b4495'::uuid,'502','999',2627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b592d2ff-7ca0-428b-941c-20a467f6e843'::uuid,'503','995',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9e51abe4-6ad2-4d3d-8c23-0c1d29acdaec'::uuid,'503','996',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('66e27e3e-0fb5-4852-8186-f037e341b353'::uuid,'503','997',3298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c5d99678-9559-45db-9024-d8cc459f404d'::uuid,'503','998',2850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('87e29bec-1b23-4a98-937f-457af738bb51'::uuid,'503','999',2627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('672a0156-9f4f-4da2-b17d-f95b13e6ad14'::uuid,'504','995',3581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('08b903e4-fc9b-442e-8321-f880c9f4c2ca'::uuid,'504','996',3581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('fcc89834-78ac-4096-8b6d-55b56e90151f'::uuid,'504','997',3324,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('682736f7-72ec-497f-a190-5f68aaa9afb2'::uuid,'504','998',2739,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b02a1030-44dd-4c03-b6a6-c7726b317e94'::uuid,'504','999',2517,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('90e11ed7-df73-4c1d-ac3a-312fd16b14ec'::uuid,'505','998',2723,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('25d5b746-85b2-4aab-8780-b62800a14e6f'::uuid,'505','999',2465,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ace4d766-5305-4925-a2ba-9d06ad8010af'::uuid,'506','998',2538,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5e49e17f-4c3d-412e-8455-d95331be33ae'::uuid,'506','999',2538,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9af983f0-01c2-4d0b-8828-4620bc70fd78'::uuid,'507','998',2550,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c5d8f994-194a-4a5c-91c9-449f1c988a6c'::uuid,'507','999',2550,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('db4540c1-8664-41ac-8d39-21dfc263d48d'::uuid,'508','995',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('e3d7539d-726e-4219-b3b2-c672111552e7'::uuid,'508','996',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('051a2ecb-0aa1-4a04-ade4-aedd93739dc5'::uuid,'508','997',3284,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('28fa3e2a-9a3a-4074-bb6b-e2caa662ee79'::uuid,'508','998',2836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('560cac6f-d809-4954-b41b-b9caa64fbd5f'::uuid,'508','999',2613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7a05a2a7-0ae6-46bd-9c14-0d98c07f03bf'::uuid,'509','995',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2ac2e33b-7160-4940-aaa2-f4465d2c16ac'::uuid,'509','996',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b7658de4-dfb0-4a08-a0f4-b4c1df11f25d'::uuid,'509','997',3298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('78037109-49b4-42a9-a4fd-4954f0175ace'::uuid,'509','998',2850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cd35fc2c-321c-49b0-8dfc-073e2132da46'::uuid,'509','999',2627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('88d5a085-a611-4a48-988f-5e405f9f2118'::uuid,'510','995',3541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('392735fb-85bd-4319-a893-4bc756bec532'::uuid,'510','996',3541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f5e311d8-bf65-4337-a0bd-f915860a86b3'::uuid,'510','997',3148,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4ee5a825-794c-4cd4-8cc9-53de90cb6a0d'::uuid,'510','998',2699,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d83b8992-cd33-4574-9099-7beaea15c5eb'::uuid,'510','999',2476,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7c7de705-37c2-4379-ba1c-189daf503304'::uuid,'511','998',2667,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7de18435-a6b4-45ea-b6d2-8b65d92aa9d2'::uuid,'511','999',2409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fb9bb9c7-92b4-47ed-ab6c-b5245e2ffb0a'::uuid,'512','995',3473,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a6ca08dd-95f1-4b32-9026-f1f7f570e021'::uuid,'512','996',3473,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b0ec1b5c-9442-49ab-8854-8ff675e1c649'::uuid,'512','998',2631,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('01e02d1c-794a-4a9d-98aa-4933fa2e3d5a'::uuid,'512','999',2409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('e2c3ab5c-0f7f-4645-9bfc-3c4c36a84074'::uuid,'513','998',2667,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0d37ca22-75b3-4dbe-952c-754d86ed0d57'::uuid,'513','999',2444,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cc8ed47e-fde9-456b-8378-3607ed0ca476'::uuid,'514','998',2500,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1bd277fd-ae1e-4496-b195-900f8269512f'::uuid,'514','999',2500,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('37d5fca0-45af-4333-8d4a-2cac80a71bfe'::uuid,'515','995',3615,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d9c6b6a6-e8b5-4a49-a087-996ffe3a6744'::uuid,'515','996',3615,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4797eb1d-4085-40bc-8131-e2489f2f12f2'::uuid,'515','997',3358,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('deed655b-6136-4828-a0af-c18a111fa6ae'::uuid,'515','998',2773,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('33e55130-8fa1-4cb1-92ea-c813dd96fae5'::uuid,'515','999',2551,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f854cc80-23fe-4f07-88d6-d8ecad4e0b6a'::uuid,'516','998',2817,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('624dd381-7631-4b18-a112-f44a11057a13'::uuid,'516','999',2559,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('80e9861a-f128-48ca-aaa1-55f17dd55d7c'::uuid,'520','995',3696,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('97163bf2-7471-41ad-907b-f71cf540fc85'::uuid,'520','996',3696,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('72edd028-6546-46e0-b695-08b1537a7091'::uuid,'520','998',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1e5bcec1-936a-4418-aa6e-8288d5d1bc44'::uuid,'520','999',2632,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('da44bc22-9bff-4b7d-9bf7-a1447aeb9356'::uuid,'521','995',3615,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9b11f426-4d48-4dbb-aaa1-de753947af50'::uuid,'521','996',3615,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('07b91069-3674-4a27-975b-6967a43bf4ad'::uuid,'521','997',3358,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('52a84590-f1e0-4392-986d-49ce670500a7'::uuid,'521','998',2774,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1693e341-df34-4eca-bfd3-7b9b1ebe1bb6'::uuid,'521','999',2551,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('a36ec8f0-8b6f-4259-9340-000bb7ef1dff'::uuid,'522','995',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1715a64b-99da-4c88-84a1-559b96ac6399'::uuid,'522','996',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('364374e3-a6b1-4023-b15e-970a03f3e7af'::uuid,'522','997',3447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8b6b6ff8-4093-49e9-b3e0-26f92b6a897b'::uuid,'522','998',2863,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('18cef7f3-cee0-4352-aa42-8e82ee72ff61'::uuid,'522','999',2640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f6184722-426a-41fa-b444-5c8edba78c22'::uuid,'523','995',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('54a5578a-e383-4ccd-b236-a8bc3e739ca4'::uuid,'523','996',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0d062465-28b7-479a-99c5-2e73e9a735cf'::uuid,'523','997',3447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fb7801c5-01ec-42df-a1e7-f405977282c6'::uuid,'523','998',2863,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('83569f57-af7a-41f5-bc46-6150badbd233'::uuid,'523','999',2640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('bbfb6b63-f44c-4fae-ac0f-2bfb0fc29614'::uuid,'524','995',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6da75008-3d6f-4bab-81eb-976a72c2b3dd'::uuid,'524','996',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('eb6aa045-898e-4f44-bfba-0e07e118aa59'::uuid,'524','997',3447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7b406496-2351-4ccb-8b24-af541a942eba'::uuid,'524','998',2863,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e5e93ecd-96f1-4dca-856e-4993078d38f0'::uuid,'524','999',2640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('045b9b90-7d1b-4a97-86a0-a13b02749775'::uuid,'525','998',2925,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ed775a7f-d766-4fd6-967e-f6796ded10c9'::uuid,'525','999',2702,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1d875264-80b3-42e0-b094-c6cce7e9c36f'::uuid,'526','998',2937,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d7505e80-0d1c-41a9-b6c2-102fc97d534b'::uuid,'526','999',2714,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b375919e-70b1-487c-b91c-cbc5c93f1c15'::uuid,'527','998',2644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('4565e818-0c63-4994-8813-4daa97b6256a'::uuid,'527','999',2644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('584b7841-227c-481a-966d-bc5054c5176b'::uuid,'528','995',3782,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d232818a-c7d2-4686-a9a7-c0b20c80c2bf'::uuid,'528','996',3782,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a5803583-470d-46b4-b5f1-abc036add53e'::uuid,'528','997',3389,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b978a5e3-16ff-4f32-a379-a02f44b4437c'::uuid,'528','998',2940,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4ce63fa2-a1ae-4fdf-b10c-7a6a8626348d'::uuid,'528','999',2718,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a220e2c3-b9d4-4811-8490-fc55aa19583f'::uuid,'530','998',2660,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2650f692-2775-4b1d-9858-2242f0f7fec2'::uuid,'530','999',2660,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8fff39dc-7e29-4fcc-940e-c0732ad4d8f0'::uuid,'531','998',2944,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5143dc2e-3882-4480-a72f-6fbb85d6b823'::uuid,'531','999',2722,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('154e2b80-9a5d-4d7c-9186-af81551379c5'::uuid,'532','998',2942,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ecb3aa04-6de2-4afd-905e-be5c922f7e66'::uuid,'532','999',2719,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0b6d8c62-3bb5-447d-aa6b-f2df6c44e96e'::uuid,'533','998',2942,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dfefaffd-d3a8-4d3a-9290-cb91c1914ba7'::uuid,'533','999',2719,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('95eefb0a-18e0-4a3d-8a12-0bba2669addc'::uuid,'534','998',2968,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('443e9d2d-798f-4971-9a39-cb02d8de9903'::uuid,'534','999',2710,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b9a3faa3-a369-4087-b5d0-3b576e12cf71'::uuid,'535','998',2884,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('82cd8ee9-59c5-48c9-bf64-537e195a2832'::uuid,'535','999',2661,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('281c409a-768a-47e2-958b-45ac1711ee78'::uuid,'536','998',2880,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('52727088-9d26-4c48-b7d7-8749e086ab21'::uuid,'536','999',2657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('5d59aa46-101c-4ebb-bc8b-3e1fde9e71e4'::uuid,'537','998',2880,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e0a74cf0-51af-4be8-8327-48488e25f625'::uuid,'537','999',2657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8134b658-70e0-4447-8f88-97def9eabffe'::uuid,'538','998',2840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d1dc09fa-9f73-44c0-8926-4739cce8e4be'::uuid,'538','999',2618,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('307cc6f9-760f-42e9-b6f7-d41a8c318df2'::uuid,'539','998',2846,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b551bad6-ac5a-4940-aa87-8cdd2333743c'::uuid,'539','999',2588,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c297c89a-4076-49cd-9a38-690d936b2aa5'::uuid,'540','998',2657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('32ce3c5f-4677-4c82-94c2-97e756e655fe'::uuid,'540','999',2434,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9d6ace54-5385-4a98-bc19-2b2e6bcc9c40'::uuid,'541','998',2584,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('05badb97-1bd6-4402-8622-6cd3c46cd0ea'::uuid,'541','999',2584,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('4d066efa-2832-40a5-a5a9-4c1b9c113d28'::uuid,'542','995',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('da78b8f8-b9c8-443d-af62-9054febb398b'::uuid,'542','996',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3361e7b9-2362-4d26-b733-48cdd264ca98'::uuid,'542','997',3505,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5675ed58-620a-4a29-98a3-ff913f496355'::uuid,'542','998',2920,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('509da96f-3093-4153-bcd0-47d883f8b4fc'::uuid,'542','999',2698,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9c50c2f1-ea66-4b01-b7dc-700ab2d52be8'::uuid,'543','995',3730,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a9250ae5-591d-4d98-bbe5-87748b33d893'::uuid,'543','996',3730,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cac1ceef-e647-4733-962a-25fe7e58a685'::uuid,'543','998',2888,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e4dbe36b-b057-4ea0-8c7f-b948fa7a1d34'::uuid,'543','999',2665,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c3c52f83-0181-42d4-9390-44c62a594e11'::uuid,'544','998',2536,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('d032616a-b99e-46a5-9f04-e874d1ae8d24'::uuid,'544','999',2536,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('564ffd53-0df4-4ad9-8e6f-8a65294a7e93'::uuid,'545','998',2470,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8268090b-9acc-4e8a-91d5-14758590c154'::uuid,'545','999',2470,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('56e54fb9-b73b-4f24-b59a-3687afbca812'::uuid,'546','998',2524,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f19e38ce-1db1-4521-a222-6bceb8186baa'::uuid,'546','999',2524,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0bc664ed-cdef-4665-9a46-d56ce1df89f9'::uuid,'547','995',3544,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e4d14354-19da-4bce-99bf-b8b921c14a03'::uuid,'547','996',3544,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b42dab02-79f1-4856-b5c9-1fbd1ce3c648'::uuid,'547','997',3151,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ae710a5b-ee1b-4d72-aa33-bc3e4150956b'::uuid,'547','998',2703,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3204b758-5cb4-49e5-9089-8b9c7fc52f17'::uuid,'547','999',2480,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('d357470a-36b5-49f2-b128-6208147ed14f'::uuid,'548','995',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('07f6729e-e0f2-4dbe-954a-72ec0cc2b855'::uuid,'548','996',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1a256afb-77fe-4fe3-b8d1-b54296ac43ff'::uuid,'548','998',2642,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ac534684-53a1-47ac-8af2-ae9bb1989f59'::uuid,'548','999',2420,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('862a322b-9b63-4fa4-8f00-43e39ff7eabc'::uuid,'549','998',2580,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('430dde37-491f-4748-b232-7b9ef03d85cc'::uuid,'549','999',2580,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4e1d3a37-5ce7-4e8c-b3ce-e77fc2f0ad1e'::uuid,'550','998',2372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1573c59f-bf00-4184-86cf-117ba40420c2'::uuid,'550','999',2372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('eaef8804-a559-4db3-b264-11210bd0a612'::uuid,'551','998',2361,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b4a2c77d-0eb5-46c3-8e5c-93a20a25f641'::uuid,'551','999',2361,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('e1258ac0-e9e7-4f7d-ae41-570109837123'::uuid,'553','998',2589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7aaf3717-7c83-4113-8cf5-5f8416401bef'::uuid,'553','999',2366,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e47c2a66-a16a-4b97-9776-970ffc670747'::uuid,'554','998',2611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fdbf6c2a-cde0-42f4-ae17-700a8ac52d7b'::uuid,'554','999',2389,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2d6b1b6d-771f-4cba-912b-3d732e68ff3a'::uuid,'555','998',2589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a4cdcf69-79a6-4f0c-8b27-8b36264ba3c7'::uuid,'555','999',2366,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8f0cd533-bb45-49b2-a755-abbc95fcf1d8'::uuid,'556','998',2651,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dc157c16-3ab2-4426-b193-62664ca797bb'::uuid,'556','999',2393,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e176ab82-d911-4316-85d5-23fe05a2aecf'::uuid,'557','995',3362,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a9df31a4-207d-4f91-a395-1dca7d339c63'::uuid,'557','996',3362,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('0ee2d61a-58d4-4177-a3a3-1c8abb89e23b'::uuid,'557','998',2521,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f3ffd31f-db57-4cec-87be-7f92c9d872f4'::uuid,'557','999',2298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2f316561-b131-40c2-9780-280a3eb0ef5e'::uuid,'558','995',3411,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('07cdd2a7-0ab7-4490-9b21-bb17bb66289b'::uuid,'558','996',3411,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1cecbb52-c01c-47bb-b342-515ec5167364'::uuid,'558','997',3017,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a58cd870-34c3-447e-8a64-777350ca77d8'::uuid,'558','998',2569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8537d37f-d2c8-4541-a6cf-2f26d2bba7cd'::uuid,'558','999',2346,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('52cc86b4-123e-4315-bdbe-520ef59a67c4'::uuid,'559','995',3556,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('47228aaf-640e-490e-a669-cbd088fd3340'::uuid,'559','996',3556,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3cd4c910-8316-4857-9042-8483b601e5a5'::uuid,'559','997',3299,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('42034574-4ba2-441c-9a8c-3ff316feb834'::uuid,'559','998',2714,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('744093c5-b0d0-4ce5-98a2-c1fe24745cbd'::uuid,'559','999',2491,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8a23c3a4-1ed7-4a01-9ad8-2fdf84c0f19a'::uuid,'560','998',2645,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f8feae52-93f4-4402-a396-8996fa2b4a46'::uuid,'560','999',2422,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('badbb6ed-829e-448d-a8bf-be3aa63165e8'::uuid,'561','998',2336,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b678d686-b8f2-4f22-a872-d56fc8f1ff5f'::uuid,'561','999',2336,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3606cb9f-eb9a-4d38-a7da-5727e7af78a0'::uuid,'562','995',3350,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('093c06aa-2f54-4108-b3e3-bfb9995c8032'::uuid,'562','996',3350,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1ea03b2f-c45a-48f1-b754-e3e424a15159'::uuid,'562','997',3093,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5c6d0706-4d6d-4a53-ab43-0da43df1cf10'::uuid,'562','998',2509,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('92e98c7d-0771-461b-b6f3-e7f591f182b9'::uuid,'562','999',2286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e9e033c3-e258-4ca8-81b4-9f1e47e64b0f'::uuid,'563','998',2506,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e013fa19-d374-4a66-b574-443a03e0cdea'::uuid,'563','999',2248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('23874d4e-1365-44ae-853b-7a6f8efdc310'::uuid,'564','998',2490,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5323124e-0e44-4b60-b7af-4867237dde6b'::uuid,'564','999',2232,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('091f8b2f-01a7-4142-bb8b-90f630f28a66'::uuid,'565','995',3263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('82ae642a-ab2a-4081-9993-d34207a02295'::uuid,'565','996',3263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('03a071e8-1b3b-4f3e-a706-e186d016927b'::uuid,'565','997',2870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fd8cbbd4-25ce-4290-9fa9-608eae305d28'::uuid,'565','998',2422,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d8136a4c-dbc3-42d2-9f5b-5731fb274c1e'::uuid,'565','999',2199,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('e7d0d72c-3474-4bd9-bce5-838ac46ca3b6'::uuid,'566','995',3274,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d002bef4-b344-4d7d-95f5-2abe3bf44774'::uuid,'566','996',3274,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ae624527-b3ba-44f9-b52b-771333f3cfbf'::uuid,'566','997',3017,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('01447a9d-40fa-4e97-b74e-9e8f56f9b237'::uuid,'566','998',2433,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8ba9c60a-f7ee-4fec-a9c2-394040d87acd'::uuid,'566','999',2210,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bac06daa-e4ad-43e6-82d1-1f0dcda7dc21'::uuid,'567','995',3138,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ae82e5dd-69f9-4b0d-a99e-258ba6e8a57f'::uuid,'567','996',3138,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d344c598-11d5-4fc4-8c27-9688db7a236a'::uuid,'567','998',2297,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4aaea3be-8ce2-4948-9983-e6f49c3829c7'::uuid,'567','999',2074,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b1bb320a-9f1f-4cb0-827a-1a6f7cebc96b'::uuid,'570','998',2586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('de508cf4-9513-400d-b011-6d9c6f3e1a57'::uuid,'570','999',2329,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f67871e0-e4ac-4409-9568-cc1af2a64b0c'::uuid,'571','998',2586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7b325a32-de88-470e-b390-e9f1dda0bc92'::uuid,'571','999',2329,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('48f45265-d627-402a-ba7b-1bba82d2095a'::uuid,'572','998',2225,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fa40f95e-fcc3-4236-a5e1-d156afa17e99'::uuid,'572','999',2225,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f230884b-fd02-4a67-9b83-eb9c50b37689'::uuid,'573','998',2532,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('73c0994b-ceaa-4816-9be0-f9f61aaff3c7'::uuid,'573','999',2310,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('68174f83-a713-431a-bfa5-4c470ce5a495'::uuid,'574','995',3234,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9602695a-9188-4a11-bab2-28eff43de1e0'::uuid,'574','996',3234,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e0f739e1-7fe2-43c5-a6e7-ea2a93c54dde'::uuid,'574','998',2393,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('c8430abd-da25-4e06-9198-fad42e0f7389'::uuid,'574','999',2170,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5674434d-f20f-45a8-8827-a956bd5670fe'::uuid,'575','998',2450,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fb7a89ff-ec6b-4607-967b-394d378465ea'::uuid,'575','999',2227,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1dbfd8b0-1f42-4007-b510-59c7ad5cc2c4'::uuid,'576','995',3189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3d0083a1-f589-44bb-b27f-d2ddc7032233'::uuid,'576','996',3189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6fba924d-6058-4462-a4a0-620b97f5a315'::uuid,'576','998',2347,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7f011bd9-d5bd-4e82-a932-5e42e6d8eadf'::uuid,'576','999',2124,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('feb42382-5b2a-4721-b6bf-a4ade12fe36f'::uuid,'577','998',2388,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('594eea09-6914-4e00-be9d-6ed478087384'::uuid,'577','999',2131,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('38642e7f-b6e7-4b0d-9c76-fa029be473be'::uuid,'580','998',2373,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('95f96e81-3e71-4363-9efb-c01ff16495c2'::uuid,'580','999',2150,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f61da887-6be8-4288-8d64-79a26785c5f0'::uuid,'581','995',3219,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('29a8b222-8b88-48d4-97e5-5f3b2daac3ff'::uuid,'581','996',3219,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a6ff4392-87ce-4191-a2ad-0996aa18302a'::uuid,'581','998',2377,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a05cf28a-8d3e-42a0-b032-c55762831cd9'::uuid,'581','999',2154,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6043c1c7-9c3e-4801-9b34-0864c1d31eee'::uuid,'582','995',3161,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('159bd446-56fa-4cc5-a142-27ef71b23461'::uuid,'582','996',3161,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('712b215c-4d71-4054-8d5f-75424a16bcf7'::uuid,'582','998',2319,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f10eadcc-9dfa-422a-b864-8d90294bc51f'::uuid,'582','999',2097,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3cb9b480-8caa-4c23-96f9-8f0bbb7c838a'::uuid,'583','995',3054,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('517b77ae-cbae-4740-a901-1856e750daba'::uuid,'583','996',3054,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b7e773cd-f27d-498f-a518-1b474d47a24e'::uuid,'583','997',2796,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6ed413e7-b246-4a82-8989-80684b4794a3'::uuid,'583','998',2212,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0bef008b-cf07-4f76-9302-18b43943bba8'::uuid,'583','999',1989,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d6bc516a-f821-4242-890d-ea8d1cc7fe0e'::uuid,'584','995',3125,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('caa142ff-d7c0-4732-8f4b-f206e6accb30'::uuid,'584','996',3125,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2afcb1b9-1ade-4da9-9f4e-c58a2b30d084'::uuid,'584','998',2284,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2a326983-9245-4801-be7a-a710f3cde4d8'::uuid,'584','999',2061,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f73026f2-aa01-406c-93a8-1c36d33a88fd'::uuid,'585','995',3063,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ef337442-c49e-4a20-b128-5c35770bed62'::uuid,'585','996',3063,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('4badeef4-bf49-46d5-9412-8b3e42281715'::uuid,'585','997',2806,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('feeb4199-1677-428c-8d08-c7380320518b'::uuid,'585','998',2222,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('66c1438c-777c-4851-bcbe-458ceb6f90d2'::uuid,'585','999',1999,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b6c10648-7be0-4627-bda4-74e7627b524b'::uuid,'586','995',3028,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ccae245a-7795-43cd-9ff8-422e4c8a7dbc'::uuid,'586','996',3028,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fd472422-5135-4ea9-a4ae-c9e6dfa04522'::uuid,'586','997',2635,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a08ad7e4-f3e4-49b4-a5bc-f9372284c0fd'::uuid,'586','998',2186,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9676daa7-10c9-495d-938a-7e3aacec6d16'::uuid,'586','999',1963,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9e2adfc4-8eb4-4a24-82a2-6f21d7a1f697'::uuid,'587','998',2113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('af24244c-76ba-43fb-be13-771d61583d80'::uuid,'587','999',1891,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('a8f1e398-1dc2-4922-a885-7a350af14934'::uuid,'588','998',1797,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fb59922b-edd3-4e72-90ab-8d7324d73b42'::uuid,'588','999',1797,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3d39b639-e9ab-4404-9a49-cf1c0fa41a9f'::uuid,'590','995',2933,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0d342f80-5c02-4a09-92b8-665a9c77934c'::uuid,'590','996',2933,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6af4587a-743e-4f33-8627-b00834c496f9'::uuid,'590','997',2675,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9438b293-3f9e-40d8-bbd7-5c7321f37450'::uuid,'590','998',2081,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('15be0dae-9252-4a99-b486-a6a9f3b42a9a'::uuid,'590','999',1858,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('26381dd8-91a6-430f-9b48-297884466d31'::uuid,'591','995',2933,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a51c57dc-fb10-4485-8099-c5c7947460a8'::uuid,'591','996',2933,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('13a44dab-4221-49dd-8558-57cd8c951615'::uuid,'591','997',2675,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('8fa6015e-c4fb-4919-aced-3e803aff997d'::uuid,'591','998',2081,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4853fbca-4939-41a2-bbbb-6cda75664cf0'::uuid,'591','999',1858,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('affaf773-a264-4d2e-aec6-feab899adf92'::uuid,'592','998',1772,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('883101bd-a053-460c-93b6-f834577ac4ef'::uuid,'592','999',1772,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b240f71f-12e0-4f75-886f-0d42c0da24fb'::uuid,'593','998',2179,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8a9fd9a9-fcf4-44f7-9db4-c476b6c87741'::uuid,'593','999',1957,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f0f896af-9304-4d60-bc8c-dcac292467a5'::uuid,'594','995',2716,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('56e79e35-5671-47e6-85cf-132bdce31691'::uuid,'594','996',2716,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b4c33a30-60cc-44cc-88f7-864381153d9a'::uuid,'594','998',1864,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7f637b1f-e156-4b54-a018-aecd34fa7ccc'::uuid,'594','999',1642,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('a92f92cc-7415-43d5-bc98-5bbd6f4aaa69'::uuid,'595','995',2734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7161a1f0-11d4-482e-9329-77dd6ef26612'::uuid,'595','996',2734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b4e24817-ef2c-4781-836f-e46cc505de2f'::uuid,'595','998',1882,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('08127592-22d2-4876-9c78-d9ad6501839b'::uuid,'595','999',1659,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('98b12e6d-9855-4c49-b95e-ed683359fac6'::uuid,'596','995',2776,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d5294ef9-d999-4f47-9eec-c6ce61aa2d4e'::uuid,'596','996',2776,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2fdeb60f-9816-4f98-8ca8-a4c95dc940e1'::uuid,'596','998',1890,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('819118e1-c0ee-4ad5-a5ec-b92184a79797'::uuid,'596','999',1668,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ad69452c-2e97-461b-8390-8e5b40834800'::uuid,'597','998',1682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c2e6043d-aff1-419a-a2f0-86e75e92abfd'::uuid,'597','999',1682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('c8cce8b4-11db-411d-9dd2-5968655ffdfd'::uuid,'598','998',1777,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5109c8de-7420-450d-be53-8a12f0606a45'::uuid,'598','999',1555,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('afe30946-7391-482a-a7d2-ff8053ed3102'::uuid,'599','995',2676,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f164b9be-d465-4551-a0bd-b91f64b64460'::uuid,'599','996',2676,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bd468b6c-2bf6-473c-ade2-fded58b48c76'::uuid,'599','998',1741,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('08d5937d-c8d0-460e-8c12-170bf37d9828'::uuid,'599','999',1518,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c17d1d35-2906-4e6d-b22f-c64eb9277dfb'::uuid,'600','998',2708,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('30ed0dc5-57d7-4640-be51-bc66828e4f3e'::uuid,'600','999',2708,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('efc0796b-a480-4f81-8f48-36d2ebd785fa'::uuid,'601','995',3834,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('29317075-b3de-48f4-b496-0c27cf78cf7e'::uuid,'601','996',3834,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('b659c5fa-59ec-48a3-b4c5-9a1bc2d09514'::uuid,'601','998',2992,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d5b3b684-c8c9-47d1-8bbf-e1fe384fb73b'::uuid,'601','999',2769,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d9ba1b4e-2f46-483b-a265-b2d491832b31'::uuid,'602','995',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c58f40b6-97fb-40ca-a637-ce43e8c01449'::uuid,'602','996',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0d6bab2f-a11a-42f0-9eaf-626d2f2580eb'::uuid,'602','997',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5f133358-7d07-4915-996c-81381562fec3'::uuid,'602','998',3012,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3c4ed3e3-ecc4-4cfb-8a1f-bd582468d4f4'::uuid,'602','999',2789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9a796351-a7ac-4f41-9c78-efbc5b08d65b'::uuid,'603','995',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d0c32971-33f8-4fba-ab0a-12a5c8fcf6f2'::uuid,'603','996',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c3259712-6d3e-425e-b09d-44924feabcbc'::uuid,'603','997',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('5882c090-5502-4a20-a73e-e4cc55aca34e'::uuid,'603','998',3012,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9d114b51-4e75-4600-bc8a-7c0fc4a93800'::uuid,'603','999',2789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('54d506b1-7791-4773-b312-bbb4714d3cb0'::uuid,'604','995',3870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('51e7a6fa-55b4-44a7-9812-a357bddf4e02'::uuid,'604','996',3870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0036208c-c009-4d6e-8ec2-9312af1fef16'::uuid,'604','998',3028,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e15bda6b-6233-4a4c-809e-d148d49cfed4'::uuid,'604','999',2806,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ccdf067f-9e76-4e47-a946-bca37dad5265'::uuid,'605','995',3845,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('60a838a9-41ca-401d-948c-bb2e2cca6986'::uuid,'605','996',3845,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c28ab6a8-76e2-4680-a07b-f03747eec433'::uuid,'605','997',3588,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9418f8c3-c8c0-44e0-ba54-24eb13ad1e29'::uuid,'605','998',3003,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('34a434e1-d287-40b3-a9dd-a657ac881964'::uuid,'605','999',2781,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e5f363a8-62fc-420f-8fb6-01118c48d876'::uuid,'606','995',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('677819c8-1db4-469f-b920-d60dbafde746'::uuid,'606','996',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4fa446ac-b92c-48a3-a190-2c2eef1b494c'::uuid,'606','997',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5a3dbc30-7902-4ba3-a7f8-650987442530'::uuid,'606','998',3012,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('396d750a-f3d2-49a1-8e2f-42d2ce6693d1'::uuid,'606','999',2789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a7f2d255-6212-42fd-b852-36eb7ac4c3a3'::uuid,'607','995',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c7225724-e250-4fe9-bbb4-ea872b7d175f'::uuid,'607','996',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2fa0f8c7-6f72-4ced-a990-7920bbedb4ec'::uuid,'607','997',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('aa4516e2-00f8-492c-a7bb-9875e2854bb8'::uuid,'607','998',3012,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('313a7a0e-111e-485b-ac28-3a3f4141436e'::uuid,'607','999',2789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('216ed3b2-1b06-48fe-8110-c2ab1a849eda'::uuid,'608','995',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('089b5212-d62b-400b-83fd-73aaed0f74dd'::uuid,'608','996',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1bff9c00-9ebf-45fb-82be-29de6ebbf8dd'::uuid,'608','997',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('60599c3b-7dea-42d2-8e48-094dd44c5874'::uuid,'608','998',3012,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('473b3c00-1212-4636-951d-a3be619d066a'::uuid,'608','999',2789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ef115955-f435-420d-bbc7-0d2b8cc85676'::uuid,'609','995',3929,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a3349128-7498-43b9-8bb3-6c1811221026'::uuid,'609','996',3929,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('85e11610-cf9d-45e5-96ac-6f6728e64b0b'::uuid,'609','998',3087,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ef6644b2-ad5b-40b4-a2e5-81f8deceb510'::uuid,'609','999',2865,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('eb403c20-c713-45b7-a08c-493abb0cdf0c'::uuid,'610','995',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('92182b0c-a4b1-4132-8f08-b66cd190ab26'::uuid,'610','996',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9a7fce7c-c4b0-4e7d-916a-02d2340acb66'::uuid,'610','998',2941,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d8ff7155-a628-4e04-a324-da93e574dcb2'::uuid,'610','999',2719,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a547a4a9-9448-4a2c-945a-e1f53de05574'::uuid,'611','998',2942,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1e5e24e5-8d3e-46b1-b3d4-06c9f50be386'::uuid,'611','999',2684,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6312ef1d-f4c1-41d4-a724-123c4f0db011'::uuid,'612','995',3788,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d82a5ebf-33ea-4114-973f-50151b7678d7'::uuid,'612','996',3788,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('520ba3c9-98bf-4fed-978e-f7fa86f0c6cb'::uuid,'612','997',3531,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2eb6b8ba-ae42-46fd-aa90-9be947754afb'::uuid,'612','998',2946,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('a6febd9f-0406-4628-b3b8-085ba04c162d'::uuid,'612','999',2724,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b5272acf-b89a-4fc2-be13-589567de068c'::uuid,'613','998',3007,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5fc33253-02a9-4249-97ab-a71dc2dfee6c'::uuid,'613','999',2785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('838e7a36-e099-4e80-a0df-6c90ff41e712'::uuid,'614','995',3822,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('596e7115-4a8d-4386-9e99-052646458b61'::uuid,'614','996',3822,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7708d37b-58ee-4774-82f3-8226a2f542c0'::uuid,'614','998',2981,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('32ff3263-ab4f-421c-a1fa-427c75b9b0ec'::uuid,'614','999',2758,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6d00dd3a-3e1e-4f45-aae1-46ad89c5669e'::uuid,'615','998',3028,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ecbf1812-261d-4465-860a-a6641859ed0c'::uuid,'615','999',2805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b71f945d-9171-4875-ae9f-ac8890a034bc'::uuid,'616','998',3028,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('8f9b58b7-e0f8-4b10-9baa-5c5abe830cf9'::uuid,'616','999',2805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2f455a3d-893a-475f-a938-2e0cca36c49a'::uuid,'617','995',3907,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1ff5b3e4-3ced-43a7-b25d-d096776ab802'::uuid,'617','996',3907,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('41260d35-1f4a-4c85-b1a0-66f7609d62ae'::uuid,'617','997',3650,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cce85e6d-9452-498c-a9de-31d432807505'::uuid,'617','998',3065,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dd46989e-5650-4e1c-9246-84834f254a1d'::uuid,'617','999',2843,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2ea3a67a-0dd1-4017-a8d5-2db91a02d9fa'::uuid,'618','998',3136,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b0bb4720-943a-4cbb-8f10-eb1003bdcc48'::uuid,'618','999',2913,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4f7ed0be-33b8-40ec-899e-e9cca8072e7f'::uuid,'619','995',3986,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('67b3a147-3139-4c3b-823e-2649e5dd057b'::uuid,'619','996',3986,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('2ef8fdac-7e51-4d2c-b104-f17d5ae9dfb8'::uuid,'619','997',3729,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5410eda9-c2f0-40be-8c5c-ecd34e9cf2f7'::uuid,'619','998',3144,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e26b5c95-3e01-48c7-b10a-4b356626c92a'::uuid,'619','999',2922,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fba822cf-a42e-43a3-9872-f68f250176ec'::uuid,'620','995',3955,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4fac0793-6233-4496-bf91-dd37ef6e5d9a'::uuid,'620','996',3955,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('111e5e34-38db-4c6c-b16b-64c147709b69'::uuid,'620','998',3113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4081bceb-b2e0-431e-8dfa-69261e04d1dd'::uuid,'620','999',2890,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('88ad2dc7-72f0-4ee1-ba26-a6a43da03f47'::uuid,'622','995',4020,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4bb0aa95-3a51-4236-8bcb-10a03fbb1737'::uuid,'622','996',4020,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('47d836b8-26ef-4409-a47c-5343f600f8b0'::uuid,'622','997',3763,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('84bf52d0-2b91-4e91-80d3-6b3fdc66e8e4'::uuid,'622','998',3178,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('001abfed-9b7c-41e7-8394-0d45e81ee301'::uuid,'622','999',2956,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dca90755-c8ba-4803-8d56-5ed28aa702ad'::uuid,'623','995',3869,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ae809a3a-39fa-47ec-880a-8c65e9f13126'::uuid,'623','996',3869,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('396b34b7-4496-42e3-b549-4677c637dae7'::uuid,'623','997',3612,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('25e94773-66da-4e4d-bafd-514fb9e41e99'::uuid,'623','998',3028,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8670ddd1-57bb-4102-be9a-72eb73ed3301'::uuid,'623','999',2805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a717fd44-ee96-49c0-90aa-41a6b1cb7b32'::uuid,'624','998',3197,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8b08d747-c6e1-4631-a266-bdf0ddab1fa2'::uuid,'624','999',2974,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4c59ca3f-c7d2-4937-b389-1fff6c42ae41'::uuid,'625','998',3090,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7b017d23-102a-43b9-80b5-4399ca7fd9fb'::uuid,'625','999',2867,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('02f42e73-f25c-4edd-8fa8-2163270ae23d'::uuid,'626','995',3927,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('09e9672b-7322-4f9b-a1ef-69b7db1db72b'::uuid,'626','996',3927,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('23ccb4c9-450e-48c3-8477-8027091418c0'::uuid,'626','998',3085,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b191cbbe-19a5-4e94-bfbc-f39cba25a996'::uuid,'626','999',2862,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d6310fcf-363f-4405-bee6-25f7c0a5345a'::uuid,'627','995',3931,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('82a09106-2dbe-4458-8aa4-5caff133dd33'::uuid,'627','996',3931,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ff8c459c-02d2-45c4-94bd-72231bb55f19'::uuid,'627','998',3089,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c31db31d-5185-4fd6-8116-c9ba93f6851a'::uuid,'627','999',2867,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('70fa3f48-e552-4c08-9814-3cae56ed39ca'::uuid,'628','995',4075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('59db1a4a-058e-44b2-8080-6570d0de38a3'::uuid,'628','996',4075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('53bc2164-eea9-4752-a117-d21f77155076'::uuid,'628','998',3234,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2365bd9e-94c4-43b7-9ee3-5ab2f95e0627'::uuid,'628','999',3011,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6f834141-ed6a-4a10-9b64-c9406930dce4'::uuid,'629','998',3020,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fcf69349-d948-46ec-849f-40e1329015f9'::uuid,'629','999',3020,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4773cc1f-6bad-4530-811f-c8cbbc5cd868'::uuid,'630','995',3994,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5cf87413-4e71-4e7b-b646-c57f380a97dd'::uuid,'630','996',3994,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b396a991-2064-4ee5-be1a-acbfc7653863'::uuid,'630','997',3601,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('041be5b6-9aa3-4404-8e7a-bf7916acc3fa'::uuid,'630','998',3152,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('83da839b-9b3c-464e-a81e-c0e56d15bac4'::uuid,'630','999',2930,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8646eaa0-d0a8-44c6-a0f7-c117c7861061'::uuid,'631','998',2892,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('ea921a9f-06dc-4b46-940d-73cbf0ce574f'::uuid,'631','999',2892,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('127928d5-92a6-45e7-95b1-6754671e6111'::uuid,'633','998',2836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7ab003ee-3b2a-477b-84d6-49dd125f9393'::uuid,'633','999',2836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e528be4c-2110-48da-9120-8e1dd52b0009'::uuid,'634','998',3032,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3875b8fe-e20f-411d-a832-9314cd7120ed'::uuid,'634','999',2809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('56d1e786-40d7-47e3-ab24-bfa3c0a33308'::uuid,'635','995',3828,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3f34a692-0500-4b10-a2a6-cd434a4a93dd'::uuid,'635','996',3828,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d5a70347-4685-4e50-adb6-37f2e7d91526'::uuid,'635','998',2987,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6c5a84bc-d037-4477-9f91-756b1c6ab794'::uuid,'635','999',2764,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('48f45851-aea8-4913-a991-df3d971ac991'::uuid,'636','995',4075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('9071a24b-f6d3-49a8-b062-e0038a0428b5'::uuid,'636','996',4075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a0086ae4-4225-422d-b1a4-6da9f79de1fd'::uuid,'636','997',3817,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8eeecac7-d72d-4e2a-906e-b4abd580ef9b'::uuid,'636','998',3233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('19b969e1-ce50-4659-b4f6-893e406ff8c8'::uuid,'636','999',3010,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ce9381c5-2384-4550-9f6e-569c2a192a8a'::uuid,'637','995',4083,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('205a35bd-178b-42a8-a01a-2803bcbe3f1e'::uuid,'637','996',4083,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('db120b5f-4625-40a5-b6bd-b34da5920b22'::uuid,'637','998',3241,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1b7ad21d-09a6-482f-aa86-294ab98063e8'::uuid,'637','999',3018,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b64aa8cf-8fcb-4433-931d-9a272e6688f8'::uuid,'638','998',3311,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2fe50ea5-69d5-4de2-a5f6-24c2a1006049'::uuid,'638','999',3053,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('b4fc9e3a-0dc9-4a13-a139-93c0085bd5ee'::uuid,'639','998',3019,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a3fdf37c-3386-4c99-87ce-76645d44c5f6'::uuid,'639','999',3019,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8a262ad5-ddb6-4e9e-9a0f-1830505f9272'::uuid,'640','995',3805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bf03d6f4-3760-42d0-8ea1-b393f34e9486'::uuid,'640','996',3805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('33db773e-bcdd-4f04-89b2-df2828d16319'::uuid,'640','998',2964,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a53f9c86-be83-462b-bf45-b37b2a27ee98'::uuid,'640','999',2741,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('97761497-a131-4934-a08d-634895c2ed2e'::uuid,'641','995',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('eefdf64f-7b97-4838-bd70-631843b0cd47'::uuid,'641','996',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5991bbe3-a14c-406a-a03e-4488853b0492'::uuid,'641','998',2942,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('59300cc1-80e0-489b-850b-329f39817668'::uuid,'641','999',2719,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('fecf1f7f-1eff-419a-811b-dea9bac54967'::uuid,'644','998',2887,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ca93fb41-62b3-42db-980f-607990efb09b'::uuid,'644','999',2629,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2030bed4-a451-46cf-bc11-9b1206033b06'::uuid,'645','998',2633,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7e3fad0b-cef7-416b-802f-b7ca3863d2ba'::uuid,'645','999',2633,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6cef11a7-6466-4821-ab70-876dadfc7617'::uuid,'646','995',3802,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('23c52a87-0d7f-455e-8513-c6d8c60802a8'::uuid,'646','996',3802,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b4af1614-7012-48e2-82c3-87ba4b298ff7'::uuid,'646','997',3545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6b100881-e6a3-4f99-bbdd-5713acd7e608'::uuid,'646','998',2960,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7bdcbbd0-e171-4596-ba1c-c49aa9a3fb2d'::uuid,'646','999',2738,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d188b8dc-6230-4816-88b3-4dea75f8ea02'::uuid,'647','995',3850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('8a7fc1ea-b770-4470-9ce8-05ce69a1f4bb'::uuid,'647','996',3850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1808eb5e-443e-4ece-b2d9-fd540341375e'::uuid,'647','997',3593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('838727ab-fd79-468b-81d6-12a419c461db'::uuid,'647','998',3008,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fd3905b1-c1a1-4f2d-bac9-0ae0ff3be177'::uuid,'647','999',2786,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('00045660-9ba6-4ec7-83a3-51792c3b5391'::uuid,'648','998',3111,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6b1e691f-4eea-4591-a2eb-e176448b51b4'::uuid,'648','999',2888,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('901285f8-9473-4121-afde-d2830fb500cd'::uuid,'649','995',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9241ce99-aeac-47b5-8537-1a9fb1bb8674'::uuid,'649','996',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a8853c2d-c536-40e8-aabc-c29a92cb511b'::uuid,'649','998',2942,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d3962b54-f414-4f24-8925-2542ed43dd66'::uuid,'649','999',2719,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('f045f85e-8861-410d-b514-8ee96f97ea85'::uuid,'650','995',3934,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('185b45bc-c9fa-4f51-bf12-36698c4da9ec'::uuid,'650','996',3934,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('79094362-7f66-436e-86d7-9eb5f9c48692'::uuid,'650','998',3093,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0cce7911-a1c6-4eef-b225-7f6839d6b2da'::uuid,'650','999',2870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f15ef513-f9e0-4576-9e48-633e99350ff5'::uuid,'651','995',3934,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ce923100-6a30-47ea-a1dc-c935fce3ed09'::uuid,'651','996',3934,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('81dd53c1-fa4e-44c3-9128-7fc1b76ed1e5'::uuid,'651','998',3093,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('26b67ccb-f8ef-42b8-9d55-4b5ab45d9364'::uuid,'651','999',2870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('47bba21c-d563-437e-8242-476ff5a33db4'::uuid,'652','998',3041,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2cc8d262-64c8-4666-992f-3b55d39972d0'::uuid,'652','999',2819,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('70fb57ad-b050-4143-864a-0185585b4ef5'::uuid,'653','998',3033,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e430efc7-905c-417c-b828-5e3d136552a6'::uuid,'653','999',2775,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('93aa5322-7e64-45ce-8a59-c5f3c383742b'::uuid,'654','998',3189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('53e12b3a-2d76-44a4-8ffb-e89e2b342176'::uuid,'654','999',2967,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d706e46c-be40-471c-beab-8383e8d264b5'::uuid,'655','998',3189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2114cf20-cf17-4edb-a6ea-6a8ffba14aec'::uuid,'655','999',2967,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('88352316-b152-44f5-9f56-eb851ad74e1a'::uuid,'656','998',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f0985853-0971-40a6-a456-b4f20501d535'::uuid,'656','999',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a3bdc9b9-c57d-4602-bd69-aad5fdbfc6bb'::uuid,'657','998',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8f82cba4-3a53-4c42-91d3-ced56e23d19e'::uuid,'657','999',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('3523d042-8593-4c83-88e1-2ecb4ff1e9cf'::uuid,'658','998',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dcdc672f-2f04-41ab-a7a4-cf7454b7c787'::uuid,'658','999',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e04375f0-7cff-4303-a2a5-68740c611b6c'::uuid,'660','998',2951,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bbe9eaca-37be-4776-b75b-127c539ffb5c'::uuid,'660','999',2728,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c6f3343c-23eb-4063-b88b-70d37fdfc6c4'::uuid,'661','995',3784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('efdb5ed7-2b0f-4682-96a1-6cd90cac24de'::uuid,'661','996',3784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ba476972-2006-400a-9f49-87ea025d7676'::uuid,'661','998',2943,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1fc9c033-50ea-4e46-99be-4b86cb2084cf'::uuid,'661','999',2720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c9686765-c0c1-40c9-a7a5-ec2db079bf82'::uuid,'662','995',3784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e7673477-ef45-46a8-9841-9cb59d0d5fbe'::uuid,'662','996',3784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('0bc9de2f-f111-41ab-ae7c-5d6c3f161f42'::uuid,'662','998',2943,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a4c93b75-1f5d-4008-b3b4-a18d0130f477'::uuid,'662','999',2720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('75207433-0fa4-452c-af96-492479925e41'::uuid,'664','998',2658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('048dc895-c7b2-419c-8cbf-d48ff2c968ce'::uuid,'664','999',2658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8726ba13-9f00-45d0-9d14-b35d7dd1a81f'::uuid,'665','998',2658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('eceb2c19-a80e-41b3-a997-4e651f682e09'::uuid,'665','999',2658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ee5112fb-93db-45c4-88a1-5c614d8c55e2'::uuid,'666','998',2666,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d30af589-7c26-4175-9274-92dd9d4bd135'::uuid,'666','999',2666,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('aa97d875-2448-4856-825d-f66a4742e6d3'::uuid,'667','995',3877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('90f53d3d-3022-4637-9b94-a2874ba79996'::uuid,'667','996',3877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('b11b5850-23aa-4321-96cb-c86086d3b1a0'::uuid,'667','997',3620,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('574d460d-5b90-464d-b25b-e50bca204a5c'::uuid,'667','998',3035,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fe205168-41f4-491f-8c24-e008b7f51e27'::uuid,'667','999',2813,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('69073106-748f-48d2-a77f-6c2ee06aff0a'::uuid,'668','998',2715,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4d2580fe-de51-4096-ad75-f7da3b487c57'::uuid,'668','999',2715,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f01799ec-62d8-4d9a-bdc1-6ee03cc5ae17'::uuid,'669','995',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c69d9564-9aee-43f2-9c01-6bf9d24e01ed'::uuid,'669','996',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1d83c828-7da9-4c79-944c-e954cfb8532c'::uuid,'669','997',3420,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6d4e1308-7c98-4fd2-846b-8c00f52f6f49'::uuid,'669','998',2835,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('54fec7aa-27a5-4403-92c0-bd0cf6a7763e'::uuid,'669','999',2613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('6c85d235-21c5-4ffd-9f0c-769c3e08804f'::uuid,'670','998',2757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f20d444c-27c9-4095-bca6-34064ebd56cb'::uuid,'670','999',2757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f2200909-ffda-4120-b37a-f291f30d464f'::uuid,'671','998',2757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4c5a0f64-6881-4c32-9950-79ecf9bbd9c4'::uuid,'671','999',2757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1e913d3d-1ac3-4755-83d4-8eab37458956'::uuid,'672','998',2734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c6b341fb-b35e-4487-8731-b686764f622c'::uuid,'672','999',2734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9710bab0-f869-4414-b99c-37a3bcd3365d'::uuid,'673','995',3901,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6894b7f7-d298-4bec-84f0-79558241ae82'::uuid,'673','996',3901,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c904fa88-3a9b-4f69-a548-5d5cc0589d56'::uuid,'673','998',3059,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cd77e2d8-251a-46c8-b30a-fa491c67d756'::uuid,'673','999',2837,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('06732ddb-6b1d-4901-99b5-a024f741703b'::uuid,'674','998',2903,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4f308c92-a5e4-47fd-9dd1-ef63660e3d80'::uuid,'674','999',2645,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a44dae0d-5890-494a-848e-e296f0f6e786'::uuid,'675','995',3757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8bbdf04d-f1d3-4ed3-9ad4-d0ff8c76bc7d'::uuid,'675','996',3757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d74467b7-3894-46ea-9e73-0e832e1dee21'::uuid,'675','998',2915,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('aac8cffa-860f-4d1c-8574-32c59d095550'::uuid,'675','999',2693,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e9a4f213-13f7-48cf-b2ab-c08e4054d34f'::uuid,'676','998',2560,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('85fcb517-4187-4c4f-9826-47920d486013'::uuid,'676','999',2560,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('31cae2d9-cfe2-427d-b768-a22cb97cf58b'::uuid,'677','995',3657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cff5bdaf-3cba-47fc-858e-45201d20ffcd'::uuid,'677','996',3657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('ce258b4e-f403-40d6-b4e5-0fd1a1ce0210'::uuid,'677','997',3400,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('86ab2387-7b3f-4da0-8916-9fbcf85b1bbe'::uuid,'677','998',2806,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2e445bae-40e5-4133-ae16-d54ddf7f6925'::uuid,'677','999',2584,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c55d290c-47ae-4b8e-b7e3-01ca08e2a964'::uuid,'678','995',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6dfc1f77-2452-43ac-a630-e69932254853'::uuid,'678','996',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4515022f-0fe6-4978-ab74-843208dd1ed9'::uuid,'678','998',2911,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d2770a1c-3619-4b33-b8d6-bac59cce9c66'::uuid,'678','999',2689,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c985c0da-f8ed-412b-84f7-08a6c414969f'::uuid,'679','995',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b2859e7e-8015-4b54-bf22-38274628035d'::uuid,'679','996',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fdea4026-ff19-4d37-9db1-d3739a37cb99'::uuid,'679','998',2957,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('99c3c500-49f2-4fc9-90b7-9a0f5b71ef45'::uuid,'679','999',2735,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('00889718-aa74-43e1-8f63-30b0104dc994'::uuid,'680','995',3581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2e1b895a-09a1-493f-8f98-53668599dfef'::uuid,'680','996',3581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3db1b6d6-149e-4425-80f2-aba96babf25f'::uuid,'680','997',3324,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b4be244d-fc06-47b4-9658-77bfe43b4907'::uuid,'680','998',2740,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('653b6142-8bd7-4032-9b7d-18e00ac57554'::uuid,'680','999',2517,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1cde235b-df7e-49ee-b470-db4f74f6c1b5'::uuid,'681','998',2764,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('99f243d9-9f03-43c2-a7a9-c083b13fd184'::uuid,'681','999',2541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('edd43b75-d00c-4e2c-bb1b-98d5012e82fe'::uuid,'683','998',2549,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3d52a522-09ad-4792-b50e-54a07c61e36b'::uuid,'683','999',2549,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('b9e38f32-7f4e-490a-8e97-10094257edeb'::uuid,'684','998',2549,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d77465f8-b5fd-4459-a113-28e30715fdc7'::uuid,'684','999',2549,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8da5081b-c66c-41f2-b086-1a259ae19556'::uuid,'685','998',2792,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('96d39bca-14dc-4511-849c-719497a5302d'::uuid,'685','999',2569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('211d583d-3c7b-48ad-aa43-431d8dd29673'::uuid,'686','995',3557,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('683d12f4-6311-4e25-b1be-3be1edd2fe15'::uuid,'686','996',3557,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b0f3bff0-882d-4cfb-b437-afdca47dcb4b'::uuid,'686','998',2716,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6d7cb43f-5160-4fa3-9d48-2d1a91a36eda'::uuid,'686','999',2493,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('747f6e3d-d5c6-4c19-9fe3-fd50b1eda9af'::uuid,'687','998',2666,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0984fe2e-f20a-42d9-8aaf-780ae97776af'::uuid,'687','999',2408,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('50e27e3f-3288-4ebc-9f78-74b4b919d82f'::uuid,'688','998',2705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('54055077-ea56-4513-a7e8-0d54a4efe36c'::uuid,'688','999',2482,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('15dbe8db-43e3-43b2-a2f9-0e14119dfe82'::uuid,'689','998',2756,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5f14c3c6-3106-4b8b-ab69-6b6e9738863a'::uuid,'689','999',2533,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b5171ae0-2ebf-4d92-b709-6dba98faaeb2'::uuid,'690','998',2735,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c614c9df-8258-4f08-b3c3-4ffa47ad7241'::uuid,'690','999',2512,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6dc55e66-6e1d-47d8-970c-81a497056512'::uuid,'691','998',2404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e6ba8cd4-772b-4204-96b9-8d87cc9a6a50'::uuid,'691','999',2404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('43da48ed-7c3c-415b-992b-532c860ac01d'::uuid,'692','998',2303,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f95eb2eb-aca2-4c8a-acfc-66d029e03dcf'::uuid,'692','999',2303,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('c535ba5e-bc9f-48a7-af2b-f8e926fb70da'::uuid,'693','995',3388,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('65693017-03d2-4bcf-9013-6ea9b5206581'::uuid,'693','996',3388,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1d5f862a-c505-4a27-b458-36478fab9c13'::uuid,'693','997',3130,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a1ebd89b-c187-42c4-9ab3-96fddd8b0a2d'::uuid,'693','998',2546,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e762fadf-2d9f-44f6-8f5c-c94d2219993f'::uuid,'693','999',2323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a0a1bc67-8aa5-404e-afa0-294dde97d513'::uuid,'700','998',3748,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3fa34098-93a4-45f8-abb7-bc35864e8904'::uuid,'700','999',3526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6da21701-37fd-47a4-9e6f-15dd0a64f906'::uuid,'701','998',3748,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('54edea52-fbb9-4edd-8f3f-9720e8e6cde6'::uuid,'701','999',3526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bafe41c5-e4f9-410e-9602-0c67544d6107'::uuid,'703','998',3492,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('45085ad8-f866-490a-8627-1e135a72542c'::uuid,'703','999',3492,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5d7a271d-f991-4fba-b382-aec7176d297d'::uuid,'704','995',4537,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dd4029af-193e-4269-bf23-88164ba29cfa'::uuid,'704','996',4537,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('29b0cfde-5915-4280-8112-1b40726ef57a'::uuid,'704','998',3695,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5730f499-eb35-43cc-b037-b10147ad2b07'::uuid,'704','999',3472,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2fbb97cd-73bf-453c-b993-140b8ab0453b'::uuid,'705','995',4510,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cbcd53e5-3466-4c57-a1c5-659f2080ab2b'::uuid,'705','996',4510,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2e4a536f-8cc4-49ce-a2d3-76c67f062dda'::uuid,'705','997',4117,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('407d8bbd-5e81-4bf3-ba5e-dc404ce9de5b'::uuid,'705','998',3668,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('99c21a1d-cf80-4702-8bbc-e1cd57732a3e'::uuid,'705','999',3446,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('12755424-33e4-45ec-b87a-88f6536bdf9f'::uuid,'706','998',3667,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2f2f7390-6a22-4715-8eac-add689cfd69c'::uuid,'706','999',3409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a22cbe7e-acbe-47db-92b3-d5c8a973afb6'::uuid,'707','995',4526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('72a2f0da-b12f-47d2-9b41-cda82fce1af0'::uuid,'707','996',4526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4a6afc28-e046-4ebd-b409-62edd673d160'::uuid,'707','997',4268,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('94fad128-1371-4472-8be3-f53972840835'::uuid,'707','998',3684,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('63250df3-dc03-4a4b-a460-ad6dd4cbd390'::uuid,'707','999',3461,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('21b3b2d7-0597-48d4-8d58-a916882c2213'::uuid,'708','995',4526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('82f266e3-0cb4-4ec4-831b-1eb97cf41655'::uuid,'708','996',4526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d3958497-87aa-4172-b14a-26952fa3c4ca'::uuid,'708','997',4268,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('45969e6c-b521-4893-b383-e8d8298d3812'::uuid,'708','998',3684,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d83b2d9e-c470-4684-a9fa-dad81ad99148'::uuid,'708','999',3461,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a9507806-7ef7-4894-a704-22123578d681'::uuid,'710','998',3543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6bbb7570-2e4b-4776-8c71-abf28c0a8cbb'::uuid,'710','999',3285,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a11d5b31-f9c4-4137-9309-091077a71abe'::uuid,'711','998',3480,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('be4d2511-5fb6-4865-b3f9-69dc19b632d2'::uuid,'711','999',3222,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c6425321-8c65-45ce-a8a7-a98d614dcc60'::uuid,'712','998',3513,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c8e21a26-976a-4c66-bf43-be183b8cf48d'::uuid,'712','999',3255,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('61072550-1880-4e79-b38d-c69dca93faf4'::uuid,'713','995',4441,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('537ddb94-8eaa-45db-9386-fb1be935956b'::uuid,'713','996',4441,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('59cea103-002f-4870-b297-389e12d72e7d'::uuid,'713','998',3599,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('43b722e1-c70b-4dfb-baeb-ca404abec37f'::uuid,'713','999',3376,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d7542f59-b9a6-47d1-9b4b-5f4321cd6550'::uuid,'714','998',3558,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4e8b4b8b-40b8-40f6-a478-4da958c71fb9'::uuid,'714','999',3335,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bff1b2c1-2e59-446a-8258-0bf1e74aa2d5'::uuid,'716','998',3419,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('68c25cea-8787-4e09-a214-23000d196368'::uuid,'716','999',3196,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c1d44784-c646-4dea-a1ac-b0a0a4ed6207'::uuid,'717','995',4265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0281bf2a-a9f7-43f5-b81b-d2bb2515c654'::uuid,'717','996',4265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('93deaca2-01b3-4cec-91e7-97bc640847e8'::uuid,'717','997',4008,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8ef106d0-a0d4-4223-8433-e893677bd1d7'::uuid,'717','998',3424,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('11bdd44a-7948-4dc3-abdb-a8668b95e6e3'::uuid,'717','999',3201,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2215da4d-d69e-4b04-9247-0678b61d8e52'::uuid,'718','995',4248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dcd33adb-7063-488c-9d94-4ad4322ec071'::uuid,'718','996',4248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('66a0fc1a-581d-4baf-809e-787dfbaa5eb8'::uuid,'718','998',3407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7e674b17-887f-489a-a84f-a25e707ac6cf'::uuid,'718','999',3184,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e9e24086-1e6a-49c0-916c-10ebf010b02f'::uuid,'719','995',4184,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d3b84ed9-f79e-423e-a69d-909e1a002355'::uuid,'719','996',4184,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('146e3a1e-ccff-4116-805a-9a6fb83880b1'::uuid,'719','998',3342,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('07033998-7b75-4699-ac0d-b32c87bf9513'::uuid,'719','999',3120,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('05fbc079-d809-4618-8346-537e1e2b9350'::uuid,'720','998',3322,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('52a8c415-4e3c-4626-b663-740d5b4d3508'::uuid,'720','999',3064,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('14f429af-e365-400e-b46b-91cb72bac6cb'::uuid,'721','998',3322,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('91e2484d-f474-47e9-b3e0-f95aab65aaf4'::uuid,'721','999',3064,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d4fd1c83-9c8f-44fd-8636-0b260a1c4589'::uuid,'722','998',3327,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3458017e-16f2-4132-b8ec-1acb88a66627'::uuid,'722','999',3105,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ac1f5eeb-11a9-45d2-9706-4089e56cab85'::uuid,'723','995',4228,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('53de671a-8ef3-42d9-91f3-5aaf39f61439'::uuid,'723','996',4228,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('243f3007-4b11-4ad9-9013-e846445d47ce'::uuid,'723','998',3386,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ba0e7443-502f-4690-b407-b12043b717f7'::uuid,'723','999',3164,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('36fa9d09-44a2-4015-8e6d-80adbf34bb67'::uuid,'724','995',4145,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('fb122669-b374-4294-a643-94400598d2dd'::uuid,'724','996',4145,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8e426c54-b960-45c6-a7f4-80770e503b05'::uuid,'724','998',3303,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('be86232a-a3e3-4d3a-86ca-13bf295566ad'::uuid,'724','999',3080,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9781138f-ab7b-4364-b604-2a18aa143d52'::uuid,'725','995',4107,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6e813686-c4b6-4d5f-a9d5-a598fa15992d'::uuid,'725','996',4107,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('228fedd3-c0b1-4bb8-b3b6-3dadf308c60f'::uuid,'725','997',3850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1ac5639e-d30e-4953-97f1-b56c45de43e8'::uuid,'725','998',3265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e058c9cd-aafe-4cd8-b244-fa58c3c6ee95'::uuid,'725','999',3043,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('56cd9e03-efe3-4941-884a-74b60f18b3a3'::uuid,'726','995',4049,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cfc4f1f3-550a-4e87-ad9f-33f851933f04'::uuid,'726','996',4049,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('bfa16fc2-d4e8-427d-8a87-9b71310368ad'::uuid,'726','998',3207,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a3e75e1f-f88f-42a8-8836-6b1ebf78a1a4'::uuid,'726','999',2985,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c1a5af9c-c6f2-4348-989e-6ab860b4ee64'::uuid,'727','995',4016,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5124fe80-e839-4020-b853-16435a3f91bb'::uuid,'727','996',4016,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e3b51211-85f6-4aeb-b74d-4a0a0e7f24bb'::uuid,'727','998',3175,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e2a8a643-e0f1-4b78-b23f-9b778867332e'::uuid,'727','999',2952,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('77e4dbda-b42b-4ebd-bd4d-7e51cd1c7c53'::uuid,'728','995',4093,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9ae35d45-f18b-4f1f-b11e-20c3a4ca4449'::uuid,'728','996',4093,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e02c1857-5449-482d-9bf7-5be6d06b9257'::uuid,'728','997',3836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4cac20f0-d294-4f10-bb3f-7390ac5e966d'::uuid,'728','998',3251,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('54095aad-6822-411c-8b8a-22c6de7d8cb3'::uuid,'728','999',3029,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3c1b60cc-5f6f-46c9-820b-9fa2836a300b'::uuid,'729','995',4091,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('df8707b0-4c71-41ac-a98e-7c4f104ab588'::uuid,'729','996',4091,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ec19f8fa-7882-478e-b9c5-672bbaf56a28'::uuid,'729','997',3833,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('79db6a0b-f041-4fb4-9c1b-17a7bb645df8'::uuid,'729','998',3249,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('51f17190-4f04-4073-b732-b5fd12400162'::uuid,'729','999',3026,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('84042ce4-9935-4171-b81a-a466995ba8d4'::uuid,'730','998',3165,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f3816b9e-ea7c-4129-b2e2-cadb591ea9ea'::uuid,'730','999',2943,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('10706464-443b-44c0-95ca-9397e36090ce'::uuid,'731','998',3149,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c9eb8623-3eda-47b9-a495-2b5c7fa33a0b'::uuid,'731','999',2927,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('d6ea9b02-f88c-49e2-9a04-cc0b3fc07baf'::uuid,'733','995',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('370d3a1a-3c96-44c0-8b6b-b36f191a5621'::uuid,'733','996',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d7e4f21f-4db0-4c6a-95f9-ccc0d7e034c7'::uuid,'733','997',4113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('56048c62-b4d9-42e6-8dc4-47218b1bfad7'::uuid,'733','998',3529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('213e8a6a-a2ae-4391-9c2e-ec0a123f5281'::uuid,'733','999',3306,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('051c5a45-6e30-45e9-9fb6-e087374eeb2f'::uuid,'734','995',4088,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a71ccff1-13d5-439f-94f0-b89749805a78'::uuid,'734','996',4088,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('33dd5b04-90d3-4083-b8ad-cab962cff067'::uuid,'734','997',3830,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a558a4a3-ac8c-4039-a2d4-7fda24039114'::uuid,'734','998',3246,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('618ac59a-d227-484c-8313-82eb93b01868'::uuid,'734','999',3023,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('9bff27a1-abf4-4f7e-805b-2989b8a33755'::uuid,'735','998',2920,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4aae6242-dfb1-49f1-bd1a-18ec5348c981'::uuid,'735','999',2920,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b13aa411-6f1b-46ce-a930-917ad224dc9c'::uuid,'736','995',3937,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('92f1f99f-6528-44f9-a043-57617c467b07'::uuid,'736','996',3937,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d6dcd39a-1abd-47cd-adf2-e7343b3f4daf'::uuid,'736','998',3096,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3b179f06-47b3-4bbf-b418-e7eab14bc7cd'::uuid,'736','999',2873,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f5c69656-6d1d-4d88-a0bf-b0b671d000d6'::uuid,'737','995',3938,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('afe0cb0e-cd7b-4dd6-82ef-9d3057c2f086'::uuid,'737','996',3938,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1cec8e65-b10b-4cf6-9641-56166529cf66'::uuid,'737','997',3545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0eeebcfd-9f41-477a-9510-e3d2bafc2e85'::uuid,'737','998',3096,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('a24b5cd4-4243-4460-a471-01879b341b52'::uuid,'737','999',2874,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bbe6e422-9b1e-4c7f-82a7-f4774d5c6894'::uuid,'738','998',2778,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a4428f34-50e8-4ee4-800c-97ef26543bcc'::uuid,'738','999',2778,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0267434e-a055-4f66-b47c-6fc6c902fad5'::uuid,'739','995',3840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('56b9ad03-7650-42f2-8c29-4f411a6a1066'::uuid,'739','996',3840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1a760300-54b9-4e43-8b86-b80f676c5402'::uuid,'739','998',2988,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('16c0cb97-b8c0-46b9-9a99-d71dd9a02663'::uuid,'739','999',2765,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c6a81126-d91d-453c-b0f9-44b34f4a12cf'::uuid,'740','995',3969,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1623e39f-52ac-45c3-9ce5-fbc52d05b8bc'::uuid,'740','996',3969,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a539d535-1e6c-4cb1-9659-752795e0b674'::uuid,'740','998',3127,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('04ef9894-f0c9-455f-85de-f9bc33298bde'::uuid,'740','999',2905,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f3433ed7-a0e4-4527-b619-6e1571ceeccb'::uuid,'741','998',2887,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e8cc16d8-0b67-4947-818b-5b38e5983e41'::uuid,'741','999',2887,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4d9e44ca-06de-42ab-918b-6994d982b5e3'::uuid,'743','998',2870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('aaa4b2e6-bce7-4733-8fb4-1108bf2dec3b'::uuid,'743','999',2870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c16ea93a-b2e4-473c-af26-980e504108bf'::uuid,'744','998',3192,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c71d0081-6142-42fa-b71f-d99f33ec3510'::uuid,'744','999',2969,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('55f47dec-8613-44b3-8cf1-98bbd0be5903'::uuid,'745','995',4150,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('86eb7418-abaa-46e9-9e95-75eb88329b0c'::uuid,'745','996',4150,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('45693e64-fbf2-423f-88aa-a4df8c6cbfa2'::uuid,'745','997',3893,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('4ff7fbdb-6f17-4b37-b684-b5ee1f3b5068'::uuid,'745','998',3308,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e2375acc-4bbb-4372-a4c2-37dcb3695af1'::uuid,'745','999',3086,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9561186e-2378-47b3-94c5-900a2ef3330a'::uuid,'746','998',3071,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9bae5b9e-d5ed-4c86-9092-a89c4ced986f'::uuid,'746','999',2814,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3cd1363f-49ac-4105-bde3-f7f0f13e71a5'::uuid,'747','995',4155,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7300e595-eb53-4d39-8453-13d18742eb03'::uuid,'747','996',4155,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('939e7de0-b646-4da6-a88d-46e247befaad'::uuid,'747','998',3313,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f1896cc1-4d51-47b3-a84c-a37d616c0cf0'::uuid,'747','999',3090,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ff308d0d-79fb-4006-a23b-ccfd66a071c7'::uuid,'748','998',3191,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('13712051-7a49-4b04-aa95-9681159528aa'::uuid,'748','999',2933,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('910d8d5a-223c-44ca-b1bb-53809836c070'::uuid,'749','998',3260,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f1422f61-b2f3-4ed8-af2a-3a23d462b329'::uuid,'749','999',3002,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8f60a0a2-755b-4647-817b-1840092fbd39'::uuid,'750','998',3345,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e3f07e3b-550c-4566-a8b0-1af8ddb6351b'::uuid,'750','999',3122,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('544eb236-ddd5-4827-bf10-fe5ba007c520'::uuid,'751','995',4229,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3d25486e-7862-4a3a-887a-79159706fd94'::uuid,'751','996',4229,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e722204e-1529-4527-9d01-720d8879959e'::uuid,'751','998',3387,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0c423c86-f778-457f-bcb1-00f2c2e25e6e'::uuid,'751','999',3165,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('efcf4216-aee5-4ebd-a01c-9859876d98fe'::uuid,'752','995',4194,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('200fbb87-ab82-4aba-a691-da7d6f64a1b7'::uuid,'752','996',4194,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('91fb2392-7674-4218-ae2c-0727a721e3e3'::uuid,'752','997',3801,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('974f049c-2b4a-4bb7-8004-559354dca7bb'::uuid,'752','998',3353,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('968cbf43-7ba9-406b-91db-aabe37e47479'::uuid,'752','999',3130,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f401d56d-1a89-4a21-9535-2dee5fb7365c'::uuid,'753','995',4194,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('da0a54e2-b141-4691-86f7-fc9518846103'::uuid,'753','996',4194,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dd7be9c3-b28a-423a-96f1-fa357cd9b6cd'::uuid,'753','997',3801,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('01326b0b-b9ee-41ea-a8ad-7d92be2d241a'::uuid,'753','998',3353,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('16d27e40-e4f5-4e26-a1d0-b01c448f734d'::uuid,'753','999',3130,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d4e7a1c1-fbc2-471c-85a4-8e8cbbf4a40f'::uuid,'754','995',4202,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fc9c01e4-bae9-4b34-832c-b008f0ddb165'::uuid,'754','996',4202,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('f573ed76-1191-4ac6-bc39-2497b4428ef8'::uuid,'754','997',3945,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fbd7d290-4ede-4185-8a54-4af89595705d'::uuid,'754','998',3360,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b804d08e-654a-4de2-b960-16e4f7b02df2'::uuid,'754','999',3138,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('41cd7635-bef7-46db-a960-504a8a8dde6c'::uuid,'755','998',3415,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1a500329-b353-4c1f-a140-fc6cc32af0f0'::uuid,'755','999',3192,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4ddfffe4-d7e4-440b-acd5-2a3cf02fce07'::uuid,'756','998',3442,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d094cef2-640a-4727-a7ad-aac7cbe9dcf3'::uuid,'756','999',3220,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8e76ea27-315d-4979-8d82-3f36148de84f'::uuid,'757','998',3182,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6d9966b6-db5c-484c-9621-c2a2a4ef7ac9'::uuid,'757','999',3182,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0dd1403a-2f88-411c-bdb4-89130fcac152'::uuid,'758','995',4337,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('9468d760-2145-4a66-8999-8b03ba6be44d'::uuid,'758','996',4337,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f66f631b-34e9-42be-a6ea-1ed2b82fbaf3'::uuid,'758','997',3944,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3630b5f6-6148-4cef-9ff9-0f700f16383a'::uuid,'758','998',3496,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('759abcf2-36ab-4ee1-bc24-d930b5702ba8'::uuid,'758','999',3273,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f2f33ce9-a75c-4f52-8d6a-b0eacdc45328'::uuid,'759','998',3526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('160d0834-8138-4083-a5c4-b6fac0ae8119'::uuid,'759','999',3268,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7c24190f-7d6f-44d2-9262-400174e67937'::uuid,'760','998',3102,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('13c4971a-6212-4877-9a9c-899429bab619'::uuid,'760','999',3102,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('93af5b39-b969-407c-9a7e-713f676e5d48'::uuid,'761','995',4189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('292fc7d8-1af8-483d-9ed5-48fd47e3d52b'::uuid,'761','996',4189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('7542cfb3-5c45-4154-b5b6-d02d2ee541af'::uuid,'761','998',3348,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('922e2988-0561-4205-bee6-28152a136897'::uuid,'761','999',3125,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4a3ce0a6-b2e2-4d58-8347-652a89e5bb84'::uuid,'762','998',3042,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cc17424f-3ebb-46f7-a522-59f18d396b8b'::uuid,'762','999',3042,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b310d30d-8cf6-434c-8b04-2fa49cff6520'::uuid,'763','995',4106,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f6700c72-9fa7-4d50-b7db-ce140f9dd247'::uuid,'763','996',4106,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3b100324-4de2-4fe6-933e-aa4ca15d5065'::uuid,'763','997',3849,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('764d91e2-8643-4b35-bd48-76cf5f110015'::uuid,'763','998',3265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5063c60e-e508-4590-8b68-8acadeea2f56'::uuid,'763','999',3042,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('20af318e-e28d-4b8a-a40c-ab337c0556c6'::uuid,'764','995',4185,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('be0347b3-58d5-485f-a42d-07dc58d6eea9'::uuid,'764','996',4185,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('95a833af-916d-4c08-bc5a-506e4144c0d5'::uuid,'764','997',3792,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d6ad669a-7fc8-42a5-b041-b72accea5fbd'::uuid,'764','998',3343,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('be16d5da-dbb3-428a-b592-64621097a869'::uuid,'764','999',3121,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('182b6a8f-0bb7-4fce-b738-00b45f0132fd'::uuid,'765','998',3211,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('da448aa9-1cd1-4969-b763-56e57c680b12'::uuid,'765','999',3211,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('36eafc32-cd17-467d-802b-8b680dbe32fd'::uuid,'766','998',3179,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('799f50af-a252-440f-8c97-9b7c7b06a660'::uuid,'766','999',3179,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c9231b56-277a-43f1-9073-0eab5e5f78e0'::uuid,'767','998',3179,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8fcad0a9-a9c2-4199-8140-cf5b01cd3f72'::uuid,'767','999',3179,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('1fe2c8de-4a52-4329-8d85-7d3152b56983'::uuid,'768','995',4269,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2c78881f-dad8-4a72-8c02-138cb2533cb1'::uuid,'768','996',4269,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f9d31f9d-fce3-4b85-9481-fe37e5349664'::uuid,'768','997',4012,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('58b21591-705f-47ea-8114-c8a9e6dd763c'::uuid,'768','998',3417,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('81cba574-5b67-4223-9705-356e38375f2c'::uuid,'768','999',3194,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0407a9fd-b2b0-48f1-942a-444b3cf28ca6'::uuid,'769','995',4214,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6098941b-0e60-4448-a068-8eb70c904b7d'::uuid,'769','996',4214,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('396a42c5-0350-4c88-af78-b339c869027f'::uuid,'769','997',3956,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8b569e27-a54a-471b-8459-86e6b6ec010d'::uuid,'769','998',3353,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('492cb192-389b-4bc6-9d42-f9720577323f'::uuid,'769','999',3130,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('df57c217-cf89-4c31-8af9-b959c1c4f10e'::uuid,'770','995',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2835c53c-698f-4ca4-b5eb-6b3e55e9a2b4'::uuid,'770','996',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6a64f1d2-7090-48b4-80af-684fce10e22c'::uuid,'770','998',3595,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('793c0303-3195-4c7d-a575-19f8bcf95b4b'::uuid,'770','999',3372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('de42bcc0-cf2e-43ae-adc2-fccc34944435'::uuid,'771','995',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f305afb3-7f70-44ad-97f5-b51cda70b889'::uuid,'771','996',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('739bb0be-8fe4-447d-b89f-4e175889ef7a'::uuid,'771','998',3595,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('17493edc-56b4-4016-a556-5af0bd715b8e'::uuid,'771','999',3372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ba8acaf3-9c7f-4487-8fc4-57f235bf111f'::uuid,'772','995',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('496d56a6-e10f-45cc-acf7-65960f7a5fad'::uuid,'772','996',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('72a05ea9-6d8c-4595-9832-03e3d8379b81'::uuid,'772','998',3595,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1a02ed40-127b-4d05-8ac8-961a0d7e5901'::uuid,'772','999',3372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8b772421-a8be-4e31-bdd3-e527f9f9ca16'::uuid,'773','998',3571,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d5791c1e-11bd-40f0-b2f8-0464272a1fe0'::uuid,'773','999',3314,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('970cc711-43b5-4606-8330-5d742811afea'::uuid,'774','995',4453,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('27083004-d71f-4e75-9765-7667533c30cd'::uuid,'774','996',4453,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8613d847-c804-48c3-a733-263db5312856'::uuid,'774','997',4059,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('848a6ec0-5e4e-4664-8517-0fc3b3029261'::uuid,'774','998',3611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('df2c9835-9220-47f8-ac23-1d91efbce01c'::uuid,'774','999',3388,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2eb2fba0-4481-4746-aa79-df17a9606fa4'::uuid,'775','995',4462,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('c2f96185-04f9-41ce-886d-64964710af6f'::uuid,'775','996',4462,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a285a62e-d874-4862-ab4f-93c4580db3b5'::uuid,'775','997',4205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('058a3af7-3745-4407-a58b-71ddf684800d'::uuid,'775','998',3620,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f1cb01c5-f15f-480e-8b51-c3441e6fbedd'::uuid,'775','999',3398,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a088f7e0-e729-442b-871b-fbcaf2d4d7dd'::uuid,'776','995',4468,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('98ae01ad-c47a-42fe-847c-7762f8b8bb77'::uuid,'776','996',4468,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c46387f1-57cc-441c-a827-552440f62719'::uuid,'776','997',4211,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('843315e4-115d-42da-b257-375c4f5d4c14'::uuid,'776','998',3626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('54b546b8-efaf-4199-8b2d-c90cedd15b1a'::uuid,'776','999',3404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('02eca49c-4c68-437c-b23d-5d3974769c9e'::uuid,'777','995',4468,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('33d44b9f-1829-40df-9b72-194f6143bbe7'::uuid,'777','996',4468,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6d35d116-2b74-4a78-8096-4bb16b8fd5bd'::uuid,'777','997',4211,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('73886e26-3505-4833-aaba-e005efa1cf68'::uuid,'777','998',3626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9cf86ab3-5ddd-47c7-93c8-a4812cb1d65c'::uuid,'777','999',3404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c612cf97-c61e-40e8-be41-90884141c31f'::uuid,'778','995',4356,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8ffbcead-bee9-4838-b385-4fca44c78d44'::uuid,'778','996',4356,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('973ee4ce-bb55-4a19-aaa7-fe612c0babd6'::uuid,'778','997',4099,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('54d568c2-3475-44b8-b588-c518410ea58d'::uuid,'778','998',3514,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ef8190e9-66d3-41d3-be57-c5a6fab8c234'::uuid,'778','999',3292,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a5cec0b7-47bb-4e63-90e9-7ee62ef43342'::uuid,'779','998',3391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('4ef7f537-962d-48f6-af3c-d87aab7d1c42'::uuid,'779','999',3391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dc7f6064-9ab7-491f-951f-92b95308e181'::uuid,'780','995',4439,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e93eb9d0-5b26-4398-9994-d838286e60fe'::uuid,'780','996',4439,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5c8d59d6-c64a-42b3-aaa8-ef4e7acbd76a'::uuid,'780','998',3587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('58deb89b-6ba4-436f-a3b8-3310eda2feba'::uuid,'780','999',3365,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2bfade10-9a6d-43f6-a084-bbe6b091c33c'::uuid,'781','998',3333,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('59ec7892-adb9-4e91-b52f-6303240658b2'::uuid,'781','999',3333,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9468666d-76da-4b97-81b3-2bb320f32b85'::uuid,'782','998',3552,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7930bbd1-4262-4c11-b061-79108c8ee2c7'::uuid,'782','999',3294,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7c766fea-5acd-4105-8bf7-04d31f5c7929'::uuid,'783','995',4529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('48360a60-26bc-4c4d-872a-46437d116887'::uuid,'783','996',4529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1f7209b4-bcee-4251-a5b3-3522e3b0021f'::uuid,'783','997',4272,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e9601125-9d8b-4990-8e2e-523f6ed039f7'::uuid,'783','998',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('40f4e44b-daab-4ff2-a6bc-d710873bb322'::uuid,'783','999',3454,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('65075a29-9ab2-4c81-b4b2-112ead7b8613'::uuid,'784','995',4546,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1b5f3c6b-d2ae-4b38-913e-2b2f3c65fed1'::uuid,'784','996',4546,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e38a6492-4552-4255-bff8-988f3a089beb'::uuid,'784','997',4153,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a39fb2e7-b90a-42e4-8cbb-2fba8dd42c07'::uuid,'784','998',3694,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2392327a-e872-423e-bc2d-5e31ca8e3e3c'::uuid,'784','999',3472,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e734cff5-3ef9-49a4-b5c6-91f589ef4639'::uuid,'785','998',3774,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('f55f7c4c-b9d2-4fd6-a074-0f3ab1b923b3'::uuid,'785','999',3551,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a0b0acb8-794a-4cc7-a75c-12f5818483d6'::uuid,'786','995',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dedab282-0320-4998-b1e4-453590876f87'::uuid,'786','996',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('711d0b3d-32a1-4845-8fe9-bf1899f090fc'::uuid,'786','997',4113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1301ce15-d5b3-42ef-b50c-6e67b45e8914'::uuid,'786','998',3529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('94d438e7-84d6-46d3-aa34-0bf51f9294c5'::uuid,'786','999',3306,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('debbf784-89e5-4189-9a10-dd7153035646'::uuid,'787','995',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1f8cafab-0ee2-4fca-a4a6-3364a3316ee4'::uuid,'787','996',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c13816dd-1949-41ef-8934-fe8b6f0c96b6'::uuid,'787','997',4113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('be9783ac-4a01-4a1b-8d3a-9cdddd9c39e8'::uuid,'787','998',3529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('d80f3c35-5c1e-4926-9c3b-135c0a03ab7e'::uuid,'787','999',3306,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('94fdfd63-53fd-470c-945e-602cd0463d50'::uuid,'788','998',3263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f39c91bc-df64-4eff-b5bf-3c2a9feafaab'::uuid,'788','999',3263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('aea0aae9-0644-4d82-b473-188fc8505b19'::uuid,'789','998',3574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('341a954e-985a-4225-946b-1f6ef0ddd2bf'::uuid,'789','999',3351,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('80aeef72-093b-4a6f-87b4-7bc371ae45cd'::uuid,'790','995',3898,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8e64f15d-1e23-4d4b-aafa-6dd695c69160'::uuid,'790','996',3898,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('45ef0651-c617-4687-b4f4-5166fe80f222'::uuid,'790','997',3641,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7d922574-fdcc-4570-8007-0047a706716e'::uuid,'790','998',3046,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1a7ea09b-a20e-4504-a578-7189c892acd3'::uuid,'790','999',2824,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('3262ae9b-1a6e-433b-8b2d-92d3eab24f91'::uuid,'791','995',3898,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('99bbfea1-5038-4b9f-9853-fd8bf3ca81d0'::uuid,'791','996',3898,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('18c70f17-e71c-4ab4-9b38-e4f611bdf12c'::uuid,'791','997',3641,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('40cf827d-5cdc-433b-9abd-78c9be336311'::uuid,'791','998',3046,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('65d9e55d-278d-4e0f-a36e-7de409084acc'::uuid,'791','999',2824,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('34c5b2dc-9339-4380-8d72-400172179263'::uuid,'792','998',3174,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5ee8a918-51f9-4c39-9b5e-a8e717541edb'::uuid,'792','999',2951,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('103c2dae-2573-4cf0-a9b2-c1d207f6b35b'::uuid,'793','995',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ca80a5c4-74c9-4a9d-a209-85815a35c9ba'::uuid,'793','996',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2b4cd4fc-eb03-4fb0-bce9-0267bd6cf8a9'::uuid,'793','997',3798,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('4a23be17-9112-4143-8d60-aa31b96206fe'::uuid,'793','998',3182,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5ac078c0-2221-4a62-855d-82d55358eabd'::uuid,'793','999',2959,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5ce3e995-03ca-463b-8499-fa715c1d5757'::uuid,'794','998',3166,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('626bd578-2191-4b82-abb2-1a5d9e798e8c'::uuid,'794','999',2943,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5bb6ecda-8830-432b-87c9-2a2ec8fcac29'::uuid,'795','998',3277,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('173dbc5a-e580-49a1-9c66-27233383b73e'::uuid,'795','999',3019,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f61e8ea3-1b8f-4e0c-98ba-ce36c2080236'::uuid,'796','995',4165,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cd8849ae-eb2e-4ef2-890e-f9891027897c'::uuid,'796','996',4165,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a31637fb-a7fc-450e-86a3-08b6c91db07f'::uuid,'796','997',3908,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8586b3bb-a16c-4eeb-9219-f3e32f787152'::uuid,'796','998',3313,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('2d851c79-e243-478a-aba5-a993b146838d'::uuid,'796','999',3091,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('54e58813-9822-47c2-9686-001b5f44cacf'::uuid,'797','998',3249,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('503fd9cf-f7ab-4541-a4a8-29f1ecea2f1b'::uuid,'797','999',3026,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('81d92e1a-ae7d-450c-9bbc-0bc72eaed820'::uuid,'798','998',2975,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('638fa33f-c064-432c-b3ce-091583c16114'::uuid,'798','999',2975,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d6666445-7913-4d39-92b0-5b4dda237f7c'::uuid,'799','995',4111,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('19a97b26-9e55-42be-991a-a6ffac1a5849'::uuid,'799','996',4111,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f32712da-a79e-446a-b458-93f1778561ed'::uuid,'799','997',3718,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fec4602f-8165-4141-a444-b130f732b1d1'::uuid,'799','998',3114,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9fa853da-4d9b-43b7-b459-da13a4cca449'::uuid,'799','999',2891,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('9bf20743-ad4f-45f1-b728-01a0ae51f6be'::uuid,'800','995',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5598f827-84c9-4056-bd50-a488e180e752'::uuid,'800','996',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9951e42c-96dc-4b07-99f9-ff45140668e3'::uuid,'800','997',3091,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5712d751-91dc-4d44-83dd-c55660e26444'::uuid,'800','998',2632,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e6d8b692-3fa1-441c-9b7b-86834b130de5'::uuid,'800','999',2409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('af0154e3-c8bb-43ac-963e-0463ea755433'::uuid,'801','995',3514,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5889d1a2-560a-4885-b53e-dabe65fcc6e6'::uuid,'801','996',3514,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('68c40d72-a33c-4230-ac2f-ae7ec4919474'::uuid,'801','998',2662,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('356d0bd7-6fe7-4534-a3b5-8d0798ffa854'::uuid,'801','999',2439,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('62ca44a3-a540-4b80-856e-5d8428896f20'::uuid,'802','995',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('1e466a53-cb2f-4e9b-ab84-0dec45a1febf'::uuid,'802','996',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d9419d88-32f2-4c50-9b6a-be0bea4e64ea'::uuid,'802','997',3091,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d4c4121d-c40d-47a6-a250-9efca8190a45'::uuid,'802','998',2632,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('739a057c-249c-40e9-8ac4-a817e8420a73'::uuid,'802','999',2409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b1d56db5-907c-4257-9f55-05e582751d9e'::uuid,'803','995',3466,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7a248ef5-8b8a-473e-a5c3-58e16d44779b'::uuid,'803','996',3466,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('368ee8c2-dfd8-4ebf-9734-8426f33e3d1f'::uuid,'803','997',3209,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('89f97248-da28-4302-b020-4a7e0a0918a6'::uuid,'803','998',2614,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6a8c70f2-5ed7-4771-b58b-d42684ebb3fb'::uuid,'803','999',2391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('14ef7610-340c-4f94-b42c-be7522677e42'::uuid,'804','998',2596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('636e3d92-0431-42c0-9d7b-885eb840b02d'::uuid,'804','999',2374,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('11543451-4c2c-432c-bc7c-7e6e5b38c5cd'::uuid,'805','995',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ba3c1b1c-c9b2-4cde-a65b-d1e363c785ec'::uuid,'805','996',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('52626361-2fa4-4e8f-9962-2b1365b08ad6'::uuid,'805','998',2568,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('14a95caf-d36e-462b-91fb-4a40d6e25f15'::uuid,'805','999',2346,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ca0e6ebe-a38f-4be8-98f1-1fb8a16c2f8c'::uuid,'806','995',3438,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('88e925c4-9c86-4bec-adc5-467826c15a0e'::uuid,'806','996',3438,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6ca6afa8-267f-498a-b5d5-bb0d2d689e16'::uuid,'806','998',2586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7fe8f985-93a4-447f-95da-0f427151b2e5'::uuid,'806','999',2364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6123d083-0768-43b0-af8a-9c3fdd69f1fc'::uuid,'807','998',2391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('a108b92b-f6a7-4ccc-a978-588d5d530997'::uuid,'807','999',2391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ff34b9de-4cde-4e00-bf36-2cd2f40bafbe'::uuid,'808','998',2712,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bbed833d-db65-4389-8a22-70292368a8e0'::uuid,'808','999',2489,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7b1237cb-36a4-4bbd-b4a2-7479560532ec'::uuid,'809','995',3555,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0e7f1d3d-ed68-4d94-8431-7db0dbfbd638'::uuid,'809','996',3555,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f2771fcd-28c0-4458-814c-2f025ca7cdf5'::uuid,'809','997',3298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('eea732fd-19d7-42ff-b2ed-44145047b758'::uuid,'809','998',2703,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('383bf30f-40f5-412d-bdc8-95a50d5f1077'::uuid,'809','999',2480,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b6167d04-ae60-4086-a1d7-9d373768e84d'::uuid,'810','998',2807,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('70378cab-228c-4afa-ad7c-dd05118cbdfa'::uuid,'810','999',2585,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('d421b793-c671-467f-8e29-6a3e6e0b2153'::uuid,'811','995',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('247528fc-1e67-40e5-a7c6-3c2802caa37c'::uuid,'811','996',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('33fa5677-2a47-4615-bb62-bf7ba25ee51d'::uuid,'811','997',3284,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('71fc15e3-d7cc-4c29-9422-9c21ca684fa5'::uuid,'811','998',2757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b29c6b26-213f-4f91-b15b-842cd7f11f15'::uuid,'811','999',2534,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4c9556aa-da6f-4961-9961-1b58fde8a42b'::uuid,'812','998',2722,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5fa35c18-af52-48e5-a065-66fac49e6cf3'::uuid,'812','999',2464,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('155f8de7-b2ae-4b0a-9b19-83b07e209899'::uuid,'813','995',3593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fdc13d09-0841-4696-bafd-a95f99b9a98e'::uuid,'813','996',3593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5e174c72-1b11-40f4-81c3-bc680e6255cf'::uuid,'813','997',3200,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('ae7d1a86-446a-4a8f-93ec-dd7ab1b88f45'::uuid,'813','998',2596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('729c99a7-dde4-4e16-9a08-773a6dda94ad'::uuid,'813','999',2373,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4e4c1532-9715-4209-a5b6-2df9f2fa5856'::uuid,'814','998',2592,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3ff15518-5857-4074-902d-485e2013284a'::uuid,'814','999',2370,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3fe48fdd-edfd-485f-8475-5e128ac930e6'::uuid,'815','995',3526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7a0671cd-2f79-46e6-a812-2bacd026b5f5'::uuid,'815','996',3526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('00e4a918-d697-423c-ad9d-7a2f66fd801b'::uuid,'815','998',2531,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9b2ff2af-f648-4146-8cd1-31477f6ab572'::uuid,'815','999',2308,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7bd21e3e-ea6b-45c6-b428-e9f6142d3e71'::uuid,'816','998',2530,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('53ca18b5-10fb-40e5-acc6-202d8c6f795e'::uuid,'816','999',2307,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('bcf4688f-0825-4753-9b19-47733ea77b2b'::uuid,'820','998',2504,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fe126a02-0c27-4bdd-bddc-07e9ae448c09'::uuid,'820','999',2281,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c32d4a4f-0d54-4365-a9e4-7e2cc7ba18d1'::uuid,'821','998',2113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5b9acb11-f79c-44e7-ae98-6532ffdfb711'::uuid,'821','999',1890,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1a381863-3687-42ca-91f2-96f39b5ed2dc'::uuid,'822','998',2461,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d36a66de-58e3-4ee8-b01e-24ca754ba54d'::uuid,'822','999',2238,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('11ef91e0-4709-4062-952d-2615c602a513'::uuid,'823','998',2437,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0e71fe74-de57-4e9f-8c7e-79b8fec47dd3'::uuid,'823','999',2179,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8fc89026-4bb5-4520-90e4-9b431be28b22'::uuid,'824','995',3053,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('64df49a8-a3c9-421c-a47c-952dfe68a30a'::uuid,'824','996',3053,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('2abffb70-419e-4b6e-9af7-4920504606fa'::uuid,'824','997',2660,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8c03d676-dae3-4a55-a414-cea4c1a9b56e'::uuid,'824','998',2201,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3a7efe2e-0b7f-43a7-98b6-30a149f3bd23'::uuid,'824','999',1978,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a3e83014-a5a1-40b4-9572-d24e5dc410eb'::uuid,'825','998',2323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6bd9305c-5dc7-41ed-aaef-3ad81ce4682e'::uuid,'825','999',2065,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('50954769-384e-4676-889b-9f71ef62301c'::uuid,'826','995',3209,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('05f67669-fd93-4130-8795-c719ac4a4968'::uuid,'826','996',3209,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('43913918-5c2f-4cea-9204-958726c2cf2f'::uuid,'826','997',2952,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dd1d5754-27dd-4df2-a708-dc08c5fc5c19'::uuid,'826','998',2357,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2f7f6bd7-54b3-4efe-afd0-878e1872a829'::uuid,'826','999',2135,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('09a71777-88ad-40aa-ba5c-db4aa33f435e'::uuid,'827','998',2341,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6c8d7f2e-20cb-4aa9-a090-380655a20995'::uuid,'827','999',2118,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5ef5ceef-0e63-4827-8a86-bb793e3e180d'::uuid,'828','995',3098,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ee91fdf8-0a69-4e0d-a5b0-168912b8adf1'::uuid,'828','996',3098,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7ff066ba-0a3c-4591-8e04-fa561f5cb030'::uuid,'828','997',2841,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c2f38237-d5f3-476e-bdc5-f5c43b272200'::uuid,'828','998',2246,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b9256019-d088-4bc5-9ec2-fb8d3f9833ff'::uuid,'828','999',2023,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5770ec43-6d25-4417-8551-7f9a8bc61f3c'::uuid,'829','998',2328,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1464a511-b5aa-47c3-bdc1-63e45e343446'::uuid,'829','999',2070,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8f29f8b5-2626-4445-ad1c-455dd5d8c1be'::uuid,'830','995',3126,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('02782516-3e30-4fb5-85a9-46cd88fcc092'::uuid,'830','996',3126,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('07c7b246-e924-42de-a610-949027c91b90'::uuid,'830','998',2180,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('07c16376-2f2c-4b16-92d2-b1fc8cedf2cb'::uuid,'830','999',1957,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c9334e04-b699-4bb4-9338-d1c0dae8be06'::uuid,'831','995',3167,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cc2d180e-a100-40d7-83f9-9836ac3e12db'::uuid,'831','996',3167,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('baf2859e-1983-41d1-93e7-711360b1ebcd'::uuid,'831','997',2774,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('64ad98bd-b74f-4f55-833a-61ce4ad565f2'::uuid,'831','998',2221,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('365c3aa3-a55c-4d76-9400-8c05da56eaec'::uuid,'831','999',1998,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cf8c455e-bb04-484f-8453-1e0713c7b79e'::uuid,'832','995',3062,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7c74bd05-b17c-4887-983c-993f5de37cc2'::uuid,'832','996',3062,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('a537f332-1ac0-476f-ac56-e64e214f4e70'::uuid,'832','997',2805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('83c904cb-cc71-4e7e-85fe-189121e37569'::uuid,'832','998',2103,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('da70f09f-4158-4d3c-9263-927e0f1b7fb3'::uuid,'832','999',1881,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c3fb0784-62c3-4a97-bbdb-165bbab3993c'::uuid,'833','998',2027,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('21b3ce86-174f-4204-b46f-bfc9a6935953'::uuid,'833','999',1770,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4c37210f-9fb7-4d61-9e96-06cc5c73f511'::uuid,'834','998',1825,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('deba3e18-971d-43f8-b924-69d6e064832e'::uuid,'834','999',1825,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d5f968f0-5f4e-4a95-9169-0a4afd05f2c6'::uuid,'835','995',2806,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dde0096e-012b-4d33-a590-34b2b4843164'::uuid,'835','996',2806,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('41898070-92c2-4b8b-bc4b-00e2fad3a448'::uuid,'835','998',1740,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('f7ee0791-5cc3-4cd5-be95-5f719ef97fba'::uuid,'835','999',1517,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('94579535-cd7d-4fbc-8488-a942b64eed13'::uuid,'836','995',2977,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('729fe30d-1a8c-4991-ba64-b21cd2986d24'::uuid,'836','996',2977,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a4c68ee9-956c-4aeb-87dd-7714885e6172'::uuid,'836','997',2720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('064e9193-e225-42bc-9fc4-33c7566669f3'::uuid,'836','998',1911,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d5c846a1-981e-413a-a822-78abb1443881'::uuid,'836','999',1688,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3877b87e-1f73-4a59-921f-159e6930940b'::uuid,'837','995',2977,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('33fc932c-05b0-4978-aedc-44e8284d2663'::uuid,'837','996',2977,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('615ab569-8f05-4571-8a68-b37a7d1b4bbf'::uuid,'837','997',2720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('17d1550f-64a8-4d0e-b8ef-7ade458a28f1'::uuid,'837','998',1911,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('9c5ff2e9-f473-4c84-9f82-ad159521a345'::uuid,'837','999',1688,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5a5e13ff-c820-4a2f-8510-e030c7023b45'::uuid,'838','995',2677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4786806e-6280-4b37-b70d-530f9a20b3ba'::uuid,'838','996',2677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2cb4b259-e719-4dbe-bd81-4f13fff7bf73'::uuid,'838','997',2420,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('799106b4-9417-44ba-b83f-414aab60fb4c'::uuid,'838','998',1611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ca571b5e-4b7b-4ead-b508-1cf001fe7cfb'::uuid,'838','999',1388,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('af3ca401-4ef9-4f27-a294-02412ddf8cce'::uuid,'840','998',2249,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4f4e83cc-1c87-433b-80e5-7b85e378f8fb'::uuid,'840','999',1991,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('12e675bd-5f21-4312-9c83-69d375aad976'::uuid,'841','998',2249,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c701b3d4-45a2-462e-8ef6-359877e4a51b'::uuid,'841','999',1991,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('e3eb9c5d-b6b5-47c6-aff5-9763c3523300'::uuid,'842','998',2249,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('acf0bbac-a468-4d9c-aff1-5afb9fe6f3f5'::uuid,'842','999',1991,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7594a2c9-258d-402e-bdce-f4adb80525ec'::uuid,'843','995',3177,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f1758cfa-643d-4b43-a974-5af15a6d540b'::uuid,'843','996',3177,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ebf0607b-859e-4fa9-83f3-2d675dafa02d'::uuid,'843','997',2784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e4ae54e8-6420-44df-9e27-7c2071a63773'::uuid,'843','998',2180,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9b01e169-4ea4-4f10-b3d2-05dc46894b06'::uuid,'843','999',1958,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7920523e-c939-4f0d-b946-a0ed5508a7aa'::uuid,'844','998',2213,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4f76bfc9-2225-4aa6-828e-b34b1258240d'::uuid,'844','999',1990,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7c2a7a68-58b8-48a9-91c1-f3e5f0508c3f'::uuid,'845','998',2483,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('b11e9c22-6501-4a1e-8392-0e501e1559fb'::uuid,'845','999',2260,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('641d1523-7fe5-4b77-b9c6-587bf1bad79f'::uuid,'846','995',3367,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('be04f3d2-0aec-4f61-8cd0-79865877c3f2'::uuid,'846','996',3367,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('52b7aa0c-16ae-4b3d-93c7-2e811035ec05'::uuid,'846','997',2974,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8e3ac5d2-49e4-4e62-8ef6-17988de2ac1b'::uuid,'846','998',2370,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7739dc40-bd32-40b7-94c2-bb2bec096354'::uuid,'846','999',2147,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('14123361-02e7-4b28-9147-dfa55fdcb935'::uuid,'847','995',3494,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f8f2bf5c-0108-4782-85a8-b3268996cd11'::uuid,'847','996',3494,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c9e27d42-5e40-4077-b2ce-037abd9d2456'::uuid,'847','997',3237,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8ffff393-4f3d-432e-95da-bf45cb096d70'::uuid,'847','998',2485,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('1a30f0a2-2c69-4139-8932-ed6f23cbd736'::uuid,'847','999',2263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f1027bd1-3691-43f8-b3cc-8f41e2af432a'::uuid,'850','998',2839,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('096e3f88-5166-4010-b791-3a6a67f13fc4'::uuid,'850','999',2581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7eda0e58-5da6-4b3b-9628-e26ab3ac02c1'::uuid,'851','998',2839,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b07d6ead-fc84-4c03-9a6b-967dad0616b4'::uuid,'851','999',2581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d0593ac6-71e0-4e68-b895-4b6f25842502'::uuid,'852','995',3955,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8c2530a2-f4c0-4ff2-bdcf-bcd2baec972e'::uuid,'852','996',3955,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('375c640f-ed1c-4929-b916-21d89a393695'::uuid,'852','998',2904,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3cd80c77-1323-4e60-9ed2-f2455b12683c'::uuid,'852','999',2681,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a16ea5d9-ed5e-4066-b4be-dfce0fa8ee25'::uuid,'853','995',3908,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('cfbeb9c4-8cf4-4653-9556-f31cdf3a35ff'::uuid,'853','996',3908,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7a9581d2-3957-44de-9471-6973c8302d02'::uuid,'853','997',3651,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1482554e-da01-4911-a496-88a8e3819e1c'::uuid,'853','998',2842,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f0a328d6-6e75-45f2-910e-4b238259dfdc'::uuid,'853','999',2619,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a73cd696-d9f7-4128-b430-4740f47e9113'::uuid,'855','995',3932,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a747d1d2-1f8f-4442-8f2d-a22af56f81a0'::uuid,'855','996',3932,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('89f02de2-35de-4413-99a7-55416fbf9008'::uuid,'855','998',2929,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ace99720-41d0-406d-8494-93536dbaf511'::uuid,'855','999',2706,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('003764a6-e41b-4177-8019-aabee7140373'::uuid,'856','995',4053,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('29037999-8ff4-451f-86e6-a57f13d47d9d'::uuid,'856','996',4053,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('979c8e8e-be9d-4b54-acb9-ad83a7939657'::uuid,'856','997',3795,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1814a238-7078-48fc-b0e6-34a4b2233d53'::uuid,'856','998',3002,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('091e29ea-5573-4d73-a513-5bb72763fcdc'::uuid,'856','999',2779,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f4138556-fc12-4ecd-b115-66ed813ea3ec'::uuid,'857','998',2696,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bc4d2c0d-fc9f-4dab-a59c-47765d8c5fd0'::uuid,'857','999',2696,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('29938f27-1720-4893-9467-c4418bea57f4'::uuid,'859','998',2847,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('32d2a8d5-9663-461e-bab5-62aa6b4a535d'::uuid,'859','999',2589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0ca75492-9b7d-4650-8f76-d068cfdcab9d'::uuid,'860','995',3750,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('974c7ba5-a367-491a-9c8c-29e775f45622'::uuid,'860','996',3750,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('86cc5a3f-3b34-4989-adc6-505df87881cc'::uuid,'860','998',2753,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('dda7de30-55c8-4b47-be18-9d0086a00e14'::uuid,'860','999',2530,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cedb414d-55dc-4d92-9525-41cc212a23a8'::uuid,'863','998',2805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ce518c21-d647-475f-b6b4-129e10ee1321'::uuid,'863','999',2547,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a0943c49-cc3a-4797-a920-d7010bb5390d'::uuid,'864','995',3723,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bd7ca0c4-ead2-4195-baf4-2816db87a424'::uuid,'864','996',3723,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('35207817-42d8-41da-affd-ce6bd5278636'::uuid,'864','998',2657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c77a0269-61c3-4696-9e82-24f32bc42b98'::uuid,'864','999',2435,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cbd9e177-f941-44ba-8d3a-8fd21f6a46c8'::uuid,'865','995',3711,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0c4bea6b-a670-45fc-b6ee-d4d2a4229eb1'::uuid,'865','996',3711,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5f2ba5f6-5398-4886-8d61-d81339d1c825'::uuid,'865','998',2714,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('c1431e86-d495-4c17-8c38-f53e227eca3a'::uuid,'865','999',2492,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9c09f830-b67c-4c25-ae21-3895570b2918'::uuid,'870','995',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9831ef14-d309-406c-bf5b-e6a2ed2bcd38'::uuid,'870','996',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f8346070-9bce-49f3-b4da-78aacf33d6f0'::uuid,'870','997',3587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('74a7191d-4a09-43ba-a3b0-98019a15e3e8'::uuid,'870','998',2847,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('00cb483f-f804-495b-8d19-e41cdeb1df11'::uuid,'870','999',2624,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('74bf4e4a-49ee-4953-bfa3-a1d5265a0f0c'::uuid,'871','995',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('da4e759f-dc6d-4af9-872a-300ea21a832a'::uuid,'871','996',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dfd0b166-69a8-434a-a2df-0a4f888495d5'::uuid,'871','997',3587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('503ae9b3-47c5-451d-8dd1-86d7ddc4a84e'::uuid,'871','998',2847,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('cdef1c81-206e-421e-b7f1-62302d357c6a'::uuid,'871','999',2624,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d729b702-5bdd-424e-85d2-3590b8ba74b2'::uuid,'872','995',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('449f406a-fc61-433d-9afe-b3a02ebb4fe8'::uuid,'872','996',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3303401d-0b96-4766-ae34-1c2d77c48cd7'::uuid,'872','997',3587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('613bf0c9-279c-4719-a1bb-d937132af2ed'::uuid,'872','998',2847,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8b21d8a1-2b11-47a5-ba5a-37398b8c6fd7'::uuid,'872','999',2624,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c595c2c5-b7f0-4e8f-af54-bbc2ea195b28'::uuid,'873','995',3727,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('595fc89b-dc24-484f-8747-85354b94d563'::uuid,'873','996',3727,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('53f13fa0-0445-4b5e-8303-6360e85d3810'::uuid,'873','998',2730,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ff7bf545-aae8-43ba-b305-487605400382'::uuid,'873','999',2507,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('e5faacce-0572-4b91-9073-a344878c3566'::uuid,'874','995',3663,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3cd6731b-4fca-4f8b-abd4-b7e7938fcc43'::uuid,'874','996',3663,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9aaeddcc-5e55-4634-ae83-c892a833af05'::uuid,'874','998',2666,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('afbe0cf2-5d38-4d5e-8693-fbd35f819061'::uuid,'874','999',2444,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('43250438-8323-46bf-bbd5-9a131691fa0e'::uuid,'875','998',2840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('073107fd-48b7-4dec-8feb-c05cf3fb7a98'::uuid,'875','999',2618,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('85b9165e-bb4b-46a9-be26-95bf34213fa0'::uuid,'877','998',2659,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('aec35b7e-8064-42b2-b872-8fecdd9971cc'::uuid,'877','999',2659,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('321e1504-2ff8-4b05-85c7-5af79b7b3464'::uuid,'878','995',3929,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7d4d8260-f383-4fc6-903b-0ac75c2c3754'::uuid,'878','996',3929,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('43529c84-6e43-4b88-974c-7353be5c27e2'::uuid,'878','997',3536,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3e5976ec-18d5-4e78-a3cb-283a029df62a'::uuid,'878','998',2932,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4e308c44-744d-433f-9e1e-4967bd5c7438'::uuid,'878','999',2709,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5c83db13-028f-41de-8417-4a6a4bfa02df'::uuid,'879','998',2738,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e5ac3534-d378-457b-9afb-7745dbb950e9'::uuid,'879','999',2738,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2007125e-aa80-4027-bbfc-69067d9561aa'::uuid,'880','995',4035,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ef41e618-3dfb-459a-aace-5e473038c8d3'::uuid,'880','996',4035,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('065dcba3-c527-4cc6-9d80-fbe9dfbaa106'::uuid,'880','997',3642,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f7092da3-3bb6-42be-8f8b-fd493590ea79'::uuid,'880','998',3038,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1bc46b9e-2671-4c93-9013-c86ddd55e6a5'::uuid,'880','999',2816,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('03a1592c-999d-411a-bbdd-7c7d577126cc'::uuid,'881','995',3982,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e7318352-b9c9-4945-b87a-a2b75ebdecf1'::uuid,'881','996',3982,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a9549a8a-11b2-422a-baa6-765be2eff0ac'::uuid,'881','997',3589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cdf0061b-0797-41cd-8b3f-5e5c50c20a33'::uuid,'881','998',3099,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('18933378-fdb1-43bf-bef6-85f30dc5d171'::uuid,'881','999',2877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bd9106e8-abfe-4762-8adb-411dfd39459c'::uuid,'882','998',3118,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('46545428-646c-4c5a-9a7e-1245b8c648a2'::uuid,'882','999',2895,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('778cbd76-fa36-450b-bb24-09aff122c7c3'::uuid,'883','995',4032,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ddde297b-056c-4b2b-89c0-33524505a61b'::uuid,'883','996',4032,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d64b62e9-0c39-487c-ba18-52ed6b55c0a9'::uuid,'883','998',3042,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('c3793354-fb9c-4e7f-b3d8-ef73c1a57bae'::uuid,'883','999',2819,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3ced66ad-8fde-416f-b227-bf38e199ca34'::uuid,'884','998',2760,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9472f6ae-c098-42a7-aad1-0871511b4668'::uuid,'884','999',2760,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('99c52cef-94b9-487f-ac31-76742185350c'::uuid,'885','995',4111,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('05850e92-edaf-48ac-96b6-a5d46ea286b7'::uuid,'885','996',4111,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('eedccae1-2aeb-410b-afc3-5beeea52ea1e'::uuid,'885','997',3718,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('246629f6-1ccf-4253-bb7b-fb0329d7d952'::uuid,'885','998',3114,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3ed3eb3e-3863-4143-a59f-cf75ef60ae23'::uuid,'885','999',2891,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9a6d8519-7487-4ab5-87d9-4480014db52e'::uuid,'889','998',2532,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4a077efc-17b4-492f-a137-d7bf25664134'::uuid,'889','999',2309,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('4225a4e3-c5fb-4355-9ce6-cb1bff9090af'::uuid,'890','998',2532,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b8c45974-b9d5-482c-9c23-be6745fdac35'::uuid,'890','999',2309,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e25e09c6-70b9-4d7f-8435-d07cc895be0e'::uuid,'891','998',2532,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0d263068-46a3-4fa3-9ed2-809f8fced7c7'::uuid,'891','999',2309,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('61f1a70a-5ff6-4cd1-98c7-ad0f4b6de49e'::uuid,'893','995',3320,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('76557d71-f357-4ba5-8e3a-c3563bd1c018'::uuid,'893','996',3320,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('047035e9-e554-4175-a706-011446aef94b'::uuid,'893','997',2926,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('318efbf8-ba01-48e4-a88b-d899e74b72d3'::uuid,'893','998',2254,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f68548d1-b6ba-4140-ad20-1a9fbe6b2eed'::uuid,'893','999',2031,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e2540999-44d1-4e97-9d41-b97cdc0eeac5'::uuid,'894','998',2191,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('36853432-bbf1-4630-8e8e-60eb6f74d646'::uuid,'894','999',1968,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('caaa42a8-cea4-49a2-81b0-70d196499d5d'::uuid,'895','998',2212,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('589fcc0e-ef03-4d34-9d75-8bdc21ed6ed9'::uuid,'895','999',1954,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9f26c49a-0faf-4f48-b720-7322dcb487df'::uuid,'896','998',2212,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('76f74300-db1f-416b-9f5f-8562fb0efe42'::uuid,'896','999',1954,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0d1c9e95-3efa-4350-a31f-202facb2256b'::uuid,'897','995',3308,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9bc392b2-e9cd-4985-8b77-21f98c182758'::uuid,'897','996',3308,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('af9e8f15-eb8c-4346-9112-a6ef4d43455f'::uuid,'897','997',3051,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ee99372a-f7e8-45e4-ab49-f45bd40dda4f'::uuid,'897','998',2242,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f79d1fdc-d868-4a9b-8089-c324c1ba0236'::uuid,'897','999',2019,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('91fadf8f-bfd6-49d7-8af1-0c875eb1837c'::uuid,'898','995',3206,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('40ee2eb2-0b2e-463c-a995-17f5b745b064'::uuid,'898','996',3206,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('00df1c64-dcd2-4da2-b659-fb1686d9a119'::uuid,'898','997',2813,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('75e7e76a-a288-4f0b-9ace-6aff15066d67'::uuid,'898','998',2140,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d26ea265-c508-4887-bcbb-51e52be82d6b'::uuid,'898','999',1918,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('77501771-13cb-4a23-a153-fb08e1d02372'::uuid,'900','998',2613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2e2c4dd7-7650-41ee-bde0-4393baa5cb34'::uuid,'900','999',2390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('85ee5102-bbe4-475d-90c5-d5b5fb21a0b4'::uuid,'901','998',2613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('15daafbd-1892-4af2-ab2a-6b6fa0ff0f5c'::uuid,'901','999',2390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('483f1f42-8a51-49f7-bd14-a94c344ed126'::uuid,'902','995',3678,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('159bac5c-d6c2-4c8d-a935-a49fdf0795cf'::uuid,'902','996',3678,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6333e31d-6514-43b3-8c78-d753872b0841'::uuid,'902','997',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('28646c4b-5f0b-4c2f-9b0e-d2cd128d187d'::uuid,'902','998',2612,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3ecb18e7-a559-4708-9f83-605380ce43d7'::uuid,'902','999',2390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('022ced8d-1e04-48c0-91f9-8d551d4c9f5d'::uuid,'903','995',3683,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8bb8e3af-9c32-4e67-af7b-725a962dffe3'::uuid,'903','996',3683,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c638bdad-c0b2-4be5-b35f-bb749cf03d2a'::uuid,'903','998',2617,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4111ca0a-eb3f-4a40-9107-cfedeab5797a'::uuid,'903','999',2395,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7607f73d-916d-4b79-9706-683842d7bab6'::uuid,'904','998',2614,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f2dd75ae-03d6-47e8-b4ba-b52dfdbc7489'::uuid,'904','999',2356,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('d8e2105e-641e-48fc-acdd-c3c9743bb153'::uuid,'905','998',2371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('26041a79-c8db-4185-8c8b-933113f466ae'::uuid,'905','999',2371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c933c534-e28a-430a-89bc-d8c64764f99f'::uuid,'906','998',2629,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('77f38e7e-527f-4c14-a590-64f1fd6a2b4f'::uuid,'906','999',2407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('16ba1e86-cd40-4885-abf8-3d09ff58622d'::uuid,'907','998',2633,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('875d68c8-aa33-483e-84b4-330d2cb12529'::uuid,'907','999',2411,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('852ed1e3-51ab-42bd-8016-a214213b2038'::uuid,'908','998',2635,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('59d3ea5c-c785-4591-a46e-d363f323047e'::uuid,'908','999',2377,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cbf306a6-45d7-4ab9-aebd-0c2657ac0336'::uuid,'909','998',2613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3ca8dbf1-c1d6-4e14-9afb-2fe8d830c4cd'::uuid,'909','999',2390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('e0b953a3-b94c-4599-acc4-6c2e3e2e1271'::uuid,'910','998',2614,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('008344d9-ac7e-4cec-b5f4-0682cfc7932d'::uuid,'910','999',2391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2a23830f-6996-484a-a54f-85ba95c1feaa'::uuid,'911','998',2614,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('61bc56c1-5203-40f8-8231-baa7036b7f61'::uuid,'911','999',2391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('98127bc8-928b-4d6e-bb94-2bdfae9fc426'::uuid,'912','998',2614,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3e5d8546-5a7b-4b21-ac0f-d831bb826ac5'::uuid,'912','999',2391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cda4b9a9-3ac6-4111-b460-414f69d77bd3'::uuid,'913','998',2593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('68c9a20e-0c18-4564-8e4a-18c67468b888'::uuid,'913','999',2335,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('58f2b5ab-153b-44a7-92b4-5a64dd1e103c'::uuid,'914','998',2601,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5f14a296-b152-4cf0-bf91-ed9a710abf4d'::uuid,'914','999',2343,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('235e0118-cbc0-4ddd-a917-816b4ab33ebe'::uuid,'915','995',3670,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dc4d8ae8-8fd6-41d4-87ec-038b1d9c4bfe'::uuid,'915','996',3670,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('88fdca35-7353-4633-b8d8-48bf7edbdac9'::uuid,'915','997',3412,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4263d6fa-f06e-4484-917c-7ad37b33a199'::uuid,'915','998',2604,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4a965f28-82a7-4e9f-bdd4-d92b91ac4342'::uuid,'915','999',2381,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('819cdd81-9fbd-4c15-91e6-e9ef1f20caab'::uuid,'916','995',3670,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ae93b1af-36a8-4063-aaf1-6c19bebd172f'::uuid,'916','996',3670,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('db4aeea6-f983-4b3c-b78c-1fee6987ca50'::uuid,'916','997',3412,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f17bab16-39cf-4462-a032-0dd1829d346b'::uuid,'916','998',2604,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7d8ce794-1d08-45dd-bb06-3e32b27f18ce'::uuid,'916','999',2381,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('8a0a82a3-ba2d-480f-8d4a-fa313cc1f93e'::uuid,'917','998',2372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b87c7f7b-d048-4a81-a421-ae1199381172'::uuid,'917','999',2372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8f8c6394-91e1-40ed-976f-4a7ba2855e15'::uuid,'918','995',3685,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('58e1c51f-d579-405f-bbd3-f313e7ebd4ea'::uuid,'918','996',3685,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('41bdb145-135a-4709-b40c-3d3ea0bc0c9e'::uuid,'918','997',3427,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a11ff6e4-24d9-4e37-8211-db3ed5a91446'::uuid,'918','998',2619,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a1f6ac02-325c-41e4-8092-dae3597c7f2e'::uuid,'918','999',2396,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0b56958f-d9e8-4da6-855d-959e9b1fe4a4'::uuid,'919','995',3823,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8cdfed5f-7986-4624-b035-f61c73e028e5'::uuid,'919','996',3823,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0101f071-041b-414e-a09e-9c7257e88f5d'::uuid,'919','997',3430,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('0ddfbcd7-8f37-4a8c-967a-c6384474b63e'::uuid,'919','998',2757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d0c7f33e-d7fd-44a5-8dbf-1eab32bc63f6'::uuid,'919','999',2534,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ca60699e-6647-4411-9a67-20d140b9195e'::uuid,'920','998',2726,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('03add82c-cecc-4a2d-aaa1-c43af8fb99fa'::uuid,'920','999',2468,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e765509c-fd6d-4b1e-bacb-9c7cac8088bd'::uuid,'921','998',2733,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e1685a26-6a91-4fe9-9bca-74fd41dff446'::uuid,'921','999',2475,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8b7fceba-c45c-4cde-81b6-81b2e874a7e6'::uuid,'922','995',3825,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5e835b22-3d2b-4a44-bd55-66f3d6d45221'::uuid,'922','996',3825,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('447d06ea-c094-4a85-80aa-80003856a815'::uuid,'922','998',2759,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('64ff197d-fd33-4716-a25f-e80b20de435a'::uuid,'922','999',2536,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('00590561-9a27-4913-b9e4-2501d5dde6d3'::uuid,'923','995',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('855f4b23-e92d-4bfd-9e9e-8264f943f6b5'::uuid,'923','996',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('77a4591b-e1f4-40a3-b7ba-4119cb2e740f'::uuid,'923','997',3434,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f702816e-a4b1-48b0-8237-a03eedd06615'::uuid,'923','998',2625,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f24cdd04-e02d-4f4c-90e3-105d5a102d78'::uuid,'923','999',2402,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1ea864bc-982d-47f4-8bb7-2667d500fae2'::uuid,'924','998',2662,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cc06ba3f-b7c2-4df8-95fd-7eb499504bcb'::uuid,'924','999',2404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7b58a050-4747-435c-81e0-ad3f7a62cc77'::uuid,'925','998',2665,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('43ac3624-34ff-48c1-9dd9-2a880baba0f0'::uuid,'925','999',2407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d200e366-4b94-40c4-a3f3-7f41d0baff73'::uuid,'926','998',2644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('77c59bbf-9917-466d-88d7-975f63be858f'::uuid,'926','999',2386,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('851010b5-be85-41db-8a30-82583d0095e1'::uuid,'927','998',2644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0fc85b97-1304-4ba6-8f71-14eae5e6c4b1'::uuid,'927','999',2386,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('183056f8-444a-415c-bd4b-3a6b23622d34'::uuid,'928','995',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1f4b18d5-ca9a-4c06-92f6-ff36fb88e28c'::uuid,'928','996',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f9d74ff2-e916-4ff0-b346-3daecaa755c2'::uuid,'928','997',3447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('aed5e0c5-ceca-4ffd-aeb8-a8f0a0c953c9'::uuid,'928','998',2639,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('aeab1f30-c8d3-46e6-bcaa-7380a3327c74'::uuid,'928','999',2416,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ebce3fc6-2495-410c-813b-08d3c81c7a52'::uuid,'930','998',2364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9cf3833a-b417-4664-83b8-e296cdccad7d'::uuid,'930','999',2364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('e2b553df-96f4-42c9-bc9b-07cd7901a014'::uuid,'931','998',2606,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0b82513c-1c60-4bfe-a8ce-b39d3b62b9f6'::uuid,'931','999',2348,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f4ce00dc-74b2-4ad4-a463-2359b858e570'::uuid,'932','995',3541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b041fa51-e93f-4a85-b271-bbe55d6e50d2'::uuid,'932','996',3541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ed14623d-811f-4a0a-a358-c5b22d2c1185'::uuid,'932','997',3148,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d82302fd-ee2c-452e-8821-b420a6f1c528'::uuid,'932','998',2475,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ac3eec1f-ec2a-440f-ac0b-82cdecc1c334'::uuid,'932','999',2253,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b8054c36-8100-499a-aedb-e6db8610ae68'::uuid,'933','995',3573,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e69d29ca-3a9f-4d48-904a-1e4e830f4c95'::uuid,'933','996',3573,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('059cccab-3b60-497b-b251-de2de6e6da28'::uuid,'933','997',3316,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('30b5cf86-b509-47e6-8dcf-61a9bde3df55'::uuid,'933','998',2508,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e96a284a-bb41-44e5-81b8-934c407d5bdd'::uuid,'933','999',2285,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5ac2682d-b1b6-40d8-bfbe-324dc58dbb26'::uuid,'934','998',2501,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4d1556ba-5ae9-4764-bdaf-6cfb3b055950'::uuid,'934','999',2243,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e566ef79-7bc2-4a16-ada1-4d844a535d1e'::uuid,'935','998',2495,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7dd6ef0a-9423-49bf-ad4e-61fff33bcbab'::uuid,'935','999',2272,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f407684e-ddf4-4027-a064-a50a7dcc3050'::uuid,'936','995',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4383b740-d29c-418c-b71c-8fce4be28edf'::uuid,'936','996',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('017ec8d0-16a9-4704-bfe0-a174b16a77cb'::uuid,'936','998',2397,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('290ec10d-c0cf-46ce-ba1b-aea88480003a'::uuid,'936','999',2175,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('5a06f0a8-00c2-4e06-943c-5af3710120c5'::uuid,'937','995',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7ca8900b-ba83-4c28-bad7-33ab8c662f35'::uuid,'937','996',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f18dc52a-8cf4-416c-906b-a88b8522ed42'::uuid,'937','998',2397,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a3f13314-6d74-4299-993c-3ffc1310eb10'::uuid,'937','999',2175,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('19687533-5566-4416-a63e-3389e1dd2fa6'::uuid,'938','995',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e30308bb-c8cb-4de2-b4a4-7e55c287a20b'::uuid,'938','996',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bebe7186-33ef-4b7e-8642-582e91ef0909'::uuid,'938','998',2397,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6f5e00f5-457b-4006-a7a3-aee9d2a61e5f'::uuid,'938','999',2175,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('53bc7d01-c175-455a-91c8-51bcb3eee33d'::uuid,'939','998',2376,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1ab75d47-bf2f-4b80-802e-b5f64c4792b4'::uuid,'939','999',2118,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('9280c152-c831-4684-8342-3d529f5a3c05'::uuid,'940','995',3376,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e3406ca4-25a3-4420-a7c0-f44786b447cb'::uuid,'940','996',3376,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d0452d48-6cf5-4955-8999-8a64bde87a13'::uuid,'940','997',3119,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5991f9c1-ebc6-4f03-b0ac-0d65c2a0f33b'::uuid,'940','998',2310,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1ae6c998-33c0-43e0-963a-d04baf540973'::uuid,'940','999',2087,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3aefeb0d-29ac-4e7c-bb99-4a42f4cdf445'::uuid,'941','998',2288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6a34db64-a890-4cc9-aa45-e1a69ae9cce9'::uuid,'941','999',2030,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8dbc6437-3b8e-4708-a782-766e500b7e0a'::uuid,'942','998',2233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2e8867b4-7670-454d-8af3-e3d83d4c085d'::uuid,'942','999',1975,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('00f38731-9c78-45f6-ace9-aca58f54c5af'::uuid,'943','998',2319,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('ac2dee37-892e-46e1-addd-e16713a1cfef'::uuid,'943','999',2097,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('29284959-8065-4d45-a921-9be1c3b36486'::uuid,'944','998',2307,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f41f1b07-f2cb-4381-8d1b-1acca7b69a5c'::uuid,'944','999',2049,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('67df4e23-a3f3-4ad9-a120-207f67ce1991'::uuid,'945','998',2015,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('df9ec58a-6901-497b-b27e-ad5b9f537642'::uuid,'945','999',2015,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cd523be2-1e7f-4e4f-82a5-ca6caadede0e'::uuid,'946','998',2280,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('556035ab-46e7-4657-b30f-a7d829793fee'::uuid,'946','999',2057,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f6030d06-f9fd-4b6d-9be3-ef406fec9707'::uuid,'947','998',2280,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3ca47423-74cd-4b95-8ae1-da7ae396e273'::uuid,'947','999',2057,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('98aa2bd4-d0bf-45e9-b85a-1fb921ff6e31'::uuid,'948','998',2279,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('8e1da881-9023-4bb6-859f-90e7d4a3a316'::uuid,'948','999',2021,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('15ac7628-a7f1-45a5-b4e6-c17b0f7095b3'::uuid,'949','998',2284,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5891e070-5e15-4857-9e87-0354870bf62a'::uuid,'949','999',2026,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0f3da50e-ebc6-42d1-9968-1907b71eb33c'::uuid,'950','995',3413,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9617c28d-9571-4227-a96a-b77d36cc163c'::uuid,'950','996',3413,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('12c9b2fe-4dd4-40d3-9f41-ff77083da38d'::uuid,'950','998',2347,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('27aada10-6608-42b7-9f1f-793f27291e32'::uuid,'950','999',2125,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9e384dd7-1f9d-497e-9667-b4dcb01775e1'::uuid,'951','998',2316,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1b0a20ee-16af-48ca-b607-ee0e5f1feaa8'::uuid,'951','999',2058,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7e4060a6-aa4f-455d-a805-534bc45f385b'::uuid,'952','998',2019,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('9c9eac23-7275-4f12-9efe-b6ea8dd1b3a1'::uuid,'952','999',2019,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('51638b48-3129-4952-b721-8fd6cd6d7e56'::uuid,'953','998',2305,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('06bcf225-d576-47e3-870a-c03d32d71fce'::uuid,'953','999',2082,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('aaffd517-06af-4392-861a-f9dda353d7d6'::uuid,'954','995',3300,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('bfead90b-755d-4f85-8827-8505d540e0c2'::uuid,'954','996',3300,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0c55ff7e-6a5e-41ba-948b-295459aae1c3'::uuid,'954','998',2234,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('92fbc802-ada3-4a01-92d2-73f42f38545c'::uuid,'954','999',2011,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('be63cd8c-08a1-4600-8608-5f5d6b4ec733'::uuid,'955','995',3129,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f8e1b682-7788-4592-9474-1ad562b3cbfd'::uuid,'955','996',3129,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('69984096-4c1b-4bb2-b41f-19ecfa99ee60'::uuid,'955','997',2735,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('3a56b9d5-c19e-4f04-b848-66e2d594719e'::uuid,'955','998',2063,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5a115aa9-061b-498a-afbf-4361997c6d9b'::uuid,'955','999',1840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e0bb6c41-c987-4f26-9dcd-1afebbf6625e'::uuid,'956','998',2233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8ab7a15e-3fd7-4c57-bd5c-190bd522dda6'::uuid,'956','999',1975,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f0cbf820-70a0-4e68-93aa-04caad971e61'::uuid,'957','995',3329,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1e2428ab-6b15-47b6-bb9b-a4722658095a'::uuid,'957','996',3329,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1f8bb5bb-8a45-4093-bb5f-661809100a54'::uuid,'957','998',2263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('53450b97-36d1-4429-b6c5-ae0dd9ce16f3'::uuid,'957','999',2040,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('84209b3f-99d6-4c9e-a9c4-c51212779159'::uuid,'958','998',2233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cb1f2666-1b36-45c4-82be-addbd99111bd'::uuid,'958','999',1975,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('728aab7b-6e48-4d43-a3cf-86913597deea'::uuid,'959','998',2167,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c383f13b-f374-4d43-af97-d4f52da1c988'::uuid,'959','999',1944,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5638c60c-6f7d-4cee-b2b0-fa436f818a5d'::uuid,'960','998',2075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d2ff0a8d-ec69-4871-a599-182cc734beac'::uuid,'960','999',1817,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('149b6699-76fc-4a98-942c-22834b6f54d7'::uuid,'961','995',3198,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e9cd510c-fe9f-4566-846a-39f956e5167c'::uuid,'961','996',3198,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('70297ba9-f61e-46eb-bef6-3e4e2c1b329c'::uuid,'961','998',2132,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('84de9fa3-7ab5-4287-a1ee-4f50fcde907e'::uuid,'961','999',1910,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('19267ad4-8113-47a0-8974-2c0dbc17b153'::uuid,'970','998',1654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b50e7b0d-23c0-4f0c-906a-aa88b557dd7a'::uuid,'970','999',1396,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('df336bc5-30c2-4cf5-a44b-cba6df98cf59'::uuid,'971','995',2743,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('78736c80-cd27-4c1a-8d0b-fff5c8c1f9f5'::uuid,'971','996',2743,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b8a8dfd4-4a88-4d8a-a09c-934941a35901'::uuid,'971','998',1677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('186bb618-c2c8-46bd-8a94-83d3d650c502'::uuid,'971','999',1455,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('72d6bc1c-bbdd-417a-ba71-5fda033fa3f6'::uuid,'972','998',1654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('c91eaf5a-dedf-408d-a028-50549c7674fd'::uuid,'972','999',1396,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('a8786c1e-3428-4ddd-88b8-5726a3aece46'::uuid,'973','995',2790,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b6f63d00-9642-43bb-899b-0ef2a5cacecb'::uuid,'973','996',2790,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b31a7abd-4b1d-47f9-a72b-92dd60f9a7a2'::uuid,'973','997',2533,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b984d898-2991-4643-a1db-43bc6443b8d0'::uuid,'973','998',1724,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('403239ed-6fde-4573-b177-55a1b6945275'::uuid,'973','999',1501,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5fe53380-a00f-41c4-8717-24516391ebd3'::uuid,'974','998',1839,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('167448d3-223d-4b0b-b573-4bead2c6ded5'::uuid,'974','999',1581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f23b1654-cfb3-4553-87a2-b522994318a9'::uuid,'975','998',1927,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('3d756af3-1ea1-43bc-8175-7c9e3db4dbea'::uuid,'975','999',1705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('99b79117-47f5-4926-beee-d07c941e8342'::uuid,'976','998',1704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('65a26abd-75c2-484a-abd0-47377b2af00b'::uuid,'976','999',1704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6e5d5b20-ceba-4efa-9040-efef0cb591e9'::uuid,'977','995',2876,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('949a0ff1-250f-462d-8165-84aedc1a9a0e'::uuid,'977','996',2876,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('dbedf4c6-07a9-45ad-803e-ab8e91ffa6f5'::uuid,'977','997',2619,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('1e17841c-ba1f-4cf0-b4c0-461faeff9c5d'::uuid,'977','998',1810,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('009c6f63-6b1d-41aa-95e0-d35571fff7ca'::uuid,'977','999',1587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8adbbf84-607a-4325-888d-1843c74ccf65'::uuid,'978','998',1767,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f910ca1b-984c-427f-a53e-d75f4662217a'::uuid,'978','999',1545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d811eb20-e8f9-4834-8fe6-a7892a84b93b'::uuid,'979','998',1617,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('99cf0bf7-1015-4d33-8455-e94b161d480f'::uuid,'979','999',1617,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4821731e-177e-465b-816d-d9b0d38c2bc8'::uuid,'980','998',1500,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('cfdd7982-c17b-4a34-a04b-e474f13b5c43'::uuid,'980','999',1278,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('615e4af9-4756-41f7-874b-41493feb60a2'::uuid,'981','998',1482,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7330afa3-3a7e-40b7-a5b2-54794266cfd9'::uuid,'981','999',1224,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('c44908f7-fa65-4b26-a092-14f67cf0a4ae'::uuid,'982','998',1412,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('d74977b3-9949-4f95-9a8b-bf7c2987ba77'::uuid,'982','999',1154,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4f548e0b-3f33-41a0-9c3b-9b8720ae1db0'::uuid,'983','998',1255,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('36b22b11-5724-41ef-9648-4cc7bbd63ad0'::uuid,'983','999',1255,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b5c3ae76-7ded-4729-8438-5671ed459fc9'::uuid,'984','998',1255,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('63037344-073d-414e-b6f0-bb3906a94bbc'::uuid,'984','999',1255,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8fa80007-cc09-4cb8-81fe-ed56a644a800'::uuid,'985','995',2626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('6c76a7ef-cee2-4cc8-88ef-818c15e9ad9a'::uuid,'985','996',2626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('107ac44d-3931-405b-9894-a7bd1f9f99f6'::uuid,'985','997',2233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('4435924e-75a3-4ef0-9e11-45eb95716387'::uuid,'985','998',1560,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('bd431a9a-c65a-4f81-9538-e3a73948da04'::uuid,'985','999',1337,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('44578e46-55a0-4deb-a605-9aa8d30a0df6'::uuid,'986','998',1402,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8140c08a-48d3-453a-b413-5342b1b35148'::uuid,'986','999',1402,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('0d58b652-08da-432c-97ec-6cefa9d39947'::uuid,'988','995',2539,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('2d01dcbf-ee4b-47b6-ba37-09c77a42a4da'::uuid,'988','996',2539,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('27f0eee4-afca-4388-a157-83bd7cac8f03'::uuid,'988','997',2282,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1bc1aef9-3863-4973-bda7-8c1195296bdc'::uuid,'988','998',1473,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('9cfb0f14-3de8-4406-a31a-377746f3e638'::uuid,'988','999',1250,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8bdd8590-2427-4126-bbee-54736be4f677'::uuid,'990','998',1323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('16f8e729-0878-47f1-a212-a22b4ba5bde8'::uuid,'990','999',1323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('191e629a-cb16-497f-b985-0f11425b3e17'::uuid,'991','995',2612,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f00adb20-d63f-4416-b1dc-babb8e713afa'::uuid,'991','996',2612,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('8850376b-e8dd-465f-81ef-92a6017f44da'::uuid,'991','997',2218,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('80cc80c5-bed1-4155-b012-22ea3ba76b51'::uuid,'991','998',1546,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5445b0c2-0b76-4a6b-8a89-bb60788397bb'::uuid,'991','999',1323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('414f0165-1087-40f3-83fd-69fa9d9caa83'::uuid,'992','998',1323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('b20c0f3f-e17c-4dfd-ba5a-3a29b962c3ee'::uuid,'992','999',1323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('05c7f3d5-a027-4799-bb5f-cb80293eca61'::uuid,'993','998',1626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('7ee30ae6-7bac-475c-9492-c52e44fa72e0'::uuid,'993','999',1404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1e98289e-97eb-48a0-b19e-668ede74690a'::uuid,'994','995',2747,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('8ef44264-5fdc-42a0-af55-720459549963'::uuid,'994','996',2747,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('be0835f0-7119-489b-8df5-a1259251a538'::uuid,'994','997',2489,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('1b19f547-e211-4be5-b59b-ad03fb852fba'::uuid,'994','998',1681,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('fd00a1c7-c25e-4be9-a871-be904062680e'::uuid,'994','999',1458,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('f6378646-8ad2-4748-a395-12f945119023'::uuid,'995','996',329,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e032eb39-1392-4143-9e37-a830ab5107c2'::uuid,'995','997',358,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('5f3b250e-23b2-44a3-839c-3997e54c246a'::uuid,'995','998',1286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('aac845e4-d3c9-4707-8c37-35046af8c9d2'::uuid,'995','999',1286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('ce299517-637c-4ece-a514-1d26a4441f99'::uuid,'996','997',358,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('aa50ed06-8b18-4288-8035-c1a381c012de'::uuid,'996','998',1286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); -INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES - ('aa818f47-e945-42dc-8a9c-8ce2340dd6b4'::uuid,'996','999',1286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('e6993533-2857-4ed4-b720-dfeef114f24d'::uuid,'997','998',1029,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('59280b50-2227-401b-8a14-0e9847a33fc0'::uuid,'997','999',1156,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), - ('297a3af8-5a07-4d88-b515-c359085b5eb9'::uuid,'998','999',316,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); \ No newline at end of file diff --git a/migrations/app/schema/20241217191012_update_move_to_gbloc_for_ak.up.sql b/migrations/app/schema/20241217191012_update_move_to_gbloc_for_ak.up.sql new file mode 100644 index 00000000000..16da9984746 --- /dev/null +++ b/migrations/app/schema/20241217191012_update_move_to_gbloc_for_ak.up.sql @@ -0,0 +1,43 @@ +delete from postal_code_to_gblocs where postal_code in ( +select uspr_zip_id from v_locations where state = 'AK'); + +drop view move_to_gbloc; +CREATE OR REPLACE VIEW public.move_to_gbloc +AS +SELECT move_id, gbloc FROM ( +SELECT DISTINCT ON (sh.move_id) sh.move_id, s.affiliation, + COALESCE(pctg.gbloc, coalesce(pctg_oconus_bos.gbloc, coalesce(pctg_oconus.gbloc, pctg_ppm.gbloc))) AS gbloc + FROM mto_shipments sh + JOIN moves m ON sh.move_id = m.id + JOIN orders o on m.orders_id = o.id + JOIN service_members s on o.service_member_id = s.id + LEFT JOIN ( SELECT a.id AS address_id, + pctg_1.gbloc, pctg_1.postal_code + FROM addresses a + JOIN postal_code_to_gblocs pctg_1 ON a.postal_code::text = pctg_1.postal_code::text) pctg ON pctg.address_id = sh.pickup_address_id + LEFT JOIN ( SELECT ppm.shipment_id, + pctg_1.gbloc + FROM ppm_shipments ppm + JOIN addresses ppm_address ON ppm.pickup_postal_address_id = ppm_address.id + JOIN postal_code_to_gblocs pctg_1 ON ppm_address.postal_code::text = pctg_1.postal_code::text) pctg_ppm ON pctg_ppm.shipment_id = sh.id + LEFT JOIN ( SELECT a.id AS address_id, + cast(jr.code as varchar) AS gbloc, ga.department_indicator + FROM addresses a + JOIN re_oconus_rate_areas ora ON a.us_post_region_cities_id = ora.us_post_region_cities_id + JOIN gbloc_aors ga ON ora.id = ga.oconus_rate_area_id + JOIN jppso_regions jr ON ga.jppso_regions_id = jr.id + ) pctg_oconus_bos ON pctg_oconus_bos.address_id = sh.pickup_address_id + and case when s.affiliation = 'AIR_FORCE' THEN 'AIR_AND_SPACE_FORCE' + when s.affiliation = 'SPACE_FORCE' THEN 'AIR_AND_SPACE_FORCE' + when s.affiliation = 'NAVY' THEN 'NAVY_AND_MARINES' + when s.affiliation = 'MARINES' THEN 'NAVY_AND_MARINES' + else s.affiliation + end = pctg_oconus_bos.department_indicator + LEFT JOIN ( SELECT a.id AS address_id, + cast(pctg_1.code as varchar) AS gbloc, ga.department_indicator + FROM addresses a + JOIN re_oconus_rate_areas ora ON a.us_post_region_cities_id = ora.us_post_region_cities_id + JOIN gbloc_aors ga ON ora.id = ga.oconus_rate_area_id + JOIN jppso_regions pctg_1 ON ga.jppso_regions_id = pctg_1.id + ) pctg_oconus ON pctg_oconus.address_id = sh.pickup_address_id and pctg_oconus.department_indicator is null + WHERE sh.deleted_at IS NULL); \ No newline at end of file From b96a3c06f772aec011186eb9ad16d83d035b7aa1 Mon Sep 17 00:00:00 2001 From: pambecker Date: Fri, 20 Dec 2024 14:40:13 +0000 Subject: [PATCH 07/32] test --- pkg/handlers/internalapi/orders_test.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkg/handlers/internalapi/orders_test.go b/pkg/handlers/internalapi/orders_test.go index c9944479fe7..a74d8aafdfd 100644 --- a/pkg/handlers/internalapi/orders_test.go +++ b/pkg/handlers/internalapi/orders_test.go @@ -79,7 +79,7 @@ func (suite *HandlerSuite) TestCreateOrder() { factory.BuildJppsoRegions(suite.DB(), []factory.Customization{ { Model: models.JppsoRegions{ - Code: "KKFA", + Code: "MBFL", }, }, }, nil) @@ -125,7 +125,6 @@ func (suite *HandlerSuite) TestCreateOrder() { handlerConfig := suite.HandlerConfig() handlerConfig.SetFileStorer(fakeS3) createHandler := CreateOrdersHandler{handlerConfig} - response := createHandler.Handle(params) suite.Assertions.IsType(&ordersop.CreateOrdersCreated{}, response) From c9df020d04570d8bd76cf0d9c743f297d3c93fac Mon Sep 17 00:00:00 2001 From: pambecker Date: Fri, 20 Dec 2024 20:58:43 +0000 Subject: [PATCH 08/32] tests updates --- pkg/handlers/internalapi/orders.go | 6 ++ pkg/handlers/internalapi/orders_test.go | 88 ++++++++++++++++++++----- pkg/models/duty_location.go | 4 +- 3 files changed, 80 insertions(+), 18 deletions(-) diff --git a/pkg/handlers/internalapi/orders.go b/pkg/handlers/internalapi/orders.go index a84f4044d78..6fed4ebd64d 100644 --- a/pkg/handlers/internalapi/orders.go +++ b/pkg/handlers/internalapi/orders.go @@ -3,6 +3,7 @@ package internalapi import ( "database/sql" "errors" + "fmt" "time" "github.com/go-openapi/runtime" @@ -185,11 +186,16 @@ func (h CreateOrdersHandler) Handle(params ordersop.CreateOrdersParams) middlewa var originDutyLocationGBLOC *string if *originDutyLocation.Address.IsOconus { + fmt.Println("*** HERE in isOconus: originDutyLocation.ID: ", originDutyLocation.ID) + fmt.Println("*** AddressID: ", originDutyLocation.AddressID) + fmt.Println("*** originDutyLocation.Address.UsPostRegionCityID: ", originDutyLocation.Address.UsPostRegionCityId) originDutyLocationGBLOCOconus, err := models.FetchOconusDutyLocationGbloc(appCtx.DB(), originDutyLocation, serviceMember) if err != nil { + fmt.Println("**^^is there an error fetching oconus gbloc?? ", err) return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") } originDutyLocationGBLOC = &originDutyLocationGBLOCOconus.Gbloc + fmt.Println("^^or GBBLOC is ::", originDutyLocationGBLOC) } else { originDutyLocationGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), originDutyLocation.Address.PostalCode) if err != nil { diff --git a/pkg/handlers/internalapi/orders_test.go b/pkg/handlers/internalapi/orders_test.go index a74d8aafdfd..c3ffc63a65e 100644 --- a/pkg/handlers/internalapi/orders_test.go +++ b/pkg/handlers/internalapi/orders_test.go @@ -52,40 +52,95 @@ func (suite *HandlerSuite) TestCreateOrder() { {test: "Can create CONUS order", isOconus: false}, } for _, tc := range testCases { + usPostRegionCityID := uuid.Must(uuid.NewV4()) address := factory.BuildAddress(suite.DB(), []factory.Customization{ { Model: models.Address{ - IsOconus: &tc.isOconus, - ID: uuid.Must(uuid.NewV4()), + IsOconus: &tc.isOconus, + UsPostRegionCityId: &usPostRegionCityID, }, }, }, nil) + suite.MustSave(&address) originDutyLocation := factory.BuildDutyLocation(suite.DB(), []factory.Customization{ { Model: models.DutyLocation{ - Name: factory.MakeRandomString(8), + Name: factory.MakeRandomString(8), + AddressID: address.ID, }, }, - { - Model: address, - LinkOnly: true, - }, }, nil) + suite.MustSave(&originDutyLocation) + dutyLocation := factory.FetchOrBuildCurrentDutyLocation(suite.DB()) if !tc.isOconus { factory.FetchOrBuildPostalCodeToGBLOC(suite.DB(), dutyLocation.Address.PostalCode, "KKFA") } else { - factory.BuildJppsoRegions(suite.DB(), []factory.Customization{ - { - Model: models.JppsoRegions{ - Code: "MBFL", - }, - }, - }, nil) + contract := models.ReContract{ + Code: "Test_create_oconus_order_code", + Name: "Test_create_oconus_order", + } + verrs, err := suite.AppContextForTest().DB().ValidateAndSave(&contract) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(verrs.Error()) + } + + rateAreaCode := uuid.Must(uuid.NewV4()).String()[0:5] + rateArea := models.ReRateArea{ + ID: uuid.Must(uuid.NewV4()), + ContractID: contract.ID, + IsOconus: true, + Code: rateAreaCode, + Name: fmt.Sprintf("Alaska-%s", rateAreaCode), + Contract: contract, + } + verrs, err = suite.DB().ValidateAndCreate(&rateArea) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(err.Error()) + } + + us_country, err := models.FetchCountryByCode(suite.DB(), "US") + suite.NotNil(us_country) + suite.Nil(err) + + usprc, err := models.FindByZipCode(suite.AppContextForTest().DB(), "99801") + suite.NotNil(usprc) + suite.FatalNoError(err) + + oconusRateArea := models.OconusRateArea{ + ID: uuid.Must(uuid.NewV4()), + RateAreaId: rateArea.ID, + CountryId: us_country.ID, + UsPostRegionCityId: usprc.ID, + Active: true, + } + verrs, err = suite.DB().ValidateAndCreate(&oconusRateArea) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(err.Error()) + } + jppsoRegion := models.JppsoRegions{ + ID: uuid.Must(uuid.NewV4()), + Code: "MBFL", + } + suite.MustSave(&jppsoRegion) + + gblocAors := models.GblocAors{ + JppsoRegionID: jppsoRegion.ID, + OconusRateAreaID: oconusRateArea.ID, + } + suite.MustSave(&gblocAors) } factory.FetchOrBuildDefaultContractor(suite.DB(), nil, nil) - req := httptest.NewRequest("POST", "/orders", nil) req = suite.AuthenticateRequest(req, sm) @@ -121,6 +176,9 @@ func (suite *HandlerSuite) TestCreateOrder() { CreateOrders: payload, } + fmt.Println("**HERE in orders_test: originDutyLocationID below**") + fmt.Println(payload.OriginDutyLocationID.String()) + fakeS3 := storageTest.NewFakeS3Storage(true) handlerConfig := suite.HandlerConfig() handlerConfig.SetFileStorer(fakeS3) diff --git a/pkg/models/duty_location.go b/pkg/models/duty_location.go index e60485fd291..15e10213731 100644 --- a/pkg/models/duty_location.go +++ b/pkg/models/duty_location.go @@ -301,12 +301,10 @@ func FetchOconusDutyLocationGbloc(appCtx *pop.Connection, dutyLocation DutyLocat sqlQuery := ` select j.code gbloc from addresses a, - v_locations v, re_oconus_rate_areas o, jppso_regions j, gbloc_aors g - where a.us_post_region_cities_id = v.uprc_id - and v.uprc_id = o.us_post_region_cities_id + where a.us_post_region_cities_id = o.us_post_region_cities_id and o.id = g.oconus_rate_area_id and j.id = g.jppso_regions_id and a.id = $1 ` From 5d2989f370edc3f598e8ab5c5e2d831c0f800ff4 Mon Sep 17 00:00:00 2001 From: pambecker Date: Fri, 20 Dec 2024 23:06:59 +0000 Subject: [PATCH 09/32] fix tests --- pkg/handlers/internalapi/orders.go | 6 - pkg/handlers/internalapi/orders_test.go | 462 +++++++++++++++--------- 2 files changed, 291 insertions(+), 177 deletions(-) diff --git a/pkg/handlers/internalapi/orders.go b/pkg/handlers/internalapi/orders.go index 6fed4ebd64d..a84f4044d78 100644 --- a/pkg/handlers/internalapi/orders.go +++ b/pkg/handlers/internalapi/orders.go @@ -3,7 +3,6 @@ package internalapi import ( "database/sql" "errors" - "fmt" "time" "github.com/go-openapi/runtime" @@ -186,16 +185,11 @@ func (h CreateOrdersHandler) Handle(params ordersop.CreateOrdersParams) middlewa var originDutyLocationGBLOC *string if *originDutyLocation.Address.IsOconus { - fmt.Println("*** HERE in isOconus: originDutyLocation.ID: ", originDutyLocation.ID) - fmt.Println("*** AddressID: ", originDutyLocation.AddressID) - fmt.Println("*** originDutyLocation.Address.UsPostRegionCityID: ", originDutyLocation.Address.UsPostRegionCityId) originDutyLocationGBLOCOconus, err := models.FetchOconusDutyLocationGbloc(appCtx.DB(), originDutyLocation, serviceMember) if err != nil { - fmt.Println("**^^is there an error fetching oconus gbloc?? ", err) return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") } originDutyLocationGBLOC = &originDutyLocationGBLOCOconus.Gbloc - fmt.Println("^^or GBBLOC is ::", originDutyLocationGBLOC) } else { originDutyLocationGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), originDutyLocation.Address.PostalCode) if err != nil { diff --git a/pkg/handlers/internalapi/orders_test.go b/pkg/handlers/internalapi/orders_test.go index c3ffc63a65e..869a2faba88 100644 --- a/pkg/handlers/internalapi/orders_test.go +++ b/pkg/handlers/internalapi/orders_test.go @@ -43,188 +43,255 @@ func (suite *HandlerSuite) TestCreateOrder() { }, }, }, nil) - suite.Run("can create conus and oconus orders", func() { - testCases := []struct { - test string - isOconus bool - }{ - {test: "Can create OCONUS order", isOconus: true}, - {test: "Can create CONUS order", isOconus: false}, + suite.Run("can create conus orders", func() { + address := factory.BuildAddress(suite.DB(), []factory.Customization{ + { + Model: models.Address{ + IsOconus: models.BoolPointer(false), + }, + }, + }, nil) + + originDutyLocation := factory.BuildDutyLocation(suite.DB(), []factory.Customization{ + { + Model: models.DutyLocation{ + Name: factory.MakeRandomString(8), + }, + }, + { + Model: address, + LinkOnly: true, + }, + }, nil) + + dutyLocation := factory.FetchOrBuildCurrentDutyLocation(suite.DB()) + factory.FetchOrBuildPostalCodeToGBLOC(suite.DB(), dutyLocation.Address.PostalCode, "KKFA") + factory.FetchOrBuildDefaultContractor(suite.DB(), nil, nil) + req := httptest.NewRequest("POST", "/orders", nil) + req = suite.AuthenticateRequest(req, sm) + + hasDependents := true + spouseHasProGear := true + issueDate := time.Date(2018, time.March, 10, 0, 0, 0, 0, time.UTC) + reportByDate := time.Date(2018, time.August, 1, 0, 0, 0, 0, time.UTC) + ordersType := internalmessages.OrdersTypePERMANENTCHANGEOFSTATION + deptIndicator := internalmessages.DeptIndicatorAIRANDSPACEFORCE + payload := &internalmessages.CreateUpdateOrders{ + HasDependents: handlers.FmtBool(hasDependents), + SpouseHasProGear: handlers.FmtBool(spouseHasProGear), + IssueDate: handlers.FmtDate(issueDate), + ReportByDate: handlers.FmtDate(reportByDate), + OrdersType: internalmessages.NewOrdersType(ordersType), + OriginDutyLocationID: *handlers.FmtUUIDPtr(&originDutyLocation.ID), + NewDutyLocationID: handlers.FmtUUID(dutyLocation.ID), + ServiceMemberID: handlers.FmtUUID(sm.ID), + OrdersNumber: handlers.FmtString("123456"), + Tac: handlers.FmtString("E19A"), + Sac: handlers.FmtString("SacNumber"), + DepartmentIndicator: internalmessages.NewDeptIndicator(deptIndicator), + Grade: models.ServiceMemberGradeE1.Pointer(), } - for _, tc := range testCases { - usPostRegionCityID := uuid.Must(uuid.NewV4()) - address := factory.BuildAddress(suite.DB(), []factory.Customization{ - { - Model: models.Address{ - IsOconus: &tc.isOconus, - UsPostRegionCityId: &usPostRegionCityID, - }, + + params := ordersop.CreateOrdersParams{ + HTTPRequest: req, + CreateOrders: payload, + } + + fakeS3 := storageTest.NewFakeS3Storage(true) + handlerConfig := suite.HandlerConfig() + handlerConfig.SetFileStorer(fakeS3) + createHandler := CreateOrdersHandler{handlerConfig} + + response := createHandler.Handle(params) + + suite.Assertions.IsType(&ordersop.CreateOrdersCreated{}, response) + okResponse := response.(*ordersop.CreateOrdersCreated) + orderID := okResponse.Payload.ID.String() + createdOrder, _ := models.FetchOrder(suite.DB(), uuid.FromStringOrNil(orderID)) + var createdEntitlement models.Entitlement + err := suite.DB().Find(&createdEntitlement, createdOrder.EntitlementID) + suite.NoError(err) + suite.NotEmpty(createdEntitlement) + suite.Assertions.Equal(sm.ID.String(), okResponse.Payload.ServiceMemberID.String()) + suite.Assertions.Len(okResponse.Payload.Moves, 1) + suite.Assertions.Equal(ordersType, *okResponse.Payload.OrdersType) + suite.Assertions.Equal(handlers.FmtString("123456"), okResponse.Payload.OrdersNumber) + suite.Assertions.Equal(handlers.FmtString("E19A"), okResponse.Payload.Tac) + suite.Assertions.Equal(handlers.FmtString("SacNumber"), okResponse.Payload.Sac) + suite.Assertions.Equal(&deptIndicator, okResponse.Payload.DepartmentIndicator) + suite.Assertions.Equal(*models.Int64Pointer(8000), *okResponse.Payload.AuthorizedWeight) + suite.NotNil(&createdOrder.Entitlement) + suite.NotEmpty(createdOrder.SupplyAndServicesCostEstimate) + suite.NotEmpty(createdOrder.PackingAndShippingInstructions) + suite.NotEmpty(createdOrder.MethodOfPayment) + suite.NotEmpty(createdOrder.NAICS) + suite.Nil(createdEntitlement.AccompaniedTour) + suite.Nil(createdEntitlement.DependentsTwelveAndOver) + suite.Nil(createdEntitlement.DependentsUnderTwelve) + }) + + suite.Run("can create oconus orders", func() { + usprc, err := models.FindByZipCode(suite.AppContextForTest().DB(), "99801") + suite.NotNil(usprc) + suite.FatalNoError(err) + + address := factory.BuildAddress(suite.DB(), []factory.Customization{ + { + Model: models.Address{ + IsOconus: models.BoolPointer(true), + UsPostRegionCityId: &usprc.ID, }, - }, nil) - suite.MustSave(&address) + }, + }, nil) - originDutyLocation := factory.BuildDutyLocation(suite.DB(), []factory.Customization{ - { - Model: models.DutyLocation{ - Name: factory.MakeRandomString(8), - AddressID: address.ID, - }, + originDutyLocation := factory.BuildDutyLocation(suite.DB(), []factory.Customization{ + { + Model: models.DutyLocation{ + Name: factory.MakeRandomString(8), + AddressID: address.ID, }, - }, nil) - suite.MustSave(&originDutyLocation) + }, + }, nil) - dutyLocation := factory.FetchOrBuildCurrentDutyLocation(suite.DB()) - if !tc.isOconus { - factory.FetchOrBuildPostalCodeToGBLOC(suite.DB(), dutyLocation.Address.PostalCode, "KKFA") - } else { - contract := models.ReContract{ - Code: "Test_create_oconus_order_code", - Name: "Test_create_oconus_order", - } - verrs, err := suite.AppContextForTest().DB().ValidateAndSave(&contract) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(verrs.Error()) - } - - rateAreaCode := uuid.Must(uuid.NewV4()).String()[0:5] - rateArea := models.ReRateArea{ - ID: uuid.Must(uuid.NewV4()), - ContractID: contract.ID, - IsOconus: true, - Code: rateAreaCode, - Name: fmt.Sprintf("Alaska-%s", rateAreaCode), - Contract: contract, - } - verrs, err = suite.DB().ValidateAndCreate(&rateArea) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(err.Error()) - } - - us_country, err := models.FetchCountryByCode(suite.DB(), "US") - suite.NotNil(us_country) - suite.Nil(err) - - usprc, err := models.FindByZipCode(suite.AppContextForTest().DB(), "99801") - suite.NotNil(usprc) - suite.FatalNoError(err) - - oconusRateArea := models.OconusRateArea{ - ID: uuid.Must(uuid.NewV4()), - RateAreaId: rateArea.ID, - CountryId: us_country.ID, - UsPostRegionCityId: usprc.ID, - Active: true, - } - verrs, err = suite.DB().ValidateAndCreate(&oconusRateArea) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(err.Error()) - } - jppsoRegion := models.JppsoRegions{ - ID: uuid.Must(uuid.NewV4()), - Code: "MBFL", - } - suite.MustSave(&jppsoRegion) - - gblocAors := models.GblocAors{ - JppsoRegionID: jppsoRegion.ID, - OconusRateAreaID: oconusRateArea.ID, - } - suite.MustSave(&gblocAors) - } - factory.FetchOrBuildDefaultContractor(suite.DB(), nil, nil) - req := httptest.NewRequest("POST", "/orders", nil) - req = suite.AuthenticateRequest(req, sm) + dutyLocation := factory.FetchOrBuildCurrentDutyLocation(suite.DB()) - hasDependents := true - spouseHasProGear := true - issueDate := time.Date(2018, time.March, 10, 0, 0, 0, 0, time.UTC) - reportByDate := time.Date(2018, time.August, 1, 0, 0, 0, 0, time.UTC) - ordersType := internalmessages.OrdersTypePERMANENTCHANGEOFSTATION - deptIndicator := internalmessages.DeptIndicatorAIRANDSPACEFORCE - payload := &internalmessages.CreateUpdateOrders{ - HasDependents: handlers.FmtBool(hasDependents), - SpouseHasProGear: handlers.FmtBool(spouseHasProGear), - IssueDate: handlers.FmtDate(issueDate), - ReportByDate: handlers.FmtDate(reportByDate), - OrdersType: internalmessages.NewOrdersType(ordersType), - OriginDutyLocationID: *handlers.FmtUUIDPtr(&originDutyLocation.ID), - NewDutyLocationID: handlers.FmtUUID(dutyLocation.ID), - ServiceMemberID: handlers.FmtUUID(sm.ID), - OrdersNumber: handlers.FmtString("123456"), - Tac: handlers.FmtString("E19A"), - Sac: handlers.FmtString("SacNumber"), - DepartmentIndicator: internalmessages.NewDeptIndicator(deptIndicator), - Grade: models.ServiceMemberGradeE1.Pointer(), - } - if tc.isOconus { - payload.AccompaniedTour = models.BoolPointer(true) - payload.DependentsTwelveAndOver = models.Int64Pointer(5) - payload.DependentsUnderTwelve = models.Int64Pointer(5) - } + contract := models.ReContract{ + Code: "Test_create_oconus_order_code", + Name: "Test_create_oconus_order", + } + verrs, err := suite.AppContextForTest().DB().ValidateAndSave(&contract) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(verrs.Error()) + } - params := ordersop.CreateOrdersParams{ - HTTPRequest: req, - CreateOrders: payload, - } + rateAreaCode := uuid.Must(uuid.NewV4()).String()[0:5] + rateArea := models.ReRateArea{ + ID: uuid.Must(uuid.NewV4()), + ContractID: contract.ID, + IsOconus: true, + Code: rateAreaCode, + Name: fmt.Sprintf("Alaska-%s", rateAreaCode), + Contract: contract, + } + verrs, err = suite.DB().ValidateAndCreate(&rateArea) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(err.Error()) + } - fmt.Println("**HERE in orders_test: originDutyLocationID below**") - fmt.Println(payload.OriginDutyLocationID.String()) + us_country, err := models.FetchCountryByCode(suite.DB(), "US") + suite.NotNil(us_country) + suite.Nil(err) - fakeS3 := storageTest.NewFakeS3Storage(true) - handlerConfig := suite.HandlerConfig() - handlerConfig.SetFileStorer(fakeS3) - createHandler := CreateOrdersHandler{handlerConfig} - response := createHandler.Handle(params) + oconusRateArea := models.OconusRateArea{ + ID: uuid.Must(uuid.NewV4()), + RateAreaId: rateArea.ID, + CountryId: us_country.ID, + UsPostRegionCityId: usprc.ID, + Active: true, + } + verrs, err = suite.DB().ValidateAndCreate(&oconusRateArea) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(err.Error()) + } + jppsoRegion := models.JppsoRegions{ + Name: "USCG Base Ketchikan", + Code: "MAPK", + } + suite.MustSave(&jppsoRegion) - suite.Assertions.IsType(&ordersop.CreateOrdersCreated{}, response) - okResponse := response.(*ordersop.CreateOrdersCreated) + gblocAors := models.GblocAors{ + JppsoRegionID: jppsoRegion.ID, + OconusRateAreaID: oconusRateArea.ID, + } + suite.MustSave(&gblocAors) - orderID := okResponse.Payload.ID.String() - createdOrder, _ := models.FetchOrder(suite.DB(), uuid.FromStringOrNil(orderID)) - var createdEntitlement models.Entitlement - err := suite.DB().Find(&createdEntitlement, createdOrder.EntitlementID) - suite.NoError(err) - suite.NotEmpty(createdEntitlement) - suite.Assertions.Equal(sm.ID.String(), okResponse.Payload.ServiceMemberID.String()) - suite.Assertions.Len(okResponse.Payload.Moves, 1) - suite.Assertions.Equal(ordersType, *okResponse.Payload.OrdersType) - suite.Assertions.Equal(handlers.FmtString("123456"), okResponse.Payload.OrdersNumber) - suite.Assertions.Equal(handlers.FmtString("E19A"), okResponse.Payload.Tac) - suite.Assertions.Equal(handlers.FmtString("SacNumber"), okResponse.Payload.Sac) - suite.Assertions.Equal(&deptIndicator, okResponse.Payload.DepartmentIndicator) - suite.Assertions.Equal(*models.Int64Pointer(8000), *okResponse.Payload.AuthorizedWeight) - suite.NotNil(&createdOrder.Entitlement) - suite.NotEmpty(createdOrder.SupplyAndServicesCostEstimate) - suite.NotEmpty(createdOrder.PackingAndShippingInstructions) - suite.NotEmpty(createdOrder.MethodOfPayment) - suite.NotEmpty(createdOrder.NAICS) - if tc.isOconus { - suite.NotNil(createdEntitlement.AccompaniedTour) - suite.NotNil(createdEntitlement.DependentsTwelveAndOver) - suite.NotNil(createdEntitlement.DependentsUnderTwelve) - } else { - suite.Nil(createdEntitlement.AccompaniedTour) - suite.Nil(createdEntitlement.DependentsTwelveAndOver) - suite.Nil(createdEntitlement.DependentsUnderTwelve) - } + factory.FetchOrBuildDefaultContractor(suite.DB(), nil, nil) + req := httptest.NewRequest("POST", "/orders", nil) + req = suite.AuthenticateRequest(req, sm) + + hasDependents := true + spouseHasProGear := true + issueDate := time.Date(2018, time.March, 10, 0, 0, 0, 0, time.UTC) + reportByDate := time.Date(2018, time.August, 1, 0, 0, 0, 0, time.UTC) + ordersType := internalmessages.OrdersTypePERMANENTCHANGEOFSTATION + deptIndicator := internalmessages.DeptIndicatorAIRANDSPACEFORCE + payload := &internalmessages.CreateUpdateOrders{ + HasDependents: handlers.FmtBool(hasDependents), + SpouseHasProGear: handlers.FmtBool(spouseHasProGear), + IssueDate: handlers.FmtDate(issueDate), + ReportByDate: handlers.FmtDate(reportByDate), + OrdersType: internalmessages.NewOrdersType(ordersType), + OriginDutyLocationID: *handlers.FmtUUIDPtr(&originDutyLocation.ID), + NewDutyLocationID: handlers.FmtUUID(dutyLocation.ID), + ServiceMemberID: handlers.FmtUUID(sm.ID), + OrdersNumber: handlers.FmtString("123456"), + Tac: handlers.FmtString("E19A"), + Sac: handlers.FmtString("SacNumber"), + DepartmentIndicator: internalmessages.NewDeptIndicator(deptIndicator), + Grade: models.ServiceMemberGradeE1.Pointer(), + AccompaniedTour: models.BoolPointer(true), + DependentsTwelveAndOver: models.Int64Pointer(5), + DependentsUnderTwelve: models.Int64Pointer(5), + } + params := ordersop.CreateOrdersParams{ + HTTPRequest: req, + CreateOrders: payload, } + + fakeS3 := storageTest.NewFakeS3Storage(true) + handlerConfig := suite.HandlerConfig() + handlerConfig.SetFileStorer(fakeS3) + createHandler := CreateOrdersHandler{handlerConfig} + response := createHandler.Handle(params) + + suite.Assertions.IsType(&ordersop.CreateOrdersCreated{}, response) + okResponse := response.(*ordersop.CreateOrdersCreated) + + orderID := okResponse.Payload.ID.String() + createdOrder, _ := models.FetchOrder(suite.DB(), uuid.FromStringOrNil(orderID)) + var createdEntitlement models.Entitlement + err = suite.DB().Find(&createdEntitlement, createdOrder.EntitlementID) + suite.NoError(err) + suite.NotEmpty(createdEntitlement) + suite.Assertions.Equal(sm.ID.String(), okResponse.Payload.ServiceMemberID.String()) + suite.Assertions.Len(okResponse.Payload.Moves, 1) + suite.Assertions.Equal(ordersType, *okResponse.Payload.OrdersType) + suite.Assertions.Equal(handlers.FmtString("123456"), okResponse.Payload.OrdersNumber) + suite.Assertions.Equal(handlers.FmtString("E19A"), okResponse.Payload.Tac) + suite.Assertions.Equal(handlers.FmtString("SacNumber"), okResponse.Payload.Sac) + suite.Assertions.Equal(&deptIndicator, okResponse.Payload.DepartmentIndicator) + suite.Assertions.Equal(*models.Int64Pointer(8000), *okResponse.Payload.AuthorizedWeight) + suite.NotNil(&createdOrder.Entitlement) + suite.NotEmpty(createdOrder.SupplyAndServicesCostEstimate) + suite.NotEmpty(createdOrder.PackingAndShippingInstructions) + suite.NotEmpty(createdOrder.MethodOfPayment) + suite.NotEmpty(createdOrder.NAICS) + suite.NotNil(createdEntitlement.AccompaniedTour) + suite.NotNil(createdEntitlement.DependentsTwelveAndOver) + suite.NotNil(createdEntitlement.DependentsUnderTwelve) + }) suite.Run("properly handles entitlement validation", func() { + usprc, err := models.FindByZipCode(suite.AppContextForTest().DB(), "99506") + suite.NotNil(usprc) + suite.FatalNoError(err) + address := factory.BuildAddress(suite.DB(), []factory.Customization{ { Model: models.Address{ - IsOconus: models.BoolPointer(true), + IsOconus: models.BoolPointer(true), + UsPostRegionCityId: &usprc.ID, }, }, }, nil) @@ -232,17 +299,72 @@ func (suite *HandlerSuite) TestCreateOrder() { originDutyLocation := factory.BuildDutyLocation(suite.DB(), []factory.Customization{ { Model: models.DutyLocation{ - Name: factory.MakeRandomString(8), + Name: factory.MakeRandomString(8), + AddressID: address.ID, }, }, - { - Model: address, - LinkOnly: true, - }, }, nil) dutyLocation := factory.FetchOrBuildCurrentDutyLocation(suite.DB()) - factory.FetchOrBuildPostalCodeToGBLOC(suite.DB(), dutyLocation.Address.PostalCode, "KKFA") + contract := models.ReContract{ + Code: "Test_create_oconus_entitlement_code", + Name: "Test_create_oconus_entitlement", + } + verrs, err := suite.AppContextForTest().DB().ValidateAndSave(&contract) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(verrs.Error()) + } + + rateAreaCode := uuid.Must(uuid.NewV4()).String()[0:5] + rateArea := models.ReRateArea{ + ID: uuid.Must(uuid.NewV4()), + ContractID: contract.ID, + IsOconus: true, + Code: rateAreaCode, + Name: fmt.Sprintf("Alaska-%s", rateAreaCode), + Contract: contract, + } + verrs, err = suite.DB().ValidateAndCreate(&rateArea) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(err.Error()) + } + + us_country, err := models.FetchCountryByCode(suite.DB(), "US") + suite.NotNil(us_country) + suite.Nil(err) + + oconusRateArea := models.OconusRateArea{ + ID: uuid.Must(uuid.NewV4()), + RateAreaId: rateArea.ID, + CountryId: us_country.ID, + UsPostRegionCityId: usprc.ID, + Active: true, + } + verrs, err = suite.DB().ValidateAndCreate(&oconusRateArea) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(err.Error()) + } + jppsoRegion := models.JppsoRegions{ + Name: "JPPSO Elmendorf-Richardson", + Code: "MBFL", + } + suite.MustSave(&jppsoRegion) + + gblocAors := models.GblocAors{ + JppsoRegionID: jppsoRegion.ID, + OconusRateAreaID: oconusRateArea.ID, + } + suite.MustSave(&gblocAors) + factory.FetchOrBuildDefaultContractor(suite.DB(), nil, nil) req := httptest.NewRequest("POST", "/orders", nil) @@ -703,8 +825,6 @@ func (suite *HandlerSuite) TestUpdateOrdersHandler() { }}, nil) newDutyLocation := factory.BuildDutyLocation(suite.DB(), nil, nil) - newTransportationOffice := factory.BuildTransportationOffice(suite.DB(), nil, nil) - newDutyLocation.TransportationOffice = newTransportationOffice newOrdersType := internalmessages.OrdersTypePERMANENTCHANGEOFSTATION newOrdersNumber := "123456" From b619d68b14a0e9864d775d9a8cbcc672e64b10de Mon Sep 17 00:00:00 2001 From: pambecker Date: Mon, 23 Dec 2024 14:49:54 +0000 Subject: [PATCH 10/32] adding alias --- ...7191012_update_move_to_gbloc_for_ak.up.sql | 58 +++++++++---------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/migrations/app/schema/20241217191012_update_move_to_gbloc_for_ak.up.sql b/migrations/app/schema/20241217191012_update_move_to_gbloc_for_ak.up.sql index 16da9984746..282ad1b0b16 100644 --- a/migrations/app/schema/20241217191012_update_move_to_gbloc_for_ak.up.sql +++ b/migrations/app/schema/20241217191012_update_move_to_gbloc_for_ak.up.sql @@ -2,42 +2,42 @@ delete from postal_code_to_gblocs where postal_code in ( select uspr_zip_id from v_locations where state = 'AK'); drop view move_to_gbloc; -CREATE OR REPLACE VIEW public.move_to_gbloc -AS +CREATE OR REPLACE VIEW move_to_gbloc AS SELECT move_id, gbloc FROM ( -SELECT DISTINCT ON (sh.move_id) sh.move_id, s.affiliation, + SELECT DISTINCT ON (sh.move_id) sh.move_id, s.affiliation, COALESCE(pctg.gbloc, coalesce(pctg_oconus_bos.gbloc, coalesce(pctg_oconus.gbloc, pctg_ppm.gbloc))) AS gbloc - FROM mto_shipments sh - JOIN moves m ON sh.move_id = m.id - JOIN orders o on m.orders_id = o.id - JOIN service_members s on o.service_member_id = s.id - LEFT JOIN ( SELECT a.id AS address_id, - pctg_1.gbloc, pctg_1.postal_code + FROM mto_shipments sh + JOIN moves m ON sh.move_id = m.id + JOIN orders o on m.orders_id = o.id + JOIN service_members s on o.service_member_id = s.id + LEFT JOIN ( SELECT a.id AS address_id, + pctg_1.gbloc, pctg_1.postal_code FROM addresses a - JOIN postal_code_to_gblocs pctg_1 ON a.postal_code::text = pctg_1.postal_code::text) pctg ON pctg.address_id = sh.pickup_address_id - LEFT JOIN ( SELECT ppm.shipment_id, - pctg_1.gbloc + JOIN postal_code_to_gblocs pctg_1 ON a.postal_code::text = pctg_1.postal_code::text) pctg ON pctg.address_id = sh.pickup_address_id + LEFT JOIN ( SELECT ppm.shipment_id, + pctg_1.gbloc FROM ppm_shipments ppm - JOIN addresses ppm_address ON ppm.pickup_postal_address_id = ppm_address.id - JOIN postal_code_to_gblocs pctg_1 ON ppm_address.postal_code::text = pctg_1.postal_code::text) pctg_ppm ON pctg_ppm.shipment_id = sh.id - LEFT JOIN ( SELECT a.id AS address_id, - cast(jr.code as varchar) AS gbloc, ga.department_indicator + JOIN addresses ppm_address ON ppm.pickup_postal_address_id = ppm_address.id + JOIN postal_code_to_gblocs pctg_1 ON ppm_address.postal_code::text = pctg_1.postal_code::text) pctg_ppm ON pctg_ppm.shipment_id = sh.id + LEFT JOIN ( SELECT a.id AS address_id, + cast(jr.code as varchar) AS gbloc, ga.department_indicator FROM addresses a - JOIN re_oconus_rate_areas ora ON a.us_post_region_cities_id = ora.us_post_region_cities_id - JOIN gbloc_aors ga ON ora.id = ga.oconus_rate_area_id - JOIN jppso_regions jr ON ga.jppso_regions_id = jr.id - ) pctg_oconus_bos ON pctg_oconus_bos.address_id = sh.pickup_address_id - and case when s.affiliation = 'AIR_FORCE' THEN 'AIR_AND_SPACE_FORCE' + JOIN re_oconus_rate_areas ora ON a.us_post_region_cities_id = ora.us_post_region_cities_id + JOIN gbloc_aors ga ON ora.id = ga.oconus_rate_area_id + JOIN jppso_regions jr ON ga.jppso_regions_id = jr.id + ) pctg_oconus_bos ON pctg_oconus_bos.address_id = sh.pickup_address_id + and case when s.affiliation = 'AIR_FORCE' THEN 'AIR_AND_SPACE_FORCE' when s.affiliation = 'SPACE_FORCE' THEN 'AIR_AND_SPACE_FORCE' when s.affiliation = 'NAVY' THEN 'NAVY_AND_MARINES' when s.affiliation = 'MARINES' THEN 'NAVY_AND_MARINES' else s.affiliation - end = pctg_oconus_bos.department_indicator - LEFT JOIN ( SELECT a.id AS address_id, - cast(pctg_1.code as varchar) AS gbloc, ga.department_indicator + end = pctg_oconus_bos.department_indicator + LEFT JOIN ( SELECT a.id AS address_id, + cast(pctg_1.code as varchar) AS gbloc, ga.department_indicator FROM addresses a - JOIN re_oconus_rate_areas ora ON a.us_post_region_cities_id = ora.us_post_region_cities_id - JOIN gbloc_aors ga ON ora.id = ga.oconus_rate_area_id - JOIN jppso_regions pctg_1 ON ga.jppso_regions_id = pctg_1.id - ) pctg_oconus ON pctg_oconus.address_id = sh.pickup_address_id and pctg_oconus.department_indicator is null - WHERE sh.deleted_at IS NULL); \ No newline at end of file + JOIN re_oconus_rate_areas ora ON a.us_post_region_cities_id = ora.us_post_region_cities_id + JOIN gbloc_aors ga ON ora.id = ga.oconus_rate_area_id + JOIN jppso_regions pctg_1 ON ga.jppso_regions_id = pctg_1.id + ) pctg_oconus ON pctg_oconus.address_id = sh.pickup_address_id and pctg_oconus.department_indicator is null + WHERE sh.deleted_at IS NULL + ORDER BY sh.move_id, sh.created_at) as m; \ No newline at end of file From 350876c65c42b50aabb16dee0ac35983a01ff86e Mon Sep 17 00:00:00 2001 From: pambecker Date: Mon, 23 Dec 2024 22:01:57 +0000 Subject: [PATCH 11/32] cleanup --- pkg/factory/jppso_regions_factory.go | 40 ---------------------------- pkg/factory/shared.go | 2 -- 2 files changed, 42 deletions(-) delete mode 100644 pkg/factory/jppso_regions_factory.go diff --git a/pkg/factory/jppso_regions_factory.go b/pkg/factory/jppso_regions_factory.go deleted file mode 100644 index 7b07219de86..00000000000 --- a/pkg/factory/jppso_regions_factory.go +++ /dev/null @@ -1,40 +0,0 @@ -package factory - -import ( - "github.com/gobuffalo/pop/v6" - - "github.com/transcom/mymove/pkg/models" - "github.com/transcom/mymove/pkg/testdatagen" -) - -// BuildJppsoRegions creates a single JppsoRegions entry. -// Params: -// - customs is a slice that will be modified by the factory -// - db can be set to nil to create a stubbed model that is not stored in DB. -func BuildJppsoRegions(db *pop.Connection, customs []Customization, traits []Trait) models.JppsoRegions { - customs = setupCustomizations(customs, traits) - - // Find JppsoRegions assertion and convert to models.JppsoRegions - var cJppsoRegions models.JppsoRegions - if result := findValidCustomization(customs, JppsoRegions); result != nil { - cJppsoRegions = result.Model.(models.JppsoRegions) - if result.LinkOnly { - return cJppsoRegions - } - } - - // Create JppsoRegions - jppsoRegions := models.JppsoRegions{ - Code: "KKFA", - Name: "JPPSO-North Central", - } - - // Overwrite values with those from customizations - testdatagen.MergeModels(&jppsoRegions, cJppsoRegions) - - // If db is false, it's a stub. No need to create in database - if db != nil { - mustCreate(db, &jppsoRegions) - } - return jppsoRegions -} diff --git a/pkg/factory/shared.go b/pkg/factory/shared.go index 2aeda441630..7b76ce0529c 100644 --- a/pkg/factory/shared.go +++ b/pkg/factory/shared.go @@ -101,7 +101,6 @@ var WeightTicket CustomType = "WeightTicket" var UsPostRegionCity CustomType = "UsPostRegionCity" var UsersPrivileges CustomType = "UsersPrivileges" var Privilege CustomType = "Privilege" -var JppsoRegions CustomType = "JppsoRegions" // defaultTypesMap allows us to assign CustomTypes for most default types var defaultTypesMap = map[string]CustomType{ @@ -166,7 +165,6 @@ var defaultTypesMap = map[string]CustomType{ "roles.Role": Role, "models.UsersPrivileges": UsersPrivileges, "models.Privilege": Privilege, - "models.JppsoRegions": JppsoRegions, } // Instead of nesting structs, we create specific CustomTypes here to give devs From 780d6b10c685b890df1111a7c1a5b20a9adacef2 Mon Sep 17 00:00:00 2001 From: pambecker Date: Tue, 24 Dec 2024 16:35:49 +0000 Subject: [PATCH 12/32] test --- pkg/handlers/internalapi/orders_test.go | 1 + pkg/models/duty_location_test.go | 114 ++++++++++++++++++++++++ 2 files changed, 115 insertions(+) diff --git a/pkg/handlers/internalapi/orders_test.go b/pkg/handlers/internalapi/orders_test.go index 869a2faba88..343cb291389 100644 --- a/pkg/handlers/internalapi/orders_test.go +++ b/pkg/handlers/internalapi/orders_test.go @@ -267,6 +267,7 @@ func (suite *HandlerSuite) TestCreateOrder() { suite.Assertions.Len(okResponse.Payload.Moves, 1) suite.Assertions.Equal(ordersType, *okResponse.Payload.OrdersType) suite.Assertions.Equal(handlers.FmtString("123456"), okResponse.Payload.OrdersNumber) + suite.Assertions.Equal(handlers.FmtString("MAPK"), okResponse.Payload.OriginDutyLocationGbloc) suite.Assertions.Equal(handlers.FmtString("E19A"), okResponse.Payload.Tac) suite.Assertions.Equal(handlers.FmtString("SacNumber"), okResponse.Payload.Sac) suite.Assertions.Equal(&deptIndicator, okResponse.Payload.DepartmentIndicator) diff --git a/pkg/models/duty_location_test.go b/pkg/models/duty_location_test.go index a368efec9ac..8c6c3b52d20 100644 --- a/pkg/models/duty_location_test.go +++ b/pkg/models/duty_location_test.go @@ -215,6 +215,120 @@ func (suite *ModelSuite) Test_FetchDutyLocationWithTransportationOffice() { }) } +func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { + suite.Run("fetches duty location GBLOC for AK address, Zone II AirForce", func() { + usprc, err := models.FindByZipCode(suite.AppContextForTest().DB(), "99707") + suite.NotNil(usprc) + suite.FatalNoError(err) + address := factory.BuildAddress(suite.DB(), []factory.Customization{ + { + Model: models.Address{ + IsOconus: models.BoolPointer(true), + UsPostRegionCityId: &usprc.ID, + }, + }, + }, nil) + originDutyLocation := factory.BuildDutyLocation(suite.DB(), []factory.Customization{ + { + Model: models.DutyLocation{ + Name: factory.MakeRandomString(8), + AddressID: address.ID, + }, + }, + }, nil) + airForce := models.AffiliationAIRFORCE + serviceMember := factory.BuildServiceMember(suite.DB(), []factory.Customization{ + { + Model: models.ServiceMember{ + Affiliation: &airForce, + }, + }, + }, nil) + + // set it up + contract := models.ReContract{ + Code: "Test_create_oconus_order_code", + Name: "Test_create_oconus_order", + } + verrs, err := suite.AppContextForTest().DB().ValidateAndSave(&contract) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(verrs.Error()) + } + rateAreaCode := uuid.Must(uuid.NewV4()).String()[0:5] + rateArea := models.ReRateArea{ + ID: uuid.Must(uuid.NewV4()), + ContractID: contract.ID, + IsOconus: true, + Code: rateAreaCode, + Name: fmt.Sprintf("Alaska-%s", rateAreaCode), + Contract: contract, + } + verrs, err = suite.DB().ValidateAndCreate(&rateArea) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(err.Error()) + } + + us_country, err := models.FetchCountryByCode(suite.DB(), "US") + suite.NotNil(us_country) + suite.Nil(err) + + oconusRateArea := models.OconusRateArea{ + ID: uuid.Must(uuid.NewV4()), + RateAreaId: rateArea.ID, + CountryId: us_country.ID, + UsPostRegionCityId: usprc.ID, + Active: true, + } + verrs, err = suite.DB().ValidateAndCreate(&oconusRateArea) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(err.Error()) + } + jppsoRegion := models.JppsoRegions{ + Name: "JPPSO Elmendorf-Richardson", + Code: "MBFL", + } + suite.MustSave(&jppsoRegion) + + gblocAors := models.GblocAors{ + JppsoRegionID: jppsoRegion.ID, + OconusRateAreaID: oconusRateArea.ID, + } + suite.MustSave(&gblocAors) + factory.FetchOrBuildDefaultContractor(suite.DB(), nil, nil) + + // var address1 []models.Address + // suite.DB().RawQuery("select * from addresses where us_post_region_cities_id = $1", usprc.ID).All(&address1) + // fmt.Println("***HERE address") + // fmt.Println(address1) + // var rateArea1 []models.OconusRateArea + // suite.DB().RawQuery("select * from re_oconus_rate_areas where us_post_region_cities_id = $1", usprc.ID).All(&rateArea1) + // fmt.Println("***HERE OconusRateArea") + // fmt.Println(rateArea1) + // var gblocAors1 []models.GblocAors + // suite.DB().RawQuery("select * from gbloc_aors where oconus_rate_area_id = $1", oconusRateArea.ID).All(&gblocAors1) + // fmt.Println("***HERE GblocAors") + // fmt.Println(gblocAors1) + // var jppsoRegion1 []models.JppsoRegions + // suite.DB().RawQuery("select * from jppso_regions where jppso_regions_id = $1", jppsoRegion.ID).All(&jppsoRegion1) + // fmt.Println("***HERE jppsoRegion") + // fmt.Println(jppsoRegion1) + + gbloc, err := models.FetchOconusDutyLocationGbloc(suite.DB(), originDutyLocation, serviceMember) + suite.NoError(err) + suite.NotNil(gbloc) + suite.Equal(*gbloc, "MBFL") + }) +} + func (suite *ModelSuite) Test_SearchDutyLocations_Exclude_Not_Active_Oconus() { createContract := func(appCtx appcontext.AppContext, contractCode string, contractName string) (*models.ReContract, error) { // See if contract code already exists. From 062c39b6f43056446c56bf732d669a58f318f5ff Mon Sep 17 00:00:00 2001 From: pambecker Date: Tue, 24 Dec 2024 21:00:54 +0000 Subject: [PATCH 13/32] adding tests --- pkg/factory/duty_location_factory.go | 80 +++++++ pkg/models/duty_location_test.go | 322 ++++++++++++++++++++++++--- 2 files changed, 375 insertions(+), 27 deletions(-) diff --git a/pkg/factory/duty_location_factory.go b/pkg/factory/duty_location_factory.go index 5ad1a099741..d4afcc31473 100644 --- a/pkg/factory/duty_location_factory.go +++ b/pkg/factory/duty_location_factory.go @@ -200,3 +200,83 @@ func GetTraitDefaultOrdersDutyLocation() []Customization { }, } } + +// FetchOrBuildOrdersDutyLocation returns a default orders duty location +// It always fetches or builds a Fort Eisenhower duty location with the specified city/state/postal code +// Some tests rely on the duty location being in 30813 +func FetchOrBuildAKOriginDutyLocation(db *pop.Connection) models.DutyLocation { + // usprc, err := models.FindByZipCode(db, "99801") + + // contract := models.ReContract{ + // Code: "Test_create_oconus_order_code", + // Name: "Test_create_oconus_order", + // } + // rateAreaCode := uuid.Must(uuid.NewV4()).String()[0:5] + // rateArea := models.ReRateArea{ + // ID: uuid.Must(uuid.NewV4()), + // ContractID: contract.ID, + // IsOconus: true, + // Code: rateAreaCode, + // Name: fmt.Sprintf("Alaska-%s", rateAreaCode), + // Contract: contract, + // } + // us_country, err := models.FetchCountryByCode(db, "US") + // oconusRateArea := models.OconusRateArea{ + // ID: uuid.Must(uuid.NewV4()), + // RateAreaId: rateArea.ID, + // CountryId: us_country.ID, + // UsPostRegionCityId: usprc.ID, + // Active: true, + // } + // jppsoRegion := models.JppsoRegions{ + // Name: "USCG Base Ketchikan", + // Code: "MAPK", + // } + // gblocAors := models.GblocAors{ + // JppsoRegionID: jppsoRegion.ID, + // OconusRateAreaID: oconusRateArea.ID, + // } + + // address := BuildAddress(db, []Customization{ + // { + // Model: models.Address{ + // IsOconus: models.BoolPointer(true), + // UsPostRegionCityId: &usprc.ID, + // }, + // }, + // }, nil) + + // BuildDutyLocation(db, []Customization{ + // { + // Model: models.DutyLocation{ + // Name: MakeRandomString(8), + // AddressID: address.ID, + // }, + // }, + // }, nil) + // if db == nil { + // return BuildDutyLocation(nil, []Customization{ + // { + // Model: models.DutyLocation{ + // Name: "Fort Eisenhower, GA 30813", + // }, + // }, + // { + // Model: models.Address{ + // City: "Fort Eisenhower", + // State: "GA", + // PostalCode: "30813", + // }, + // Type: &Addresses.DutyLocationAddress, + // }, + // }, nil) + // } + + // Check if we already have a Fort Eisenhower Duty Location, return it if so + fortEisenhower, err := models.FetchDutyLocationByName(db, "Fort Eisenhower, GA 30813") + if err == nil { + return fortEisenhower + } + + return BuildDutyLocation(db, nil, []Trait{GetTraitDefaultOrdersDutyLocation}) +} diff --git a/pkg/models/duty_location_test.go b/pkg/models/duty_location_test.go index 8c6c3b52d20..1fdb47d5eed 100644 --- a/pkg/models/duty_location_test.go +++ b/pkg/models/duty_location_test.go @@ -220,6 +220,7 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { usprc, err := models.FindByZipCode(suite.AppContextForTest().DB(), "99707") suite.NotNil(usprc) suite.FatalNoError(err) + address := factory.BuildAddress(suite.DB(), []factory.Customization{ { Model: models.Address{ @@ -230,13 +231,13 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { }, nil) originDutyLocation := factory.BuildDutyLocation(suite.DB(), []factory.Customization{ { - Model: models.DutyLocation{ - Name: factory.MakeRandomString(8), - AddressID: address.ID, - }, + Model: address, + LinkOnly: true, + Type: &factory.Addresses.DutyLocationAddress, }, }, nil) airForce := models.AffiliationAIRFORCE + defaultDepartmentIndicator := "AIR_AND_SPACE_FORCE" serviceMember := factory.BuildServiceMember(suite.DB(), []factory.Customization{ { Model: models.ServiceMember{ @@ -244,8 +245,6 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { }, }, }, nil) - - // set it up contract := models.ReContract{ Code: "Test_create_oconus_order_code", Name: "Test_create_oconus_order", @@ -257,6 +256,7 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { if err != nil { suite.Fail(verrs.Error()) } + rateAreaCode := uuid.Must(uuid.NewV4()).String()[0:5] rateArea := models.ReRateArea{ ID: uuid.Must(uuid.NewV4()), @@ -299,33 +299,301 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { suite.MustSave(&jppsoRegion) gblocAors := models.GblocAors{ - JppsoRegionID: jppsoRegion.ID, - OconusRateAreaID: oconusRateArea.ID, + JppsoRegionID: jppsoRegion.ID, + OconusRateAreaID: oconusRateArea.ID, + DepartmentIndicator: &defaultDepartmentIndicator, + } + suite.MustSave(&gblocAors) + + gbloc, err := models.FetchOconusDutyLocationGbloc(suite.DB(), originDutyLocation, serviceMember) + suite.NoError(err) + suite.NotNil(gbloc) + suite.Equal(gbloc.Gbloc, "MBFL") + }) + + suite.Run("fetches duty location GBLOC for AK address, Zone II Army", func() { + usprc, err := models.FindByZipCode(suite.AppContextForTest().DB(), "99707") + suite.NotNil(usprc) + suite.FatalNoError(err) + + address := factory.BuildAddress(suite.DB(), []factory.Customization{ + { + Model: models.Address{ + IsOconus: models.BoolPointer(true), + UsPostRegionCityId: &usprc.ID, + }, + }, + }, nil) + originDutyLocation := factory.BuildDutyLocation(suite.DB(), []factory.Customization{ + { + Model: address, + LinkOnly: true, + Type: &factory.Addresses.DutyLocationAddress, + }, + }, nil) + army := models.AffiliationARMY + defaultDepartmentIndicator := "ARMY" + serviceMember := factory.BuildServiceMember(suite.DB(), []factory.Customization{ + { + Model: models.ServiceMember{ + Affiliation: &army, + }, + }, + }, nil) + contract := models.ReContract{ + Code: "Test_create_oconus_order_code", + Name: "Test_create_oconus_order", + } + verrs, err := suite.AppContextForTest().DB().ValidateAndSave(&contract) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(verrs.Error()) + } + + rateAreaCode := uuid.Must(uuid.NewV4()).String()[0:5] + rateArea := models.ReRateArea{ + ID: uuid.Must(uuid.NewV4()), + ContractID: contract.ID, + IsOconus: true, + Code: rateAreaCode, + Name: fmt.Sprintf("Alaska-%s", rateAreaCode), + Contract: contract, + } + verrs, err = suite.DB().ValidateAndCreate(&rateArea) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(err.Error()) + } + + us_country, err := models.FetchCountryByCode(suite.DB(), "US") + suite.NotNil(us_country) + suite.Nil(err) + + oconusRateArea := models.OconusRateArea{ + ID: uuid.Must(uuid.NewV4()), + RateAreaId: rateArea.ID, + CountryId: us_country.ID, + UsPostRegionCityId: usprc.ID, + Active: true, + } + verrs, err = suite.DB().ValidateAndCreate(&oconusRateArea) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(err.Error()) + } + jppsoRegion := models.JppsoRegions{ + Name: "JPPSO-Northwest", + Code: "JEAT", + } + suite.MustSave(&jppsoRegion) + + gblocAors := models.GblocAors{ + JppsoRegionID: jppsoRegion.ID, + OconusRateAreaID: oconusRateArea.ID, + DepartmentIndicator: &defaultDepartmentIndicator, + } + suite.MustSave(&gblocAors) + + gbloc, err := models.FetchOconusDutyLocationGbloc(suite.DB(), originDutyLocation, serviceMember) + suite.NoError(err) + suite.NotNil(gbloc) + suite.Equal(gbloc.Gbloc, "JEAT") + }) + + suite.Run("fetches duty location GBLOC for AK Cordova address, Zone IV", func() { + usprc, err := models.FindByZipCode(suite.AppContextForTest().DB(), "99574") + suite.NotNil(usprc) + suite.FatalNoError(err) + + address := factory.BuildAddress(suite.DB(), []factory.Customization{ + { + Model: models.Address{ + IsOconus: models.BoolPointer(true), + UsPostRegionCityId: &usprc.ID, + }, + }, + }, nil) + originDutyLocation := factory.BuildDutyLocation(suite.DB(), []factory.Customization{ + { + Model: address, + LinkOnly: true, + Type: &factory.Addresses.DutyLocationAddress, + }, + }, nil) + army := models.AffiliationARMY + defaultDepartmentIndicator := "ARMY" + serviceMember := factory.BuildServiceMember(suite.DB(), []factory.Customization{ + { + Model: models.ServiceMember{ + Affiliation: &army, + }, + }, + }, nil) + contract := models.ReContract{ + Code: "Test_create_oconus_order_code", + Name: "Test_create_oconus_order", + } + verrs, err := suite.AppContextForTest().DB().ValidateAndSave(&contract) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(verrs.Error()) + } + + rateAreaCode := uuid.Must(uuid.NewV4()).String()[0:5] + rateArea := models.ReRateArea{ + ID: uuid.Must(uuid.NewV4()), + ContractID: contract.ID, + IsOconus: true, + Code: rateAreaCode, + Name: fmt.Sprintf("Alaska-%s", rateAreaCode), + Contract: contract, + } + verrs, err = suite.DB().ValidateAndCreate(&rateArea) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(err.Error()) + } + + us_country, err := models.FetchCountryByCode(suite.DB(), "US") + suite.NotNil(us_country) + suite.Nil(err) + + oconusRateArea := models.OconusRateArea{ + ID: uuid.Must(uuid.NewV4()), + RateAreaId: rateArea.ID, + CountryId: us_country.ID, + UsPostRegionCityId: usprc.ID, + Active: true, + } + verrs, err = suite.DB().ValidateAndCreate(&oconusRateArea) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(err.Error()) + } + jppsoRegion := models.JppsoRegions{ + Name: "USCG Base Kodiak", + Code: "MAPS", + } + suite.MustSave(&jppsoRegion) + + gblocAors := models.GblocAors{ + JppsoRegionID: jppsoRegion.ID, + OconusRateAreaID: oconusRateArea.ID, + DepartmentIndicator: &defaultDepartmentIndicator, + } + suite.MustSave(&gblocAors) + + gbloc, err := models.FetchOconusDutyLocationGbloc(suite.DB(), originDutyLocation, serviceMember) + suite.NoError(err) + suite.NotNil(gbloc) + suite.Equal(gbloc.Gbloc, "MAPS") + }) + + suite.Run("fetches duty location GBLOC for AK NOT Cordova address, Zone IV", func() { + usprc, err := models.FindByZipCode(suite.AppContextForTest().DB(), "99803") + suite.NotNil(usprc) + suite.FatalNoError(err) + + address := factory.BuildAddress(suite.DB(), []factory.Customization{ + { + Model: models.Address{ + IsOconus: models.BoolPointer(true), + UsPostRegionCityId: &usprc.ID, + }, + }, + }, nil) + originDutyLocation := factory.BuildDutyLocation(suite.DB(), []factory.Customization{ + { + Model: address, + LinkOnly: true, + Type: &factory.Addresses.DutyLocationAddress, + }, + }, nil) + army := models.AffiliationARMY + defaultDepartmentIndicator := "ARMY" + serviceMember := factory.BuildServiceMember(suite.DB(), []factory.Customization{ + { + Model: models.ServiceMember{ + Affiliation: &army, + }, + }, + }, nil) + contract := models.ReContract{ + Code: "Test_create_oconus_order_code", + Name: "Test_create_oconus_order", + } + verrs, err := suite.AppContextForTest().DB().ValidateAndSave(&contract) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(verrs.Error()) + } + + rateAreaCode := uuid.Must(uuid.NewV4()).String()[0:5] + rateArea := models.ReRateArea{ + ID: uuid.Must(uuid.NewV4()), + ContractID: contract.ID, + IsOconus: true, + Code: rateAreaCode, + Name: fmt.Sprintf("Alaska-%s", rateAreaCode), + Contract: contract, + } + verrs, err = suite.DB().ValidateAndCreate(&rateArea) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(err.Error()) + } + + us_country, err := models.FetchCountryByCode(suite.DB(), "US") + suite.NotNil(us_country) + suite.Nil(err) + + oconusRateArea := models.OconusRateArea{ + ID: uuid.Must(uuid.NewV4()), + RateAreaId: rateArea.ID, + CountryId: us_country.ID, + UsPostRegionCityId: usprc.ID, + Active: true, + } + verrs, err = suite.DB().ValidateAndCreate(&oconusRateArea) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(err.Error()) + } + jppsoRegion := models.JppsoRegions{ + Name: "USCG Base Ketchikan", + Code: "MAPK", + } + suite.MustSave(&jppsoRegion) + + gblocAors := models.GblocAors{ + JppsoRegionID: jppsoRegion.ID, + OconusRateAreaID: oconusRateArea.ID, + DepartmentIndicator: &defaultDepartmentIndicator, } suite.MustSave(&gblocAors) - factory.FetchOrBuildDefaultContractor(suite.DB(), nil, nil) - - // var address1 []models.Address - // suite.DB().RawQuery("select * from addresses where us_post_region_cities_id = $1", usprc.ID).All(&address1) - // fmt.Println("***HERE address") - // fmt.Println(address1) - // var rateArea1 []models.OconusRateArea - // suite.DB().RawQuery("select * from re_oconus_rate_areas where us_post_region_cities_id = $1", usprc.ID).All(&rateArea1) - // fmt.Println("***HERE OconusRateArea") - // fmt.Println(rateArea1) - // var gblocAors1 []models.GblocAors - // suite.DB().RawQuery("select * from gbloc_aors where oconus_rate_area_id = $1", oconusRateArea.ID).All(&gblocAors1) - // fmt.Println("***HERE GblocAors") - // fmt.Println(gblocAors1) - // var jppsoRegion1 []models.JppsoRegions - // suite.DB().RawQuery("select * from jppso_regions where jppso_regions_id = $1", jppsoRegion.ID).All(&jppsoRegion1) - // fmt.Println("***HERE jppsoRegion") - // fmt.Println(jppsoRegion1) gbloc, err := models.FetchOconusDutyLocationGbloc(suite.DB(), originDutyLocation, serviceMember) suite.NoError(err) suite.NotNil(gbloc) - suite.Equal(*gbloc, "MBFL") + suite.Equal(gbloc.Gbloc, "MAPK") }) } From a73907be3490a8988e54f736c966fd1ed2bb4a57 Mon Sep 17 00:00:00 2001 From: pambecker Date: Fri, 27 Dec 2024 19:45:58 +0000 Subject: [PATCH 14/32] test cleanup --- pkg/factory/duty_location_factory.go | 80 --------- pkg/handlers/internalapi/orders_test.go | 4 +- pkg/models/duty_location_test.go | 228 +++--------------------- 3 files changed, 26 insertions(+), 286 deletions(-) diff --git a/pkg/factory/duty_location_factory.go b/pkg/factory/duty_location_factory.go index d4afcc31473..5ad1a099741 100644 --- a/pkg/factory/duty_location_factory.go +++ b/pkg/factory/duty_location_factory.go @@ -200,83 +200,3 @@ func GetTraitDefaultOrdersDutyLocation() []Customization { }, } } - -// FetchOrBuildOrdersDutyLocation returns a default orders duty location -// It always fetches or builds a Fort Eisenhower duty location with the specified city/state/postal code -// Some tests rely on the duty location being in 30813 -func FetchOrBuildAKOriginDutyLocation(db *pop.Connection) models.DutyLocation { - // usprc, err := models.FindByZipCode(db, "99801") - - // contract := models.ReContract{ - // Code: "Test_create_oconus_order_code", - // Name: "Test_create_oconus_order", - // } - // rateAreaCode := uuid.Must(uuid.NewV4()).String()[0:5] - // rateArea := models.ReRateArea{ - // ID: uuid.Must(uuid.NewV4()), - // ContractID: contract.ID, - // IsOconus: true, - // Code: rateAreaCode, - // Name: fmt.Sprintf("Alaska-%s", rateAreaCode), - // Contract: contract, - // } - // us_country, err := models.FetchCountryByCode(db, "US") - // oconusRateArea := models.OconusRateArea{ - // ID: uuid.Must(uuid.NewV4()), - // RateAreaId: rateArea.ID, - // CountryId: us_country.ID, - // UsPostRegionCityId: usprc.ID, - // Active: true, - // } - // jppsoRegion := models.JppsoRegions{ - // Name: "USCG Base Ketchikan", - // Code: "MAPK", - // } - // gblocAors := models.GblocAors{ - // JppsoRegionID: jppsoRegion.ID, - // OconusRateAreaID: oconusRateArea.ID, - // } - - // address := BuildAddress(db, []Customization{ - // { - // Model: models.Address{ - // IsOconus: models.BoolPointer(true), - // UsPostRegionCityId: &usprc.ID, - // }, - // }, - // }, nil) - - // BuildDutyLocation(db, []Customization{ - // { - // Model: models.DutyLocation{ - // Name: MakeRandomString(8), - // AddressID: address.ID, - // }, - // }, - // }, nil) - // if db == nil { - // return BuildDutyLocation(nil, []Customization{ - // { - // Model: models.DutyLocation{ - // Name: "Fort Eisenhower, GA 30813", - // }, - // }, - // { - // Model: models.Address{ - // City: "Fort Eisenhower", - // State: "GA", - // PostalCode: "30813", - // }, - // Type: &Addresses.DutyLocationAddress, - // }, - // }, nil) - // } - - // Check if we already have a Fort Eisenhower Duty Location, return it if so - fortEisenhower, err := models.FetchDutyLocationByName(db, "Fort Eisenhower, GA 30813") - if err == nil { - return fortEisenhower - } - - return BuildDutyLocation(db, nil, []Trait{GetTraitDefaultOrdersDutyLocation}) -} diff --git a/pkg/handlers/internalapi/orders_test.go b/pkg/handlers/internalapi/orders_test.go index 343cb291389..39e75d1a77c 100644 --- a/pkg/handlers/internalapi/orders_test.go +++ b/pkg/handlers/internalapi/orders_test.go @@ -139,7 +139,7 @@ func (suite *HandlerSuite) TestCreateOrder() { { Model: models.Address{ IsOconus: models.BoolPointer(true), - UsPostRegionCityId: &usprc.ID, + UsPostRegionCityID: &usprc.ID, }, }, }, nil) @@ -292,7 +292,7 @@ func (suite *HandlerSuite) TestCreateOrder() { { Model: models.Address{ IsOconus: models.BoolPointer(true), - UsPostRegionCityId: &usprc.ID, + UsPostRegionCityID: &usprc.ID, }, }, }, nil) diff --git a/pkg/models/duty_location_test.go b/pkg/models/duty_location_test.go index 43a7c2a6dd7..6537290ebfc 100644 --- a/pkg/models/duty_location_test.go +++ b/pkg/models/duty_location_test.go @@ -216,8 +216,8 @@ func (suite *ModelSuite) Test_FetchDutyLocationWithTransportationOffice() { } func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { - suite.Run("fetches duty location GBLOC for AK address, Zone II AirForce", func() { - usprc, err := models.FindByZipCode(suite.AppContextForTest().DB(), "99707") + setupDataForOconusDutyLocation := func(postalCode string) (models.ReRateArea, models.OconusRateArea, models.UsPostRegionCity, models.DutyLocation) { + usprc, err := models.FindByZipCode(suite.AppContextForTest().DB(), postalCode) suite.NotNil(usprc) suite.FatalNoError(err) @@ -225,7 +225,7 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { { Model: models.Address{ IsOconus: models.BoolPointer(true), - UsPostRegionCityId: &usprc.ID, + UsPostRegionCityID: &usprc.ID, }, }, }, nil) @@ -236,15 +236,7 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { Type: &factory.Addresses.DutyLocationAddress, }, }, nil) - airForce := models.AffiliationAIRFORCE - defaultDepartmentIndicator := "AIR_AND_SPACE_FORCE" - serviceMember := factory.BuildServiceMember(suite.DB(), []factory.Customization{ - { - Model: models.ServiceMember{ - Affiliation: &airForce, - }, - }, - }, nil) + contract := models.ReContract{ Code: "Test_create_oconus_order_code", Name: "Test_create_oconus_order", @@ -292,6 +284,23 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { if err != nil { suite.Fail(err.Error()) } + + return rateArea, oconusRateArea, *usprc, originDutyLocation + } + + suite.Run("fetches duty location GBLOC for AK address, Zone II AirForce", func() { + _, oconusRateArea, _, originDutyLocation := setupDataForOconusDutyLocation("99707") + + airForce := models.AffiliationAIRFORCE + defaultDepartmentIndicator := "AIR_AND_SPACE_FORCE" + serviceMember := factory.BuildServiceMember(suite.DB(), []factory.Customization{ + { + Model: models.ServiceMember{ + Affiliation: &airForce, + }, + }, + }, nil) + jppsoRegion := models.JppsoRegions{ Name: "JPPSO Elmendorf-Richardson", Code: "MBFL", @@ -312,25 +321,8 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { }) suite.Run("fetches duty location GBLOC for AK address, Zone II Army", func() { - usprc, err := models.FindByZipCode(suite.AppContextForTest().DB(), "99707") - suite.NotNil(usprc) - suite.FatalNoError(err) + _, oconusRateArea, _, originDutyLocation := setupDataForOconusDutyLocation("99707") - address := factory.BuildAddress(suite.DB(), []factory.Customization{ - { - Model: models.Address{ - IsOconus: models.BoolPointer(true), - UsPostRegionCityId: &usprc.ID, - }, - }, - }, nil) - originDutyLocation := factory.BuildDutyLocation(suite.DB(), []factory.Customization{ - { - Model: address, - LinkOnly: true, - Type: &factory.Addresses.DutyLocationAddress, - }, - }, nil) army := models.AffiliationARMY defaultDepartmentIndicator := "ARMY" serviceMember := factory.BuildServiceMember(suite.DB(), []factory.Customization{ @@ -340,53 +332,7 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { }, }, }, nil) - contract := models.ReContract{ - Code: "Test_create_oconus_order_code", - Name: "Test_create_oconus_order", - } - verrs, err := suite.AppContextForTest().DB().ValidateAndSave(&contract) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(verrs.Error()) - } - rateAreaCode := uuid.Must(uuid.NewV4()).String()[0:5] - rateArea := models.ReRateArea{ - ID: uuid.Must(uuid.NewV4()), - ContractID: contract.ID, - IsOconus: true, - Code: rateAreaCode, - Name: fmt.Sprintf("Alaska-%s", rateAreaCode), - Contract: contract, - } - verrs, err = suite.DB().ValidateAndCreate(&rateArea) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(err.Error()) - } - - us_country, err := models.FetchCountryByCode(suite.DB(), "US") - suite.NotNil(us_country) - suite.Nil(err) - - oconusRateArea := models.OconusRateArea{ - ID: uuid.Must(uuid.NewV4()), - RateAreaId: rateArea.ID, - CountryId: us_country.ID, - UsPostRegionCityId: usprc.ID, - Active: true, - } - verrs, err = suite.DB().ValidateAndCreate(&oconusRateArea) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(err.Error()) - } jppsoRegion := models.JppsoRegions{ Name: "JPPSO-Northwest", Code: "JEAT", @@ -407,25 +353,8 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { }) suite.Run("fetches duty location GBLOC for AK Cordova address, Zone IV", func() { - usprc, err := models.FindByZipCode(suite.AppContextForTest().DB(), "99574") - suite.NotNil(usprc) - suite.FatalNoError(err) + _, oconusRateArea, _, originDutyLocation := setupDataForOconusDutyLocation("99574") - address := factory.BuildAddress(suite.DB(), []factory.Customization{ - { - Model: models.Address{ - IsOconus: models.BoolPointer(true), - UsPostRegionCityId: &usprc.ID, - }, - }, - }, nil) - originDutyLocation := factory.BuildDutyLocation(suite.DB(), []factory.Customization{ - { - Model: address, - LinkOnly: true, - Type: &factory.Addresses.DutyLocationAddress, - }, - }, nil) army := models.AffiliationARMY defaultDepartmentIndicator := "ARMY" serviceMember := factory.BuildServiceMember(suite.DB(), []factory.Customization{ @@ -435,53 +364,7 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { }, }, }, nil) - contract := models.ReContract{ - Code: "Test_create_oconus_order_code", - Name: "Test_create_oconus_order", - } - verrs, err := suite.AppContextForTest().DB().ValidateAndSave(&contract) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(verrs.Error()) - } - rateAreaCode := uuid.Must(uuid.NewV4()).String()[0:5] - rateArea := models.ReRateArea{ - ID: uuid.Must(uuid.NewV4()), - ContractID: contract.ID, - IsOconus: true, - Code: rateAreaCode, - Name: fmt.Sprintf("Alaska-%s", rateAreaCode), - Contract: contract, - } - verrs, err = suite.DB().ValidateAndCreate(&rateArea) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(err.Error()) - } - - us_country, err := models.FetchCountryByCode(suite.DB(), "US") - suite.NotNil(us_country) - suite.Nil(err) - - oconusRateArea := models.OconusRateArea{ - ID: uuid.Must(uuid.NewV4()), - RateAreaId: rateArea.ID, - CountryId: us_country.ID, - UsPostRegionCityId: usprc.ID, - Active: true, - } - verrs, err = suite.DB().ValidateAndCreate(&oconusRateArea) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(err.Error()) - } jppsoRegion := models.JppsoRegions{ Name: "USCG Base Kodiak", Code: "MAPS", @@ -502,25 +385,8 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { }) suite.Run("fetches duty location GBLOC for AK NOT Cordova address, Zone IV", func() { - usprc, err := models.FindByZipCode(suite.AppContextForTest().DB(), "99803") - suite.NotNil(usprc) - suite.FatalNoError(err) + _, oconusRateArea, _, originDutyLocation := setupDataForOconusDutyLocation("99803") - address := factory.BuildAddress(suite.DB(), []factory.Customization{ - { - Model: models.Address{ - IsOconus: models.BoolPointer(true), - UsPostRegionCityId: &usprc.ID, - }, - }, - }, nil) - originDutyLocation := factory.BuildDutyLocation(suite.DB(), []factory.Customization{ - { - Model: address, - LinkOnly: true, - Type: &factory.Addresses.DutyLocationAddress, - }, - }, nil) army := models.AffiliationARMY defaultDepartmentIndicator := "ARMY" serviceMember := factory.BuildServiceMember(suite.DB(), []factory.Customization{ @@ -530,53 +396,7 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { }, }, }, nil) - contract := models.ReContract{ - Code: "Test_create_oconus_order_code", - Name: "Test_create_oconus_order", - } - verrs, err := suite.AppContextForTest().DB().ValidateAndSave(&contract) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(verrs.Error()) - } - rateAreaCode := uuid.Must(uuid.NewV4()).String()[0:5] - rateArea := models.ReRateArea{ - ID: uuid.Must(uuid.NewV4()), - ContractID: contract.ID, - IsOconus: true, - Code: rateAreaCode, - Name: fmt.Sprintf("Alaska-%s", rateAreaCode), - Contract: contract, - } - verrs, err = suite.DB().ValidateAndCreate(&rateArea) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(err.Error()) - } - - us_country, err := models.FetchCountryByCode(suite.DB(), "US") - suite.NotNil(us_country) - suite.Nil(err) - - oconusRateArea := models.OconusRateArea{ - ID: uuid.Must(uuid.NewV4()), - RateAreaId: rateArea.ID, - CountryId: us_country.ID, - UsPostRegionCityId: usprc.ID, - Active: true, - } - verrs, err = suite.DB().ValidateAndCreate(&oconusRateArea) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(err.Error()) - } jppsoRegion := models.JppsoRegions{ Name: "USCG Base Ketchikan", Code: "MAPK", From 462e5288d2655c0779597700dcabb83c55e559f1 Mon Sep 17 00:00:00 2001 From: pambecker Date: Mon, 30 Dec 2024 21:10:35 +0000 Subject: [PATCH 15/32] sc create AK, tests --- pkg/handlers/ghcapi/orders.go | 26 ++++++--- pkg/handlers/ghcapi/orders_test.go | 91 ++++++++++++++++++++++++++++-- pkg/models/duty_location.go | 6 +- 3 files changed, 107 insertions(+), 16 deletions(-) diff --git a/pkg/handlers/ghcapi/orders.go b/pkg/handlers/ghcapi/orders.go index ff1c47a9569..861ec1b658b 100644 --- a/pkg/handlers/ghcapi/orders.go +++ b/pkg/handlers/ghcapi/orders.go @@ -225,14 +225,24 @@ func (h CreateOrderHandler) Handle(params orderop.CreateOrderParams) middleware. return orderop.NewCreateOrderUnprocessableEntity(), err } - originDutyLocationGBLOC, err := models.FetchGBLOCForPostalCode(appCtx.DB(), originDutyLocation.Address.PostalCode) - if err != nil { - switch err { - case sql.ErrNoRows: - return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location PostalCodeToGBLOC") - default: - return nil, apperror.NewQueryError("PostalCodeToGBLOC", err, "") + var originDutyLocationGBLOC *string + if *originDutyLocation.Address.IsOconus { + originDutyLocationGBLOCOconus, err := models.FetchOconusDutyLocationGbloc(appCtx.DB(), originDutyLocation, serviceMember) + if err != nil { + return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") + } + originDutyLocationGBLOC = &originDutyLocationGBLOCOconus.Gbloc + } else { + originDutyLocationGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), originDutyLocation.Address.PostalCode) + if err != nil { + switch err { + case sql.ErrNoRows: + return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location PostalCodeToGBLOC") + default: + return nil, apperror.NewQueryError("PostalCodeToGBLOC", err, "") + } } + originDutyLocationGBLOC = &originDutyLocationGBLOCConus.GBLOC } grade := (internalmessages.OrderPayGrade)(*payload.Grade) @@ -311,7 +321,7 @@ func (h CreateOrderHandler) Handle(params orderop.CreateOrderParams) middleware. &originDutyLocation, &grade, &entitlement, - &originDutyLocationGBLOC.GBLOC, + originDutyLocationGBLOC, packingAndShippingInstructions, &newDutyLocationGBLOC.GBLOC, ) diff --git a/pkg/handlers/ghcapi/orders_test.go b/pkg/handlers/ghcapi/orders_test.go index 93fdc901600..b2818f803e6 100644 --- a/pkg/handlers/ghcapi/orders_test.go +++ b/pkg/handlers/ghcapi/orders_test.go @@ -106,20 +106,100 @@ func (suite *HandlerSuite) TestCreateOrder() { } func (suite *HandlerSuite) TestCreateOrderWithOCONUSValues() { - sm := factory.BuildExtendedServiceMember(suite.AppContextForTest().DB(), nil, nil) + customAffiliation := models.AffiliationARMY + sm := factory.BuildExtendedServiceMember(suite.DB(), []factory.Customization{ + { + Model: models.ServiceMember{ + Affiliation: &customAffiliation, + }, + }, + }, nil) officeUser := factory.BuildOfficeUserWithRoles(suite.AppContextForTest().DB(), nil, []roles.RoleType{roles.RoleTypeTOO}) - originDutyLocation := factory.BuildDutyLocation(suite.AppContextForTest().DB(), []factory.Customization{ + usprc, err := models.FindByZipCode(suite.AppContextForTest().DB(), "99801") + suite.NotNil(usprc) + suite.FatalNoError(err) + + address := factory.BuildAddress(suite.DB(), []factory.Customization{ + { + Model: models.Address{ + IsOconus: models.BoolPointer(true), + UsPostRegionCityID: &usprc.ID, + }, + }, + }, nil) + + originDutyLocation := factory.BuildDutyLocation(suite.DB(), []factory.Customization{ { Model: models.DutyLocation{ - Name: "Not Yuma AFB", + Name: factory.MakeRandomString(8), + AddressID: address.ID, }, }, }, nil) + dutyLocation := factory.FetchOrBuildCurrentDutyLocation(suite.AppContextForTest().DB()) - factory.FetchOrBuildPostalCodeToGBLOC(suite.AppContextForTest().DB(), dutyLocation.Address.PostalCode, "KKFA") - factory.FetchOrBuildDefaultContractor(suite.AppContextForTest().DB(), nil, nil) + contract := models.ReContract{ + Code: "Test_create_oconus_order_code", + Name: "Test_create_oconus_order", + } + verrs, err := suite.AppContextForTest().DB().ValidateAndSave(&contract) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(verrs.Error()) + } + + rateAreaCode := uuid.Must(uuid.NewV4()).String()[0:5] + rateArea := models.ReRateArea{ + ID: uuid.Must(uuid.NewV4()), + ContractID: contract.ID, + IsOconus: true, + Code: rateAreaCode, + Name: fmt.Sprintf("Alaska-%s", rateAreaCode), + Contract: contract, + } + verrs, err = suite.DB().ValidateAndCreate(&rateArea) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(err.Error()) + } + + us_country, err := models.FetchCountryByCode(suite.DB(), "US") + suite.NotNil(us_country) + suite.Nil(err) + + oconusRateArea := models.OconusRateArea{ + ID: uuid.Must(uuid.NewV4()), + RateAreaId: rateArea.ID, + CountryId: us_country.ID, + UsPostRegionCityId: usprc.ID, + Active: true, + } + verrs, err = suite.DB().ValidateAndCreate(&oconusRateArea) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(err.Error()) + } + jppsoRegion := models.JppsoRegions{ + Name: "USCG Base Ketchikan", + Code: "MAPK", + } + suite.MustSave(&jppsoRegion) + + gblocAors := models.GblocAors{ + JppsoRegionID: jppsoRegion.ID, + OconusRateAreaID: oconusRateArea.ID, + } + suite.MustSave(&gblocAors) + + factory.FetchOrBuildDefaultContractor(suite.AppContextForTest().DB(), nil, nil) req := httptest.NewRequest("POST", "/orders", nil) req = suite.AuthenticateOfficeRequest(req, officeUser) @@ -171,6 +251,7 @@ func (suite *HandlerSuite) TestCreateOrderWithOCONUSValues() { suite.Assertions.Equal(sm.ID.String(), okResponse.Payload.CustomerID.String()) suite.Assertions.Equal(ordersType, okResponse.Payload.OrderType) suite.Assertions.Equal(handlers.FmtString("123456"), okResponse.Payload.OrderNumber) + suite.Assertions.Equal(ghcmessages.GBLOC("MAPK"), okResponse.Payload.OriginDutyLocationGBLOC) suite.Assertions.Equal(handlers.FmtString("E19A"), okResponse.Payload.Tac) suite.Assertions.Equal(handlers.FmtString("SacNumber"), okResponse.Payload.Sac) suite.Assertions.Equal(&deptIndicator, okResponse.Payload.DepartmentIndicator) diff --git a/pkg/models/duty_location.go b/pkg/models/duty_location.go index 15e10213731..5f17074e0cd 100644 --- a/pkg/models/duty_location.go +++ b/pkg/models/duty_location.go @@ -299,12 +299,12 @@ func FetchOconusDutyLocationGbloc(appCtx *pop.Connection, dutyLocation DutyLocat oconusGbloc := oconusGbloc{} sqlQuery := ` - select j.code gbloc - from addresses a, + SELECT j.code gbloc + FROM addresses a, re_oconus_rate_areas o, jppso_regions j, gbloc_aors g - where a.us_post_region_cities_id = o.us_post_region_cities_id + WHERE a.us_post_region_cities_id = o.us_post_region_cities_id and o.id = g.oconus_rate_area_id and j.id = g.jppso_regions_id and a.id = $1 ` From e98e2690cdb42e98b23258bfacb3e11218de425f Mon Sep 17 00:00:00 2001 From: pambecker Date: Fri, 3 Jan 2025 18:51:03 +0000 Subject: [PATCH 16/32] dest gbloc changes --- pkg/handlers/ghcapi/orders.go | 22 ++++++++++++++++------ pkg/handlers/internalapi/orders.go | 18 ++++++++++++++---- 2 files changed, 30 insertions(+), 10 deletions(-) diff --git a/pkg/handlers/ghcapi/orders.go b/pkg/handlers/ghcapi/orders.go index 861ec1b658b..7f740957c6b 100644 --- a/pkg/handlers/ghcapi/orders.go +++ b/pkg/handlers/ghcapi/orders.go @@ -218,11 +218,21 @@ func (h CreateOrderHandler) Handle(params orderop.CreateOrderParams) middleware. return orderop.NewCreateOrderUnprocessableEntity(), err } - newDutyLocationGBLOC, err := models.FetchGBLOCForPostalCode(appCtx.DB(), newDutyLocation.Address.PostalCode) - if err != nil { - err = apperror.NewBadDataError("New duty location GBLOC cannot be verified") - appCtx.Logger().Error(err.Error()) - return orderop.NewCreateOrderUnprocessableEntity(), err + var newDutyLocationGBLOC *string + if *newDutyLocation.Address.IsOconus { + newDutyLocationGBLOCOconus, err := models.FetchOconusDutyLocationGbloc(appCtx.DB(), newDutyLocation, serviceMember) + if err != nil { + return nil, apperror.NewNotFoundError(newDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") + } + newDutyLocationGBLOC = &newDutyLocationGBLOCOconus.Gbloc + } else { + newDutyLocationGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), newDutyLocation.Address.PostalCode) + if err != nil { + err = apperror.NewBadDataError("New duty location GBLOC cannot be verified") + appCtx.Logger().Error(err.Error()) + return orderop.NewCreateOrderUnprocessableEntity(), err + } + newDutyLocationGBLOC = &newDutyLocationGBLOCConus.GBLOC } var originDutyLocationGBLOC *string @@ -323,7 +333,7 @@ func (h CreateOrderHandler) Handle(params orderop.CreateOrderParams) middleware. &entitlement, originDutyLocationGBLOC, packingAndShippingInstructions, - &newDutyLocationGBLOC.GBLOC, + newDutyLocationGBLOC, ) if err != nil || verrs.HasAny() { return handlers.ResponseForVErrors(appCtx.Logger(), verrs, err), err diff --git a/pkg/handlers/internalapi/orders.go b/pkg/handlers/internalapi/orders.go index a84f4044d78..af90aa87e19 100644 --- a/pkg/handlers/internalapi/orders.go +++ b/pkg/handlers/internalapi/orders.go @@ -167,9 +167,19 @@ func (h CreateOrdersHandler) Handle(params ordersop.CreateOrdersParams) middlewa return handlers.ResponseForError(appCtx.Logger(), err), err } - newDutyLocationGBLOC, err := models.FetchGBLOCForPostalCode(appCtx.DB(), newDutyLocation.Address.PostalCode) - if err != nil { - return handlers.ResponseForError(appCtx.Logger(), err), err + var newDutyLocationGBLOC *string + if *newDutyLocation.Address.IsOconus { + newDutyLocationGBLOCOconus, err := models.FetchOconusDutyLocationGbloc(appCtx.DB(), newDutyLocation, serviceMember) + if err != nil { + return nil, apperror.NewNotFoundError(newDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") + } + newDutyLocationGBLOC = &newDutyLocationGBLOCOconus.Gbloc + } else { + newDutyLocationGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), newDutyLocation.Address.PostalCode) + if err != nil { + return handlers.ResponseForError(appCtx.Logger(), err), err + } + newDutyLocationGBLOC = &newDutyLocationGBLOCConus.GBLOC } var dependentsTwelveAndOver *int @@ -285,7 +295,7 @@ func (h CreateOrdersHandler) Handle(params ordersop.CreateOrdersParams) middlewa &entitlement, originDutyLocationGBLOC, packingAndShippingInstructions, - &newDutyLocationGBLOC.GBLOC, + newDutyLocationGBLOC, ) if err != nil || verrs.HasAny() { return handlers.ResponseForVErrors(appCtx.Logger(), verrs, err), err From 9308bd111546cfc30bb744905e5147cae6858a2b Mon Sep 17 00:00:00 2001 From: pambecker Date: Mon, 6 Jan 2025 17:26:53 +0000 Subject: [PATCH 17/32] reorganize oconus gbloc lookup to be more universal for all addr, not just duty location --- migrations/app/migrations_manifest.txt | 2 + ...revert_data_change_for_gbloc_for_ak.up.sql | 840 ++++++++++++++++++ ...date_postal_codes_and_gblocs_for_ak.up.sql | 43 + .../internal/payloads/model_to_payload.go | 45 +- pkg/handlers/ghcapi/orders.go | 4 +- pkg/handlers/internalapi/orders.go | 26 +- pkg/models/address.go | 32 + pkg/models/address_test.go | 206 +++++ pkg/models/duty_location.go | 32 - pkg/models/duty_location_test.go | 202 ----- pkg/services/order/order_updater.go | 28 +- 11 files changed, 1197 insertions(+), 263 deletions(-) create mode 100644 migrations/app/schema/20250103130619_revert_data_change_for_gbloc_for_ak.up.sql create mode 100644 migrations/app/schema/20250103142533_update_postal_codes_and_gblocs_for_ak.up.sql diff --git a/migrations/app/migrations_manifest.txt b/migrations/app/migrations_manifest.txt index f3200a82ee0..63e054aed4d 100644 --- a/migrations/app/migrations_manifest.txt +++ b/migrations/app/migrations_manifest.txt @@ -1057,3 +1057,5 @@ 20241227153723_remove_empty_string_emplid_values.up.sql 20241230190638_remove_AK_zips_from_zip3.up.sql 20241230190647_add_missing_AK_zips_to_zip3_distances.up.sql +20250103130619_revert_data_change_for_gbloc_for_ak.up.sql +20250103142533_update_postal_codes_and_gblocs_for_ak.up.sql diff --git a/migrations/app/schema/20250103130619_revert_data_change_for_gbloc_for_ak.up.sql b/migrations/app/schema/20250103130619_revert_data_change_for_gbloc_for_ak.up.sql new file mode 100644 index 00000000000..2ee43e98f43 --- /dev/null +++ b/migrations/app/schema/20250103130619_revert_data_change_for_gbloc_for_ak.up.sql @@ -0,0 +1,840 @@ +drop view move_to_gbloc; +CREATE OR REPLACE VIEW move_to_gbloc AS +SELECT DISTINCT ON (sh.move_id) sh.move_id AS move_id, COALESCE(pctg.gbloc, pctg_ppm.gbloc) AS gbloc +FROM mto_shipments sh + -- try the pickup_address path + LEFT JOIN + ( + SELECT a.id address_id, pctg.gbloc + FROM addresses a + JOIN postal_code_to_gblocs pctg ON a.postal_code = pctg.postal_code + ) pctg ON pctg.address_id = sh.pickup_address_id + -- try the ppm_shipments path + LEFT JOIN + ( + SELECT ppm.shipment_id, pctg.gbloc + FROM ppm_shipments ppm + JOIN addresses ppm_address ON ppm.pickup_postal_address_id = ppm_address.id + JOIN postal_code_to_gblocs pctg ON ppm_address.postal_code = pctg.postal_code + ) pctg_ppm ON pctg_ppm.shipment_id = sh.id +WHERE sh.deleted_at IS NULL +ORDER BY sh.move_id, sh.created_at; + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99501', 'MBFL', now(), now(), 'd8697416-e345-46a8-9767-47b7abbb3c06'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99502', 'MBFL', now(), now(), '0e060122-7cea-4bcd-b636-31c453088a5d'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99503', 'MBFL', now(), now(), '1bc710db-3f4f-4177-9656-a99956a8b06e'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99504', 'MBFL', now(), now(), 'e35c4fd3-b8d7-46f4-a559-ddfc8e0ad4e9'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99505', 'MBFL', now(), now(), 'f2e40ed3-bc7b-428c-9693-3bc1cc1a9c57'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99506', 'MBFL', now(), now(), 'cf3890e6-16df-46a7-aabb-57010b999ee7'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99507', 'MBFL', now(), now(), 'c869c7aa-e0fd-4933-a4e9-09bd6191b25a'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99508', 'MBFL', now(), now(), 'ca8554c3-d21c-4e26-a77f-6e965c7d31c5'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99509', 'MBFL', now(), now(), '54ea9592-d93d-4102-84ce-7a9c57b6aff8'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99510', 'MBFL', now(), now(), 'f8d0e922-ab5d-4871-bd0c-1f7484b13981'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99511', 'MBFL', now(), now(), '7098c10e-edbf-4cf6-82dd-c09dd7a8f226'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99513', 'MBFL', now(), now(), '8f2d3b79-718e-4d96-b5d2-6b0c40487332'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99514', 'MBFL', now(), now(), '8ff6d888-935c-488c-9b62-33b8f4053b4a'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99515', 'MBFL', now(), now(), 'e3927bca-6677-49d7-a622-ee20f386c28c'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99516', 'MBFL', now(), now(), 'fc5ee3c2-d0b6-4e56-9bcd-e802e14dca7e'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99517', 'MBFL', now(), now(), '84c51c78-972a-4714-8218-8169ee541159'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99518', 'MBFL', now(), now(), '7b3e4eed-3584-4036-9da5-9bc6a7163e4e'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99519', 'MBFL', now(), now(), '62b97b86-e8e7-410a-a267-d101ce5f9a3c'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99520', 'MBFL', now(), now(), 'bce10502-90fb-4f28-8489-f5e6d2ac00ab'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99521', 'MBFL', now(), now(), 'b8c51570-d048-41f8-a1fc-58e6b41d367a'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99522', 'MBFL', now(), now(), '6311d142-f02b-4f49-b719-608d78c91489'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99523', 'MBFL', now(), now(), '967028d9-3a7b-4949-b1a4-e94a1aa25a73'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99524', 'MBFL', now(), now(), 'afd3cc8b-2c02-4e63-8fd1-eb81a1a19b5d'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99529', 'MBFL', now(), now(), 'f08e218c-e55e-43fc-bbdf-bc57aaa65726'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99530', 'MBFL', now(), now(), '65eeaf36-e786-43dd-a18c-fb470a4468f9'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99540', 'MBFL', now(), now(), '2380496a-9087-48bc-a0e2-9cd5ac19f470'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99545', 'MBFL', now(), now(), '6df5025e-e730-427a-8c10-ff6d131d0567'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99546', 'MBFL', now(), now(), '02163620-1da6-4509-b8bb-d8b3336e5c2a'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99547', 'MBFL', now(), now(), 'f869b729-88cd-4770-a435-2dfd4b50c330'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99548', 'MBFL', now(), now(), 'db80b48b-25bd-4ef1-8d5a-33d740af6b0e'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99549', 'MBFL', now(), now(), '09983e53-ae83-41b1-b459-e0ab411ea87e'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99550', 'MAPS', now(), now(), '643db073-5e92-43c0-9b42-a8d9cc800623'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99551', 'MBFL', now(), now(), '9bc29931-880b-42df-a758-017d5abee32d'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99552', 'MBFL', now(), now(), 'f6fa0bb7-fd5c-494e-b62c-b7bc509b632f'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99553', 'MBFL', now(), now(), 'abcb2cbf-389d-4830-ae16-037c55b7bc2c'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99554', 'MBFL', now(), now(), '2d4d9111-f59b-4506-935d-b6601275311a'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99555', 'MBFL', now(), now(), '00c2d5ed-2364-490d-86b9-40cbad4679fb'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99556', 'MBFL', now(), now(), 'b5c75c77-59cf-4089-815b-c0d15d9440f0'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99557', 'MBFL', now(), now(), '999e2c9e-04ed-47da-aca1-2b320ed52666'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99558', 'MBFL', now(), now(), 'cdc2383c-9ead-4501-a6cc-b736ea72ecef'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99559', 'MBFL', now(), now(), '2ca0657c-c121-41e4-a741-b563dee6838e'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99561', 'MBFL', now(), now(), '0c8df634-b6e6-457f-93d7-7d64909bc7cb'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99563', 'MBFL', now(), now(), 'e9a0ebee-3ae3-4d66-b18b-cc3ea417887d'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99564', 'MBFL', now(), now(), '77dd08d9-0997-4d16-babd-1ffccc4222d4'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99565', 'MBFL', now(), now(), '59b6a797-b2e8-4bd7-affc-a5639308a9b3'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99566', 'MBFL', now(), now(), 'cf5b630e-964a-4389-9fa2-e1ed0e6a3041'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99567', 'MBFL', now(), now(), 'f71a916b-e55f-4230-869e-038c319037ce'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99568', 'MBFL', now(), now(), '9719d0c5-1bd0-42fe-89ab-f4dbddcfa588'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99569', 'MBFL', now(), now(), 'fba4bdcf-7707-4826-bf2a-3e7aaf81f309'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99571', 'MBFL', now(), now(), '75e598ff-6d6c-4a80-80bc-de36bc37a3be'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99572', 'MBFL', now(), now(), 'f7b9b7d5-6730-4e8f-9364-e5b1eb1d2c2b'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99573', 'MBFL', now(), now(), '74dcb198-d7c8-4dbc-81ab-33a16559e100'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99574', 'MAPK', now(), now(), '9b9d03a0-e069-48cd-ae65-a66dbd8a3214'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99575', 'MBFL', now(), now(), 'f6ffb9e8-8976-4288-88cd-d10420d1894e'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99576', 'MBFL', now(), now(), '0883cf7f-c2f9-4865-91c3-34df59486f01'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99577', 'MBFL', now(), now(), 'a5e58cce-5375-498b-bfdb-d2e4b50ee2b7'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99578', 'MBFL', now(), now(), '63113a71-6f32-4531-991b-015d51be0ef7'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99579', 'MBFL', now(), now(), 'be2f7dfb-a020-45b5-afa6-0e3b6fd669bf'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99580', 'MBFL', now(), now(), '29b1f268-8ad5-400c-8aa6-0b4b851f8588'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99581', 'MBFL', now(), now(), '5e1dee94-93f9-4b7d-8445-7de967031bfa'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99583', 'MBFL', now(), now(), '2ab06e55-ae2b-4c19-b679-81ee89d098a5'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99585', 'MBFL', now(), now(), 'd177b210-8362-4073-9862-43333203abfc'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99586', 'MBFL', now(), now(), 'c8bdc299-d65d-4b4b-a0ad-0ef6c8ca905d'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99587', 'MBFL', now(), now(), '9543c328-16d2-484b-9e62-1965a63f1d2e'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99588', 'MBFL', now(), now(), '08d82a7f-8417-407d-b352-9e0f3ef9e9cd'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99589', 'MBFL', now(), now(), 'e09e4805-d0a9-4347-8f63-7e221c4b6d7e'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99590', 'MBFL', now(), now(), '3022675c-9e50-403e-987c-7e79762274c2'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99591', 'MBFL', now(), now(), '57eebbd9-4b15-4b6f-923a-1d1db65d72bc'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99599', 'MBFL', now(), now(), '78a46448-b22a-4da0-a42a-07af993848bc'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99602', 'MBFL', now(), now(), '101c94fc-11cf-4317-a63b-c3c903d1f9b3'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99603', 'MBFL', now(), now(), '67ebaf88-8131-4215-b6a4-3b3ecb3862f0'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99604', 'MBFL', now(), now(), '45e5dfdd-9dbc-439a-96ac-292b820aa292'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99605', 'MBFL', now(), now(), 'd403b760-8ad8-409b-b8d4-e0ad9dfd3947'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99606', 'MBFL', now(), now(), 'ac7a083e-3300-4881-874b-6bbd206a4e92'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99607', 'MBFL', now(), now(), 'f8d072a2-099d-4767-9b1d-b5dd48a79a19'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99608', 'MAPS', now(), now(), '889e4f60-6352-443c-8705-734ed91dc7a4'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99609', 'MBFL', now(), now(), 'da00dfc3-a372-4e9f-8ddb-f0d9c792ab36'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99610', 'MBFL', now(), now(), '53b8b7d8-337a-43fe-9a97-e2f5083210aa'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99611', 'MBFL', now(), now(), 'f7211d4f-8ffb-482f-b268-07b9d79c467e'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99612', 'MBFL', now(), now(), 'e7340a1b-3278-42aa-a067-021863d676dd'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99613', 'MBFL', now(), now(), '7de673ca-c91d-4bc1-b450-fdaa0c199723'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99614', 'MBFL', now(), now(), 'fd72416c-c88b-4c0f-a3e0-28fd924fd7d7'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99615', 'MAPS', now(), now(), 'b0597a99-16d7-4e1e-9820-042971b2551f'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99619', 'MAPS', now(), now(), '8d05d190-fda5-4930-838d-76f37892417c'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99620', 'MBFL', now(), now(), 'fc2456f7-d2ca-4cb3-b16b-f50388c09a12'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99621', 'MBFL', now(), now(), 'da74789a-b710-4332-a973-cc8ff104f80f'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99622', 'MBFL', now(), now(), '52b0c551-7d40-496b-9e5a-3aeb7e68f415'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99623', 'MBFL', now(), now(), '4613c99b-da96-4649-8de5-8e445af78f99'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99624', 'MAPS', now(), now(), '13e0d2ba-852e-4970-b60c-464740975141'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99625', 'MBFL', now(), now(), '772070b7-2029-40cf-82b7-e8b839f2740f'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99626', 'MBFL', now(), now(), 'a6a4b405-e1af-455f-89d5-088de0afebfa'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99627', 'MBFL', now(), now(), 'e0778102-5fb8-4366-bbd2-413a96946a6d'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99628', 'MBFL', now(), now(), '4dad6942-608b-415b-86b1-4575cbe92b14'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99629', 'MBFL', now(), now(), '534a58f3-e96b-41cd-86f5-d3c3f7553063'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99630', 'MBFL', now(), now(), 'aca18cb8-d348-4dfa-bfce-3508ed050ce2'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99631', 'MBFL', now(), now(), '90fd8694-e43b-49f7-a22b-27f95170069c'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99632', 'MBFL', now(), now(), 'b6736f3e-b561-4658-a22a-822b4d141db6'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99633', 'MBFL', now(), now(), 'e622bb3a-8c83-4230-b953-a256a7ed2b50'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99634', 'MBFL', now(), now(), 'a042efbf-24da-489f-ab6d-15179847cec1'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99635', 'MBFL', now(), now(), '153a77b9-ae9f-4e3c-8b7e-35631300491d'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99636', 'MBFL', now(), now(), '988b8373-ca1d-459f-a0cc-598c20ad1e07'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99637', 'MBFL', now(), now(), 'eb47a507-5f66-4344-bed9-d165d8275fa9'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99638', 'MBFL', now(), now(), '0858bd59-a16b-47ca-9cb8-670411737d4d'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99639', 'MBFL', now(), now(), '52b0ac8b-3931-47d1-aa66-2283a9a1650a'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99640', 'MBFL', now(), now(), '9040a7e0-de08-494b-8d69-27cd4a53bc90'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99641', 'MBFL', now(), now(), '6e1d8641-0448-40cc-88e3-67d4f8466a8e'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99643', 'MAPS', now(), now(), '15c1aea9-9b9b-4f6e-93cf-a114ac9175f8'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99644', 'MAPS', now(), now(), '6f294618-1e61-42fc-8d6b-cd870b0b08fc'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99645', 'MBFL', now(), now(), '82d2557f-263b-4108-a75b-ff745aea08f0'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99647', 'MBFL', now(), now(), 'c432e858-d177-4faa-8d0b-97c5305b61e7'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99648', 'MBFL', now(), now(), '273ecc7f-0b37-439e-97e6-86a2f7ea7114'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99649', 'MBFL', now(), now(), '213d21e6-0b04-4f5c-90f8-4ddc9938381d'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99650', 'MBFL', now(), now(), 'f2a5f071-205f-4cc1-9448-44058d9af3f5'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99651', 'MBFL', now(), now(), 'c16c38b5-eb50-4dc7-8a40-aa9e7e80bf2f'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99652', 'MBFL', now(), now(), 'ef17b53b-f840-4b2d-9f66-3f80c413b3c1'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99653', 'MBFL', now(), now(), '7307956d-84f3-4c22-ad2f-40b62dc0a0d7'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99654', 'MBFL', now(), now(), '47ccb8d8-8df2-4293-9f86-f5703aea0dba'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99655', 'MBFL', now(), now(), '69d0d1e7-8c8e-4cde-82dc-b8374b8b4861'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99656', 'MBFL', now(), now(), 'e0be218f-2d2f-4bac-b8b5-e09ef3f28742'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99657', 'MBFL', now(), now(), 'bd121ed0-6592-427a-9ba9-c06ab3a703dd'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99658', 'MBFL', now(), now(), '6acfa9fe-137e-4a92-b21c-39e627cc378a'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99659', 'MBFL', now(), now(), 'f131070d-b5d8-453e-bac7-ad436ea124dc'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99660', 'MBFL', now(), now(), 'cab88f64-c8c1-42f1-be62-7b4cce31aeb3'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99661', 'MBFL', now(), now(), 'e5a62394-0278-42a3-84e3-57ff2240dc60'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99662', 'MBFL', now(), now(), '8c0d1e5d-6afe-4552-b7cc-3b5a6fbdc3db'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99663', 'MBFL', now(), now(), '44beec24-6856-43f7-ab55-b48286d2829b'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99664', 'MBFL', now(), now(), 'c35ed3e5-c3a6-43e2-9794-56709f93620f'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99665', 'MBFL', now(), now(), '06b6f8ed-7f4e-4b7a-94b6-def7b619a03d'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99666', 'MBFL', now(), now(), '959c959f-b829-471c-a63e-b3cffa15f6c7'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99667', 'MBFL', now(), now(), '75ef0a3a-cc89-4a3b-809f-6cdb6753bc25'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99668', 'MBFL', now(), now(), 'c2f65e88-5c6a-4e46-95c6-89e79385c163'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99669', 'MBFL', now(), now(), '6c1d51b0-9213-404a-b7d8-c4fc384bd304'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99670', 'MBFL', now(), now(), '523b6896-d660-42c7-a8f9-e4603e75ccc9'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99671', 'MBFL', now(), now(), '2c1d481b-6ef3-49ab-8ae9-a9e6429575fd'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99672', 'MBFL', now(), now(), '702c69d2-5231-4267-8d8e-85d5817077d7'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99674', 'MBFL', now(), now(), '66b7f4fb-9098-40a8-a018-a5217ed9878d'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99675', 'MBFL', now(), now(), '2ab46ff9-9120-48af-ac05-73663dfd1571'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99676', 'MBFL', now(), now(), '488978c8-3c52-4a1a-9966-c04bba23ee37'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99677', 'MBFL', now(), now(), '30ceccbf-25b6-4862-b358-78f12e22ba06'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99678', 'MBFL', now(), now(), 'a4ed1190-85d9-4b20-8390-9a1b9a3bc0c4'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99679', 'MBFL', now(), now(), '1c87ddc2-ad88-4607-b826-f37da5fc8762'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99680', 'MBFL', now(), now(), '3b5dca39-d435-413c-9edf-3bb3a2b5005d'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99681', 'MBFL', now(), now(), '93acc862-3107-4f22-b270-e0c7d1f5f80b'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99682', 'MBFL', now(), now(), 'd5224770-83e3-4dc8-97af-24c147669dcc'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99683', 'MBFL', now(), now(), 'b9dcbc66-53d9-4f14-b51d-02171a3fdf5f'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99684', 'MBFL', now(), now(), '65a07b11-25cf-4fae-baf4-59d89677cfc2'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99685', 'MBFL', now(), now(), '0cc24afe-3579-41bf-8181-08725b45e3b0'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99686', 'MBFL', now(), now(), 'fd40734b-f683-43b2-9e6e-93eeda219aa9'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99687', 'MBFL', now(), now(), 'fe3c676b-a3d7-4d58-88d4-5a6ab3dc3aae'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99688', 'MBFL', now(), now(), '83cc5417-31e0-468c-a5b3-0495734e9504'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99689', 'MAPK', now(), now(), '68962696-2ba8-40ae-946d-8ab29dd3cd4b'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99690', 'MBFL', now(), now(), '92d71dc8-6601-4cc0-bd76-3584e402ceed'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99691', 'MBFL', now(), now(), '839bfff4-f486-462f-bf2c-560aa95f5b6e'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99692', 'MBFL', now(), now(), 'b3e45fb6-3e5f-452e-b355-08fa49e1f52b'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99693', 'MBFL', now(), now(), 'd3843234-0168-402a-821d-9a4666a54273'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99694', 'MBFL', now(), now(), '3ca39ea7-1f6d-4112-886e-cd4c6fc07476'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99695', 'MBFL', now(), now(), 'b865dfa9-c1c4-42bd-9253-8fa643ebf582'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99697', 'MAPS', now(), now(), '8e71753d-c45a-4a84-912e-cb6bb8a0ccef'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99701', 'MBFL', now(), now(), '951282d4-0523-450b-a636-c2bdadf2a38a'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99702', 'MBFL', now(), now(), 'fcab1e10-4645-4d3e-a4b7-00a9f54a2157'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99703', 'JEAT', now(), now(), '5f47676a-520d-4106-9889-009b0ab29726'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99704', 'MBFL', now(), now(), '328fd045-2e70-4bc2-a466-1319e2425b1f'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99705', 'MBFL', now(), now(), '37727f3a-6c6e-4d9e-890c-ec0279c7de0b'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99706', 'MBFL', now(), now(), 'c84810a5-660f-4200-a86f-46a17f038adf'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99707', 'MBFL', now(), now(), '7d090646-098b-4096-9012-b68182cf2e35'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99708', 'MBFL', now(), now(), '7a16c7b2-e624-4933-9dc4-b3be69849fe5'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99709', 'MBFL', now(), now(), 'bd590cc5-a624-4fb2-b37b-4b37a7ac863a'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99710', 'MBFL', now(), now(), '5fab3c20-38ee-44b6-9ae1-384b93462637'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99711', 'MBFL', now(), now(), '1d3a88e9-a0e0-4cce-b20a-9f0b6996b7e1'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99712', 'MBFL', now(), now(), 'acec5c52-6709-48cb-a6cb-0e58b05860ec'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99714', 'MBFL', now(), now(), 'ce621370-6656-480d-a071-89de4607d716'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99716', 'MBFL', now(), now(), 'b65f161a-0f33-4360-8905-c716b17943d4'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99720', 'MBFL', now(), now(), '19aa130f-0dee-46db-a054-729cddf9a257'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99721', 'MBFL', now(), now(), '715fde06-a1a7-4240-8e59-4b76dffdb144'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99722', 'MBFL', now(), now(), '4be97e0b-4237-4906-bb0d-8e1704e0b65b'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99723', 'MBFL', now(), now(), 'aad84c1d-7ba2-40de-92e5-74b2dd558fa9'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99724', 'MBFL', now(), now(), '8b8157b2-0c64-477f-a173-e26818caeffd'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99725', 'MBFL', now(), now(), '8f258372-966a-4565-9e22-61cdb5f88ef9'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99726', 'MBFL', now(), now(), '02f07ef0-ebad-4fb8-a50c-bdd140d87c49'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99727', 'MBFL', now(), now(), '63de42c5-eb6e-4471-9170-8d4d3fd88d87'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99729', 'MBFL', now(), now(), 'c12cf5c5-b3e0-4dff-a88f-39b8a22a950b'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99730', 'MBFL', now(), now(), '820b8fe5-2c4c-459a-850a-8326fd50ea57'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99731', 'JEAT', now(), now(), 'dd366219-6c3b-45c1-a59a-e04d0efe1a6d'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99732', 'MBFL', now(), now(), '32e2f9ec-805a-419b-a850-e4868c8eb13f'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99733', 'MBFL', now(), now(), '9762e6a0-a2dd-4da7-9cc5-4dfdfd21fad2'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99734', 'MBFL', now(), now(), 'f35587d4-41be-4e7a-8cc3-07e1f2a9e4b9'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99736', 'MBFL', now(), now(), 'a71189c1-784c-4d9c-925b-dcc6432c6a28'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99737', 'MBFL', now(), now(), '80a884f0-058a-46c0-8fdb-90d1d027f002'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99738', 'MBFL', now(), now(), '34cf2f93-66b3-43ab-a428-2cc2e4c6b143'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99739', 'MBFL', now(), now(), 'eadc1ca9-6de2-46ab-a015-acb813599670'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99740', 'MBFL', now(), now(), 'cc3f07af-485b-4256-8703-bf41a5967497'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99741', 'MBFL', now(), now(), '61409776-e0fa-47f4-825e-9c6f91ce2b10'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99742', 'MBFL', now(), now(), 'b46d81ef-9faa-49ec-85a3-4c3734d07126'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99743', 'MBFL', now(), now(), 'acb28741-502a-40c2-aa45-4a9b42d39405'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99744', 'MBFL', now(), now(), 'baf46567-31ea-481d-9ab9-e974ea261c2f'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99745', 'MBFL', now(), now(), 'babaac73-1c6b-4209-baf3-1e0c5d41dc7f'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99746', 'MBFL', now(), now(), 'ddc32535-73e0-4f13-ad2e-6294700c17cc'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99747', 'MBFL', now(), now(), '40a3c816-79a0-4f26-aa6a-2847835a45d1'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99748', 'MBFL', now(), now(), '5a3a2cce-4bc0-4bd2-98fe-7f71bc09c99e'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99749', 'MBFL', now(), now(), '212653a0-4a5a-4e48-b301-78b3f294fe16'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99750', 'MBFL', now(), now(), '2013baa1-1f2f-47f7-beb0-98f3171c6bf1'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99751', 'MBFL', now(), now(), 'a19e22ef-194e-4b48-858c-59ea04d48fcf'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99752', 'MBFL', now(), now(), 'e1ce6564-37d3-4fe4-8c19-f39e31c9d7cd'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99753', 'MBFL', now(), now(), '2dd6633b-4a67-4bff-879f-32bf88ec64a5'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99754', 'MBFL', now(), now(), '5fe4e773-573e-4052-b4b7-d5686366d03b'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99755', 'MBFL', now(), now(), '0383ed06-ff31-4fa7-851a-962dc7adf7d3'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99756', 'MBFL', now(), now(), '61726154-40a0-4f7d-82d0-b09f28a2f209'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99757', 'MBFL', now(), now(), '3bd35ddb-4d89-4e01-8dd1-e938bc5c0388'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99758', 'MBFL', now(), now(), '31c3a401-cc17-4e5a-bf22-d66e00a05528'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99759', 'MBFL', now(), now(), 'cc534b49-e72f-4a19-bbad-4dc5101c1373'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99760', 'MBFL', now(), now(), '56e2c9c0-f914-40f3-988c-7b88593f5513'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99761', 'MBFL', now(), now(), 'ccd849d7-e2ed-40ce-a353-9c93d57b4f92'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99762', 'MBFL', now(), now(), '1981bcff-5f4b-4358-92ea-93177783215f'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99763', 'MBFL', now(), now(), '298d0d8a-a19a-4498-937f-1ab233a85730'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99764', 'MBFL', now(), now(), '37352211-832f-4af7-8655-414ac02b8544'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99765', 'MBFL', now(), now(), 'c2dd65ee-9875-4e7d-9d34-46f529f8959b'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99766', 'MBFL', now(), now(), 'ad3283f4-74cb-403f-84a2-c14f510f83cd'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99767', 'MBFL', now(), now(), 'eb25b5f7-ed3b-4860-b337-5ee68b6c4534'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99768', 'MBFL', now(), now(), '92116116-8a7a-420c-83cd-5f9977401941'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99769', 'MBFL', now(), now(), 'c5a38d76-3bef-4e9d-8244-1741aa20ed10'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99770', 'MBFL', now(), now(), 'e7f0f266-019d-4bce-8921-6804e5e8cb0c'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99771', 'MBFL', now(), now(), '74f9319a-0970-4721-8fda-bfe4f777896b'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99772', 'MBFL', now(), now(), 'db7dc663-1443-4209-9a01-82f694a4dca1'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99773', 'MBFL', now(), now(), '474d4d25-1314-4bbf-ae04-25ffae18a7d4'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99774', 'MBFL', now(), now(), 'ea503792-8747-465c-ad89-c513004e1345'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99775', 'MBFL', now(), now(), 'e33ba93c-8ba2-4a3b-b8bc-f331a989e388'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99776', 'MBFL', now(), now(), 'ffc00def-ec8b-413d-9601-bf5587b510f4'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99777', 'MBFL', now(), now(), 'ce0ff3db-7d59-43af-923d-efdf4feb72cf'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99778', 'MBFL', now(), now(), '4235599e-4fd3-46e9-b733-de29dca74700'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99780', 'MBFL', now(), now(), '0aa94d7f-81bb-42f4-be8a-e14b2bc630c8'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99781', 'MBFL', now(), now(), '1b98f0bd-711c-48f0-87ed-9e5bff30ad60'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99782', 'MBFL', now(), now(), 'c7f7dd5b-7674-4b78-b1a5-0013fd979231'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99783', 'MBFL', now(), now(), '20152935-a8c8-45ad-a4cd-af2a945a8a17'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99784', 'MBFL', now(), now(), '58ec9aaa-e2d0-4732-9ffd-3b7563bb1c05'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99785', 'MBFL', now(), now(), '13f3eb0b-1534-4773-9fae-a86d39a829ae'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99786', 'MBFL', now(), now(), 'eeb04da3-f067-469b-8703-c3e9de365ad7'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99788', 'MBFL', now(), now(), '224088e2-afba-4b23-8361-9126c00445a8'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99789', 'MBFL', now(), now(), '8c123f36-f68d-461b-bd60-01cbd501ae17'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99790', 'MBFL', now(), now(), '1492fc25-8a4a-4fbc-a9be-433ad03d878e'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99791', 'MBFL', now(), now(), 'fda0d6c4-7a68-425b-9567-da8d368dbfa0'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99801', 'MAPK', now(), now(), '095789bc-136f-44e6-bf3f-b5a5a4ffad5c'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99802', 'MAPK', now(), now(), '1e73fbe5-0924-42dc-aedd-9c4aab511b90'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99803', 'MAPK', now(), now(), '281f58c0-fe6e-4e77-9035-6f1db1d4a8fd'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99811', 'MAPK', now(), now(), '6dcd4248-9c66-4bf3-8f4b-30dfd4add731'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99812', 'MAPK', now(), now(), '82579769-f363-4d68-b6f4-2586ac3f974c'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99820', 'MAPK', now(), now(), 'aecd46d3-dea5-4d0e-8409-b5b300ddded8'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99821', 'MAPK', now(), now(), '5a3ff675-8c07-4058-b5c6-8c19400f2f07'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99824', 'MAPK', now(), now(), 'e0cd0a98-4c4e-4d21-9adc-416fb4ce2449'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99825', 'MAPK', now(), now(), 'aa515936-aa46-4016-a487-c925b4dc16b2'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99826', 'MAPK', now(), now(), '553f410a-ed32-4517-a766-c665369d9369'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99827', 'MAPK', now(), now(), 'a275e877-48ba-4473-8064-43b3ab7b042b'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99829', 'MAPK', now(), now(), '7cb1babd-df8b-400f-9e5c-6c595bbcaa2f'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99830', 'MAPK', now(), now(), 'dcc9dd70-0984-4555-a371-e8f8bf583ecf'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99832', 'MAPK', now(), now(), 'a3740468-c12a-465d-b627-fd80bc921eb5'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99833', 'MAPK', now(), now(), '38eecaf7-4c2d-44c5-a8bd-ccde44ec6b89'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99835', 'MAPK', now(), now(), 'c914333a-4c88-404b-a17a-f51b4df9dac7'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99836', 'MAPK', now(), now(), 'fe065064-61f7-4c01-80f4-945fb1d6d26f'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99840', 'MAPK', now(), now(), '7c72b250-4d4b-41a2-b548-97a5b1e1c526'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99841', 'MAPK', now(), now(), '1a1c28b2-d5c7-4180-93ea-d66887ce7e26'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99850', 'MAPK', now(), now(), '21f9854e-2a61-4810-a4e3-ea09f1f2c59f'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99901', 'MAPK', now(), now(), '36ef16e6-d9a5-4706-a115-e11691ff1c37'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99903', 'MAPK', now(), now(), '76d5df09-e4f1-4b96-8df4-68bbeee29b00'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99918', 'MAPK', now(), now(), '4b6b34d9-40ec-459a-a337-5fbdde3aaa84'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99919', 'MAPK', now(), now(), 'af79bdf9-f4cf-494e-ad67-ddbb836e98d0'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99921', 'MAPK', now(), now(), '742e78df-6615-406b-b0f2-55deaec1fc09'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99922', 'MAPK', now(), now(), '99701216-788c-41d7-bdbb-98ff0f8e2224'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99923', 'MAPK', now(), now(), '3978cb58-70b6-4c23-a97b-d6e00cf7abcf'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99925', 'MAPK', now(), now(), 'bc7cb635-6287-4ecb-8f8c-9e6f66858441'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99926', 'MAPK', now(), now(), '9abec1b8-3f19-4616-aae2-8c8a54b44e48'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99927', 'MAPK', now(), now(), 'ba7adb39-9897-4e4d-b042-c4360cc25691'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99928', 'MAPK', now(), now(), '4f721fb2-7bcc-4a2a-a24b-cd3d00532311'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99929', 'MAPK', now(), now(), '0ed1ee93-f720-4e4c-b28a-4572e847ad15'); + +INSERT INTO postal_code_to_gblocs(postal_code, gbloc, created_at, updated_at, id) +VALUES ('99950', 'MAPK', now(), now(), '23c0f299-2b5c-44ff-b604-5efd70019f8d'); diff --git a/migrations/app/schema/20250103142533_update_postal_codes_and_gblocs_for_ak.up.sql b/migrations/app/schema/20250103142533_update_postal_codes_and_gblocs_for_ak.up.sql new file mode 100644 index 00000000000..282ad1b0b16 --- /dev/null +++ b/migrations/app/schema/20250103142533_update_postal_codes_and_gblocs_for_ak.up.sql @@ -0,0 +1,43 @@ +delete from postal_code_to_gblocs where postal_code in ( +select uspr_zip_id from v_locations where state = 'AK'); + +drop view move_to_gbloc; +CREATE OR REPLACE VIEW move_to_gbloc AS +SELECT move_id, gbloc FROM ( + SELECT DISTINCT ON (sh.move_id) sh.move_id, s.affiliation, + COALESCE(pctg.gbloc, coalesce(pctg_oconus_bos.gbloc, coalesce(pctg_oconus.gbloc, pctg_ppm.gbloc))) AS gbloc + FROM mto_shipments sh + JOIN moves m ON sh.move_id = m.id + JOIN orders o on m.orders_id = o.id + JOIN service_members s on o.service_member_id = s.id + LEFT JOIN ( SELECT a.id AS address_id, + pctg_1.gbloc, pctg_1.postal_code + FROM addresses a + JOIN postal_code_to_gblocs pctg_1 ON a.postal_code::text = pctg_1.postal_code::text) pctg ON pctg.address_id = sh.pickup_address_id + LEFT JOIN ( SELECT ppm.shipment_id, + pctg_1.gbloc + FROM ppm_shipments ppm + JOIN addresses ppm_address ON ppm.pickup_postal_address_id = ppm_address.id + JOIN postal_code_to_gblocs pctg_1 ON ppm_address.postal_code::text = pctg_1.postal_code::text) pctg_ppm ON pctg_ppm.shipment_id = sh.id + LEFT JOIN ( SELECT a.id AS address_id, + cast(jr.code as varchar) AS gbloc, ga.department_indicator + FROM addresses a + JOIN re_oconus_rate_areas ora ON a.us_post_region_cities_id = ora.us_post_region_cities_id + JOIN gbloc_aors ga ON ora.id = ga.oconus_rate_area_id + JOIN jppso_regions jr ON ga.jppso_regions_id = jr.id + ) pctg_oconus_bos ON pctg_oconus_bos.address_id = sh.pickup_address_id + and case when s.affiliation = 'AIR_FORCE' THEN 'AIR_AND_SPACE_FORCE' + when s.affiliation = 'SPACE_FORCE' THEN 'AIR_AND_SPACE_FORCE' + when s.affiliation = 'NAVY' THEN 'NAVY_AND_MARINES' + when s.affiliation = 'MARINES' THEN 'NAVY_AND_MARINES' + else s.affiliation + end = pctg_oconus_bos.department_indicator + LEFT JOIN ( SELECT a.id AS address_id, + cast(pctg_1.code as varchar) AS gbloc, ga.department_indicator + FROM addresses a + JOIN re_oconus_rate_areas ora ON a.us_post_region_cities_id = ora.us_post_region_cities_id + JOIN gbloc_aors ga ON ora.id = ga.oconus_rate_area_id + JOIN jppso_regions pctg_1 ON ga.jppso_regions_id = pctg_1.id + ) pctg_oconus ON pctg_oconus.address_id = sh.pickup_address_id and pctg_oconus.department_indicator is null + WHERE sh.deleted_at IS NULL + ORDER BY sh.move_id, sh.created_at) as m; \ No newline at end of file diff --git a/pkg/handlers/ghcapi/internal/payloads/model_to_payload.go b/pkg/handlers/ghcapi/internal/payloads/model_to_payload.go index caa4aef11d5..9c4c8e83592 100644 --- a/pkg/handlers/ghcapi/internal/payloads/model_to_payload.go +++ b/pkg/handlers/ghcapi/internal/payloads/model_to_payload.go @@ -2561,21 +2561,46 @@ func SearchMoves(appCtx appcontext.AppContext, moves models.Moves) *ghcmessages. } var destinationGBLOC ghcmessages.GBLOC - var PostalCodeToGBLOC models.PostalCodeToGBLOC - var err error + var postalCodeGBLOC string if numShipments > 0 && move.MTOShipments[0].DestinationAddress != nil { - PostalCodeToGBLOC, err = models.FetchGBLOCForPostalCode(appCtx.DB(), move.MTOShipments[0].DestinationAddress.PostalCode) + if *move.MTOShipments[0].DestinationAddress.IsOconus { + destAddrGBLOCOConus, err := models.FetchOconusAddressGbloc(appCtx.DB(), *move.MTOShipments[0].DestinationAddress, customer) + if err != nil { + postalCodeGBLOC = "" + } else { + postalCodeGBLOC = destAddrGBLOCOConus.Gbloc + } + } else { + destAddrGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), move.MTOShipments[0].DestinationAddress.PostalCode) + if err != nil { + postalCodeGBLOC = "" + } else { + postalCodeGBLOC = destAddrGBLOCConus.GBLOC + } + } } else { - // If the move has no shipments or the shipment has no destination address fall back to the origin duty location GBLOC - PostalCodeToGBLOC, err = models.FetchGBLOCForPostalCode(appCtx.DB(), move.Orders.NewDutyLocation.Address.PostalCode) + // If the move has no shipments or the shipment has no destination address fall back to the destination duty location GBLOC + if *move.Orders.NewDutyLocation.Address.IsOconus { + newDutyLocationGBLOCOconus, err := models.FetchOconusAddressGbloc(appCtx.DB(), move.Orders.NewDutyLocation.Address, customer) + if err != nil { + postalCodeGBLOC = "" + } else { + postalCodeGBLOC = newDutyLocationGBLOCOconus.Gbloc + } + } else { + newDutyLocationGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), move.Orders.NewDutyLocation.Address.PostalCode) + if err != nil { + postalCodeGBLOC = "" + } else { + postalCodeGBLOC = newDutyLocationGBLOCConus.GBLOC + } + } } - if err != nil { - destinationGBLOC = *ghcmessages.NewGBLOC("") - } else if customer.Affiliation.String() == "MARINES" { - destinationGBLOC = ghcmessages.GBLOC("USMC/" + PostalCodeToGBLOC.GBLOC) + if customer.Affiliation.String() == "MARINES" { + destinationGBLOC = ghcmessages.GBLOC("USMC/" + swag.StringValue(&postalCodeGBLOC)) } else { - destinationGBLOC = ghcmessages.GBLOC(PostalCodeToGBLOC.GBLOC) + destinationGBLOC = ghcmessages.GBLOC(swag.StringValue(&postalCodeGBLOC)) } searchMoves[i] = &ghcmessages.SearchMove{ diff --git a/pkg/handlers/ghcapi/orders.go b/pkg/handlers/ghcapi/orders.go index 7f740957c6b..6e32d3d338f 100644 --- a/pkg/handlers/ghcapi/orders.go +++ b/pkg/handlers/ghcapi/orders.go @@ -220,7 +220,7 @@ func (h CreateOrderHandler) Handle(params orderop.CreateOrderParams) middleware. var newDutyLocationGBLOC *string if *newDutyLocation.Address.IsOconus { - newDutyLocationGBLOCOconus, err := models.FetchOconusDutyLocationGbloc(appCtx.DB(), newDutyLocation, serviceMember) + newDutyLocationGBLOCOconus, err := models.FetchOconusAddressGbloc(appCtx.DB(), newDutyLocation.Address, serviceMember) if err != nil { return nil, apperror.NewNotFoundError(newDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") } @@ -237,7 +237,7 @@ func (h CreateOrderHandler) Handle(params orderop.CreateOrderParams) middleware. var originDutyLocationGBLOC *string if *originDutyLocation.Address.IsOconus { - originDutyLocationGBLOCOconus, err := models.FetchOconusDutyLocationGbloc(appCtx.DB(), originDutyLocation, serviceMember) + originDutyLocationGBLOCOconus, err := models.FetchOconusAddressGbloc(appCtx.DB(), originDutyLocation.Address, serviceMember) if err != nil { return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") } diff --git a/pkg/handlers/internalapi/orders.go b/pkg/handlers/internalapi/orders.go index af90aa87e19..3a311bc4062 100644 --- a/pkg/handlers/internalapi/orders.go +++ b/pkg/handlers/internalapi/orders.go @@ -169,7 +169,7 @@ func (h CreateOrdersHandler) Handle(params ordersop.CreateOrdersParams) middlewa var newDutyLocationGBLOC *string if *newDutyLocation.Address.IsOconus { - newDutyLocationGBLOCOconus, err := models.FetchOconusDutyLocationGbloc(appCtx.DB(), newDutyLocation, serviceMember) + newDutyLocationGBLOCOconus, err := models.FetchOconusAddressGbloc(appCtx.DB(), newDutyLocation.Address, serviceMember) if err != nil { return nil, apperror.NewNotFoundError(newDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") } @@ -195,7 +195,7 @@ func (h CreateOrdersHandler) Handle(params ordersop.CreateOrdersParams) middlewa var originDutyLocationGBLOC *string if *originDutyLocation.Address.IsOconus { - originDutyLocationGBLOCOconus, err := models.FetchOconusDutyLocationGbloc(appCtx.DB(), originDutyLocation, serviceMember) + originDutyLocationGBLOCOconus, err := models.FetchOconusAddressGbloc(appCtx.DB(), originDutyLocation.Address, serviceMember) if err != nil { return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") } @@ -383,11 +383,21 @@ func (h UpdateOrdersHandler) Handle(params ordersop.UpdateOrdersParams) middlewa return handlers.ResponseForError(appCtx.Logger(), err), err } - newDutyLocationGBLOC, err := models.FetchGBLOCForPostalCode(appCtx.DB(), dutyLocation.Address.PostalCode) - if err != nil { - err = apperror.NewBadDataError("New duty location GBLOC cannot be verified") - appCtx.Logger().Error(err.Error()) - return handlers.ResponseForError(appCtx.Logger(), err), err + var newDutyLocationGBLOC *string + if *dutyLocation.Address.IsOconus { + newDutyLocationGBLOCOconus, err := models.FetchOconusAddressGbloc(appCtx.DB(), dutyLocation.Address, order.ServiceMember) + if err != nil { + return nil, apperror.NewNotFoundError(dutyLocation.ID, "while looking for Duty Location Oconus GBLOC") + } + newDutyLocationGBLOC = &newDutyLocationGBLOCOconus.Gbloc + } else { + newDutyLocationGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), dutyLocation.Address.PostalCode) + if err != nil { + err = apperror.NewBadDataError("New duty location GBLOC cannot be verified") + appCtx.Logger().Error(err.Error()) + return handlers.ResponseForError(appCtx.Logger(), err), err + } + newDutyLocationGBLOC = &newDutyLocationGBLOCConus.GBLOC } if payload.OriginDutyLocationID != "" { @@ -442,7 +452,7 @@ func (h UpdateOrdersHandler) Handle(params ordersop.UpdateOrdersParams) middlewa order.SpouseHasProGear = *payload.SpouseHasProGear order.NewDutyLocationID = dutyLocation.ID order.NewDutyLocation = dutyLocation - order.DestinationGBLOC = &newDutyLocationGBLOC.GBLOC + order.DestinationGBLOC = newDutyLocationGBLOC order.TAC = payload.Tac order.SAC = payload.Sac diff --git a/pkg/models/address.go b/pkg/models/address.go index e683f7771ab..ef0315c1dbb 100644 --- a/pkg/models/address.go +++ b/pkg/models/address.go @@ -210,3 +210,35 @@ func EvaluateIsOconus(address Address) bool { return false } } + +type oconusGbloc struct { + Gbloc string `db:"gbloc" rw:"r"` +} + +func FetchOconusAddressGbloc(appCtx *pop.Connection, address Address, serviceMember ServiceMember) (*oconusGbloc, error) { + oconusGbloc := oconusGbloc{} + + sqlQuery := ` + SELECT j.code gbloc + FROM addresses a, + re_oconus_rate_areas o, + jppso_regions j, + gbloc_aors g + WHERE a.us_post_region_cities_id = o.us_post_region_cities_id + and o.id = g.oconus_rate_area_id + and j.id = g.jppso_regions_id + and a.id = $1 ` + + if serviceMember.Affiliation.String() == "AIR_FORCE" || serviceMember.Affiliation.String() == "SPACE_FORCE" { + sqlQuery += ` + and g.department_indicator = 'AIR_AND_SPACE_FORCE' ` + } + + err := appCtx.Q().RawQuery(sqlQuery, address.ID).First(&oconusGbloc) + if err != nil { + return nil, err + } + + return &oconusGbloc, nil + +} diff --git a/pkg/models/address_test.go b/pkg/models/address_test.go index f2fbb5bf45c..9dd6a67040f 100644 --- a/pkg/models/address_test.go +++ b/pkg/models/address_test.go @@ -1,6 +1,10 @@ package models_test import ( + "fmt" + + "github.com/gofrs/uuid" + "github.com/transcom/mymove/pkg/factory" m "github.com/transcom/mymove/pkg/models" ) @@ -190,3 +194,205 @@ func (suite *ModelSuite) TestPartialAddressFormat() { suite.Equal("street 1, city, state 90210", formattedAddress) } + +func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { + setupDataForOconusDutyLocation := func(postalCode string) (m.ReRateArea, m.OconusRateArea, m.UsPostRegionCity, m.DutyLocation) { + usprc, err := m.FindByZipCode(suite.AppContextForTest().DB(), postalCode) + suite.NotNil(usprc) + suite.FatalNoError(err) + + address := factory.BuildAddress(suite.DB(), []factory.Customization{ + { + Model: m.Address{ + IsOconus: m.BoolPointer(true), + UsPostRegionCityID: &usprc.ID, + }, + }, + }, nil) + originDutyLocation := factory.BuildDutyLocation(suite.DB(), []factory.Customization{ + { + Model: address, + LinkOnly: true, + Type: &factory.Addresses.DutyLocationAddress, + }, + }, nil) + + contract := m.ReContract{ + Code: "Test_create_oconus_order_code", + Name: "Test_create_oconus_order", + } + verrs, err := suite.AppContextForTest().DB().ValidateAndSave(&contract) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(verrs.Error()) + } + + rateAreaCode := uuid.Must(uuid.NewV4()).String()[0:5] + rateArea := m.ReRateArea{ + ID: uuid.Must(uuid.NewV4()), + ContractID: contract.ID, + IsOconus: true, + Code: rateAreaCode, + Name: fmt.Sprintf("Alaska-%s", rateAreaCode), + Contract: contract, + } + verrs, err = suite.DB().ValidateAndCreate(&rateArea) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(err.Error()) + } + + us_country, err := m.FetchCountryByCode(suite.DB(), "US") + suite.NotNil(us_country) + suite.Nil(err) + + oconusRateArea := m.OconusRateArea{ + ID: uuid.Must(uuid.NewV4()), + RateAreaId: rateArea.ID, + CountryId: us_country.ID, + UsPostRegionCityId: usprc.ID, + Active: true, + } + verrs, err = suite.DB().ValidateAndCreate(&oconusRateArea) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(err.Error()) + } + + return rateArea, oconusRateArea, *usprc, originDutyLocation + } + + suite.Run("fetches duty location GBLOC for AK address, Zone II AirForce", func() { + _, oconusRateArea, _, originDutyLocation := setupDataForOconusDutyLocation("99707") + + airForce := m.AffiliationAIRFORCE + defaultDepartmentIndicator := "AIR_AND_SPACE_FORCE" + serviceMember := factory.BuildServiceMember(suite.DB(), []factory.Customization{ + { + Model: m.ServiceMember{ + Affiliation: &airForce, + }, + }, + }, nil) + + jppsoRegion := m.JppsoRegions{ + Name: "JPPSO Elmendorf-Richardson", + Code: "MBFL", + } + suite.MustSave(&jppsoRegion) + + gblocAors := m.GblocAors{ + JppsoRegionID: jppsoRegion.ID, + OconusRateAreaID: oconusRateArea.ID, + DepartmentIndicator: &defaultDepartmentIndicator, + } + suite.MustSave(&gblocAors) + + gbloc, err := m.FetchOconusAddressGbloc(suite.DB(), originDutyLocation.Address, serviceMember) + suite.NoError(err) + suite.NotNil(gbloc) + suite.Equal(gbloc.Gbloc, "MBFL") + }) + + suite.Run("fetches duty location GBLOC for AK address, Zone II Army", func() { + _, oconusRateArea, _, originDutyLocation := setupDataForOconusDutyLocation("99707") + + army := m.AffiliationARMY + defaultDepartmentIndicator := "ARMY" + serviceMember := factory.BuildServiceMember(suite.DB(), []factory.Customization{ + { + Model: m.ServiceMember{ + Affiliation: &army, + }, + }, + }, nil) + + jppsoRegion := m.JppsoRegions{ + Name: "JPPSO-Northwest", + Code: "JEAT", + } + suite.MustSave(&jppsoRegion) + + gblocAors := m.GblocAors{ + JppsoRegionID: jppsoRegion.ID, + OconusRateAreaID: oconusRateArea.ID, + DepartmentIndicator: &defaultDepartmentIndicator, + } + suite.MustSave(&gblocAors) + + gbloc, err := m.FetchOconusAddressGbloc(suite.DB(), originDutyLocation.Address, serviceMember) + suite.NoError(err) + suite.NotNil(gbloc) + suite.Equal(gbloc.Gbloc, "JEAT") + }) + + suite.Run("fetches duty location GBLOC for AK Cordova address, Zone IV", func() { + _, oconusRateArea, _, originDutyLocation := setupDataForOconusDutyLocation("99574") + + army := m.AffiliationARMY + defaultDepartmentIndicator := "ARMY" + serviceMember := factory.BuildServiceMember(suite.DB(), []factory.Customization{ + { + Model: m.ServiceMember{ + Affiliation: &army, + }, + }, + }, nil) + + jppsoRegion := m.JppsoRegions{ + Name: "USCG Base Kodiak", + Code: "MAPS", + } + suite.MustSave(&jppsoRegion) + + gblocAors := m.GblocAors{ + JppsoRegionID: jppsoRegion.ID, + OconusRateAreaID: oconusRateArea.ID, + DepartmentIndicator: &defaultDepartmentIndicator, + } + suite.MustSave(&gblocAors) + + gbloc, err := m.FetchOconusAddressGbloc(suite.DB(), originDutyLocation.Address, serviceMember) + suite.NoError(err) + suite.NotNil(gbloc) + suite.Equal(gbloc.Gbloc, "MAPS") + }) + + suite.Run("fetches duty location GBLOC for AK NOT Cordova address, Zone IV", func() { + _, oconusRateArea, _, originDutyLocation := setupDataForOconusDutyLocation("99803") + + army := m.AffiliationARMY + defaultDepartmentIndicator := "ARMY" + serviceMember := factory.BuildServiceMember(suite.DB(), []factory.Customization{ + { + Model: m.ServiceMember{ + Affiliation: &army, + }, + }, + }, nil) + + jppsoRegion := m.JppsoRegions{ + Name: "USCG Base Ketchikan", + Code: "MAPK", + } + suite.MustSave(&jppsoRegion) + + gblocAors := m.GblocAors{ + JppsoRegionID: jppsoRegion.ID, + OconusRateAreaID: oconusRateArea.ID, + DepartmentIndicator: &defaultDepartmentIndicator, + } + suite.MustSave(&gblocAors) + + gbloc, err := m.FetchOconusAddressGbloc(suite.DB(), originDutyLocation.Address, serviceMember) + suite.NoError(err) + suite.NotNil(gbloc) + suite.Equal(gbloc.Gbloc, "MAPK") + }) +} diff --git a/pkg/models/duty_location.go b/pkg/models/duty_location.go index 5f17074e0cd..57feab234c1 100644 --- a/pkg/models/duty_location.go +++ b/pkg/models/duty_location.go @@ -290,35 +290,3 @@ func FetchDutyLocationsByPostalCode(tx *pop.Connection, postalCode string) (Duty return locations, nil } - -type oconusGbloc struct { - Gbloc string `db:"gbloc" rw:"r"` -} - -func FetchOconusDutyLocationGbloc(appCtx *pop.Connection, dutyLocation DutyLocation, serviceMember ServiceMember) (*oconusGbloc, error) { - oconusGbloc := oconusGbloc{} - - sqlQuery := ` - SELECT j.code gbloc - FROM addresses a, - re_oconus_rate_areas o, - jppso_regions j, - gbloc_aors g - WHERE a.us_post_region_cities_id = o.us_post_region_cities_id - and o.id = g.oconus_rate_area_id - and j.id = g.jppso_regions_id - and a.id = $1 ` - - if serviceMember.Affiliation.String() == "AIR_FORCE" || serviceMember.Affiliation.String() == "SPACE_FORCE" { - sqlQuery += ` - and g.department_indicator = 'AIR_AND_SPACE_FORCE' ` - } - - err := appCtx.Q().RawQuery(sqlQuery, dutyLocation.Address.ID).First(&oconusGbloc) - if err != nil { - return nil, err - } - - return &oconusGbloc, nil - -} diff --git a/pkg/models/duty_location_test.go b/pkg/models/duty_location_test.go index 6537290ebfc..e74971d8d65 100644 --- a/pkg/models/duty_location_test.go +++ b/pkg/models/duty_location_test.go @@ -215,208 +215,6 @@ func (suite *ModelSuite) Test_FetchDutyLocationWithTransportationOffice() { }) } -func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { - setupDataForOconusDutyLocation := func(postalCode string) (models.ReRateArea, models.OconusRateArea, models.UsPostRegionCity, models.DutyLocation) { - usprc, err := models.FindByZipCode(suite.AppContextForTest().DB(), postalCode) - suite.NotNil(usprc) - suite.FatalNoError(err) - - address := factory.BuildAddress(suite.DB(), []factory.Customization{ - { - Model: models.Address{ - IsOconus: models.BoolPointer(true), - UsPostRegionCityID: &usprc.ID, - }, - }, - }, nil) - originDutyLocation := factory.BuildDutyLocation(suite.DB(), []factory.Customization{ - { - Model: address, - LinkOnly: true, - Type: &factory.Addresses.DutyLocationAddress, - }, - }, nil) - - contract := models.ReContract{ - Code: "Test_create_oconus_order_code", - Name: "Test_create_oconus_order", - } - verrs, err := suite.AppContextForTest().DB().ValidateAndSave(&contract) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(verrs.Error()) - } - - rateAreaCode := uuid.Must(uuid.NewV4()).String()[0:5] - rateArea := models.ReRateArea{ - ID: uuid.Must(uuid.NewV4()), - ContractID: contract.ID, - IsOconus: true, - Code: rateAreaCode, - Name: fmt.Sprintf("Alaska-%s", rateAreaCode), - Contract: contract, - } - verrs, err = suite.DB().ValidateAndCreate(&rateArea) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(err.Error()) - } - - us_country, err := models.FetchCountryByCode(suite.DB(), "US") - suite.NotNil(us_country) - suite.Nil(err) - - oconusRateArea := models.OconusRateArea{ - ID: uuid.Must(uuid.NewV4()), - RateAreaId: rateArea.ID, - CountryId: us_country.ID, - UsPostRegionCityId: usprc.ID, - Active: true, - } - verrs, err = suite.DB().ValidateAndCreate(&oconusRateArea) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(err.Error()) - } - - return rateArea, oconusRateArea, *usprc, originDutyLocation - } - - suite.Run("fetches duty location GBLOC for AK address, Zone II AirForce", func() { - _, oconusRateArea, _, originDutyLocation := setupDataForOconusDutyLocation("99707") - - airForce := models.AffiliationAIRFORCE - defaultDepartmentIndicator := "AIR_AND_SPACE_FORCE" - serviceMember := factory.BuildServiceMember(suite.DB(), []factory.Customization{ - { - Model: models.ServiceMember{ - Affiliation: &airForce, - }, - }, - }, nil) - - jppsoRegion := models.JppsoRegions{ - Name: "JPPSO Elmendorf-Richardson", - Code: "MBFL", - } - suite.MustSave(&jppsoRegion) - - gblocAors := models.GblocAors{ - JppsoRegionID: jppsoRegion.ID, - OconusRateAreaID: oconusRateArea.ID, - DepartmentIndicator: &defaultDepartmentIndicator, - } - suite.MustSave(&gblocAors) - - gbloc, err := models.FetchOconusDutyLocationGbloc(suite.DB(), originDutyLocation, serviceMember) - suite.NoError(err) - suite.NotNil(gbloc) - suite.Equal(gbloc.Gbloc, "MBFL") - }) - - suite.Run("fetches duty location GBLOC for AK address, Zone II Army", func() { - _, oconusRateArea, _, originDutyLocation := setupDataForOconusDutyLocation("99707") - - army := models.AffiliationARMY - defaultDepartmentIndicator := "ARMY" - serviceMember := factory.BuildServiceMember(suite.DB(), []factory.Customization{ - { - Model: models.ServiceMember{ - Affiliation: &army, - }, - }, - }, nil) - - jppsoRegion := models.JppsoRegions{ - Name: "JPPSO-Northwest", - Code: "JEAT", - } - suite.MustSave(&jppsoRegion) - - gblocAors := models.GblocAors{ - JppsoRegionID: jppsoRegion.ID, - OconusRateAreaID: oconusRateArea.ID, - DepartmentIndicator: &defaultDepartmentIndicator, - } - suite.MustSave(&gblocAors) - - gbloc, err := models.FetchOconusDutyLocationGbloc(suite.DB(), originDutyLocation, serviceMember) - suite.NoError(err) - suite.NotNil(gbloc) - suite.Equal(gbloc.Gbloc, "JEAT") - }) - - suite.Run("fetches duty location GBLOC for AK Cordova address, Zone IV", func() { - _, oconusRateArea, _, originDutyLocation := setupDataForOconusDutyLocation("99574") - - army := models.AffiliationARMY - defaultDepartmentIndicator := "ARMY" - serviceMember := factory.BuildServiceMember(suite.DB(), []factory.Customization{ - { - Model: models.ServiceMember{ - Affiliation: &army, - }, - }, - }, nil) - - jppsoRegion := models.JppsoRegions{ - Name: "USCG Base Kodiak", - Code: "MAPS", - } - suite.MustSave(&jppsoRegion) - - gblocAors := models.GblocAors{ - JppsoRegionID: jppsoRegion.ID, - OconusRateAreaID: oconusRateArea.ID, - DepartmentIndicator: &defaultDepartmentIndicator, - } - suite.MustSave(&gblocAors) - - gbloc, err := models.FetchOconusDutyLocationGbloc(suite.DB(), originDutyLocation, serviceMember) - suite.NoError(err) - suite.NotNil(gbloc) - suite.Equal(gbloc.Gbloc, "MAPS") - }) - - suite.Run("fetches duty location GBLOC for AK NOT Cordova address, Zone IV", func() { - _, oconusRateArea, _, originDutyLocation := setupDataForOconusDutyLocation("99803") - - army := models.AffiliationARMY - defaultDepartmentIndicator := "ARMY" - serviceMember := factory.BuildServiceMember(suite.DB(), []factory.Customization{ - { - Model: models.ServiceMember{ - Affiliation: &army, - }, - }, - }, nil) - - jppsoRegion := models.JppsoRegions{ - Name: "USCG Base Ketchikan", - Code: "MAPK", - } - suite.MustSave(&jppsoRegion) - - gblocAors := models.GblocAors{ - JppsoRegionID: jppsoRegion.ID, - OconusRateAreaID: oconusRateArea.ID, - DepartmentIndicator: &defaultDepartmentIndicator, - } - suite.MustSave(&gblocAors) - - gbloc, err := models.FetchOconusDutyLocationGbloc(suite.DB(), originDutyLocation, serviceMember) - suite.NoError(err) - suite.NotNil(gbloc) - suite.Equal(gbloc.Gbloc, "MAPK") - }) -} - func (suite *ModelSuite) Test_SearchDutyLocations_Exclude_Not_Active_Oconus() { createContract := func(appCtx appcontext.AppContext, contractCode string, contractName string) (*models.ReContract, error) { // See if contract code already exists. diff --git a/pkg/services/order/order_updater.go b/pkg/services/order/order_updater.go index 2a430126072..842dcfe3737 100644 --- a/pkg/services/order/order_updater.go +++ b/pkg/services/order/order_updater.go @@ -697,7 +697,7 @@ func updateOrderInTx(appCtx appcontext.AppContext, order models.Order, checks .. var originDutyLocationGBLOC *string if *originDutyLocation.Address.IsOconus { - originDutyLocationGBLOCOconus, err := models.FetchOconusDutyLocationGbloc(appCtx.DB(), originDutyLocation, order.ServiceMember) + originDutyLocationGBLOCOconus, err := models.FetchOconusAddressGbloc(appCtx.DB(), originDutyLocation.Address, order.ServiceMember) if err != nil { return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") } @@ -738,19 +738,29 @@ func updateOrderInTx(appCtx appcontext.AppContext, order models.Order, checks .. } } - newDestinationGBLOC, err := models.FetchGBLOCForPostalCode(appCtx.DB(), newDutyLocation.Address.PostalCode) - if err != nil { - switch err { - case sql.ErrNoRows: - return nil, apperror.NewNotFoundError(order.NewDutyLocationID, "while looking for DestinationGBLOC") - default: - return nil, apperror.NewQueryError("DestinationGBLOC", err, "") + var newDestinationGBLOC *string + if *newDutyLocation.Address.IsOconus { + newDestinationGBLOCOconus, err := models.FetchOconusAddressGbloc(appCtx.DB(), newDutyLocation.Address, order.ServiceMember) + if err != nil { + return nil, apperror.NewNotFoundError(newDutyLocation.ID, "while looking for DestinationGBLOC Oconus") + } + newDestinationGBLOC = &newDestinationGBLOCOconus.Gbloc + } else { + newDestinationGBLOCConus, err2 := models.FetchGBLOCForPostalCode(appCtx.DB(), newDutyLocation.Address.PostalCode) + if err2 != nil { + switch err { + case sql.ErrNoRows: + return nil, apperror.NewNotFoundError(order.NewDutyLocationID, "while looking for DestinationGBLOC") + default: + return nil, apperror.NewQueryError("DestinationGBLOC", err, "") + } } + newDestinationGBLOC = &newDestinationGBLOCConus.GBLOC } order.NewDutyLocationID = newDutyLocation.ID order.NewDutyLocation = newDutyLocation - order.DestinationGBLOC = &newDestinationGBLOC.GBLOC + order.DestinationGBLOC = newDestinationGBLOC } // Recalculate UB allowance of order entitlement From 92a61059f57adcc59aa34525d310ea48b2241519 Mon Sep 17 00:00:00 2001 From: pambecker Date: Fri, 10 Jan 2025 19:46:24 +0000 Subject: [PATCH 18/32] fix --- pkg/handlers/internalapi/orders.go | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/pkg/handlers/internalapi/orders.go b/pkg/handlers/internalapi/orders.go index dcf80a998db..301b626074f 100644 --- a/pkg/handlers/internalapi/orders.go +++ b/pkg/handlers/internalapi/orders.go @@ -412,11 +412,21 @@ func (h UpdateOrdersHandler) Handle(params ordersop.UpdateOrdersParams) middlewa order.OriginDutyLocation = &originDutyLocation order.OriginDutyLocationID = &originDutyLocationID - originGBLOC, originGBLOCerr := models.FetchGBLOCForPostalCode(appCtx.DB(), originDutyLocation.Address.PostalCode) - if originGBLOCerr != nil { - return handlers.ResponseForError(appCtx.Logger(), originGBLOCerr), originGBLOCerr + var originDutyLocationGBLOC *string + if *originDutyLocation.Address.IsOconus { + originDutyLocationGBLOCOconus, err := models.FetchOconusAddressGbloc(appCtx.DB(), originDutyLocation.Address, order.ServiceMember) + if err != nil { + return handlers.ResponseForError(appCtx.Logger(), err), err + } + originDutyLocationGBLOC = &originDutyLocationGBLOCOconus.Gbloc + } else { + originDutyLocationGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), originDutyLocation.Address.PostalCode) + if err != nil { + return handlers.ResponseForError(appCtx.Logger(), err), err + } + originDutyLocationGBLOC = &originDutyLocationGBLOCConus.GBLOC } - order.OriginDutyLocationGBLOC = &originGBLOC.GBLOC + order.OriginDutyLocationGBLOC = originDutyLocationGBLOC if payload.MoveID != "" { From b3943dc104312572a0c0e7078fd29104266604a8 Mon Sep 17 00:00:00 2001 From: pambecker Date: Fri, 10 Jan 2025 23:31:57 +0000 Subject: [PATCH 19/32] updates --- .../internal/payloads/model_to_payload.go | 4 +- pkg/handlers/ghcapi/move_test.go | 14 ++--- .../primeapi/payloads/model_to_payload.go | 8 ++- .../primeapiv2/payloads/model_to_payload.go | 4 +- .../primeapiv3/payloads/model_to_payload.go | 4 +- pkg/models/move.go | 59 ++++++++++++------- pkg/models/order.go | 59 ++++--------------- 7 files changed, 70 insertions(+), 82 deletions(-) diff --git a/pkg/handlers/ghcapi/internal/payloads/model_to_payload.go b/pkg/handlers/ghcapi/internal/payloads/model_to_payload.go index e15a6fea2c4..b8a506a984e 100644 --- a/pkg/handlers/ghcapi/internal/payloads/model_to_payload.go +++ b/pkg/handlers/ghcapi/internal/payloads/model_to_payload.go @@ -2575,9 +2575,11 @@ func SearchMoves(appCtx appcontext.AppContext, moves models.Moves) *ghcmessages. // populates the destination postal code of the move var destinationPostalCode string - destinationPostalCode, err = move.GetDestinationPostalCode(appCtx.DB()) + destinationAddress, err := move.GetDestinationAddress(appCtx.DB()) if err != nil { destinationPostalCode = "" + } else { + destinationPostalCode = destinationAddress.PostalCode } searchMoves[i] = &ghcmessages.SearchMove{ diff --git a/pkg/handlers/ghcapi/move_test.go b/pkg/handlers/ghcapi/move_test.go index 3b9fda47401..a87efff9f4c 100644 --- a/pkg/handlers/ghcapi/move_test.go +++ b/pkg/handlers/ghcapi/move_test.go @@ -597,17 +597,17 @@ func (suite *HandlerSuite) TestSearchMovesHandler() { // Validate outgoing payload without shipment suite.NoError(payload.Validate(strfmt.Default)) - var moveDestinationPostalCode string + var moveDestinationAddress *models.Address var moveDestinationGBLOC string var err error // Get destination postal code and GBLOC based on business logic - moveDestinationPostalCode, err = move.GetDestinationPostalCode(suite.DB()) + moveDestinationAddress, err = move.GetDestinationAddress(suite.DB()) suite.NoError(err) moveDestinationGBLOC, err = move.GetDestinationGBLOC(suite.DB()) suite.NoError(err) - suite.Equal(moveDestinationPostalCode, "62225") + suite.Equal(moveDestinationAddress.PostalCode, "62225") suite.Equal(ghcmessages.GBLOC(moveDestinationGBLOC), ghcmessages.GBLOC("AGFM")) // Set Mock Search settings for move with MTO Shipment @@ -639,12 +639,12 @@ func (suite *HandlerSuite) TestSearchMovesHandler() { suite.NoError(payload.Validate(strfmt.Default)) // Get destination postal code and GBLOC based on business logic - moveDestinationPostalCode, err = moveWithShipment.GetDestinationPostalCode(suite.DB()) + moveDestinationAddress, err = move.GetDestinationAddress(suite.DB()) suite.NoError(err) moveDestinationGBLOC, err = moveWithShipment.GetDestinationGBLOC(suite.DB()) suite.NoError(err) - suite.Equal(moveDestinationPostalCode, "90210") + suite.Equal(moveDestinationAddress.PostalCode, "90210") suite.Equal(ghcmessages.GBLOC(moveDestinationGBLOC), ghcmessages.GBLOC("KKFA")) // Set Mock Search settings for move with PPM Shipment @@ -676,12 +676,12 @@ func (suite *HandlerSuite) TestSearchMovesHandler() { suite.NoError(payload.Validate(strfmt.Default)) // Get destination postal code and GBLOC based on business logic - moveDestinationPostalCode, err = moveWithShipmentPPM.GetDestinationPostalCode(suite.DB()) + moveDestinationAddress, err = move.GetDestinationAddress(suite.DB()) suite.NoError(err) moveDestinationGBLOC, err = moveWithShipmentPPM.GetDestinationGBLOC(suite.DB()) suite.NoError(err) - suite.Equal(moveDestinationPostalCode, payload.SearchMoves[0].DestinationPostalCode) + suite.Equal(moveDestinationAddress.PostalCode, payload.SearchMoves[0].DestinationPostalCode) suite.Equal(ghcmessages.GBLOC(moveDestinationGBLOC), payload.SearchMoves[0].DestinationGBLOC) }) } diff --git a/pkg/handlers/primeapi/payloads/model_to_payload.go b/pkg/handlers/primeapi/payloads/model_to_payload.go index 8fb3514b767..6eba5420892 100644 --- a/pkg/handlers/primeapi/payloads/model_to_payload.go +++ b/pkg/handlers/primeapi/payloads/model_to_payload.go @@ -35,9 +35,11 @@ func MoveTaskOrder(appCtx appcontext.AppContext, moveTaskOrder *models.Move) *pr if err != nil { destGbloc = "" } - destZip, err = moveTaskOrder.GetDestinationPostalCode(db) + destinationAddress, err := moveTaskOrder.GetDestinationAddress(appCtx.DB()) if err != nil { destZip = "" + } else { + destZip = destinationAddress.PostalCode } payload := &primemessages.MoveTaskOrder{ @@ -90,9 +92,11 @@ func ListMove(move *models.Move, appCtx appcontext.AppContext, moveOrderAmendmen if err != nil { destGbloc = "" } - destZip, err = move.GetDestinationPostalCode(db) + destinationAddress, err := move.GetDestinationAddress(appCtx.DB()) if err != nil { destZip = "" + } else { + destZip = destinationAddress.PostalCode } payload := &primemessages.ListMove{ diff --git a/pkg/handlers/primeapiv2/payloads/model_to_payload.go b/pkg/handlers/primeapiv2/payloads/model_to_payload.go index 4b624337932..73cd61a1d34 100644 --- a/pkg/handlers/primeapiv2/payloads/model_to_payload.go +++ b/pkg/handlers/primeapiv2/payloads/model_to_payload.go @@ -32,9 +32,11 @@ func MoveTaskOrder(appCtx appcontext.AppContext, moveTaskOrder *models.Move) *pr if err != nil { destGbloc = "" } - destZip, err = moveTaskOrder.GetDestinationPostalCode(db) + destinationAddress, err := moveTaskOrder.GetDestinationAddress(appCtx.DB()) if err != nil { destZip = "" + } else { + destZip = destinationAddress.PostalCode } payload := &primev2messages.MoveTaskOrder{ diff --git a/pkg/handlers/primeapiv3/payloads/model_to_payload.go b/pkg/handlers/primeapiv3/payloads/model_to_payload.go index fc11ef66bac..c002b7c5472 100644 --- a/pkg/handlers/primeapiv3/payloads/model_to_payload.go +++ b/pkg/handlers/primeapiv3/payloads/model_to_payload.go @@ -35,9 +35,11 @@ func MoveTaskOrder(appCtx appcontext.AppContext, moveTaskOrder *models.Move) *pr if err != nil { destGbloc = "" } - destZip, err = moveTaskOrder.GetDestinationPostalCode(db) + destinationAddress, err := moveTaskOrder.GetDestinationAddress(appCtx.DB()) if err != nil { destZip = "" + } else { + destZip = destinationAddress.PostalCode } payload := &primev3messages.MoveTaskOrder{ diff --git a/pkg/models/move.go b/pkg/models/move.go index 8201a7f0dc6..8144887a0c8 100644 --- a/pkg/models/move.go +++ b/pkg/models/move.go @@ -196,48 +196,63 @@ func FetchMove(db *pop.Connection, session *auth.Session, id uuid.UUID) (*Move, return &move, nil } -// GetDestinationPostalCode returns the postal code for the move. This ensures that business logic is centralized. -func (m Move) GetDestinationPostalCode(db *pop.Connection) (string, error) { +// GetDestinationGBLOC returns the GBLOC for the move. This ensures that business logic is centralized. +func (m Move) GetDestinationGBLOC(db *pop.Connection) (string, error) { // Since this requires looking up the move in the DB, the move must have an ID. This means, the move has to have been created first. if uuid.UUID.IsNil(m.ID) { - return "", errors.WithMessage(ErrInvalidOrderID, "You must created the move in the DB before getting the destination Postal Code.") + return "", errors.WithMessage(ErrInvalidOrderID, "You must created the move in the DB before getting the destination GBLOC.") } - err := db.Load(&m, "Orders") + destinationAddress, err := m.GetDestinationAddress(db) if err != nil { - if err.Error() == RecordNotFoundErrorString { - return "", errors.WithMessage(err, "No Orders found in the DB associated with moveID "+m.ID.String()) - } return "", err } - var gblocsMap map[uuid.UUID]string - gblocsMap, err = m.Orders.GetDestinationPostalCodeForAssociatedMoves(db) - if err != nil { - return "", err + var newGBLOC string + if *destinationAddress.IsOconus { + err := db.Load(&m.Orders, "ServiceMember") + if err != nil { + if err.Error() == RecordNotFoundErrorString { + return "", errors.WithMessage(err, "No Service Member found in the DB associated with moveID "+m.ID.String()) + } + return "", err + } + newGBLOCOconus, err := FetchOconusAddressGbloc(db, *destinationAddress, m.Orders.ServiceMember) + if err != nil { + return "", err + } + newGBLOC = newGBLOCOconus.Gbloc + } else { + newGBLOCConus, err := FetchGBLOCForPostalCode(db, destinationAddress.PostalCode) + if err != nil { + return "", err + } + newGBLOC = newGBLOCConus.GBLOC } - return gblocsMap[m.ID], nil + + return newGBLOC, err } -// GetDestinationGBLOC returns the GBLOC for the move. This ensures that business logic is centralized. -func (m Move) GetDestinationGBLOC(db *pop.Connection) (string, error) { +// GetDestinationAddress returns the address for the move. This ensures that business logic is centralized. +func (m Move) GetDestinationAddress(db *pop.Connection) (*Address, error) { // Since this requires looking up the move in the DB, the move must have an ID. This means, the move has to have been created first. if uuid.UUID.IsNil(m.ID) { - return "", errors.WithMessage(ErrInvalidOrderID, "You must created the move in the DB before getting the destination GBLOC.") + return nil, errors.WithMessage(ErrInvalidOrderID, "You must created the move in the DB before getting the destination Postal Code.") } - postalCode, err := m.GetDestinationPostalCode(db) + err := db.Load(&m, "Orders") if err != nil { - return "", err + if err.Error() == RecordNotFoundErrorString { + return nil, errors.WithMessage(err, "No Orders found in the DB associated with moveID "+m.ID.String()) + } + return nil, err } - var gblocResult PostalCodeToGBLOC - gblocResult, err = FetchGBLOCForPostalCode(db, postalCode) + destinationAddress, err := m.Orders.GetDestinationAddressForAssociatedMoves(db) if err != nil { - return "", err + return nil, err } - - return gblocResult.GBLOC, err + return destinationAddress, nil } // CreateSignedCertification creates a new SignedCertification associated with this move diff --git a/pkg/models/order.go b/pkg/models/order.go index f5cc022e239..337b02a261a 100644 --- a/pkg/models/order.go +++ b/pkg/models/order.go @@ -421,45 +421,16 @@ func (o Order) FetchAllShipmentsExcludingRejected(db *pop.Connection) (map[uuid. } /* - * GetDestinationGBLOC returns a map of destination GBLOCs for the first shipments from all of - * the moves that are associated with an order. If there are no shipments returned on a particular move, - * it will return the GBLOC of the new duty station address for that move. - */ -func (o Order) GetDestinationGBLOC(db *pop.Connection) (map[uuid.UUID]string, error) { - // Since this requires looking up the order in the DB, the order must have an ID. This means, the order has to have been created first. - if uuid.UUID.IsNil(o.ID) { - return nil, errors.WithMessage(ErrInvalidOrderID, "You must created the order in the DB before getting the destination GBLOC.") - } - - destinationPostalCodesMap, err := o.GetDestinationPostalCodeForAssociatedMoves(db) - if err != nil { - return nil, err - } - - destinationGBLOCsMap := make(map[uuid.UUID]string) - for k, v := range destinationPostalCodesMap { - var gblocResult PostalCodeToGBLOC - gblocResult, err = FetchGBLOCForPostalCode(db, v) - if err != nil { - return nil, errors.WithMessage(err, "Could not get GBLOC for postal code "+v+" for move ID "+k.String()) - } - destinationGBLOCsMap[k] = gblocResult.GBLOC - } - - return destinationGBLOCsMap, nil -} - -/* -* GetDestinationPostalCodeForAssociatedMove returns a map of Postal Codes of the destination address for the first shipments from each of +* GetDestinationAddressForAssociatedMoves returns the destination Address for the first shipments from each of * the moves that are associated with an order. If there are no shipments returned, it will return the -* Postal Code of the new duty station addresses. +* Address of the new duty station addresses. */ -func (o Order) GetDestinationPostalCodeForAssociatedMoves(db *pop.Connection) (map[uuid.UUID]string, error) { +func (o Order) GetDestinationAddressForAssociatedMoves(db *pop.Connection) (*Address, error) { if uuid.UUID.IsNil(o.ID) { - return nil, errors.WithMessage(ErrInvalidOrderID, "You must created the order in the DB before getting the destination Postal Code.") + return nil, errors.WithMessage(ErrInvalidOrderID, "You must create the order in the DB before getting the destination Address.") } - err := db.Load(&o, "Moves", "NewDutyLocation.Address.PostalCode") + err := db.Load(&o, "Moves", "NewDutyLocation.Address") if err != nil { if err.Error() == RecordNotFoundErrorString { return nil, errors.WithMessage(err, "No Moves were found for the order ID "+o.ID.String()) @@ -467,8 +438,8 @@ func (o Order) GetDestinationPostalCodeForAssociatedMoves(db *pop.Connection) (m return nil, err } - // zipsMap is a map of key, value pairs where the key is the move id and the value is the destination postal code - zipsMap := make(map[uuid.UUID]string) + // addrMap is a map of key, value pairs where the key is the move id and the value is the destination address + var destinationAddress Address for i, m := range o.Moves { err = db.Load(&o.Moves[i], "MTOShipments") if err != nil { @@ -502,31 +473,23 @@ func (o Order) GetDestinationPostalCodeForAssociatedMoves(db *pop.Connection) (m return shipments[i].CreatedAt.Before(shipments[j].CreatedAt) }) - var addressResult *Address - addressResult, err = shipments[0].GetDestinationAddress(db) + addressResult, err := shipments[0].GetDestinationAddress(db) if err != nil { - if err == ErrMissingDestinationAddress || err == ErrUnsupportedShipmentType { - zipsMap[o.Moves[i].ID] = o.NewDutyLocation.Address.PostalCode - } return nil, err } if addressResult != nil { - zipsMap[o.Moves[i].ID] = addressResult.PostalCode + destinationAddress = *addressResult } else { return nil, errors.WithMessage(ErrMissingDestinationAddress, "No destination address was able to be found for the order ID "+o.ID.String()) } } else { // No valid shipments, use new duty location - zipsMap[o.Moves[i].ID] = o.NewDutyLocation.Address.PostalCode + destinationAddress = o.NewDutyLocation.Address } } - if len(zipsMap) == 0 { - return nil, errors.New("No destination postal codes were found for the order ID " + o.ID.String()) - } - - return zipsMap, nil + return &destinationAddress, nil } // UpdateDestinationGBLOC updates the destination GBLOC for the associated Order in the DB From 42c917c4748229b33d9b0a2271d6aff156050c4d Mon Sep 17 00:00:00 2001 From: pambecker Date: Tue, 14 Jan 2025 17:23:07 +0000 Subject: [PATCH 20/32] tests --- pkg/handlers/ghcapi/move_test.go | 4 +- pkg/handlers/internalapi/orders_test.go | 391 +++++++++++++++++------- 2 files changed, 276 insertions(+), 119 deletions(-) diff --git a/pkg/handlers/ghcapi/move_test.go b/pkg/handlers/ghcapi/move_test.go index a87efff9f4c..68b33148943 100644 --- a/pkg/handlers/ghcapi/move_test.go +++ b/pkg/handlers/ghcapi/move_test.go @@ -639,7 +639,7 @@ func (suite *HandlerSuite) TestSearchMovesHandler() { suite.NoError(payload.Validate(strfmt.Default)) // Get destination postal code and GBLOC based on business logic - moveDestinationAddress, err = move.GetDestinationAddress(suite.DB()) + moveDestinationAddress, err = moveWithShipment.GetDestinationAddress(suite.DB()) suite.NoError(err) moveDestinationGBLOC, err = moveWithShipment.GetDestinationGBLOC(suite.DB()) suite.NoError(err) @@ -676,7 +676,7 @@ func (suite *HandlerSuite) TestSearchMovesHandler() { suite.NoError(payload.Validate(strfmt.Default)) // Get destination postal code and GBLOC based on business logic - moveDestinationAddress, err = move.GetDestinationAddress(suite.DB()) + moveDestinationAddress, err = moveWithShipmentPPM.GetDestinationAddress(suite.DB()) suite.NoError(err) moveDestinationGBLOC, err = moveWithShipmentPPM.GetDestinationGBLOC(suite.DB()) suite.NoError(err) diff --git a/pkg/handlers/internalapi/orders_test.go b/pkg/handlers/internalapi/orders_test.go index 3499b5d2894..ca3671ad74f 100644 --- a/pkg/handlers/internalapi/orders_test.go +++ b/pkg/handlers/internalapi/orders_test.go @@ -783,140 +783,297 @@ func (suite *HandlerSuite) TestUploadAmendedOrdersHandlerIntegration() { func (suite *HandlerSuite) TestUpdateOrdersHandler() { - suite.Run("Can update CONUS and OCONUS orders", func() { - testCases := []struct { - isOconus bool - }{ - {isOconus: true}, - {isOconus: false}, - } - - for _, tc := range testCases { - address := factory.BuildAddress(suite.DB(), []factory.Customization{ - { - Model: models.Address{ - IsOconus: &tc.isOconus, - }, + suite.Run("Can update CONUS orders", func() { + address := factory.BuildAddress(suite.DB(), []factory.Customization{ + { + Model: models.Address{ + IsOconus: models.BoolPointer(false), }, - }, nil) + }, + }, nil) - // Set duty location to either CONUS or OCONUS - dutyLocation := factory.BuildDutyLocation(suite.DB(), []factory.Customization{ - { - Model: models.DutyLocation{ - ProvidesServicesCounseling: false, - }, + originDutyLocation := factory.BuildDutyLocation(suite.DB(), []factory.Customization{ + { + Model: models.DutyLocation{ + Name: factory.MakeRandomString(8), }, - { - Model: address, - LinkOnly: true, + }, + { + Model: address, + LinkOnly: true, + }, + }, nil) + order := factory.BuildOrder(suite.DB(), []factory.Customization{ + { + Model: originDutyLocation, + LinkOnly: true, + Type: &factory.DutyLocations.OriginDutyLocation, + }, + }, nil) + move := factory.BuildMove(suite.DB(), []factory.Customization{ + { + Model: order, + LinkOnly: true, + }}, nil) + + newDutyLocation := factory.BuildDutyLocation(suite.DB(), nil, nil) + + newOrdersType := internalmessages.OrdersTypePERMANENTCHANGEOFSTATION + newOrdersNumber := "123456" + issueDate := time.Date(2018, time.March, 10, 0, 0, 0, 0, time.UTC) + reportByDate := time.Date(2018, time.August, 1, 0, 0, 0, 0, time.UTC) + deptIndicator := internalmessages.DeptIndicatorAIRANDSPACEFORCE + + payload := &internalmessages.CreateUpdateOrders{ + OrdersNumber: handlers.FmtString(newOrdersNumber), + OrdersType: &newOrdersType, + NewDutyLocationID: handlers.FmtUUID(newDutyLocation.ID), + OriginDutyLocationID: *handlers.FmtUUID(*order.OriginDutyLocationID), + IssueDate: handlers.FmtDate(issueDate), + ReportByDate: handlers.FmtDate(reportByDate), + DepartmentIndicator: &deptIndicator, + HasDependents: handlers.FmtBool(false), + SpouseHasProGear: handlers.FmtBool(false), + Grade: models.ServiceMemberGradeE4.Pointer(), + MoveID: *handlers.FmtUUID(move.ID), + CounselingOfficeID: handlers.FmtUUID(*newDutyLocation.TransportationOfficeID), + ServiceMemberID: handlers.FmtUUID(order.ServiceMemberID), + } + + path := fmt.Sprintf("/orders/%v", order.ID.String()) + req := httptest.NewRequest("PUT", path, nil) + req = suite.AuthenticateRequest(req, order.ServiceMember) + + params := ordersop.UpdateOrdersParams{ + HTTPRequest: req, + OrdersID: *handlers.FmtUUID(order.ID), + UpdateOrders: payload, + } + + fakeS3 := storageTest.NewFakeS3Storage(true) + handlerConfig := suite.HandlerConfig() + handlerConfig.SetFileStorer(fakeS3) + + handler := UpdateOrdersHandler{handlerConfig} + + response := handler.Handle(params) + + suite.IsType(&ordersop.UpdateOrdersOK{}, response) + okResponse := response.(*ordersop.UpdateOrdersOK) + + suite.NoError(okResponse.Payload.Validate(strfmt.Default)) + suite.Equal(string(newOrdersType), string(*okResponse.Payload.OrdersType)) + suite.Equal(newOrdersNumber, *okResponse.Payload.OrdersNumber) + + updatedOrder, err := models.FetchOrder(suite.DB(), order.ID) + suite.NoError(err) + suite.Equal(payload.Grade, updatedOrder.Grade) + suite.Equal(*okResponse.Payload.AuthorizedWeight, int64(7000)) // E4 authorized weight is 7000, make sure we return that in the response + expectedUpdatedOrderWeightAllotment := models.GetWeightAllotment(*updatedOrder.Grade, updatedOrder.OrdersType) + expectedUpdatedOrderAuthorizedWeight := expectedUpdatedOrderWeightAllotment.TotalWeightSelf + if *payload.HasDependents { + expectedUpdatedOrderAuthorizedWeight = expectedUpdatedOrderWeightAllotment.TotalWeightSelfPlusDependents + } + + expectedOriginalOrderWeightAllotment := models.GetWeightAllotment(*order.Grade, updatedOrder.OrdersType) + expectedOriginalOrderAuthorizedWeight := expectedOriginalOrderWeightAllotment.TotalWeightSelf + if *payload.HasDependents { + expectedUpdatedOrderAuthorizedWeight = expectedOriginalOrderWeightAllotment.TotalWeightSelfPlusDependents + } + + suite.Equal(expectedUpdatedOrderAuthorizedWeight, 7000) // Ensure that when GetWeightAllotment is recalculated that it also returns 7000. This ensures that the database stored the correct information + suite.Equal(expectedOriginalOrderAuthorizedWeight, 5000) // The order was created as an E1. Ensure that the E1 authorized weight is 5000. + suite.Equal(string(newOrdersType), string(updatedOrder.OrdersType)) + // Check updated entitlement + var updatedEntitlement models.Entitlement + err = suite.DB().Find(&updatedEntitlement, updatedOrder.EntitlementID) + suite.NoError(err) + suite.NotEmpty(updatedEntitlement) + + suite.Nil(updatedEntitlement.AccompaniedTour) + suite.Nil(updatedEntitlement.DependentsTwelveAndOver) + suite.Nil(updatedEntitlement.DependentsUnderTwelve) + }) + + suite.Run("Can update OCONUS orders", func() { + usprc, err := models.FindByZipCode(suite.AppContextForTest().DB(), "99801") + suite.NotNil(usprc) + suite.FatalNoError(err) + + address := factory.BuildAddress(suite.DB(), []factory.Customization{ + { + Model: models.Address{ + IsOconus: models.BoolPointer(true), + UsPostRegionCityID: &usprc.ID, }, - }, nil) - order := factory.BuildOrder(suite.DB(), []factory.Customization{ - { - Model: dutyLocation, - LinkOnly: true, - Type: &factory.DutyLocations.OriginDutyLocation, + }, + }, nil) + + originDutyLocation := factory.BuildDutyLocation(suite.DB(), []factory.Customization{ + { + Model: models.DutyLocation{ + Name: factory.MakeRandomString(8), + AddressID: address.ID, }, - }, nil) - move := factory.BuildMove(suite.DB(), []factory.Customization{ - { - Model: order, - LinkOnly: true, - }}, nil) - - newDutyLocation := factory.BuildDutyLocation(suite.DB(), nil, nil) - - newOrdersType := internalmessages.OrdersTypePERMANENTCHANGEOFSTATION - newOrdersNumber := "123456" - issueDate := time.Date(2018, time.March, 10, 0, 0, 0, 0, time.UTC) - reportByDate := time.Date(2018, time.August, 1, 0, 0, 0, 0, time.UTC) - deptIndicator := internalmessages.DeptIndicatorAIRANDSPACEFORCE - - payload := &internalmessages.CreateUpdateOrders{ - OrdersNumber: handlers.FmtString(newOrdersNumber), - OrdersType: &newOrdersType, - NewDutyLocationID: handlers.FmtUUID(newDutyLocation.ID), - OriginDutyLocationID: *handlers.FmtUUID(*order.OriginDutyLocationID), - IssueDate: handlers.FmtDate(issueDate), - ReportByDate: handlers.FmtDate(reportByDate), - DepartmentIndicator: &deptIndicator, - HasDependents: handlers.FmtBool(false), - SpouseHasProGear: handlers.FmtBool(false), - Grade: models.ServiceMemberGradeE4.Pointer(), - MoveID: *handlers.FmtUUID(move.ID), - CounselingOfficeID: handlers.FmtUUID(*newDutyLocation.TransportationOfficeID), - ServiceMemberID: handlers.FmtUUID(order.ServiceMemberID), - } - // The default move factory does not include OCONUS fields, set these - // new fields conditionally for the update - if tc.isOconus { - payload.AccompaniedTour = models.BoolPointer(true) - payload.DependentsTwelveAndOver = models.Int64Pointer(5) - payload.DependentsUnderTwelve = models.Int64Pointer(5) - } + }, + }, nil) - path := fmt.Sprintf("/orders/%v", order.ID.String()) - req := httptest.NewRequest("PUT", path, nil) - req = suite.AuthenticateRequest(req, order.ServiceMember) + order := factory.BuildOrder(suite.DB(), []factory.Customization{ + { + Model: originDutyLocation, + LinkOnly: true, + Type: &factory.DutyLocations.OriginDutyLocation, + }, + }, nil) - params := ordersop.UpdateOrdersParams{ - HTTPRequest: req, - OrdersID: *handlers.FmtUUID(order.ID), - UpdateOrders: payload, - } + move := factory.BuildMove(suite.DB(), []factory.Customization{ + { + Model: order, + LinkOnly: true, + }}, nil) - fakeS3 := storageTest.NewFakeS3Storage(true) - handlerConfig := suite.HandlerConfig() - handlerConfig.SetFileStorer(fakeS3) + newDutyLocation := factory.BuildDutyLocation(suite.DB(), nil, nil) - handler := UpdateOrdersHandler{handlerConfig} + contract := models.ReContract{ + Code: "Test_create_oconus_order_code", + Name: "Test_create_oconus_order", + } + verrs, err := suite.AppContextForTest().DB().ValidateAndSave(&contract) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(verrs.Error()) + } - response := handler.Handle(params) + rateAreaCode := uuid.Must(uuid.NewV4()).String()[0:5] + rateArea := models.ReRateArea{ + ID: uuid.Must(uuid.NewV4()), + ContractID: contract.ID, + IsOconus: true, + Code: rateAreaCode, + Name: fmt.Sprintf("Alaska-%s", rateAreaCode), + Contract: contract, + } + verrs, err = suite.DB().ValidateAndCreate(&rateArea) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(err.Error()) + } - suite.IsType(&ordersop.UpdateOrdersOK{}, response) - okResponse := response.(*ordersop.UpdateOrdersOK) + us_country, err := models.FetchCountryByCode(suite.DB(), "US") + suite.NotNil(us_country) + suite.Nil(err) - suite.NoError(okResponse.Payload.Validate(strfmt.Default)) - suite.Equal(string(newOrdersType), string(*okResponse.Payload.OrdersType)) - suite.Equal(newOrdersNumber, *okResponse.Payload.OrdersNumber) + oconusRateArea := models.OconusRateArea{ + ID: uuid.Must(uuid.NewV4()), + RateAreaId: rateArea.ID, + CountryId: us_country.ID, + UsPostRegionCityId: usprc.ID, + Active: true, + } + verrs, err = suite.DB().ValidateAndCreate(&oconusRateArea) + if verrs.HasAny() { + suite.Fail(verrs.Error()) + } + if err != nil { + suite.Fail(err.Error()) + } + jppsoRegion := models.JppsoRegions{ + Name: "USCG Base Ketchikan", + Code: "MAPK", + } + suite.MustSave(&jppsoRegion) - updatedOrder, err := models.FetchOrder(suite.DB(), order.ID) - suite.NoError(err) - suite.Equal(payload.Grade, updatedOrder.Grade) - suite.Equal(*okResponse.Payload.AuthorizedWeight, int64(7000)) // E4 authorized weight is 7000, make sure we return that in the response - expectedUpdatedOrderWeightAllotment := models.GetWeightAllotment(*updatedOrder.Grade, updatedOrder.OrdersType) - expectedUpdatedOrderAuthorizedWeight := expectedUpdatedOrderWeightAllotment.TotalWeightSelf - if *payload.HasDependents { - expectedUpdatedOrderAuthorizedWeight = expectedUpdatedOrderWeightAllotment.TotalWeightSelfPlusDependents - } + gblocAors := models.GblocAors{ + JppsoRegionID: jppsoRegion.ID, + OconusRateAreaID: oconusRateArea.ID, + } + suite.MustSave(&gblocAors) - expectedOriginalOrderWeightAllotment := models.GetWeightAllotment(*order.Grade, updatedOrder.OrdersType) - expectedOriginalOrderAuthorizedWeight := expectedOriginalOrderWeightAllotment.TotalWeightSelf - if *payload.HasDependents { - expectedUpdatedOrderAuthorizedWeight = expectedOriginalOrderWeightAllotment.TotalWeightSelfPlusDependents - } + newOrdersType := internalmessages.OrdersTypePERMANENTCHANGEOFSTATION + newOrdersNumber := "123456" + issueDate := time.Date(2018, time.March, 10, 0, 0, 0, 0, time.UTC) + reportByDate := time.Date(2018, time.August, 1, 0, 0, 0, 0, time.UTC) + deptIndicator := internalmessages.DeptIndicatorAIRANDSPACEFORCE - suite.Equal(expectedUpdatedOrderAuthorizedWeight, 7000) // Ensure that when GetWeightAllotment is recalculated that it also returns 7000. This ensures that the database stored the correct information - suite.Equal(expectedOriginalOrderAuthorizedWeight, 5000) // The order was created as an E1. Ensure that the E1 authorized weight is 5000. - suite.Equal(string(newOrdersType), string(updatedOrder.OrdersType)) - // Check updated entitlement - var updatedEntitlement models.Entitlement - err = suite.DB().Find(&updatedEntitlement, updatedOrder.EntitlementID) - suite.NoError(err) - suite.NotEmpty(updatedEntitlement) - - if tc.isOconus { - suite.NotNil(updatedEntitlement.AccompaniedTour) - suite.NotNil(updatedEntitlement.DependentsTwelveAndOver) - suite.NotNil(updatedEntitlement.DependentsUnderTwelve) - } else { - suite.Nil(updatedEntitlement.AccompaniedTour) - suite.Nil(updatedEntitlement.DependentsTwelveAndOver) - suite.Nil(updatedEntitlement.DependentsUnderTwelve) - } + payload := &internalmessages.CreateUpdateOrders{ + OrdersNumber: handlers.FmtString(newOrdersNumber), + OrdersType: &newOrdersType, + NewDutyLocationID: handlers.FmtUUID(newDutyLocation.ID), + OriginDutyLocationID: *handlers.FmtUUID(*order.OriginDutyLocationID), + IssueDate: handlers.FmtDate(issueDate), + ReportByDate: handlers.FmtDate(reportByDate), + DepartmentIndicator: &deptIndicator, + HasDependents: handlers.FmtBool(false), + SpouseHasProGear: handlers.FmtBool(false), + Grade: models.ServiceMemberGradeE4.Pointer(), + MoveID: *handlers.FmtUUID(move.ID), + CounselingOfficeID: handlers.FmtUUID(*newDutyLocation.TransportationOfficeID), + ServiceMemberID: handlers.FmtUUID(order.ServiceMemberID), } + + payload.AccompaniedTour = models.BoolPointer(true) + payload.DependentsTwelveAndOver = models.Int64Pointer(5) + payload.DependentsUnderTwelve = models.Int64Pointer(5) + + path := fmt.Sprintf("/orders/%v", order.ID.String()) + req := httptest.NewRequest("PUT", path, nil) + req = suite.AuthenticateRequest(req, order.ServiceMember) + + params := ordersop.UpdateOrdersParams{ + HTTPRequest: req, + OrdersID: *handlers.FmtUUID(order.ID), + UpdateOrders: payload, + } + + fakeS3 := storageTest.NewFakeS3Storage(true) + handlerConfig := suite.HandlerConfig() + handlerConfig.SetFileStorer(fakeS3) + + handler := UpdateOrdersHandler{handlerConfig} + + response := handler.Handle(params) + + suite.IsType(&ordersop.UpdateOrdersOK{}, response) + okResponse := response.(*ordersop.UpdateOrdersOK) + + suite.NoError(okResponse.Payload.Validate(strfmt.Default)) + suite.Equal(string(newOrdersType), string(*okResponse.Payload.OrdersType)) + suite.Equal(newOrdersNumber, *okResponse.Payload.OrdersNumber) + + updatedOrder, err := models.FetchOrder(suite.DB(), order.ID) + suite.NoError(err) + suite.Equal(payload.Grade, updatedOrder.Grade) + suite.Equal(*okResponse.Payload.AuthorizedWeight, int64(7000)) // E4 authorized weight is 7000, make sure we return that in the response + expectedUpdatedOrderWeightAllotment := models.GetWeightAllotment(*updatedOrder.Grade, updatedOrder.OrdersType) + expectedUpdatedOrderAuthorizedWeight := expectedUpdatedOrderWeightAllotment.TotalWeightSelf + if *payload.HasDependents { + expectedUpdatedOrderAuthorizedWeight = expectedUpdatedOrderWeightAllotment.TotalWeightSelfPlusDependents + } + + expectedOriginalOrderWeightAllotment := models.GetWeightAllotment(*order.Grade, updatedOrder.OrdersType) + expectedOriginalOrderAuthorizedWeight := expectedOriginalOrderWeightAllotment.TotalWeightSelf + if *payload.HasDependents { + expectedUpdatedOrderAuthorizedWeight = expectedOriginalOrderWeightAllotment.TotalWeightSelfPlusDependents + } + + suite.Equal(expectedUpdatedOrderAuthorizedWeight, 7000) // Ensure that when GetWeightAllotment is recalculated that it also returns 7000. This ensures that the database stored the correct information + suite.Equal(expectedOriginalOrderAuthorizedWeight, 5000) // The order was created as an E1. Ensure that the E1 authorized weight is 5000. + suite.Equal(string(newOrdersType), string(updatedOrder.OrdersType)) + // Check updated entitlement + var updatedEntitlement models.Entitlement + err = suite.DB().Find(&updatedEntitlement, updatedOrder.EntitlementID) + suite.NoError(err) + suite.NotEmpty(updatedEntitlement) + + suite.NotNil(updatedEntitlement.AccompaniedTour) + suite.NotNil(updatedEntitlement.DependentsTwelveAndOver) + suite.NotNil(updatedEntitlement.DependentsUnderTwelve) }) + } func (suite *HandlerSuite) TestUpdateOrdersHandlerOriginPostalCodeAndGBLOC() { From e9a1e96af23b4e3ff1d44aa22124bc07f7aec7af Mon Sep 17 00:00:00 2001 From: pambecker Date: Thu, 16 Jan 2025 20:36:46 +0000 Subject: [PATCH 21/32] updates to use new DB function to get GBLOC --- ...date_postal_codes_and_gblocs_for_ak.up.sql | 132 +++++++++++++++++- pkg/handlers/ghcapi/orders.go | 46 ++---- pkg/handlers/ghcapi/orders_test.go | 38 ++--- pkg/handlers/internalapi/orders.go | 78 +++-------- pkg/handlers/internalapi/orders_test.go | 112 ++++----------- pkg/models/address.go | 31 +--- pkg/models/address_test.go | 62 +++----- pkg/models/move.go | 30 ++-- pkg/services/order/order_updater.go | 51 ++----- 9 files changed, 260 insertions(+), 320 deletions(-) diff --git a/migrations/app/schema/20250103142533_update_postal_codes_and_gblocs_for_ak.up.sql b/migrations/app/schema/20250103142533_update_postal_codes_and_gblocs_for_ak.up.sql index 282ad1b0b16..fe88f410e2f 100644 --- a/migrations/app/schema/20250103142533_update_postal_codes_and_gblocs_for_ak.up.sql +++ b/migrations/app/schema/20250103142533_update_postal_codes_and_gblocs_for_ak.up.sql @@ -40,4 +40,134 @@ SELECT move_id, gbloc FROM ( JOIN jppso_regions pctg_1 ON ga.jppso_regions_id = pctg_1.id ) pctg_oconus ON pctg_oconus.address_id = sh.pickup_address_id and pctg_oconus.department_indicator is null WHERE sh.deleted_at IS NULL - ORDER BY sh.move_id, sh.created_at) as m; \ No newline at end of file + ORDER BY sh.move_id, sh.created_at) as m; + + +DROP FUNCTION IF EXISTS get_address_gbloc; +CREATE OR REPLACE FUNCTION public.get_address_gbloc( + address_id UUID, + postal_code TEXT, + affiliation TEXT, + OUT gbloc TEXT +) +RETURNS TEXT AS $$ +DECLARE + is_oconus BOOLEAN; + v_count INT; + v_bos_count INT; + v_dept_ind TEXT; + v_postal_code TEXT; +begin + IF address_id IS NOT NULL THEN + is_oconus := get_is_oconus(address_id); + ELSE + is_oconus := false; + END IF; + + IF affiliation in ('AIR_FORCE','SPACE_FORCE') THEN + v_dept_ind := 'AIR_AND_SPACE_FORCE'; + ELSIF affiliation in ('MARINES','NAVY') THEN + v_dept_ind := 'NAVY_AND_MARINES'; + ELSE v_dept_ind := affiliation; + END IF; + + IF is_oconus THEN + + SELECT count(*) + INTO v_count + FROM addresses a, + re_oconus_rate_areas o, + jppso_regions j, + gbloc_aors g + WHERE a.us_post_region_cities_id = o.us_post_region_cities_id + and o.id = g.oconus_rate_area_id + and j.id = g.jppso_regions_id + and a.id = address_id; + + IF v_count > 1 THEN + + --check for gbloc by bos + SELECT count(*) + INTO v_bos_count + FROM addresses a, + re_oconus_rate_areas o, + jppso_regions j, + gbloc_aors g + WHERE a.us_post_region_cities_id = o.us_post_region_cities_id + and o.id = g.oconus_rate_area_id + and j.id = g.jppso_regions_id + and a.id = address_id + and g.department_indicator = v_dept_ind; + + IF v_bos_count = 1 THEN + + SELECT j.code + INTO gbloc + FROM addresses a, + re_oconus_rate_areas o, + jppso_regions j, + gbloc_aors g + WHERE a.us_post_region_cities_id = o.us_post_region_cities_id + and o.id = g.oconus_rate_area_id + and j.id = g.jppso_regions_id + and a.id = address_id + and g.department_indicator = v_dept_ind; + + ELSE + + SELECT j.code + INTO gbloc + FROM addresses a, + re_oconus_rate_areas o, + jppso_regions j, + gbloc_aors g + WHERE a.us_post_region_cities_id = o.us_post_region_cities_id + and o.id = g.oconus_rate_area_id + and j.id = g.jppso_regions_id + and a.id = address_id + and g.department_indicator IS NULL; + + END IF; + + ELSE + + SELECT j.code + INTO gbloc + FROM addresses a, + re_oconus_rate_areas o, + jppso_regions j, + gbloc_aors g + WHERE a.us_post_region_cities_id = o.us_post_region_cities_id + and o.id = g.oconus_rate_area_id + and j.id = g.jppso_regions_id + and a.id = address_id; + + END IF; + + ELSE --is conus + + IF postal_code IS NULL THEN + + SELECT o.uspr_zip_id + INTO v_postal_code + FROM addresses a, v_locations o + WHERE a.us_post_region_cities_id = o.uprc_id + AND a.id = address_id; + + ELSE + v_postal_code := postal_code; + END IF; + + SELECT j.gbloc + INTO gbloc + FROM postal_code_to_gblocs j + WHERE j.postal_code = v_postal_code; + + END IF; + + -- Raise an exception if no rate area is found + IF gbloc IS NULL THEN + RAISE EXCEPTION 'GBLOC not found for address ID % for affiliation % postal_code % ', address_id, affiiation, postal_code; + END IF; +END; +$$ LANGUAGE plpgsql; \ No newline at end of file diff --git a/pkg/handlers/ghcapi/orders.go b/pkg/handlers/ghcapi/orders.go index 2ffac091842..c065f25712e 100644 --- a/pkg/handlers/ghcapi/orders.go +++ b/pkg/handlers/ghcapi/orders.go @@ -218,41 +218,21 @@ func (h CreateOrderHandler) Handle(params orderop.CreateOrderParams) middleware. return orderop.NewCreateOrderUnprocessableEntity(), err } - var newDutyLocationGBLOC *string - if *newDutyLocation.Address.IsOconus { - newDutyLocationGBLOCOconus, err := models.FetchOconusAddressGbloc(appCtx.DB(), newDutyLocation.Address, serviceMember) - if err != nil { - return nil, apperror.NewNotFoundError(newDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") - } - newDutyLocationGBLOC = &newDutyLocationGBLOCOconus.Gbloc - } else { - newDutyLocationGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), newDutyLocation.Address.PostalCode) - if err != nil { - err = apperror.NewBadDataError("New duty location GBLOC cannot be verified") - appCtx.Logger().Error(err.Error()) - return orderop.NewCreateOrderUnprocessableEntity(), err - } - newDutyLocationGBLOC = &newDutyLocationGBLOCConus.GBLOC + destinationGBLOC, err := models.FetchAddressPostalCodeGbloc(appCtx.DB(), newDutyLocation.Address, newDutyLocation.Address.PostalCode, serviceMember) + if err != nil { + err = apperror.NewBadDataError("New duty location GBLOC cannot be verified") + appCtx.Logger().Error(err.Error()) + return orderop.NewCreateOrderUnprocessableEntity(), err } - var originDutyLocationGBLOC *string - if *originDutyLocation.Address.IsOconus { - originDutyLocationGBLOCOconus, err := models.FetchOconusAddressGbloc(appCtx.DB(), originDutyLocation.Address, serviceMember) - if err != nil { - return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") - } - originDutyLocationGBLOC = &originDutyLocationGBLOCOconus.Gbloc - } else { - originDutyLocationGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), originDutyLocation.Address.PostalCode) - if err != nil { - switch err { - case sql.ErrNoRows: - return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location PostalCodeToGBLOC") - default: - return nil, apperror.NewQueryError("PostalCodeToGBLOC", err, "") - } + originDutyLocationGBLOC, err := models.FetchAddressPostalCodeGbloc(appCtx.DB(), originDutyLocation.Address, originDutyLocation.Address.PostalCode, serviceMember) + if err != nil { + switch err { + case sql.ErrNoRows: + return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location FetchAddressPostalCodeGbloc") + default: + return nil, apperror.NewQueryError("FetchAddressPostalCodeGbloc", err, "") } - originDutyLocationGBLOC = &originDutyLocationGBLOCConus.GBLOC } grade := (internalmessages.OrderPayGrade)(*payload.Grade) @@ -333,7 +313,7 @@ func (h CreateOrderHandler) Handle(params orderop.CreateOrderParams) middleware. &entitlement, originDutyLocationGBLOC, packingAndShippingInstructions, - newDutyLocationGBLOC, + destinationGBLOC, ) if err != nil || verrs.HasAny() { return handlers.ResponseForVErrors(appCtx.Logger(), verrs, err), err diff --git a/pkg/handlers/ghcapi/orders_test.go b/pkg/handlers/ghcapi/orders_test.go index 5b602254726..4df0e26e8aa 100644 --- a/pkg/handlers/ghcapi/orders_test.go +++ b/pkg/handlers/ghcapi/orders_test.go @@ -31,6 +31,7 @@ import ( "github.com/transcom/mymove/pkg/services/query" storageTest "github.com/transcom/mymove/pkg/storage/test" "github.com/transcom/mymove/pkg/swagger/nullable" + "github.com/transcom/mymove/pkg/testdatagen" "github.com/transcom/mymove/pkg/trace" "github.com/transcom/mymove/pkg/uploader" ) @@ -140,34 +141,17 @@ func (suite *HandlerSuite) TestCreateOrderWithOCONUSValues() { dutyLocation := factory.FetchOrBuildCurrentDutyLocation(suite.AppContextForTest().DB()) - contract := models.ReContract{ - Code: "Test_create_oconus_order_code", - Name: "Test_create_oconus_order", - } - verrs, err := suite.AppContextForTest().DB().ValidateAndSave(&contract) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(verrs.Error()) - } + contract := testdatagen.FetchOrMakeReContract(suite.DB(), testdatagen.Assertions{}) rateAreaCode := uuid.Must(uuid.NewV4()).String()[0:5] - rateArea := models.ReRateArea{ - ID: uuid.Must(uuid.NewV4()), - ContractID: contract.ID, - IsOconus: true, - Code: rateAreaCode, - Name: fmt.Sprintf("Alaska-%s", rateAreaCode), - Contract: contract, - } - verrs, err = suite.DB().ValidateAndCreate(&rateArea) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(err.Error()) - } + rateArea := testdatagen.FetchOrMakeReRateArea(suite.DB(), testdatagen.Assertions{ + ReRateArea: models.ReRateArea{ + ContractID: contract.ID, + IsOconus: true, + Name: fmt.Sprintf("Alaska-%s", rateAreaCode), + Contract: contract, + }, + }) us_country, err := models.FetchCountryByCode(suite.DB(), "US") suite.NotNil(us_country) @@ -180,7 +164,7 @@ func (suite *HandlerSuite) TestCreateOrderWithOCONUSValues() { UsPostRegionCityId: usprc.ID, Active: true, } - verrs, err = suite.DB().ValidateAndCreate(&oconusRateArea) + verrs, err := suite.DB().ValidateAndCreate(&oconusRateArea) if verrs.HasAny() { suite.Fail(verrs.Error()) } diff --git a/pkg/handlers/internalapi/orders.go b/pkg/handlers/internalapi/orders.go index 301b626074f..f589b32735d 100644 --- a/pkg/handlers/internalapi/orders.go +++ b/pkg/handlers/internalapi/orders.go @@ -167,19 +167,9 @@ func (h CreateOrdersHandler) Handle(params ordersop.CreateOrdersParams) middlewa return handlers.ResponseForError(appCtx.Logger(), err), err } - var newDutyLocationGBLOC *string - if *newDutyLocation.Address.IsOconus { - newDutyLocationGBLOCOconus, err := models.FetchOconusAddressGbloc(appCtx.DB(), newDutyLocation.Address, serviceMember) - if err != nil { - return nil, apperror.NewNotFoundError(newDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") - } - newDutyLocationGBLOC = &newDutyLocationGBLOCOconus.Gbloc - } else { - newDutyLocationGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), newDutyLocation.Address.PostalCode) - if err != nil { - return handlers.ResponseForError(appCtx.Logger(), err), err - } - newDutyLocationGBLOC = &newDutyLocationGBLOCConus.GBLOC + newDutyLocationGBLOC, err := models.FetchAddressPostalCodeGbloc(appCtx.DB(), newDutyLocation.Address, newDutyLocation.Address.PostalCode, serviceMember) + if err != nil { + return handlers.ResponseForError(appCtx.Logger(), err), err } var dependentsTwelveAndOver *int @@ -193,24 +183,14 @@ func (h CreateOrdersHandler) Handle(params ordersop.CreateOrdersParams) middlewa dependentsUnderTwelve = models.IntPointer(int(*payload.DependentsUnderTwelve)) } - var originDutyLocationGBLOC *string - if *originDutyLocation.Address.IsOconus { - originDutyLocationGBLOCOconus, err := models.FetchOconusAddressGbloc(appCtx.DB(), originDutyLocation.Address, serviceMember) - if err != nil { - return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") - } - originDutyLocationGBLOC = &originDutyLocationGBLOCOconus.Gbloc - } else { - originDutyLocationGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), originDutyLocation.Address.PostalCode) - if err != nil { - switch err { - case sql.ErrNoRows: - return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location PostalCodeToGBLOC") - default: - return nil, apperror.NewQueryError("PostalCodeToGBLOC", err, "") - } + originDutyLocationGBLOC, err := models.FetchAddressPostalCodeGbloc(appCtx.DB(), originDutyLocation.Address, originDutyLocation.Address.PostalCode, serviceMember) + if err != nil { + switch err { + case sql.ErrNoRows: + return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location FetchAddressPostalCodeGbloc") + default: + return nil, apperror.NewQueryError("FetchAddressPostalCodeGbloc", err, "") } - originDutyLocationGBLOC = &originDutyLocationGBLOCConus.GBLOC } grade := payload.Grade @@ -383,21 +363,11 @@ func (h UpdateOrdersHandler) Handle(params ordersop.UpdateOrdersParams) middlewa return handlers.ResponseForError(appCtx.Logger(), err), err } - var newDutyLocationGBLOC *string - if *dutyLocation.Address.IsOconus { - newDutyLocationGBLOCOconus, err := models.FetchOconusAddressGbloc(appCtx.DB(), dutyLocation.Address, order.ServiceMember) - if err != nil { - return nil, apperror.NewNotFoundError(dutyLocation.ID, "while looking for Duty Location Oconus GBLOC") - } - newDutyLocationGBLOC = &newDutyLocationGBLOCOconus.Gbloc - } else { - newDutyLocationGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), dutyLocation.Address.PostalCode) - if err != nil { - err = apperror.NewBadDataError("New duty location GBLOC cannot be verified") - appCtx.Logger().Error(err.Error()) - return handlers.ResponseForError(appCtx.Logger(), err), err - } - newDutyLocationGBLOC = &newDutyLocationGBLOCConus.GBLOC + newDutyLocationGBLOC, err := models.FetchAddressPostalCodeGbloc(appCtx.DB(), dutyLocation.Address, dutyLocation.Address.PostalCode, order.ServiceMember) + if err != nil { + err = apperror.NewBadDataError("New duty location GBLOC cannot be verified") + appCtx.Logger().Error(err.Error()) + return handlers.ResponseForError(appCtx.Logger(), err), err } if payload.OriginDutyLocationID != "" { @@ -412,21 +382,11 @@ func (h UpdateOrdersHandler) Handle(params ordersop.UpdateOrdersParams) middlewa order.OriginDutyLocation = &originDutyLocation order.OriginDutyLocationID = &originDutyLocationID - var originDutyLocationGBLOC *string - if *originDutyLocation.Address.IsOconus { - originDutyLocationGBLOCOconus, err := models.FetchOconusAddressGbloc(appCtx.DB(), originDutyLocation.Address, order.ServiceMember) - if err != nil { - return handlers.ResponseForError(appCtx.Logger(), err), err - } - originDutyLocationGBLOC = &originDutyLocationGBLOCOconus.Gbloc - } else { - originDutyLocationGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), originDutyLocation.Address.PostalCode) - if err != nil { - return handlers.ResponseForError(appCtx.Logger(), err), err - } - originDutyLocationGBLOC = &originDutyLocationGBLOCConus.GBLOC + originGBLOC, originGBLOCerr := models.FetchAddressPostalCodeGbloc(appCtx.DB(), originDutyLocation.Address, originDutyLocation.Address.PostalCode, order.ServiceMember) + if originGBLOCerr != nil { + return handlers.ResponseForError(appCtx.Logger(), originGBLOCerr), originGBLOCerr } - order.OriginDutyLocationGBLOC = originDutyLocationGBLOC + order.OriginDutyLocationGBLOC = originGBLOC if payload.MoveID != "" { diff --git a/pkg/handlers/internalapi/orders_test.go b/pkg/handlers/internalapi/orders_test.go index ca3671ad74f..2d404947c92 100644 --- a/pkg/handlers/internalapi/orders_test.go +++ b/pkg/handlers/internalapi/orders_test.go @@ -21,6 +21,7 @@ import ( "github.com/transcom/mymove/pkg/services/move" orderservice "github.com/transcom/mymove/pkg/services/order" storageTest "github.com/transcom/mymove/pkg/storage/test" + "github.com/transcom/mymove/pkg/testdatagen" "github.com/transcom/mymove/pkg/uploader" ) @@ -155,34 +156,17 @@ func (suite *HandlerSuite) TestCreateOrder() { dutyLocation := factory.FetchOrBuildCurrentDutyLocation(suite.DB()) - contract := models.ReContract{ - Code: "Test_create_oconus_order_code", - Name: "Test_create_oconus_order", - } - verrs, err := suite.AppContextForTest().DB().ValidateAndSave(&contract) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(verrs.Error()) - } + contract := testdatagen.FetchOrMakeReContract(suite.DB(), testdatagen.Assertions{}) rateAreaCode := uuid.Must(uuid.NewV4()).String()[0:5] - rateArea := models.ReRateArea{ - ID: uuid.Must(uuid.NewV4()), - ContractID: contract.ID, - IsOconus: true, - Code: rateAreaCode, - Name: fmt.Sprintf("Alaska-%s", rateAreaCode), - Contract: contract, - } - verrs, err = suite.DB().ValidateAndCreate(&rateArea) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(err.Error()) - } + rateArea := testdatagen.FetchOrMakeReRateArea(suite.DB(), testdatagen.Assertions{ + ReRateArea: models.ReRateArea{ + ContractID: contract.ID, + IsOconus: true, + Name: fmt.Sprintf("Alaska-%s", rateAreaCode), + Contract: contract, + }, + }) us_country, err := models.FetchCountryByCode(suite.DB(), "US") suite.NotNil(us_country) @@ -195,7 +179,7 @@ func (suite *HandlerSuite) TestCreateOrder() { UsPostRegionCityId: usprc.ID, Active: true, } - verrs, err = suite.DB().ValidateAndCreate(&oconusRateArea) + verrs, err := suite.DB().ValidateAndCreate(&oconusRateArea) if verrs.HasAny() { suite.Fail(verrs.Error()) } @@ -307,34 +291,17 @@ func (suite *HandlerSuite) TestCreateOrder() { }, nil) dutyLocation := factory.FetchOrBuildCurrentDutyLocation(suite.DB()) - contract := models.ReContract{ - Code: "Test_create_oconus_entitlement_code", - Name: "Test_create_oconus_entitlement", - } - verrs, err := suite.AppContextForTest().DB().ValidateAndSave(&contract) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(verrs.Error()) - } + contract := testdatagen.FetchOrMakeReContract(suite.DB(), testdatagen.Assertions{}) rateAreaCode := uuid.Must(uuid.NewV4()).String()[0:5] - rateArea := models.ReRateArea{ - ID: uuid.Must(uuid.NewV4()), - ContractID: contract.ID, - IsOconus: true, - Code: rateAreaCode, - Name: fmt.Sprintf("Alaska-%s", rateAreaCode), - Contract: contract, - } - verrs, err = suite.DB().ValidateAndCreate(&rateArea) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(err.Error()) - } + rateArea := testdatagen.FetchOrMakeReRateArea(suite.DB(), testdatagen.Assertions{ + ReRateArea: models.ReRateArea{ + ContractID: contract.ID, + IsOconus: true, + Name: fmt.Sprintf("Alaska-%s", rateAreaCode), + Contract: contract, + }, + }) us_country, err := models.FetchCountryByCode(suite.DB(), "US") suite.NotNil(us_country) @@ -347,7 +314,7 @@ func (suite *HandlerSuite) TestCreateOrder() { UsPostRegionCityId: usprc.ID, Active: true, } - verrs, err = suite.DB().ValidateAndCreate(&oconusRateArea) + verrs, err := suite.DB().ValidateAndCreate(&oconusRateArea) if verrs.HasAny() { suite.Fail(verrs.Error()) } @@ -934,34 +901,17 @@ func (suite *HandlerSuite) TestUpdateOrdersHandler() { newDutyLocation := factory.BuildDutyLocation(suite.DB(), nil, nil) - contract := models.ReContract{ - Code: "Test_create_oconus_order_code", - Name: "Test_create_oconus_order", - } - verrs, err := suite.AppContextForTest().DB().ValidateAndSave(&contract) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(verrs.Error()) - } + contract := testdatagen.FetchOrMakeReContract(suite.DB(), testdatagen.Assertions{}) rateAreaCode := uuid.Must(uuid.NewV4()).String()[0:5] - rateArea := models.ReRateArea{ - ID: uuid.Must(uuid.NewV4()), - ContractID: contract.ID, - IsOconus: true, - Code: rateAreaCode, - Name: fmt.Sprintf("Alaska-%s", rateAreaCode), - Contract: contract, - } - verrs, err = suite.DB().ValidateAndCreate(&rateArea) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(err.Error()) - } + rateArea := testdatagen.FetchOrMakeReRateArea(suite.DB(), testdatagen.Assertions{ + ReRateArea: models.ReRateArea{ + ContractID: contract.ID, + IsOconus: true, + Name: fmt.Sprintf("Alaska-%s", rateAreaCode), + Contract: contract, + }, + }) us_country, err := models.FetchCountryByCode(suite.DB(), "US") suite.NotNil(us_country) @@ -974,7 +924,7 @@ func (suite *HandlerSuite) TestUpdateOrdersHandler() { UsPostRegionCityId: usprc.ID, Active: true, } - verrs, err = suite.DB().ValidateAndCreate(&oconusRateArea) + verrs, err := suite.DB().ValidateAndCreate(&oconusRateArea) if verrs.HasAny() { suite.Fail(verrs.Error()) } diff --git a/pkg/models/address.go b/pkg/models/address.go index 3ba31e41497..a61cc9bf19b 100644 --- a/pkg/models/address.go +++ b/pkg/models/address.go @@ -212,34 +212,17 @@ func EvaluateIsOconus(address Address) bool { } } -type oconusGbloc struct { - Gbloc string `db:"gbloc" rw:"r"` -} - -func FetchOconusAddressGbloc(appCtx *pop.Connection, address Address, serviceMember ServiceMember) (*oconusGbloc, error) { - oconusGbloc := oconusGbloc{} +// Fetches the GBLOC for a specific Address or Postal Code +// OCONUS will always use Address, while CONUS will use Postal Code +func FetchAddressPostalCodeGbloc(db *pop.Connection, address Address, postalCode string, serviceMember ServiceMember) (*string, error) { + var gbloc *string - sqlQuery := ` - SELECT j.code gbloc - FROM addresses a, - re_oconus_rate_areas o, - jppso_regions j, - gbloc_aors g - WHERE a.us_post_region_cities_id = o.us_post_region_cities_id - and o.id = g.oconus_rate_area_id - and j.id = g.jppso_regions_id - and a.id = $1 ` + err := db.RawQuery("SELECT * FROM get_address_gbloc($1, $2, $3)", address.ID, postalCode, serviceMember.Affiliation.String()). + First(&gbloc) - if serviceMember.Affiliation.String() == "AIR_FORCE" || serviceMember.Affiliation.String() == "SPACE_FORCE" { - sqlQuery += ` - and g.department_indicator = 'AIR_AND_SPACE_FORCE' ` - } - - err := appCtx.Q().RawQuery(sqlQuery, address.ID).First(&oconusGbloc) if err != nil { return nil, err } - return &oconusGbloc, nil - + return gbloc, nil } diff --git a/pkg/models/address_test.go b/pkg/models/address_test.go index 9dd6a67040f..b13a6cc4f55 100644 --- a/pkg/models/address_test.go +++ b/pkg/models/address_test.go @@ -7,6 +7,7 @@ import ( "github.com/transcom/mymove/pkg/factory" m "github.com/transcom/mymove/pkg/models" + "github.com/transcom/mymove/pkg/testdatagen" ) func (suite *ModelSuite) TestBasicAddressInstantiation() { @@ -217,34 +218,17 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { }, }, nil) - contract := m.ReContract{ - Code: "Test_create_oconus_order_code", - Name: "Test_create_oconus_order", - } - verrs, err := suite.AppContextForTest().DB().ValidateAndSave(&contract) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(verrs.Error()) - } + contract := testdatagen.FetchOrMakeReContract(suite.DB(), testdatagen.Assertions{}) rateAreaCode := uuid.Must(uuid.NewV4()).String()[0:5] - rateArea := m.ReRateArea{ - ID: uuid.Must(uuid.NewV4()), - ContractID: contract.ID, - IsOconus: true, - Code: rateAreaCode, - Name: fmt.Sprintf("Alaska-%s", rateAreaCode), - Contract: contract, - } - verrs, err = suite.DB().ValidateAndCreate(&rateArea) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(err.Error()) - } + rateArea := testdatagen.FetchOrMakeReRateArea(suite.DB(), testdatagen.Assertions{ + ReRateArea: m.ReRateArea{ + ContractID: contract.ID, + IsOconus: true, + Name: fmt.Sprintf("Alaska-%s", rateAreaCode), + Contract: contract, + }, + }) us_country, err := m.FetchCountryByCode(suite.DB(), "US") suite.NotNil(us_country) @@ -257,7 +241,7 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { UsPostRegionCityId: usprc.ID, Active: true, } - verrs, err = suite.DB().ValidateAndCreate(&oconusRateArea) + verrs, err := suite.DB().ValidateAndCreate(&oconusRateArea) if verrs.HasAny() { suite.Fail(verrs.Error()) } @@ -272,7 +256,7 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { _, oconusRateArea, _, originDutyLocation := setupDataForOconusDutyLocation("99707") airForce := m.AffiliationAIRFORCE - defaultDepartmentIndicator := "AIR_AND_SPACE_FORCE" + defaultDepartmentIndicator := m.DepartmentIndicatorAIRANDSPACEFORCE.String() serviceMember := factory.BuildServiceMember(suite.DB(), []factory.Customization{ { Model: m.ServiceMember{ @@ -294,17 +278,17 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { } suite.MustSave(&gblocAors) - gbloc, err := m.FetchOconusAddressGbloc(suite.DB(), originDutyLocation.Address, serviceMember) + gbloc, err := m.FetchAddressPostalCodeGbloc(suite.DB(), originDutyLocation.Address, originDutyLocation.Address.PostalCode, serviceMember) suite.NoError(err) suite.NotNil(gbloc) - suite.Equal(gbloc.Gbloc, "MBFL") + suite.Equal(gbloc, "MBFL") }) suite.Run("fetches duty location GBLOC for AK address, Zone II Army", func() { _, oconusRateArea, _, originDutyLocation := setupDataForOconusDutyLocation("99707") army := m.AffiliationARMY - defaultDepartmentIndicator := "ARMY" + defaultDepartmentIndicator := m.DepartmentIndicatorARMY.String() serviceMember := factory.BuildServiceMember(suite.DB(), []factory.Customization{ { Model: m.ServiceMember{ @@ -326,17 +310,17 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { } suite.MustSave(&gblocAors) - gbloc, err := m.FetchOconusAddressGbloc(suite.DB(), originDutyLocation.Address, serviceMember) + gbloc, err := m.FetchAddressPostalCodeGbloc(suite.DB(), originDutyLocation.Address, originDutyLocation.Address.PostalCode, serviceMember) suite.NoError(err) suite.NotNil(gbloc) - suite.Equal(gbloc.Gbloc, "JEAT") + suite.Equal(gbloc, "JEAT") }) suite.Run("fetches duty location GBLOC for AK Cordova address, Zone IV", func() { _, oconusRateArea, _, originDutyLocation := setupDataForOconusDutyLocation("99574") army := m.AffiliationARMY - defaultDepartmentIndicator := "ARMY" + defaultDepartmentIndicator := m.DepartmentIndicatorARMY.String() serviceMember := factory.BuildServiceMember(suite.DB(), []factory.Customization{ { Model: m.ServiceMember{ @@ -358,17 +342,17 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { } suite.MustSave(&gblocAors) - gbloc, err := m.FetchOconusAddressGbloc(suite.DB(), originDutyLocation.Address, serviceMember) + gbloc, err := m.FetchAddressPostalCodeGbloc(suite.DB(), originDutyLocation.Address, originDutyLocation.Address.PostalCode, serviceMember) suite.NoError(err) suite.NotNil(gbloc) - suite.Equal(gbloc.Gbloc, "MAPS") + suite.Equal(gbloc, "MAPS") }) suite.Run("fetches duty location GBLOC for AK NOT Cordova address, Zone IV", func() { _, oconusRateArea, _, originDutyLocation := setupDataForOconusDutyLocation("99803") army := m.AffiliationARMY - defaultDepartmentIndicator := "ARMY" + defaultDepartmentIndicator := m.DepartmentIndicatorARMY.String() serviceMember := factory.BuildServiceMember(suite.DB(), []factory.Customization{ { Model: m.ServiceMember{ @@ -390,9 +374,9 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { } suite.MustSave(&gblocAors) - gbloc, err := m.FetchOconusAddressGbloc(suite.DB(), originDutyLocation.Address, serviceMember) + gbloc, err := m.FetchAddressPostalCodeGbloc(suite.DB(), originDutyLocation.Address, originDutyLocation.Address.PostalCode, serviceMember) suite.NoError(err) suite.NotNil(gbloc) - suite.Equal(gbloc.Gbloc, "MAPK") + suite.Equal(gbloc, "MAPK") }) } diff --git a/pkg/models/move.go b/pkg/models/move.go index 22bd18c743d..3b7fd610e69 100644 --- a/pkg/models/move.go +++ b/pkg/models/move.go @@ -215,29 +215,19 @@ func (m Move) GetDestinationGBLOC(db *pop.Connection) (string, error) { return "", err } - var newGBLOC string - if *destinationAddress.IsOconus { - err := db.Load(&m.Orders, "ServiceMember") - if err != nil { - if err.Error() == RecordNotFoundErrorString { - return "", errors.WithMessage(err, "No Service Member found in the DB associated with moveID "+m.ID.String()) - } - return "", err - } - newGBLOCOconus, err := FetchOconusAddressGbloc(db, *destinationAddress, m.Orders.ServiceMember) - if err != nil { - return "", err - } - newGBLOC = newGBLOCOconus.Gbloc - } else { - newGBLOCConus, err := FetchGBLOCForPostalCode(db, destinationAddress.PostalCode) - if err != nil { - return "", err + err = db.Load(&m.Orders, "ServiceMember") + if err != nil { + if err.Error() == RecordNotFoundErrorString { + return "", errors.WithMessage(err, "No Service Member found in the DB associated with moveID "+m.ID.String()) } - newGBLOC = newGBLOCConus.GBLOC + return "", err + } + newGBLOC, err := FetchAddressPostalCodeGbloc(db, *destinationAddress, destinationAddress.PostalCode, m.Orders.ServiceMember) + if err != nil { + return "", err } - return newGBLOC, err + return *newGBLOC, err } // GetDestinationAddress returns the address for the move. This ensures that business logic is centralized. diff --git a/pkg/services/order/order_updater.go b/pkg/services/order/order_updater.go index 842dcfe3737..93ade34887e 100644 --- a/pkg/services/order/order_updater.go +++ b/pkg/services/order/order_updater.go @@ -695,27 +695,16 @@ func updateOrderInTx(appCtx appcontext.AppContext, order models.Order, checks .. order.OriginDutyLocationID = &originDutyLocation.ID order.OriginDutyLocation = &originDutyLocation - var originDutyLocationGBLOC *string - if *originDutyLocation.Address.IsOconus { - originDutyLocationGBLOCOconus, err := models.FetchOconusAddressGbloc(appCtx.DB(), originDutyLocation.Address, order.ServiceMember) - if err != nil { - return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") - } - originDutyLocationGBLOC = &originDutyLocationGBLOCOconus.Gbloc - } else { - originDutyLocationGBLOCConus, err2 := models.FetchGBLOCForPostalCode(appCtx.DB(), originDutyLocation.Address.PostalCode) - if err2 != nil { - switch err2 { - case sql.ErrNoRows: - return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location PostalCodeToGBLOC") - default: - return nil, apperror.NewQueryError("PostalCodeToGBLOC", err, "") - } + dutyLocationGBLOC, err2 := models.FetchAddressPostalCodeGbloc(appCtx.DB(), originDutyLocation.Address, originDutyLocation.Address.PostalCode, order.ServiceMember) + if err2 != nil { + switch err2 { + case sql.ErrNoRows: + return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location PostalCodeToGBLOC") + default: + return nil, apperror.NewQueryError("PostalCodeToGBLOC", err, "") } - originDutyLocationGBLOC = &originDutyLocationGBLOCConus.GBLOC } - - order.OriginDutyLocationGBLOC = originDutyLocationGBLOC + order.OriginDutyLocationGBLOC = dutyLocationGBLOC } if order.Grade != nil || order.OriginDutyLocationID != nil { @@ -738,24 +727,14 @@ func updateOrderInTx(appCtx appcontext.AppContext, order models.Order, checks .. } } - var newDestinationGBLOC *string - if *newDutyLocation.Address.IsOconus { - newDestinationGBLOCOconus, err := models.FetchOconusAddressGbloc(appCtx.DB(), newDutyLocation.Address, order.ServiceMember) - if err != nil { - return nil, apperror.NewNotFoundError(newDutyLocation.ID, "while looking for DestinationGBLOC Oconus") - } - newDestinationGBLOC = &newDestinationGBLOCOconus.Gbloc - } else { - newDestinationGBLOCConus, err2 := models.FetchGBLOCForPostalCode(appCtx.DB(), newDutyLocation.Address.PostalCode) - if err2 != nil { - switch err { - case sql.ErrNoRows: - return nil, apperror.NewNotFoundError(order.NewDutyLocationID, "while looking for DestinationGBLOC") - default: - return nil, apperror.NewQueryError("DestinationGBLOC", err, "") - } + newDestinationGBLOC, err := models.FetchAddressPostalCodeGbloc(appCtx.DB(), newDutyLocation.Address, newDutyLocation.Address.PostalCode, order.ServiceMember) + if err != nil { + switch err { + case sql.ErrNoRows: + return nil, apperror.NewNotFoundError(order.NewDutyLocationID, "while looking for DestinationGBLOC") + default: + return nil, apperror.NewQueryError("DestinationGBLOC", err, "") } - newDestinationGBLOC = &newDestinationGBLOCConus.GBLOC } order.NewDutyLocationID = newDutyLocation.ID From ec1649c7539507b3cc4d7fc7ad3894a1980f30b1 Mon Sep 17 00:00:00 2001 From: pambecker Date: Fri, 17 Jan 2025 02:12:46 +0000 Subject: [PATCH 22/32] revert previous idea --- ...date_postal_codes_and_gblocs_for_ak.up.sql | 33 +++----- pkg/handlers/ghcapi/orders.go | 46 +++++++---- pkg/handlers/internalapi/orders.go | 78 ++++++++++++++----- pkg/models/address.go | 7 +- pkg/models/address_test.go | 16 ++-- pkg/models/move.go | 30 ++++--- pkg/services/order/order_updater.go | 51 ++++++++---- 7 files changed, 169 insertions(+), 92 deletions(-) diff --git a/migrations/app/schema/20250103142533_update_postal_codes_and_gblocs_for_ak.up.sql b/migrations/app/schema/20250103142533_update_postal_codes_and_gblocs_for_ak.up.sql index fe88f410e2f..97229ad0bc6 100644 --- a/migrations/app/schema/20250103142533_update_postal_codes_and_gblocs_for_ak.up.sql +++ b/migrations/app/schema/20250103142533_update_postal_codes_and_gblocs_for_ak.up.sql @@ -44,9 +44,9 @@ SELECT move_id, gbloc FROM ( DROP FUNCTION IF EXISTS get_address_gbloc; + CREATE OR REPLACE FUNCTION public.get_address_gbloc( address_id UUID, - postal_code TEXT, affiliation TEXT, OUT gbloc TEXT ) @@ -56,13 +56,8 @@ DECLARE v_count INT; v_bos_count INT; v_dept_ind TEXT; - v_postal_code TEXT; -begin - IF address_id IS NOT NULL THEN - is_oconus := get_is_oconus(address_id); - ELSE - is_oconus := false; - END IF; +BEGIN + is_oconus := get_is_oconus(address_id); IF affiliation in ('AIR_FORCE','SPACE_FORCE') THEN v_dept_ind := 'AIR_AND_SPACE_FORCE'; @@ -146,28 +141,20 @@ begin ELSE --is conus - IF postal_code IS NULL THEN - - SELECT o.uspr_zip_id - INTO v_postal_code - FROM addresses a, v_locations o - WHERE a.us_post_region_cities_id = o.uprc_id - AND a.id = address_id; - - ELSE - v_postal_code := postal_code; - END IF; - SELECT j.gbloc INTO gbloc - FROM postal_code_to_gblocs j - WHERE j.postal_code = v_postal_code; + FROM addresses a, + v_locations o, + postal_code_to_gblocs j + WHERE a.us_post_region_cities_id = o.uprc_id + and o.uspr_zip_id = j.postal_code + and a.id = address_id; END IF; -- Raise an exception if no rate area is found IF gbloc IS NULL THEN - RAISE EXCEPTION 'GBLOC not found for address ID % for affiliation % postal_code % ', address_id, affiiation, postal_code; + RAISE EXCEPTION 'GBLOC not found for address ID % for affiliation %', address_id, affiiation; END IF; END; $$ LANGUAGE plpgsql; \ No newline at end of file diff --git a/pkg/handlers/ghcapi/orders.go b/pkg/handlers/ghcapi/orders.go index c065f25712e..49ca15d9b9a 100644 --- a/pkg/handlers/ghcapi/orders.go +++ b/pkg/handlers/ghcapi/orders.go @@ -218,21 +218,41 @@ func (h CreateOrderHandler) Handle(params orderop.CreateOrderParams) middleware. return orderop.NewCreateOrderUnprocessableEntity(), err } - destinationGBLOC, err := models.FetchAddressPostalCodeGbloc(appCtx.DB(), newDutyLocation.Address, newDutyLocation.Address.PostalCode, serviceMember) - if err != nil { - err = apperror.NewBadDataError("New duty location GBLOC cannot be verified") - appCtx.Logger().Error(err.Error()) - return orderop.NewCreateOrderUnprocessableEntity(), err + var newDutyLocationGBLOC *string + if *newDutyLocation.Address.IsOconus { + newDutyLocationGBLOCOconus, err := models.FetchAddressGbloc(appCtx.DB(), newDutyLocation.Address, serviceMember) + if err != nil { + return nil, apperror.NewNotFoundError(newDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") + } + newDutyLocationGBLOC = newDutyLocationGBLOCOconus + } else { + newDutyLocationGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), newDutyLocation.Address.PostalCode) + if err != nil { + err = apperror.NewBadDataError("New duty location GBLOC cannot be verified") + appCtx.Logger().Error(err.Error()) + return orderop.NewCreateOrderUnprocessableEntity(), err + } + newDutyLocationGBLOC = &newDutyLocationGBLOCConus.GBLOC } - originDutyLocationGBLOC, err := models.FetchAddressPostalCodeGbloc(appCtx.DB(), originDutyLocation.Address, originDutyLocation.Address.PostalCode, serviceMember) - if err != nil { - switch err { - case sql.ErrNoRows: - return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location FetchAddressPostalCodeGbloc") - default: - return nil, apperror.NewQueryError("FetchAddressPostalCodeGbloc", err, "") + var originDutyLocationGBLOC *string + if *originDutyLocation.Address.IsOconus { + originDutyLocationGBLOCOconus, err := models.FetchAddressGbloc(appCtx.DB(), originDutyLocation.Address, serviceMember) + if err != nil { + return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") + } + originDutyLocationGBLOC = originDutyLocationGBLOCOconus + } else { + originDutyLocationGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), originDutyLocation.Address.PostalCode) + if err != nil { + switch err { + case sql.ErrNoRows: + return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location PostalCodeToGBLOC") + default: + return nil, apperror.NewQueryError("PostalCodeToGBLOC", err, "") + } } + originDutyLocationGBLOC = &originDutyLocationGBLOCConus.GBLOC } grade := (internalmessages.OrderPayGrade)(*payload.Grade) @@ -313,7 +333,7 @@ func (h CreateOrderHandler) Handle(params orderop.CreateOrderParams) middleware. &entitlement, originDutyLocationGBLOC, packingAndShippingInstructions, - destinationGBLOC, + newDutyLocationGBLOC, ) if err != nil || verrs.HasAny() { return handlers.ResponseForVErrors(appCtx.Logger(), verrs, err), err diff --git a/pkg/handlers/internalapi/orders.go b/pkg/handlers/internalapi/orders.go index f589b32735d..2ee491048f8 100644 --- a/pkg/handlers/internalapi/orders.go +++ b/pkg/handlers/internalapi/orders.go @@ -167,9 +167,19 @@ func (h CreateOrdersHandler) Handle(params ordersop.CreateOrdersParams) middlewa return handlers.ResponseForError(appCtx.Logger(), err), err } - newDutyLocationGBLOC, err := models.FetchAddressPostalCodeGbloc(appCtx.DB(), newDutyLocation.Address, newDutyLocation.Address.PostalCode, serviceMember) - if err != nil { - return handlers.ResponseForError(appCtx.Logger(), err), err + var newDutyLocationGBLOC *string + if *newDutyLocation.Address.IsOconus { + newDutyLocationGBLOCOconus, err := models.FetchAddressGbloc(appCtx.DB(), newDutyLocation.Address, serviceMember) + if err != nil { + return nil, apperror.NewNotFoundError(newDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") + } + newDutyLocationGBLOC = newDutyLocationGBLOCOconus + } else { + newDutyLocationGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), newDutyLocation.Address.PostalCode) + if err != nil { + return handlers.ResponseForError(appCtx.Logger(), err), err + } + newDutyLocationGBLOC = &newDutyLocationGBLOCConus.GBLOC } var dependentsTwelveAndOver *int @@ -183,14 +193,24 @@ func (h CreateOrdersHandler) Handle(params ordersop.CreateOrdersParams) middlewa dependentsUnderTwelve = models.IntPointer(int(*payload.DependentsUnderTwelve)) } - originDutyLocationGBLOC, err := models.FetchAddressPostalCodeGbloc(appCtx.DB(), originDutyLocation.Address, originDutyLocation.Address.PostalCode, serviceMember) - if err != nil { - switch err { - case sql.ErrNoRows: - return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location FetchAddressPostalCodeGbloc") - default: - return nil, apperror.NewQueryError("FetchAddressPostalCodeGbloc", err, "") + var originDutyLocationGBLOC *string + if *originDutyLocation.Address.IsOconus { + originDutyLocationGBLOCOconus, err := models.FetchAddressGbloc(appCtx.DB(), originDutyLocation.Address, serviceMember) + if err != nil { + return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") } + originDutyLocationGBLOC = originDutyLocationGBLOCOconus + } else { + originDutyLocationGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), originDutyLocation.Address.PostalCode) + if err != nil { + switch err { + case sql.ErrNoRows: + return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location PostalCodeToGBLOC") + default: + return nil, apperror.NewQueryError("PostalCodeToGBLOC", err, "") + } + } + originDutyLocationGBLOC = &originDutyLocationGBLOCConus.GBLOC } grade := payload.Grade @@ -363,11 +383,21 @@ func (h UpdateOrdersHandler) Handle(params ordersop.UpdateOrdersParams) middlewa return handlers.ResponseForError(appCtx.Logger(), err), err } - newDutyLocationGBLOC, err := models.FetchAddressPostalCodeGbloc(appCtx.DB(), dutyLocation.Address, dutyLocation.Address.PostalCode, order.ServiceMember) - if err != nil { - err = apperror.NewBadDataError("New duty location GBLOC cannot be verified") - appCtx.Logger().Error(err.Error()) - return handlers.ResponseForError(appCtx.Logger(), err), err + var newDutyLocationGBLOC *string + if *dutyLocation.Address.IsOconus { + newDutyLocationGBLOCOconus, err := models.FetchAddressGbloc(appCtx.DB(), dutyLocation.Address, order.ServiceMember) + if err != nil { + return nil, apperror.NewNotFoundError(dutyLocation.ID, "while looking for Duty Location Oconus GBLOC") + } + newDutyLocationGBLOC = newDutyLocationGBLOCOconus + } else { + newDutyLocationGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), dutyLocation.Address.PostalCode) + if err != nil { + err = apperror.NewBadDataError("New duty location GBLOC cannot be verified") + appCtx.Logger().Error(err.Error()) + return handlers.ResponseForError(appCtx.Logger(), err), err + } + newDutyLocationGBLOC = &newDutyLocationGBLOCConus.GBLOC } if payload.OriginDutyLocationID != "" { @@ -382,11 +412,21 @@ func (h UpdateOrdersHandler) Handle(params ordersop.UpdateOrdersParams) middlewa order.OriginDutyLocation = &originDutyLocation order.OriginDutyLocationID = &originDutyLocationID - originGBLOC, originGBLOCerr := models.FetchAddressPostalCodeGbloc(appCtx.DB(), originDutyLocation.Address, originDutyLocation.Address.PostalCode, order.ServiceMember) - if originGBLOCerr != nil { - return handlers.ResponseForError(appCtx.Logger(), originGBLOCerr), originGBLOCerr + var originDutyLocationGBLOC *string + if *originDutyLocation.Address.IsOconus { + originDutyLocationGBLOCOconus, err := models.FetchAddressGbloc(appCtx.DB(), originDutyLocation.Address, order.ServiceMember) + if err != nil { + return handlers.ResponseForError(appCtx.Logger(), err), err + } + originDutyLocationGBLOC = originDutyLocationGBLOCOconus + } else { + originDutyLocationGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), originDutyLocation.Address.PostalCode) + if err != nil { + return handlers.ResponseForError(appCtx.Logger(), err), err + } + originDutyLocationGBLOC = &originDutyLocationGBLOCConus.GBLOC } - order.OriginDutyLocationGBLOC = originGBLOC + order.OriginDutyLocationGBLOC = originDutyLocationGBLOC if payload.MoveID != "" { diff --git a/pkg/models/address.go b/pkg/models/address.go index a61cc9bf19b..29a6bedbcbb 100644 --- a/pkg/models/address.go +++ b/pkg/models/address.go @@ -212,12 +212,11 @@ func EvaluateIsOconus(address Address) bool { } } -// Fetches the GBLOC for a specific Address or Postal Code -// OCONUS will always use Address, while CONUS will use Postal Code -func FetchAddressPostalCodeGbloc(db *pop.Connection, address Address, postalCode string, serviceMember ServiceMember) (*string, error) { +// Fetches the GBLOC for a specific Address (for now this will be used for OCONUS) +func FetchAddressGbloc(db *pop.Connection, address Address, serviceMember ServiceMember) (*string, error) { var gbloc *string - err := db.RawQuery("SELECT * FROM get_address_gbloc($1, $2, $3)", address.ID, postalCode, serviceMember.Affiliation.String()). + err := db.RawQuery("SELECT * FROM get_address_gbloc($1, $2)", address.ID, serviceMember.Affiliation.String()). First(&gbloc) if err != nil { diff --git a/pkg/models/address_test.go b/pkg/models/address_test.go index b13a6cc4f55..63656953d3c 100644 --- a/pkg/models/address_test.go +++ b/pkg/models/address_test.go @@ -278,10 +278,10 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { } suite.MustSave(&gblocAors) - gbloc, err := m.FetchAddressPostalCodeGbloc(suite.DB(), originDutyLocation.Address, originDutyLocation.Address.PostalCode, serviceMember) + gbloc, err := m.FetchAddressGbloc(suite.DB(), originDutyLocation.Address, serviceMember) suite.NoError(err) suite.NotNil(gbloc) - suite.Equal(gbloc, "MBFL") + suite.Equal(string(*gbloc), "MBFL") }) suite.Run("fetches duty location GBLOC for AK address, Zone II Army", func() { @@ -310,10 +310,10 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { } suite.MustSave(&gblocAors) - gbloc, err := m.FetchAddressPostalCodeGbloc(suite.DB(), originDutyLocation.Address, originDutyLocation.Address.PostalCode, serviceMember) + gbloc, err := m.FetchAddressGbloc(suite.DB(), originDutyLocation.Address, serviceMember) suite.NoError(err) suite.NotNil(gbloc) - suite.Equal(gbloc, "JEAT") + suite.Equal(string(*gbloc), "JEAT") }) suite.Run("fetches duty location GBLOC for AK Cordova address, Zone IV", func() { @@ -342,10 +342,10 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { } suite.MustSave(&gblocAors) - gbloc, err := m.FetchAddressPostalCodeGbloc(suite.DB(), originDutyLocation.Address, originDutyLocation.Address.PostalCode, serviceMember) + gbloc, err := m.FetchAddressGbloc(suite.DB(), originDutyLocation.Address, serviceMember) suite.NoError(err) suite.NotNil(gbloc) - suite.Equal(gbloc, "MAPS") + suite.Equal(string(*gbloc), "MAPS") }) suite.Run("fetches duty location GBLOC for AK NOT Cordova address, Zone IV", func() { @@ -374,9 +374,9 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { } suite.MustSave(&gblocAors) - gbloc, err := m.FetchAddressPostalCodeGbloc(suite.DB(), originDutyLocation.Address, originDutyLocation.Address.PostalCode, serviceMember) + gbloc, err := m.FetchAddressGbloc(suite.DB(), originDutyLocation.Address, serviceMember) suite.NoError(err) suite.NotNil(gbloc) - suite.Equal(gbloc, "MAPK") + suite.Equal(string(*gbloc), "MAPK") }) } diff --git a/pkg/models/move.go b/pkg/models/move.go index 3b7fd610e69..e3b1b889bf8 100644 --- a/pkg/models/move.go +++ b/pkg/models/move.go @@ -215,19 +215,29 @@ func (m Move) GetDestinationGBLOC(db *pop.Connection) (string, error) { return "", err } - err = db.Load(&m.Orders, "ServiceMember") - if err != nil { - if err.Error() == RecordNotFoundErrorString { - return "", errors.WithMessage(err, "No Service Member found in the DB associated with moveID "+m.ID.String()) + var newGBLOC string + if *destinationAddress.IsOconus { + err := db.Load(&m.Orders, "ServiceMember") + if err != nil { + if err.Error() == RecordNotFoundErrorString { + return "", errors.WithMessage(err, "No Service Member found in the DB associated with moveID "+m.ID.String()) + } + return "", err } - return "", err - } - newGBLOC, err := FetchAddressPostalCodeGbloc(db, *destinationAddress, destinationAddress.PostalCode, m.Orders.ServiceMember) - if err != nil { - return "", err + newGBLOCOconus, err := FetchAddressGbloc(db, *destinationAddress, m.Orders.ServiceMember) + if err != nil { + return "", err + } + newGBLOC = *newGBLOCOconus + } else { + newGBLOCConus, err := FetchGBLOCForPostalCode(db, destinationAddress.PostalCode) + if err != nil { + return "", err + } + newGBLOC = newGBLOCConus.GBLOC } - return *newGBLOC, err + return newGBLOC, err } // GetDestinationAddress returns the address for the move. This ensures that business logic is centralized. diff --git a/pkg/services/order/order_updater.go b/pkg/services/order/order_updater.go index 93ade34887e..8fb4d7072e3 100644 --- a/pkg/services/order/order_updater.go +++ b/pkg/services/order/order_updater.go @@ -695,16 +695,27 @@ func updateOrderInTx(appCtx appcontext.AppContext, order models.Order, checks .. order.OriginDutyLocationID = &originDutyLocation.ID order.OriginDutyLocation = &originDutyLocation - dutyLocationGBLOC, err2 := models.FetchAddressPostalCodeGbloc(appCtx.DB(), originDutyLocation.Address, originDutyLocation.Address.PostalCode, order.ServiceMember) - if err2 != nil { - switch err2 { - case sql.ErrNoRows: - return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location PostalCodeToGBLOC") - default: - return nil, apperror.NewQueryError("PostalCodeToGBLOC", err, "") + var originDutyLocationGBLOC *string + if *originDutyLocation.Address.IsOconus { + originDutyLocationGBLOCOconus, err := models.FetchAddressGbloc(appCtx.DB(), originDutyLocation.Address, order.ServiceMember) + if err != nil { + return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") } + originDutyLocationGBLOC = originDutyLocationGBLOCOconus + } else { + originDutyLocationGBLOCConus, err2 := models.FetchGBLOCForPostalCode(appCtx.DB(), originDutyLocation.Address.PostalCode) + if err2 != nil { + switch err2 { + case sql.ErrNoRows: + return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location PostalCodeToGBLOC") + default: + return nil, apperror.NewQueryError("PostalCodeToGBLOC", err, "") + } + } + originDutyLocationGBLOC = &originDutyLocationGBLOCConus.GBLOC } - order.OriginDutyLocationGBLOC = dutyLocationGBLOC + + order.OriginDutyLocationGBLOC = originDutyLocationGBLOC } if order.Grade != nil || order.OriginDutyLocationID != nil { @@ -727,14 +738,24 @@ func updateOrderInTx(appCtx appcontext.AppContext, order models.Order, checks .. } } - newDestinationGBLOC, err := models.FetchAddressPostalCodeGbloc(appCtx.DB(), newDutyLocation.Address, newDutyLocation.Address.PostalCode, order.ServiceMember) - if err != nil { - switch err { - case sql.ErrNoRows: - return nil, apperror.NewNotFoundError(order.NewDutyLocationID, "while looking for DestinationGBLOC") - default: - return nil, apperror.NewQueryError("DestinationGBLOC", err, "") + var newDestinationGBLOC *string + if *newDutyLocation.Address.IsOconus { + newDestinationGBLOCOconus, err := models.FetchAddressGbloc(appCtx.DB(), newDutyLocation.Address, order.ServiceMember) + if err != nil { + return nil, apperror.NewNotFoundError(newDutyLocation.ID, "while looking for DestinationGBLOC Oconus") + } + newDestinationGBLOC = newDestinationGBLOCOconus + } else { + newDestinationGBLOCConus, err2 := models.FetchGBLOCForPostalCode(appCtx.DB(), newDutyLocation.Address.PostalCode) + if err2 != nil { + switch err { + case sql.ErrNoRows: + return nil, apperror.NewNotFoundError(order.NewDutyLocationID, "while looking for DestinationGBLOC") + default: + return nil, apperror.NewQueryError("DestinationGBLOC", err, "") + } } + newDestinationGBLOC = &newDestinationGBLOCConus.GBLOC } order.NewDutyLocationID = newDutyLocation.ID From 3ead62acf539a89bc671ba82f1352a86e8b7dff4 Mon Sep 17 00:00:00 2001 From: pambecker Date: Mon, 20 Jan 2025 15:41:41 +0000 Subject: [PATCH 23/32] more oconus updates for gbloc --- pkg/models/mto_shipments.go | 27 ------------- pkg/models/order.go | 40 ------------------- .../ghc_payment_request_invoice_generator.go | 18 +++++++-- .../move_task_order_fetcher.go | 22 +++++++--- .../move_task_order_creator.go | 28 ++++++++----- 5 files changed, 49 insertions(+), 86 deletions(-) diff --git a/pkg/models/mto_shipments.go b/pkg/models/mto_shipments.go index 917e75b7978..ee91209f961 100644 --- a/pkg/models/mto_shipments.go +++ b/pkg/models/mto_shipments.go @@ -277,33 +277,6 @@ func GetCustomerFromShipment(db *pop.Connection, shipmentID uuid.UUID) (*Service return &serviceMember, nil } -func (m *MTOShipment) UpdateOrdersDestinationGBLOC(db *pop.Connection) error { - // Since this requires looking up the order in the DB, the order must have an ID. This means, the order has to have been created first. - if uuid.UUID.IsNil(m.ID) { - return fmt.Errorf("error updating orders destination GBLOC for shipment due to no shipment ID provided") - } - - var err error - var order Order - - err = db.Load(&m, "MoveTaskOrder.OrdersID") - if err != nil { - return fmt.Errorf("error loading orders for shipment ID: %s with error %w", m.ID, err) - } - - order, err = FetchOrder(db, m.MoveTaskOrder.OrdersID) - if err != nil { - return fmt.Errorf("error fetching order for shipment ID: %s with error %w", m.ID, err) - } - - err = order.UpdateDestinationGBLOC(db) - if err != nil { - return fmt.Errorf("error fetching GBLOC for postal code with error %w", err) - } - - return nil -} - // Helper function to check that an MTO Shipment contains a PPM Shipment func (m MTOShipment) ContainsAPPMShipment() bool { return m.PPMShipment != nil diff --git a/pkg/models/order.go b/pkg/models/order.go index 84b9d8a0446..762b3881c5b 100644 --- a/pkg/models/order.go +++ b/pkg/models/order.go @@ -492,46 +492,6 @@ func (o Order) GetDestinationAddressForAssociatedMoves(db *pop.Connection) (*Add return &destinationAddress, nil } -// UpdateDestinationGBLOC updates the destination GBLOC for the associated Order in the DB -func (o Order) UpdateDestinationGBLOC(db *pop.Connection) error { - // Since this requires looking up the order in the DB, the order must have an ID. This means, the order has to have been created first. - if uuid.UUID.IsNil(o.ID) { - return errors.WithMessage(ErrInvalidOrderID, "You must created the order in the DB before updating the destination GBLOC.") - } - - var dbOrder Order - err := db.Find(&dbOrder, o.ID) - if err != nil { - if err.Error() == RecordNotFoundErrorString { - return errors.WithMessage(err, "No Order was found for the order ID "+o.ID.String()) - } - return err - } - - err = db.Load(&o, "NewDutyLocation.Address.PostalCode") - if err != nil { - if err.Error() == RecordNotFoundErrorString { - return errors.WithMessage(err, "No New Duty Location Address Postal Code was found for the order ID "+o.ID.String()) - } - return err - } - - var gblocResult PostalCodeToGBLOC - gblocResult, err = FetchGBLOCForPostalCode(db, o.NewDutyLocation.Address.PostalCode) - if err != nil { - return errors.WithMessage(err, "Could not get GBLOC for postal code "+o.NewDutyLocation.Address.PostalCode) - } - - dbOrder.DestinationGBLOC = &gblocResult.GBLOC - - err = db.Save(&dbOrder) - if err != nil { - return errors.WithMessage(err, "Could not save the updated destination GBLOC for order ID "+o.ID.String()) - } - - return nil -} - // IsCompleteForGBL checks if orders have all fields necessary to generate a GBL func (o *Order) IsCompleteForGBL() bool { diff --git a/pkg/services/invoice/ghc_payment_request_invoice_generator.go b/pkg/services/invoice/ghc_payment_request_invoice_generator.go index fd111048868..f9e863df64c 100644 --- a/pkg/services/invoice/ghc_payment_request_invoice_generator.go +++ b/pkg/services/invoice/ghc_payment_request_invoice_generator.go @@ -447,16 +447,26 @@ func (g ghcPaymentRequestInvoiceGenerator) createBuyerAndSellerOrganizationNames return apperror.NewQueryError("MTOShipments", err, fmt.Sprintf("error querying for shipments pickup address gbloc to use in N1*BY segments in PaymentRequest %s: %s", paymentRequestID, err)) } } - pickupPostalCodeToGbloc, gblocErr := models.FetchGBLOCForPostalCode(appCtx.DB(), address.PostalCode) - if gblocErr != nil { - return apperror.NewInvalidInputError(pickupPostalCodeToGbloc.ID, gblocErr, nil, "unable to determine GBLOC for pickup postal code") + var pickupPostalCodeToGbloc *string + if *address.IsOconus { + originDutyLocationGBLOCOconus, gblocErr := models.FetchAddressGbloc(appCtx.DB(), address, orders.ServiceMember) + if gblocErr != nil { + return apperror.NewInvalidInputError(address.ID, gblocErr, nil, "unable to determine GBLOC for Oconus pickup postal code") + } + pickupPostalCodeToGbloc = originDutyLocationGBLOCOconus + } else { + originDutyLocationGBLOCConus, gblocErr := models.FetchGBLOCForPostalCode(appCtx.DB(), originDutyLocation.Address.PostalCode) + if gblocErr != nil { + return apperror.NewInvalidInputError(address.ID, gblocErr, nil, "unable to determine GBLOC for pickup postal code") + } + pickupPostalCodeToGbloc = &originDutyLocationGBLOCConus.GBLOC } header.BuyerOrganizationName = edisegment.N1{ EntityIdentifierCode: "BY", Name: truncateStr(originDutyLocation.Name, maxLocationlength), IdentificationCodeQualifier: "92", - IdentificationCode: modifyGblocIfMarines(*orders.ServiceMember.Affiliation, pickupPostalCodeToGbloc.GBLOC), + IdentificationCode: modifyGblocIfMarines(*orders.ServiceMember.Affiliation, *pickupPostalCodeToGbloc), } // seller organization name diff --git a/pkg/services/move_task_order/move_task_order_fetcher.go b/pkg/services/move_task_order/move_task_order_fetcher.go index 1d30aef5ceb..002634f97e4 100644 --- a/pkg/services/move_task_order/move_task_order_fetcher.go +++ b/pkg/services/move_task_order/move_task_order_fetcher.go @@ -324,13 +324,23 @@ func (f moveTaskOrderFetcher) FetchMoveTaskOrder(appCtx appcontext.AppContext, s mto.MTOServiceItems = loadedServiceItems if mto.Orders.DestinationGBLOC == nil { - newDutyLocationGBLOC, err := models.FetchGBLOCForPostalCode(appCtx.DB(), mto.Orders.NewDutyLocation.Address.PostalCode) - if err != nil { - err = apperror.NewBadDataError("New duty location GBLOC cannot be verified") - appCtx.Logger().Error(err.Error()) - return &models.Move{}, apperror.NewQueryError("DestinationGBLOC", err, "") + var newDutyLocationGBLOC *string + if *mto.Orders.NewDutyLocation.Address.IsOconus { + newDutyLocationGBLOCOconus, err := models.FetchAddressGbloc(appCtx.DB(), mto.Orders.NewDutyLocation.Address, mto.Orders.ServiceMember) + if err != nil { + return nil, apperror.NewNotFoundError(mto.Orders.NewDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") + } + newDutyLocationGBLOC = newDutyLocationGBLOCOconus + } else { + newDutyLocationGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), mto.Orders.NewDutyLocation.Address.PostalCode) + if err != nil { + err = apperror.NewBadDataError("New duty location GBLOC cannot be verified") + appCtx.Logger().Error(err.Error()) + return &models.Move{}, apperror.NewQueryError("DestinationGBLOC", err, "") + } + newDutyLocationGBLOC = &newDutyLocationGBLOCConus.GBLOC } - mto.Orders.DestinationGBLOC = &newDutyLocationGBLOC.GBLOC + mto.Orders.DestinationGBLOC = newDutyLocationGBLOC } return mto, nil diff --git a/pkg/services/support/move_task_order/move_task_order_creator.go b/pkg/services/support/move_task_order/move_task_order_creator.go index 85f3500c2de..d0bc162d54c 100644 --- a/pkg/services/support/move_task_order/move_task_order_creator.go +++ b/pkg/services/support/move_task_order/move_task_order_creator.go @@ -132,17 +132,27 @@ func createOrder(appCtx appcontext.AppContext, customer *models.ServiceMember, o order.OriginDutyLocation = originDutyLocation order.OriginDutyLocationID = &originDutyLocationID - var originDutyLocationGBLOC models.PostalCodeToGBLOC - originDutyLocationGBLOC, err = models.FetchGBLOCForPostalCode(appCtx.DB(), originDutyLocation.Address.PostalCode) - if err != nil { - switch err { - case sql.ErrNoRows: - return nil, apperror.NewNotFoundError(originDutyLocationID, "while looking for Duty Location PostalCodeToGBLOC") - default: - return nil, apperror.NewQueryError("PostalCodeToGBLOC", err, "") + var originDutyLocationGBLOC *string + if *originDutyLocation.Address.IsOconus { + originDutyLocationGBLOCOconus, err := models.FetchAddressGbloc(appCtx.DB(), originDutyLocation.Address, order.ServiceMember) + if err != nil { + return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") + } + originDutyLocationGBLOC = originDutyLocationGBLOCOconus + } else { + originDutyLocationGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), originDutyLocation.Address.PostalCode) + if err != nil { + switch err { + case sql.ErrNoRows: + return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location PostalCodeToGBLOC") + default: + return nil, apperror.NewQueryError("PostalCodeToGBLOC", err, "") + } } + originDutyLocationGBLOC = &originDutyLocationGBLOCConus.GBLOC } - order.OriginDutyLocationGBLOC = &originDutyLocationGBLOC.GBLOC + + order.OriginDutyLocationGBLOC = originDutyLocationGBLOC } // Check that the uploaded orders document exists var uploadedOrders *models.Document From b6e43bf14edae5fab282721608884304d1aadc45 Mon Sep 17 00:00:00 2001 From: pambecker Date: Mon, 20 Jan 2025 17:42:09 +0000 Subject: [PATCH 24/32] update one more --- .../ghc_payment_request_invoice_generator.go | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/pkg/services/invoice/ghc_payment_request_invoice_generator.go b/pkg/services/invoice/ghc_payment_request_invoice_generator.go index f9e863df64c..4af73b9e28d 100644 --- a/pkg/services/invoice/ghc_payment_request_invoice_generator.go +++ b/pkg/services/invoice/ghc_payment_request_invoice_generator.go @@ -492,9 +492,19 @@ func (g ghcPaymentRequestInvoiceGenerator) createOriginAndDestinationSegments(ap return apperror.NewConflictError(orders.ID, "Invalid Order, must have NewDutyLocation") } - destPostalCodeToGbloc, gblocErr := models.FetchGBLOCForPostalCode(appCtx.DB(), destinationDutyLocation.Address.PostalCode) - if gblocErr != nil { - return apperror.NewInvalidInputError(destinationDutyLocation.ID, gblocErr, nil, "unable to determine GBLOC for duty location postal code") + var destPostalCodeToGbloc *string + if *destinationDutyLocation.Address.IsOconus { + destPostalCodeToGblocOconus, gblocErr := models.FetchAddressGbloc(appCtx.DB(), destinationDutyLocation.Address, orders.ServiceMember) + if gblocErr != nil { + return apperror.NewInvalidInputError(destinationDutyLocation.ID, gblocErr, nil, "unable to determine GBLOC for Oconus duty location postal code") + } + destPostalCodeToGbloc = destPostalCodeToGblocOconus + } else { + ddestPostalCodeToGblocConus, gblocErr := models.FetchGBLOCForPostalCode(appCtx.DB(), destinationDutyLocation.Address.PostalCode) + if gblocErr != nil { + return apperror.NewInvalidInputError(destinationDutyLocation.ID, gblocErr, nil, "unable to determine GBLOC for duty location postal code") + } + destPostalCodeToGbloc = &ddestPostalCodeToGblocConus.GBLOC } // destination name @@ -502,7 +512,7 @@ func (g ghcPaymentRequestInvoiceGenerator) createOriginAndDestinationSegments(ap EntityIdentifierCode: "ST", Name: truncateStr(destinationDutyLocation.Name, maxLocationlength), IdentificationCodeQualifier: "10", - IdentificationCode: modifyGblocIfMarines(*orders.ServiceMember.Affiliation, destPostalCodeToGbloc.GBLOC), + IdentificationCode: modifyGblocIfMarines(*orders.ServiceMember.Affiliation, *destPostalCodeToGbloc), } // destination address From f026e3de99ad2dec95ac32b93e0621796f6ccd87 Mon Sep 17 00:00:00 2001 From: pambecker Date: Tue, 21 Jan 2025 02:14:35 +0000 Subject: [PATCH 25/32] tests --- pkg/handlers/internalapi/orders_test.go | 111 +++++++++--------------- pkg/models/address_test.go | 85 +++++++----------- pkg/models/gbloc_aors.go | 15 ++++ pkg/models/jppso_regions.go | 26 ++++++ pkg/models/re_oconus_rate_areas.go | 23 +++++ 5 files changed, 132 insertions(+), 128 deletions(-) diff --git a/pkg/handlers/internalapi/orders_test.go b/pkg/handlers/internalapi/orders_test.go index 2d404947c92..f92443ca024 100644 --- a/pkg/handlers/internalapi/orders_test.go +++ b/pkg/handlers/internalapi/orders_test.go @@ -133,6 +133,8 @@ func (suite *HandlerSuite) TestCreateOrder() { suite.Run("can create oconus orders", func() { usprc, err := models.FindByZipCode(suite.AppContextForTest().DB(), "99801") + fmt.Println("*** usprc") + fmt.Println(usprc.ID.String()) suite.NotNil(usprc) suite.FatalNoError(err) @@ -167,36 +169,24 @@ func (suite *HandlerSuite) TestCreateOrder() { Contract: contract, }, }) + suite.NotNil(rateArea) + suite.Nil(err) us_country, err := models.FetchCountryByCode(suite.DB(), "US") suite.NotNil(us_country) suite.Nil(err) - oconusRateArea := models.OconusRateArea{ - ID: uuid.Must(uuid.NewV4()), - RateAreaId: rateArea.ID, - CountryId: us_country.ID, - UsPostRegionCityId: usprc.ID, - Active: true, - } - verrs, err := suite.DB().ValidateAndCreate(&oconusRateArea) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(err.Error()) - } - jppsoRegion := models.JppsoRegions{ - Name: "USCG Base Ketchikan", - Code: "MAPK", - } - suite.MustSave(&jppsoRegion) + oconusRateArea, err := models.FetchOconusRateAreaByCityId(suite.DB(), usprc.ID.String()) + suite.NotNil(oconusRateArea) + suite.Nil(err) - gblocAors := models.GblocAors{ - JppsoRegionID: jppsoRegion.ID, - OconusRateAreaID: oconusRateArea.ID, - } - suite.MustSave(&gblocAors) + jppsoRegion, err := models.FetchJppsoRegionByCode(suite.DB(), string("MAPK")) + suite.NotNil(jppsoRegion) + suite.Nil(err) + + gblocAors, err := models.FetchGblocAorsByJppsoCodeRateAreaDept(suite.DB(), jppsoRegion.ID.String(), oconusRateArea.ID.String(), models.DepartmentIndicatorARMY.String()) + suite.NotNil(gblocAors) + suite.Nil(err) factory.FetchOrBuildDefaultContractor(suite.DB(), nil, nil) req := httptest.NewRequest("POST", "/orders", nil) @@ -291,6 +281,7 @@ func (suite *HandlerSuite) TestCreateOrder() { }, nil) dutyLocation := factory.FetchOrBuildCurrentDutyLocation(suite.DB()) + contract := testdatagen.FetchOrMakeReContract(suite.DB(), testdatagen.Assertions{}) rateAreaCode := uuid.Must(uuid.NewV4()).String()[0:5] @@ -302,36 +293,24 @@ func (suite *HandlerSuite) TestCreateOrder() { Contract: contract, }, }) + suite.NotNil(rateArea) + suite.Nil(err) us_country, err := models.FetchCountryByCode(suite.DB(), "US") suite.NotNil(us_country) suite.Nil(err) - oconusRateArea := models.OconusRateArea{ - ID: uuid.Must(uuid.NewV4()), - RateAreaId: rateArea.ID, - CountryId: us_country.ID, - UsPostRegionCityId: usprc.ID, - Active: true, - } - verrs, err := suite.DB().ValidateAndCreate(&oconusRateArea) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(err.Error()) - } - jppsoRegion := models.JppsoRegions{ - Name: "JPPSO Elmendorf-Richardson", - Code: "MBFL", - } - suite.MustSave(&jppsoRegion) + oconusRateArea, err := models.FetchOconusRateAreaByCityId(suite.DB(), usprc.ID.String()) + suite.NotNil(oconusRateArea) + suite.Nil(err) - gblocAors := models.GblocAors{ - JppsoRegionID: jppsoRegion.ID, - OconusRateAreaID: oconusRateArea.ID, - } - suite.MustSave(&gblocAors) + jppsoRegion, err := models.FetchJppsoRegionByCode(suite.DB(), "MBFL") + suite.NotNil(jppsoRegion) + suite.Nil(err) + + gblocAors, err := models.FetchGblocAorsByJppsoCodeRateAreaDept(suite.DB(), jppsoRegion.ID.String(), oconusRateArea.ID.String(), models.DepartmentIndicatorARMY.String()) + suite.NotNil(gblocAors) + suite.Nil(err) factory.FetchOrBuildDefaultContractor(suite.DB(), nil, nil) @@ -912,36 +891,24 @@ func (suite *HandlerSuite) TestUpdateOrdersHandler() { Contract: contract, }, }) + suite.NotNil(rateArea) + suite.Nil(err) us_country, err := models.FetchCountryByCode(suite.DB(), "US") suite.NotNil(us_country) suite.Nil(err) - oconusRateArea := models.OconusRateArea{ - ID: uuid.Must(uuid.NewV4()), - RateAreaId: rateArea.ID, - CountryId: us_country.ID, - UsPostRegionCityId: usprc.ID, - Active: true, - } - verrs, err := suite.DB().ValidateAndCreate(&oconusRateArea) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(err.Error()) - } - jppsoRegion := models.JppsoRegions{ - Name: "USCG Base Ketchikan", - Code: "MAPK", - } - suite.MustSave(&jppsoRegion) + oconusRateArea, err := models.FetchOconusRateAreaByCityId(suite.DB(), usprc.ID.String()) + suite.NotNil(oconusRateArea) + suite.Nil(err) - gblocAors := models.GblocAors{ - JppsoRegionID: jppsoRegion.ID, - OconusRateAreaID: oconusRateArea.ID, - } - suite.MustSave(&gblocAors) + jppsoRegion, err := models.FetchJppsoRegionByCode(suite.DB(), "MAPK") + suite.NotNil(jppsoRegion) + suite.Nil(err) + + gblocAors, err := models.FetchGblocAorsByJppsoCodeRateAreaDept(suite.DB(), jppsoRegion.ID.String(), oconusRateArea.ID.String(), models.DepartmentIndicatorARMY.String()) + suite.NotNil(gblocAors) + suite.Nil(err) newOrdersType := internalmessages.OrdersTypePERMANENTCHANGEOFSTATION newOrdersNumber := "123456" diff --git a/pkg/models/address_test.go b/pkg/models/address_test.go index 63656953d3c..1bb620b4f84 100644 --- a/pkg/models/address_test.go +++ b/pkg/models/address_test.go @@ -197,7 +197,7 @@ func (suite *ModelSuite) TestPartialAddressFormat() { } func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { - setupDataForOconusDutyLocation := func(postalCode string) (m.ReRateArea, m.OconusRateArea, m.UsPostRegionCity, m.DutyLocation) { + setupDataForOconusDutyLocation := func(postalCode string) (m.OconusRateArea, m.UsPostRegionCity, m.DutyLocation) { usprc, err := m.FindByZipCode(suite.AppContextForTest().DB(), postalCode) suite.NotNil(usprc) suite.FatalNoError(err) @@ -229,34 +229,24 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { Contract: contract, }, }) + suite.NotNil(rateArea) + suite.Nil(err) us_country, err := m.FetchCountryByCode(suite.DB(), "US") suite.NotNil(us_country) suite.Nil(err) - oconusRateArea := m.OconusRateArea{ - ID: uuid.Must(uuid.NewV4()), - RateAreaId: rateArea.ID, - CountryId: us_country.ID, - UsPostRegionCityId: usprc.ID, - Active: true, - } - verrs, err := suite.DB().ValidateAndCreate(&oconusRateArea) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(err.Error()) - } + oconusRateArea, err := m.FetchOconusRateAreaByCityId(suite.DB(), usprc.ID.String()) + suite.NotNil(oconusRateArea) + suite.Nil(err) - return rateArea, oconusRateArea, *usprc, originDutyLocation + return *oconusRateArea, *usprc, originDutyLocation } suite.Run("fetches duty location GBLOC for AK address, Zone II AirForce", func() { - _, oconusRateArea, _, originDutyLocation := setupDataForOconusDutyLocation("99707") + oconusRateArea, _, originDutyLocation := setupDataForOconusDutyLocation("99707") airForce := m.AffiliationAIRFORCE - defaultDepartmentIndicator := m.DepartmentIndicatorAIRANDSPACEFORCE.String() serviceMember := factory.BuildServiceMember(suite.DB(), []factory.Customization{ { Model: m.ServiceMember{ @@ -265,18 +255,13 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { }, }, nil) - jppsoRegion := m.JppsoRegions{ - Name: "JPPSO Elmendorf-Richardson", - Code: "MBFL", - } - suite.MustSave(&jppsoRegion) + jppsoRegion, err := m.FetchJppsoRegionByCode(suite.DB(), "MBFL") + suite.NotNil(jppsoRegion) + suite.Nil(err) - gblocAors := m.GblocAors{ - JppsoRegionID: jppsoRegion.ID, - OconusRateAreaID: oconusRateArea.ID, - DepartmentIndicator: &defaultDepartmentIndicator, - } - suite.MustSave(&gblocAors) + gblocAors, err := m.FetchGblocAorsByJppsoCodeRateAreaDept(suite.DB(), jppsoRegion.ID.String(), oconusRateArea.ID.String(), m.DepartmentIndicatorAIRANDSPACEFORCE.String()) + suite.NotNil(gblocAors) + suite.Nil(err) gbloc, err := m.FetchAddressGbloc(suite.DB(), originDutyLocation.Address, serviceMember) suite.NoError(err) @@ -285,10 +270,9 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { }) suite.Run("fetches duty location GBLOC for AK address, Zone II Army", func() { - _, oconusRateArea, _, originDutyLocation := setupDataForOconusDutyLocation("99707") + oconusRateArea, _, originDutyLocation := setupDataForOconusDutyLocation("99707") army := m.AffiliationARMY - defaultDepartmentIndicator := m.DepartmentIndicatorARMY.String() serviceMember := factory.BuildServiceMember(suite.DB(), []factory.Customization{ { Model: m.ServiceMember{ @@ -297,18 +281,13 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { }, }, nil) - jppsoRegion := m.JppsoRegions{ - Name: "JPPSO-Northwest", - Code: "JEAT", - } - suite.MustSave(&jppsoRegion) + jppsoRegion, err := m.FetchJppsoRegionByCode(suite.DB(), "JEAT") + suite.NotNil(jppsoRegion) + suite.Nil(err) - gblocAors := m.GblocAors{ - JppsoRegionID: jppsoRegion.ID, - OconusRateAreaID: oconusRateArea.ID, - DepartmentIndicator: &defaultDepartmentIndicator, - } - suite.MustSave(&gblocAors) + gblocAors, err := m.FetchGblocAorsByJppsoCodeRateAreaDept(suite.DB(), jppsoRegion.ID.String(), oconusRateArea.ID.String(), m.DepartmentIndicatorARMY.String()) + suite.NotNil(gblocAors) + suite.Nil(err) gbloc, err := m.FetchAddressGbloc(suite.DB(), originDutyLocation.Address, serviceMember) suite.NoError(err) @@ -317,10 +296,9 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { }) suite.Run("fetches duty location GBLOC for AK Cordova address, Zone IV", func() { - _, oconusRateArea, _, originDutyLocation := setupDataForOconusDutyLocation("99574") + oconusRateArea, _, originDutyLocation := setupDataForOconusDutyLocation("99574") army := m.AffiliationARMY - defaultDepartmentIndicator := m.DepartmentIndicatorARMY.String() serviceMember := factory.BuildServiceMember(suite.DB(), []factory.Customization{ { Model: m.ServiceMember{ @@ -329,18 +307,13 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { }, }, nil) - jppsoRegion := m.JppsoRegions{ - Name: "USCG Base Kodiak", - Code: "MAPS", - } - suite.MustSave(&jppsoRegion) + jppsoRegion, err := m.FetchJppsoRegionByCode(suite.DB(), "MAPS") + suite.NotNil(jppsoRegion) + suite.Nil(err) - gblocAors := m.GblocAors{ - JppsoRegionID: jppsoRegion.ID, - OconusRateAreaID: oconusRateArea.ID, - DepartmentIndicator: &defaultDepartmentIndicator, - } - suite.MustSave(&gblocAors) + gblocAors, err := m.FetchGblocAorsByJppsoCodeRateAreaDept(suite.DB(), jppsoRegion.ID.String(), oconusRateArea.ID.String(), m.DepartmentIndicatorARMY.String()) + suite.NotNil(gblocAors) + suite.Nil(err) gbloc, err := m.FetchAddressGbloc(suite.DB(), originDutyLocation.Address, serviceMember) suite.NoError(err) @@ -349,7 +322,7 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { }) suite.Run("fetches duty location GBLOC for AK NOT Cordova address, Zone IV", func() { - _, oconusRateArea, _, originDutyLocation := setupDataForOconusDutyLocation("99803") + oconusRateArea, _, originDutyLocation := setupDataForOconusDutyLocation("99803") army := m.AffiliationARMY defaultDepartmentIndicator := m.DepartmentIndicatorARMY.String() diff --git a/pkg/models/gbloc_aors.go b/pkg/models/gbloc_aors.go index e4fa1612355..ee107ba28f0 100644 --- a/pkg/models/gbloc_aors.go +++ b/pkg/models/gbloc_aors.go @@ -3,6 +3,7 @@ package models import ( "time" + "github.com/gobuffalo/pop/v6" "github.com/gofrs/uuid" ) @@ -19,3 +20,17 @@ type GblocAors struct { func (c GblocAors) TableName() string { return "gbloc_aors" } + +func FetchGblocAorsByJppsoCodeRateAreaDept(db *pop.Connection, jppsoRegionId string, oconusRateAreaId string, deptInd string) (*GblocAors, error) { + var gblocAors GblocAors + err := db.Q(). + InnerJoin("jppso_regions jr", "gbloc_aors.jppso_regions_id = jr.id"). + Where("gbloc_aors.oconus_rate_area_id = ?", oconusRateAreaId). + Where("gbloc_aors.department_indicator = ?", deptInd). + Where("jr.id = ?", jppsoRegionId). + First(&gblocAors) + if err != nil { + return nil, err + } + return &gblocAors, nil +} diff --git a/pkg/models/jppso_regions.go b/pkg/models/jppso_regions.go index 0788c78abb2..ea693f47633 100644 --- a/pkg/models/jppso_regions.go +++ b/pkg/models/jppso_regions.go @@ -1,8 +1,10 @@ package models import ( + "fmt" "time" + "github.com/gobuffalo/pop/v6" "github.com/gofrs/uuid" ) @@ -18,3 +20,27 @@ type JppsoRegions struct { func (c JppsoRegions) TableName() string { return "jppso_regions" } + +func FetchJppsoRegionByCode(db *pop.Connection, code string) (*JppsoRegions, error) { + // var jppsoRegions JppsoRegions + // err := db.Q(). + // Where("jppso_regions.code = ?", code). + // First(&jppsoRegions) + // if err != nil { + // return nil, err + // } + // return &jppsoRegions, nil + fmt.Println("*** code") + fmt.Println(code) + var jppsoRegions JppsoRegions + + err := db.RawQuery("SELECT * FROM jppso_regions WHERE code = 'MAPK'"). + First(&jppsoRegions) + + if err != nil { + fmt.Println(err) + return nil, err + } + + return &jppsoRegions, nil +} diff --git a/pkg/models/re_oconus_rate_areas.go b/pkg/models/re_oconus_rate_areas.go index 72b85773159..94d7257c214 100644 --- a/pkg/models/re_oconus_rate_areas.go +++ b/pkg/models/re_oconus_rate_areas.go @@ -3,6 +3,7 @@ package models import ( "time" + "github.com/gobuffalo/pop/v6" "github.com/gofrs/uuid" ) @@ -19,3 +20,25 @@ type OconusRateArea struct { func (o OconusRateArea) TableName() string { return "re_oconus_rate_areas" } + +func FetchOconusRateAreaByCityId(db *pop.Connection, usprc string) (*OconusRateArea, error) { + // var reOconusRateArea OconusRateArea + // err := db.Q(). + // Where("re_oconus_rate_areas.us_post_region_cities_id = ?", usprc). + // First(&reOconusRateArea) + // if err != nil { + // return nil, err + // } + // return &reOconusRateArea, nil + + var reOconusRateArea OconusRateArea + + err := db.RawQuery("SELECT * FROM re_oconus_rate_areas WHERE us_post_region_cities_id = ?", usprc). + First(&reOconusRateArea) + + if err != nil { + return nil, err + } + + return &reOconusRateArea, nil +} From 56aeb729d7d29dd5ff0dd45d7ddc452491fce78a Mon Sep 17 00:00:00 2001 From: pambecker Date: Tue, 21 Jan 2025 16:03:26 +0000 Subject: [PATCH 26/32] fix test data --- pkg/handlers/ghcapi/orders_test.go | 36 +++++--------- pkg/handlers/internalapi/orders_test.go | 6 +-- pkg/models/address_test.go | 65 +++++++++++++++++++------ pkg/models/gbloc_aors.go | 4 +- pkg/models/jppso_regions.go | 18 +------ pkg/models/re_oconus_rate_areas.go | 26 +++++----- pkg/models/us_post_region_city.go | 16 ++++++ scripts/db-truncate | 3 +- 8 files changed, 99 insertions(+), 75 deletions(-) diff --git a/pkg/handlers/ghcapi/orders_test.go b/pkg/handlers/ghcapi/orders_test.go index 4df0e26e8aa..5e75301d8cf 100644 --- a/pkg/handlers/ghcapi/orders_test.go +++ b/pkg/handlers/ghcapi/orders_test.go @@ -152,36 +152,24 @@ func (suite *HandlerSuite) TestCreateOrderWithOCONUSValues() { Contract: contract, }, }) + suite.NotNil(rateArea) + suite.Nil(err) us_country, err := models.FetchCountryByCode(suite.DB(), "US") suite.NotNil(us_country) suite.Nil(err) - oconusRateArea := models.OconusRateArea{ - ID: uuid.Must(uuid.NewV4()), - RateAreaId: rateArea.ID, - CountryId: us_country.ID, - UsPostRegionCityId: usprc.ID, - Active: true, - } - verrs, err := suite.DB().ValidateAndCreate(&oconusRateArea) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(err.Error()) - } - jppsoRegion := models.JppsoRegions{ - Name: "USCG Base Ketchikan", - Code: "MAPK", - } - suite.MustSave(&jppsoRegion) + oconusRateArea, err := models.FetchOconusRateAreaByCityId(suite.DB(), usprc.ID.String()) + suite.NotNil(oconusRateArea) + suite.Nil(err) - gblocAors := models.GblocAors{ - JppsoRegionID: jppsoRegion.ID, - OconusRateAreaID: oconusRateArea.ID, - } - suite.MustSave(&gblocAors) + jppsoRegion, err := models.FetchJppsoRegionByCode(suite.DB(), "MAPK") + suite.NotNil(jppsoRegion) + suite.Nil(err) + + gblocAors, err := models.FetchGblocAorsByJppsoCodeRateAreaDept(suite.DB(), jppsoRegion.ID, oconusRateArea.ID, models.DepartmentIndicatorARMY.String()) + suite.NotNil(gblocAors) + suite.Nil(err) factory.FetchOrBuildDefaultContractor(suite.AppContextForTest().DB(), nil, nil) req := httptest.NewRequest("POST", "/orders", nil) diff --git a/pkg/handlers/internalapi/orders_test.go b/pkg/handlers/internalapi/orders_test.go index 452a19bc2d1..9531c43e9a6 100644 --- a/pkg/handlers/internalapi/orders_test.go +++ b/pkg/handlers/internalapi/orders_test.go @@ -184,7 +184,7 @@ func (suite *HandlerSuite) TestCreateOrder() { suite.NotNil(jppsoRegion) suite.Nil(err) - gblocAors, err := models.FetchGblocAorsByJppsoCodeRateAreaDept(suite.DB(), jppsoRegion.ID.String(), oconusRateArea.ID.String(), models.DepartmentIndicatorARMY.String()) + gblocAors, err := models.FetchGblocAorsByJppsoCodeRateAreaDept(suite.DB(), jppsoRegion.ID, oconusRateArea.ID, models.DepartmentIndicatorARMY.String()) suite.NotNil(gblocAors) suite.Nil(err) @@ -308,7 +308,7 @@ func (suite *HandlerSuite) TestCreateOrder() { suite.NotNil(jppsoRegion) suite.Nil(err) - gblocAors, err := models.FetchGblocAorsByJppsoCodeRateAreaDept(suite.DB(), jppsoRegion.ID.String(), oconusRateArea.ID.String(), models.DepartmentIndicatorARMY.String()) + gblocAors, err := models.FetchGblocAorsByJppsoCodeRateAreaDept(suite.DB(), jppsoRegion.ID, oconusRateArea.ID, models.DepartmentIndicatorARMY.String()) suite.NotNil(gblocAors) suite.Nil(err) @@ -906,7 +906,7 @@ func (suite *HandlerSuite) TestUpdateOrdersHandler() { suite.NotNil(jppsoRegion) suite.Nil(err) - gblocAors, err := models.FetchGblocAorsByJppsoCodeRateAreaDept(suite.DB(), jppsoRegion.ID.String(), oconusRateArea.ID.String(), models.DepartmentIndicatorARMY.String()) + gblocAors, err := models.FetchGblocAorsByJppsoCodeRateAreaDept(suite.DB(), jppsoRegion.ID, oconusRateArea.ID, models.DepartmentIndicatorARMY.String()) suite.NotNil(gblocAors) suite.Nil(err) diff --git a/pkg/models/address_test.go b/pkg/models/address_test.go index 1bb620b4f84..4cdbe2f5482 100644 --- a/pkg/models/address_test.go +++ b/pkg/models/address_test.go @@ -259,7 +259,7 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { suite.NotNil(jppsoRegion) suite.Nil(err) - gblocAors, err := m.FetchGblocAorsByJppsoCodeRateAreaDept(suite.DB(), jppsoRegion.ID.String(), oconusRateArea.ID.String(), m.DepartmentIndicatorAIRANDSPACEFORCE.String()) + gblocAors, err := m.FetchGblocAorsByJppsoCodeRateAreaDept(suite.DB(), jppsoRegion.ID, oconusRateArea.ID, m.DepartmentIndicatorAIRANDSPACEFORCE.String()) suite.NotNil(gblocAors) suite.Nil(err) @@ -285,7 +285,7 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { suite.NotNil(jppsoRegion) suite.Nil(err) - gblocAors, err := m.FetchGblocAorsByJppsoCodeRateAreaDept(suite.DB(), jppsoRegion.ID.String(), oconusRateArea.ID.String(), m.DepartmentIndicatorARMY.String()) + gblocAors, err := m.FetchGblocAorsByJppsoCodeRateAreaDept(suite.DB(), jppsoRegion.ID, oconusRateArea.ID, m.DepartmentIndicatorARMY.String()) suite.NotNil(gblocAors) suite.Nil(err) @@ -296,8 +296,47 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { }) suite.Run("fetches duty location GBLOC for AK Cordova address, Zone IV", func() { - oconusRateArea, _, originDutyLocation := setupDataForOconusDutyLocation("99574") + usprc, err := m.FindByZipCodeAndCity(suite.AppContextForTest().DB(), "99574", "CORDOVA") + suite.NotNil(usprc) + suite.FatalNoError(err) + address := factory.BuildAddress(suite.DB(), []factory.Customization{ + { + Model: m.Address{ + IsOconus: m.BoolPointer(true), + UsPostRegionCityID: &usprc.ID, + }, + }, + }, nil) + originDutyLocation := factory.BuildDutyLocation(suite.DB(), []factory.Customization{ + { + Model: address, + LinkOnly: true, + Type: &factory.Addresses.DutyLocationAddress, + }, + }, nil) + + contract := testdatagen.FetchOrMakeReContract(suite.DB(), testdatagen.Assertions{}) + + rateAreaCode := uuid.Must(uuid.NewV4()).String()[0:5] + rateArea := testdatagen.FetchOrMakeReRateArea(suite.DB(), testdatagen.Assertions{ + ReRateArea: m.ReRateArea{ + ContractID: contract.ID, + IsOconus: true, + Name: fmt.Sprintf("Alaska-%s", rateAreaCode), + Contract: contract, + }, + }) + suite.NotNil(rateArea) + suite.Nil(err) + + us_country, err := m.FetchCountryByCode(suite.DB(), "US") + suite.NotNil(us_country) + suite.Nil(err) + + oconusRateArea, err := m.FetchOconusRateAreaByCityId(suite.DB(), usprc.ID.String()) + suite.NotNil(oconusRateArea) + suite.Nil(err) army := m.AffiliationARMY serviceMember := factory.BuildServiceMember(suite.DB(), []factory.Customization{ { @@ -311,7 +350,7 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { suite.NotNil(jppsoRegion) suite.Nil(err) - gblocAors, err := m.FetchGblocAorsByJppsoCodeRateAreaDept(suite.DB(), jppsoRegion.ID.String(), oconusRateArea.ID.String(), m.DepartmentIndicatorARMY.String()) + gblocAors, err := m.FetchGblocAorsByJppsoCodeRateAreaDept(suite.DB(), jppsoRegion.ID, oconusRateArea.ID, m.DepartmentIndicatorARMY.String()) suite.NotNil(gblocAors) suite.Nil(err) @@ -325,7 +364,6 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { oconusRateArea, _, originDutyLocation := setupDataForOconusDutyLocation("99803") army := m.AffiliationARMY - defaultDepartmentIndicator := m.DepartmentIndicatorARMY.String() serviceMember := factory.BuildServiceMember(suite.DB(), []factory.Customization{ { Model: m.ServiceMember{ @@ -334,18 +372,13 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { }, }, nil) - jppsoRegion := m.JppsoRegions{ - Name: "USCG Base Ketchikan", - Code: "MAPK", - } - suite.MustSave(&jppsoRegion) + jppsoRegion, err := m.FetchJppsoRegionByCode(suite.DB(), "MAPK") + suite.NotNil(jppsoRegion) + suite.Nil(err) - gblocAors := m.GblocAors{ - JppsoRegionID: jppsoRegion.ID, - OconusRateAreaID: oconusRateArea.ID, - DepartmentIndicator: &defaultDepartmentIndicator, - } - suite.MustSave(&gblocAors) + gblocAors, err := m.FetchGblocAorsByJppsoCodeRateAreaDept(suite.DB(), jppsoRegion.ID, oconusRateArea.ID, m.DepartmentIndicatorARMY.String()) + suite.NotNil(gblocAors) + suite.Nil(err) gbloc, err := m.FetchAddressGbloc(suite.DB(), originDutyLocation.Address, serviceMember) suite.NoError(err) diff --git a/pkg/models/gbloc_aors.go b/pkg/models/gbloc_aors.go index ee107ba28f0..132de00bbb1 100644 --- a/pkg/models/gbloc_aors.go +++ b/pkg/models/gbloc_aors.go @@ -21,12 +21,12 @@ func (c GblocAors) TableName() string { return "gbloc_aors" } -func FetchGblocAorsByJppsoCodeRateAreaDept(db *pop.Connection, jppsoRegionId string, oconusRateAreaId string, deptInd string) (*GblocAors, error) { +func FetchGblocAorsByJppsoCodeRateAreaDept(db *pop.Connection, jppsoRegionId uuid.UUID, oconusRateAreaId uuid.UUID, deptInd string) (*GblocAors, error) { var gblocAors GblocAors err := db.Q(). InnerJoin("jppso_regions jr", "gbloc_aors.jppso_regions_id = jr.id"). Where("gbloc_aors.oconus_rate_area_id = ?", oconusRateAreaId). - Where("gbloc_aors.department_indicator = ?", deptInd). + Where("(gbloc_aors.department_indicator = ? or gbloc_aors.department_indicator is null)", deptInd). Where("jr.id = ?", jppsoRegionId). First(&gblocAors) if err != nil { diff --git a/pkg/models/jppso_regions.go b/pkg/models/jppso_regions.go index ea693f47633..aefb3ea106f 100644 --- a/pkg/models/jppso_regions.go +++ b/pkg/models/jppso_regions.go @@ -1,7 +1,6 @@ package models import ( - "fmt" "time" "github.com/gobuffalo/pop/v6" @@ -22,25 +21,12 @@ func (c JppsoRegions) TableName() string { } func FetchJppsoRegionByCode(db *pop.Connection, code string) (*JppsoRegions, error) { - // var jppsoRegions JppsoRegions - // err := db.Q(). - // Where("jppso_regions.code = ?", code). - // First(&jppsoRegions) - // if err != nil { - // return nil, err - // } - // return &jppsoRegions, nil - fmt.Println("*** code") - fmt.Println(code) var jppsoRegions JppsoRegions - - err := db.RawQuery("SELECT * FROM jppso_regions WHERE code = 'MAPK'"). + err := db.Q(). + Where("jppso_regions.code = ?", code). First(&jppsoRegions) - if err != nil { - fmt.Println(err) return nil, err } - return &jppsoRegions, nil } diff --git a/pkg/models/re_oconus_rate_areas.go b/pkg/models/re_oconus_rate_areas.go index 3627a0d8800..e86bae46251 100644 --- a/pkg/models/re_oconus_rate_areas.go +++ b/pkg/models/re_oconus_rate_areas.go @@ -35,23 +35,23 @@ func FetchOconusRateArea(db *pop.Connection, zip string) (*OconusRateArea, error } func FetchOconusRateAreaByCityId(db *pop.Connection, usprc string) (*OconusRateArea, error) { - // var reOconusRateArea OconusRateArea - // err := db.Q(). - // Where("re_oconus_rate_areas.us_post_region_cities_id = ?", usprc). - // First(&reOconusRateArea) - // if err != nil { - // return nil, err - // } - // return &reOconusRateArea, nil - var reOconusRateArea OconusRateArea - - err := db.RawQuery("SELECT * FROM re_oconus_rate_areas WHERE us_post_region_cities_id = ?", usprc). + err := db.Q(). + Where("re_oconus_rate_areas.us_post_region_cities_id = ?", usprc). First(&reOconusRateArea) - if err != nil { return nil, err } - return &reOconusRateArea, nil + + // var reOconusRateArea OconusRateArea + + // err := db.RawQuery("SELECT * FROM re_oconus_rate_areas WHERE us_post_region_cities_id = ?", usprc). + // First(&reOconusRateArea) + + // if err != nil { + // return nil, err + // } + + // return &reOconusRateArea, nil } diff --git a/pkg/models/us_post_region_city.go b/pkg/models/us_post_region_city.go index 84e9a01941c..7267134f044 100644 --- a/pkg/models/us_post_region_city.go +++ b/pkg/models/us_post_region_city.go @@ -76,3 +76,19 @@ func FindByZipCode(db *pop.Connection, zipCode string) (*UsPostRegionCity, error } return &usprc, nil } + +func FindByZipCodeAndCity(db *pop.Connection, zipCode string, city string) (*UsPostRegionCity, error) { + var usprc UsPostRegionCity + err := db.Where("uspr_zip_id = ?", zipCode). + Where("u_s_post_region_city_nm = ?", city). + First(&usprc) + if err != nil { + switch err { + case sql.ErrNoRows: + return nil, apperror.NewEventError("No UsPostRegionCity found for provided zip code "+zipCode+" and city "+city+".", err) + default: + return nil, err + } + } + return &usprc, nil +} diff --git a/scripts/db-truncate b/scripts/db-truncate index 341412b4ab0..9f12410470b 100755 --- a/scripts/db-truncate +++ b/scripts/db-truncate @@ -15,7 +15,8 @@ BEGIN 'ports','port_locations', 're_fsc_multipliers', 'ghc_diesel_fuel_prices', 're_zip3s','zip3_distances', 're_contracts', 're_domestic_service_areas', 're_intl_prices', 're_intl_other_prices', 're_domestic_linehaul_prices', - 're_domestic_service_area_prices', 're_domestic_other_prices')) LOOP + 're_domestic_service_area_prices', 're_domestic_other_prices', + 'jppso_regions', 'jppso_region_state_assignments', 'gbloc_aors')) LOOP EXECUTE 'TRUNCATE TABLE ' || quote_ident(r.tablename) || ' CASCADE'; END LOOP; END \$\$; From d9c711f2fd4590c4e76a7993f2344e93e213596f Mon Sep 17 00:00:00 2001 From: pambecker Date: Tue, 21 Jan 2025 18:26:58 +0000 Subject: [PATCH 27/32] tests again --- pkg/handlers/ghcapi/orders_test.go | 1 - pkg/handlers/internalapi/orders_test.go | 1 - pkg/models/address_test.go | 1 - .../transportation_office_fetcher_test.go | 384 ++++-------------- 4 files changed, 68 insertions(+), 319 deletions(-) diff --git a/pkg/handlers/ghcapi/orders_test.go b/pkg/handlers/ghcapi/orders_test.go index 5e75301d8cf..96e5c1b2381 100644 --- a/pkg/handlers/ghcapi/orders_test.go +++ b/pkg/handlers/ghcapi/orders_test.go @@ -153,7 +153,6 @@ func (suite *HandlerSuite) TestCreateOrderWithOCONUSValues() { }, }) suite.NotNil(rateArea) - suite.Nil(err) us_country, err := models.FetchCountryByCode(suite.DB(), "US") suite.NotNil(us_country) diff --git a/pkg/handlers/internalapi/orders_test.go b/pkg/handlers/internalapi/orders_test.go index 9531c43e9a6..65dd2ce9cfb 100644 --- a/pkg/handlers/internalapi/orders_test.go +++ b/pkg/handlers/internalapi/orders_test.go @@ -294,7 +294,6 @@ func (suite *HandlerSuite) TestCreateOrder() { }, }) suite.NotNil(rateArea) - suite.Nil(err) us_country, err := models.FetchCountryByCode(suite.DB(), "US") suite.NotNil(us_country) diff --git a/pkg/models/address_test.go b/pkg/models/address_test.go index 4cdbe2f5482..9dfe5a7fa1c 100644 --- a/pkg/models/address_test.go +++ b/pkg/models/address_test.go @@ -328,7 +328,6 @@ func (suite *ModelSuite) Test_FetchDutyLocationGblocForAK() { }, }) suite.NotNil(rateArea) - suite.Nil(err) us_country, err := m.FetchCountryByCode(suite.DB(), "US") suite.NotNil(us_country) diff --git a/pkg/services/transportation_office/transportation_office_fetcher_test.go b/pkg/services/transportation_office/transportation_office_fetcher_test.go index 9ce5bab765c..cd8345a8aa6 100644 --- a/pkg/services/transportation_office/transportation_office_fetcher_test.go +++ b/pkg/services/transportation_office/transportation_office_fetcher_test.go @@ -3,16 +3,15 @@ package transportationoffice import ( "fmt" "testing" - "time" "github.com/gofrs/uuid" "github.com/stretchr/testify/suite" - "github.com/transcom/mymove/pkg/appcontext" "github.com/transcom/mymove/pkg/auth" "github.com/transcom/mymove/pkg/factory" "github.com/transcom/mymove/pkg/models" "github.com/transcom/mymove/pkg/services" + "github.com/transcom/mymove/pkg/testdatagen" "github.com/transcom/mymove/pkg/testingsuite" ) @@ -190,19 +189,6 @@ func (suite *TransportationOfficeServiceSuite) Test_FindCounselingOffices() { } func (suite *TransportationOfficeServiceSuite) Test_Oconus_AK_FindCounselingOffices() { - testContractName := "Test_findOconusGblocDepartmentIndicator" - testContractCode := "Test_findOconusGblocDepartmentIndicator_Code" - testPostalCode := "99790" - testPostalCode2 := "99701" - testGbloc := "ABCD" - testGbloc2 := "EFGH" - testTransportationName := "TEST - PPO" - testTransportationName2 := "TEST - PPO2" - - serviceAffiliations := []models.ServiceMemberAffiliation{models.AffiliationARMY, - models.AffiliationNAVY, models.AffiliationMARINES, models.AffiliationAIRFORCE, models.AffiliationCOASTGUARD, - models.AffiliationSPACEFORCE} - setupServiceMember := func(serviceMemberAffiliation models.ServiceMemberAffiliation) models.ServiceMember { customServiceMember := models.ServiceMember{ FirstName: models.StringPointer("Gregory"), @@ -234,48 +220,19 @@ func (suite *TransportationOfficeServiceSuite) Test_Oconus_AK_FindCounselingOffi return serviceMember } - createContract := func(appCtx appcontext.AppContext, contractCode string, contractName string) (*models.ReContract, error) { - // See if contract code already exists. - exists, err := appCtx.DB().Where("code = ?", contractCode).Exists(&models.ReContract{}) - if err != nil { - return nil, fmt.Errorf("could not determine if contract code [%s] existed: %w", contractCode, err) - } - if exists { - return nil, fmt.Errorf("the provided contract code [%s] already exists", contractCode) - } + setupDataForOconusSearchCounselingOffice := func(postalCode string, gbloc string) (models.ReRateArea, models.OconusRateArea, models.UsPostRegionCity, models.DutyLocation) { + contract := testdatagen.FetchOrMakeReContract(suite.DB(), testdatagen.Assertions{}) - // Contract code is new; insert it. - contract := models.ReContract{ - Code: contractCode, - Name: contractName, - } - verrs, err := appCtx.DB().ValidateAndSave(&contract) - if verrs.HasAny() { - return nil, fmt.Errorf("validation errors when saving contract [%+v]: %w", contract, verrs) - } - if err != nil { - return nil, fmt.Errorf("could not save contract [%+v]: %w", contract, err) - } - return &contract, nil - } - - setupDataForOconusSearchCounselingOffice := func(contract models.ReContract, postalCode string, gbloc string, transportationName string) (models.ReRateArea, models.OconusRateArea, models.UsPostRegionCity, models.DutyLocation) { rateAreaCode := uuid.Must(uuid.NewV4()).String()[0:5] - rateArea := models.ReRateArea{ - ID: uuid.Must(uuid.NewV4()), - ContractID: contract.ID, - IsOconus: true, - Code: rateAreaCode, - Name: fmt.Sprintf("Alaska-%s", rateAreaCode), - Contract: contract, - } - verrs, err := suite.DB().ValidateAndCreate(&rateArea) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(err.Error()) - } + rateArea := testdatagen.FetchOrMakeReRateArea(suite.DB(), testdatagen.Assertions{ + ReRateArea: models.ReRateArea{ + ContractID: contract.ID, + IsOconus: true, + Name: fmt.Sprintf("Alaska-%s", rateAreaCode), + Contract: contract, + }, + }) + suite.NotNil(rateArea) us_country, err := models.FetchCountryByCode(suite.DB(), "US") suite.NotNil(us_country) @@ -285,32 +242,18 @@ func (suite *TransportationOfficeServiceSuite) Test_Oconus_AK_FindCounselingOffi suite.NotNil(usprc) suite.FatalNoError(err) - oconusRateArea := models.OconusRateArea{ - ID: uuid.Must(uuid.NewV4()), - RateAreaId: rateArea.ID, - CountryId: us_country.ID, - UsPostRegionCityId: usprc.ID, - Active: true, - } - verrs, err = suite.DB().ValidateAndCreate(&oconusRateArea) - if verrs.HasAny() { - suite.Fail(verrs.Error()) - } - if err != nil { - suite.Fail(err.Error()) - } + oconusRateArea, err := models.FetchOconusRateAreaByCityId(suite.DB(), usprc.ID.String()) + suite.NotNil(oconusRateArea) + suite.Nil(err) - address := models.Address{ - StreetAddress1: "n/a", - City: "SomeCity", - State: "AK", - PostalCode: postalCode, - County: models.StringPointer("SomeCounty"), - IsOconus: models.BoolPointer(true), - UsPostRegionCityID: &usprc.ID, - CountryId: models.UUIDPointer(us_country.ID), - } - suite.MustSave(&address) + address := factory.BuildAddress(suite.DB(), []factory.Customization{ + { + Model: models.Address{ + IsOconus: models.BoolPointer(true), + UsPostRegionCityID: &usprc.ID, + }, + }, + }, nil) origDutyLocation := factory.BuildDutyLocation(suite.DB(), []factory.Customization{ { @@ -321,7 +264,7 @@ func (suite *TransportationOfficeServiceSuite) Test_Oconus_AK_FindCounselingOffi }, { Model: models.TransportationOffice{ - Name: transportationName, + Name: "TEST - PPO", Gbloc: gbloc, ProvidesCloseout: true, }, @@ -331,148 +274,68 @@ func (suite *TransportationOfficeServiceSuite) Test_Oconus_AK_FindCounselingOffi found_duty_location, _ := models.FetchDutyLocation(suite.DB(), origDutyLocation.ID) - return rateArea, oconusRateArea, *usprc, found_duty_location + return rateArea, *oconusRateArea, *usprc, found_duty_location } - suite.Run("success - findOconusGblocDepartmentIndicator - returns default GLOC for departmentAffiliation if no specific departmentAffilation mapping is defined", func() { - contract, err := createContract(suite.AppContextForTest(), testContractCode, testContractName) - suite.NotNil(contract) - suite.FatalNoError(err) - + suite.Run("success - findOconusGblocDepartmentIndicator - returns default GBLOC for departmentAffiliation if no specific departmentAffilation mapping is defined", func() { const fairbanksAlaskaPostalCode = "99790" - _, oconusRateArea, _, dutylocation := setupDataForOconusSearchCounselingOffice(*contract, fairbanksAlaskaPostalCode, testGbloc, testTransportationName) + _, oconusRateArea, _, dutylocation := setupDataForOconusSearchCounselingOffice(fairbanksAlaskaPostalCode, "JEAT") // setup department affiliation to GBLOC mappings - expected_gbloc := "TEST-GBLOC" - jppsoRegion := models.JppsoRegions{ - Code: expected_gbloc, - Name: "TEST PPM", - } - suite.MustSave(&jppsoRegion) - - gblocAors := models.GblocAors{ - JppsoRegionID: jppsoRegion.ID, - OconusRateAreaID: oconusRateArea.ID, - // DepartmentIndicator is nil, - } - suite.MustSave(&gblocAors) - - serviceAffiliations := []models.ServiceMemberAffiliation{models.AffiliationARMY, - models.AffiliationNAVY, models.AffiliationMARINES, models.AffiliationAIRFORCE, models.AffiliationCOASTGUARD, - models.AffiliationSPACEFORCE} - - // loop through and make sure all branches are using expected default GBLOC - for _, affiliation := range serviceAffiliations { - serviceMember := setupServiceMember(affiliation) - appCtx := suite.AppContextWithSessionForTest(&auth.Session{ - ServiceMemberID: serviceMember.ID, - }) - suite.Nil(err) - departmentIndictor, err := findOconusGblocDepartmentIndicator(appCtx, dutylocation) - suite.NotNil(departmentIndictor) - suite.Nil(err) - suite.Nil(departmentIndictor.DepartmentIndicator) - suite.Equal(expected_gbloc, departmentIndictor.Gbloc) - } - }) - - suite.Run("success - findOconusGblocDepartmentIndicator - returns specific GLOC for departmentAffiliation when a specific departmentAffilation mapping is defined", func() { - contract, err := createContract(suite.AppContextForTest(), testContractCode, testContractName) - suite.NotNil(contract) - suite.FatalNoError(err) + jppsoRegion, err := models.FetchJppsoRegionByCode(suite.DB(), "JEAT") + suite.NotNil(jppsoRegion) + suite.Nil(err) - _, oconusRateArea, _, dutylocation := setupDataForOconusSearchCounselingOffice(*contract, testPostalCode, testGbloc, testTransportationName) + gblocAors, err := models.FetchGblocAorsByJppsoCodeRateAreaDept(suite.DB(), jppsoRegion.ID, oconusRateArea.ID, models.DepartmentIndicatorARMY.String()) + suite.NotNil(gblocAors) + suite.Nil(err) - departmentIndicators := []models.DepartmentIndicator{models.DepartmentIndicatorARMY, - models.DepartmentIndicatorARMYCORPSOFENGINEERS, models.DepartmentIndicatorCOASTGUARD, - models.DepartmentIndicatorNAVYANDMARINES, models.DepartmentIndicatorAIRANDSPACEFORCE} + serviceMember := setupServiceMember(models.AffiliationARMY) + appCtx := suite.AppContextWithSessionForTest(&auth.Session{ + ServiceMemberID: serviceMember.ID, + }) + departmentIndictor, err := findOconusGblocDepartmentIndicator(appCtx, dutylocation) + suite.NotNil(departmentIndictor) + suite.Nil(err) + suite.Nil(departmentIndictor.DepartmentIndicator) + suite.Equal("JEAT", departmentIndictor.Gbloc) + }) - expectedAffiliationToDepartmentIndicatorMap := make(map[string]string, 0) - expectedAffiliationToDepartmentIndicatorMap[models.AffiliationARMY.String()] = models.DepartmentIndicatorARMY.String() - expectedAffiliationToDepartmentIndicatorMap[models.AffiliationNAVY.String()] = models.DepartmentIndicatorNAVYANDMARINES.String() - expectedAffiliationToDepartmentIndicatorMap[models.AffiliationMARINES.String()] = models.DepartmentIndicatorNAVYANDMARINES.String() - expectedAffiliationToDepartmentIndicatorMap[models.AffiliationAIRFORCE.String()] = models.DepartmentIndicatorAIRANDSPACEFORCE.String() - expectedAffiliationToDepartmentIndicatorMap[models.AffiliationCOASTGUARD.String()] = models.DepartmentIndicatorCOASTGUARD.String() - expectedAffiliationToDepartmentIndicatorMap[models.AffiliationSPACEFORCE.String()] = models.DepartmentIndicatorAIRANDSPACEFORCE.String() + suite.Run("success - findOconusGblocDepartmentIndicator - returns specific GBLOC for departmentAffiliation when a specific departmentAffilation mapping is defined -- simulate Zone 2 scenerio", func() { + const fairbanksAlaskaPostalCode = "99790" + _, oconusRateArea, _, dutylocation := setupDataForOconusSearchCounselingOffice(fairbanksAlaskaPostalCode, "MBFL") // setup department affiliation to GBLOC mappings - expected_gbloc := "TEST-GBLOC" - jppsoRegion := models.JppsoRegions{ - Code: expected_gbloc, - Name: "TEST PPM", - } - suite.MustSave(&jppsoRegion) + jppsoRegion, err := models.FetchJppsoRegionByCode(suite.DB(), "MBFL") + suite.NotNil(jppsoRegion) + suite.Nil(err) - defaultGblocAors := models.GblocAors{ - JppsoRegionID: jppsoRegion.ID, - OconusRateAreaID: oconusRateArea.ID, - //DepartmentIndicator is nil, - } - suite.MustSave(&defaultGblocAors) - - // setup specific departmentAffiliation mapping for each branch - for _, departmentIndicator := range departmentIndicators { - gblocAors := models.GblocAors{ - JppsoRegionID: jppsoRegion.ID, - OconusRateAreaID: oconusRateArea.ID, - DepartmentIndicator: models.StringPointer(departmentIndicator.String()), - } - suite.MustSave(&gblocAors) - } + gblocAors, err := models.FetchGblocAorsByJppsoCodeRateAreaDept(suite.DB(), jppsoRegion.ID, oconusRateArea.ID, models.DepartmentIndicatorAIRANDSPACEFORCE.String()) + suite.NotNil(gblocAors) + suite.Nil(err) // loop through and make sure all branches are using it's own dedicated GBLOC and not default - for _, affiliation := range serviceAffiliations { - serviceMember := setupServiceMember(affiliation) - appCtx := suite.AppContextWithSessionForTest(&auth.Session{ - ServiceMemberID: serviceMember.ID, - }) - suite.Nil(err) - departmentIndictor, err := findOconusGblocDepartmentIndicator(appCtx, dutylocation) - suite.NotNil(departmentIndictor) - suite.Nil(err) - suite.NotNil(departmentIndictor.DepartmentIndicator) - if match, ok := expectedAffiliationToDepartmentIndicatorMap[affiliation.String()]; ok { - // verify service member's affiliation matches on specific departmentIndicator mapping record - suite.Equal(match, *departmentIndictor.DepartmentIndicator) - } else { - suite.Fail(fmt.Sprintf("key does not exist for %s", affiliation.String())) - } - suite.Equal(expected_gbloc, departmentIndictor.Gbloc) - } - }) - - suite.Run("failure -- returns error when there are default and no department specific GBLOC", func() { - contract, err := createContract(suite.AppContextForTest(), testContractCode, testContractName) - suite.NotNil(contract) - suite.FatalNoError(err) - - _, _, _, dutylocation := setupDataForOconusSearchCounselingOffice(*contract, testPostalCode, testGbloc, testTransportationName) - - // No specific departmentAffiliation mapping or default were created. - // Expect an error response when nothing is found. serviceMember := setupServiceMember(models.AffiliationAIRFORCE) appCtx := suite.AppContextWithSessionForTest(&auth.Session{ ServiceMemberID: serviceMember.ID, }) suite.Nil(err) departmentIndictor, err := findOconusGblocDepartmentIndicator(appCtx, dutylocation) - suite.Nil(departmentIndictor) - suite.NotNil(err) + suite.NotNil(departmentIndictor) + suite.Nil(err) + suite.NotNil(departmentIndictor.DepartmentIndicator) + suite.Equal(models.DepartmentIndicatorAIRANDSPACEFORCE.String(), *departmentIndictor.DepartmentIndicator) + suite.Equal("MBFL", departmentIndictor.Gbloc) }) suite.Run("failure - findOconusGblocDepartmentIndicator - returns error when find service member ID fails", func() { - contract, err := createContract(suite.AppContextForTest(), testContractCode, testContractName) - suite.NotNil(contract) - suite.FatalNoError(err) - - _, _, _, dutylocation := setupDataForOconusSearchCounselingOffice(*contract, testPostalCode, testGbloc, testTransportationName) + _, _, _, dutylocation := setupDataForOconusSearchCounselingOffice("99714", "JEAT") appCtx := suite.AppContextWithSessionForTest(&auth.Session{ // create fake service member ID to raise NOT found error ServiceMemberID: uuid.Must(uuid.NewV4()), }) - suite.Nil(err) departmentIndictor, err := findOconusGblocDepartmentIndicator(appCtx, dutylocation) suite.Nil(departmentIndictor) suite.NotNil(err) @@ -489,33 +352,16 @@ func (suite *TransportationOfficeServiceSuite) Test_Oconus_AK_FindCounselingOffi }) suite.Run("success - offices using default departmentIndicator mapping", func() { - contract, err := createContract(suite.AppContextForTest(), testContractCode, testContractName) - suite.NotNil(contract) - suite.FatalNoError(err) - - _, oconusRateArea, _, dutylocation := setupDataForOconusSearchCounselingOffice(*contract, testPostalCode, testGbloc, testTransportationName) + _, oconusRateArea, _, dutylocation := setupDataForOconusSearchCounselingOffice("99619", "MAPS") // setup department affiliation to GBLOC mappings - jppsoRegion := models.JppsoRegions{ - Code: testGbloc, - Name: "TEST PPM", - } - suite.MustSave(&jppsoRegion) - - gblocAors := models.GblocAors{ - JppsoRegionID: jppsoRegion.ID, - OconusRateAreaID: oconusRateArea.ID, - // DepartmentIndicator is nil, - } - suite.MustSave(&gblocAors) + jppsoRegion, err := models.FetchJppsoRegionByCode(suite.DB(), "MAPS") + suite.NotNil(jppsoRegion) + suite.Nil(err) - postalCodeToGBLOC := models.PostalCodeToGBLOC{ - PostalCode: testPostalCode, - GBLOC: testGbloc, - CreatedAt: time.Now(), - UpdatedAt: time.Now(), - } - suite.MustSave(&postalCodeToGBLOC) + gblocAors, err := models.FetchGblocAorsByJppsoCodeRateAreaDept(suite.DB(), jppsoRegion.ID, oconusRateArea.ID, models.DepartmentIndicatorARMY.String()) + suite.NotNil(gblocAors) + suite.Nil(err) serviceMember := setupServiceMember(models.AffiliationAIRFORCE) appCtx := suite.AppContextWithSessionForTest(&auth.Session{ @@ -527,15 +373,15 @@ func (suite *TransportationOfficeServiceSuite) Test_Oconus_AK_FindCounselingOffi suite.NotNil(offices) suite.Nil(err) suite.Equal(1, len(offices)) - suite.Equal(testTransportationName, offices[0].Name) + suite.Equal("TEST - PPO", offices[0].Name) // add another transportation office factory.BuildTransportationOffice(suite.DB(), []factory.Customization{ { Model: models.TransportationOffice{ - Name: testTransportationName2, + Name: "TEST - PPO2", ProvidesCloseout: true, - Gbloc: testGbloc, + Gbloc: "MAPS", }, }, }, nil) @@ -545,100 +391,6 @@ func (suite *TransportationOfficeServiceSuite) Test_Oconus_AK_FindCounselingOffi suite.Equal(2, len(offices)) }) - suite.Run("success - returns correct office based on service affiliation -- simulate Zone 2 scenerio", func() { - contract, err := createContract(suite.AppContextForTest(), testContractCode, testContractName) - suite.NotNil(contract) - suite.FatalNoError(err) - - _, oconusRateArea, _, dutylocation := setupDataForOconusSearchCounselingOffice(*contract, testPostalCode, testGbloc, testTransportationName) - - // ****************************************************************************** - // setup department affiliation to GBLOC mappings for AF/SF - // ****************************************************************************** - jppsoRegion_AFSF := models.JppsoRegions{ - Code: testGbloc, - Name: "TEST PPO", - } - suite.MustSave(&jppsoRegion_AFSF) - - gblocAors_AFSF := models.GblocAors{ - JppsoRegionID: jppsoRegion_AFSF.ID, - OconusRateAreaID: oconusRateArea.ID, - DepartmentIndicator: models.StringPointer(models.DepartmentIndicatorAIRANDSPACEFORCE.String()), - } - suite.MustSave(&gblocAors_AFSF) - - postalCodeToGBLOC_AFSF := models.PostalCodeToGBLOC{ - PostalCode: testPostalCode, - GBLOC: testGbloc, - CreatedAt: time.Now(), - UpdatedAt: time.Now(), - } - suite.MustSave(&postalCodeToGBLOC_AFSF) - // ****************************************************************************** - - // ****************************************************************************** - // setup department affiliation to GBLOC mappings for other branches NOT AF/SF - // ****************************************************************************** - jppsoRegion_not_AFSF := models.JppsoRegions{ - Code: testGbloc2, - Name: "TEST PPO 2", - } - suite.MustSave(&jppsoRegion_not_AFSF) - - gblocAors_not_AFSF := models.GblocAors{ - JppsoRegionID: jppsoRegion_not_AFSF.ID, - OconusRateAreaID: oconusRateArea.ID, - } - suite.MustSave(&gblocAors_not_AFSF) - - postalCodeToGBLOC_not_AFSF := models.PostalCodeToGBLOC{ - PostalCode: testPostalCode2, - GBLOC: testGbloc2, - CreatedAt: time.Now(), - UpdatedAt: time.Now(), - } - suite.MustSave(&postalCodeToGBLOC_not_AFSF) - - // add transportation office for other branches not AF/SF - factory.BuildTransportationOffice(suite.DB(), []factory.Customization{ - { - Model: models.TransportationOffice{ - Name: testTransportationName2, - ProvidesCloseout: true, - Gbloc: testGbloc2, - }, - }, - }, nil) - // ****************************************************************************** - - for _, affiliation := range serviceAffiliations { - serviceMember := setupServiceMember(affiliation) - if affiliation == models.AffiliationAIRFORCE || affiliation == models.AffiliationSPACEFORCE { - appCtx := suite.AppContextWithSessionForTest(&auth.Session{ - ServiceMemberID: serviceMember.ID, - }) - offices, err := findCounselingOffice(appCtx, dutylocation.ID) - suite.NotNil(offices) - suite.Nil(err) - suite.Equal(1, len(offices)) - // verify expected office is for AF/SF and not for Navy ..etc.. - suite.Equal(testTransportationName, offices[0].Name) - suite.NotEqual(testTransportationName2, offices[0].Name) - } else { - appCtx := suite.AppContextWithSessionForTest(&auth.Session{ - ServiceMemberID: serviceMember.ID, - }) - offices, err := findCounselingOffice(appCtx, dutylocation.ID) - suite.NotNil(offices) - suite.Nil(err) - suite.Equal(1, len(offices)) - // verify expected office is for Navy ..etc.. and not AF/SF - suite.Equal(testTransportationName2, offices[0].Name) - suite.NotEqual(testTransportationName, offices[0].Name) - } - } - }) } func (suite *TransportationOfficeServiceSuite) Test_GetTransportationOffice() { From 9bf8011657ffba78f83c6a2dcdf847148099af74 Mon Sep 17 00:00:00 2001 From: pambecker Date: Tue, 21 Jan 2025 19:17:58 +0000 Subject: [PATCH 28/32] cleanup --- pkg/models/re_oconus_rate_areas.go | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/pkg/models/re_oconus_rate_areas.go b/pkg/models/re_oconus_rate_areas.go index e86bae46251..7003219ba9b 100644 --- a/pkg/models/re_oconus_rate_areas.go +++ b/pkg/models/re_oconus_rate_areas.go @@ -43,15 +43,4 @@ func FetchOconusRateAreaByCityId(db *pop.Connection, usprc string) (*OconusRateA return nil, err } return &reOconusRateArea, nil - - // var reOconusRateArea OconusRateArea - - // err := db.RawQuery("SELECT * FROM re_oconus_rate_areas WHERE us_post_region_cities_id = ?", usprc). - // First(&reOconusRateArea) - - // if err != nil { - // return nil, err - // } - - // return &reOconusRateArea, nil } From 5c9313c88a01ab9517b1b0bd4f4a989decdc9930 Mon Sep 17 00:00:00 2001 From: pambecker Date: Tue, 21 Jan 2025 20:22:01 +0000 Subject: [PATCH 29/32] cleanup --- pkg/handlers/internalapi/orders_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/handlers/internalapi/orders_test.go b/pkg/handlers/internalapi/orders_test.go index 65dd2ce9cfb..d203c0dbec5 100644 --- a/pkg/handlers/internalapi/orders_test.go +++ b/pkg/handlers/internalapi/orders_test.go @@ -133,8 +133,6 @@ func (suite *HandlerSuite) TestCreateOrder() { suite.Run("can create oconus orders", func() { usprc, err := models.FindByZipCode(suite.AppContextForTest().DB(), "99801") - fmt.Println("*** usprc") - fmt.Println(usprc.ID.String()) suite.NotNil(usprc) suite.FatalNoError(err) From 9aaa013bc229f9c694fd44e53702a06e3880ed29 Mon Sep 17 00:00:00 2001 From: pambecker Date: Wed, 22 Jan 2025 22:24:40 +0000 Subject: [PATCH 30/32] more tests --- ...date_postal_codes_and_gblocs_for_ak.up.sql | 1 - pkg/handlers/ghcapi/orders.go | 13 +++++++---- pkg/models/gbloc_aors_test.go | 22 +++++++++++++++++++ pkg/models/jppso_regions_test.go | 12 ++++++++++ pkg/models/re_oconus_rate_areas_test.go | 14 ++++++++++++ pkg/models/us_post_region_city_test.go | 9 ++++++++ 6 files changed, 66 insertions(+), 5 deletions(-) create mode 100644 pkg/models/gbloc_aors_test.go create mode 100644 pkg/models/jppso_regions_test.go create mode 100644 pkg/models/re_oconus_rate_areas_test.go diff --git a/migrations/app/schema/20250103142533_update_postal_codes_and_gblocs_for_ak.up.sql b/migrations/app/schema/20250103142533_update_postal_codes_and_gblocs_for_ak.up.sql index 97229ad0bc6..a150e692932 100644 --- a/migrations/app/schema/20250103142533_update_postal_codes_and_gblocs_for_ak.up.sql +++ b/migrations/app/schema/20250103142533_update_postal_codes_and_gblocs_for_ak.up.sql @@ -152,7 +152,6 @@ BEGIN END IF; - -- Raise an exception if no rate area is found IF gbloc IS NULL THEN RAISE EXCEPTION 'GBLOC not found for address ID % for affiliation %', address_id, affiiation; END IF; diff --git a/pkg/handlers/ghcapi/orders.go b/pkg/handlers/ghcapi/orders.go index 49ca15d9b9a..a8d066dd7c9 100644 --- a/pkg/handlers/ghcapi/orders.go +++ b/pkg/handlers/ghcapi/orders.go @@ -228,9 +228,14 @@ func (h CreateOrderHandler) Handle(params orderop.CreateOrderParams) middleware. } else { newDutyLocationGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), newDutyLocation.Address.PostalCode) if err != nil { - err = apperror.NewBadDataError("New duty location GBLOC cannot be verified") - appCtx.Logger().Error(err.Error()) - return orderop.NewCreateOrderUnprocessableEntity(), err + switch err { + case sql.ErrNoRows: + return nil, apperror.NewNotFoundError(newDutyLocation.ID, "while looking for New Duty Location PostalCodeToGBLOC") + default: + err = apperror.NewBadDataError("New duty location GBLOC cannot be verified") + appCtx.Logger().Error(err.Error()) + return orderop.NewCreateOrderUnprocessableEntity(), err + } } newDutyLocationGBLOC = &newDutyLocationGBLOCConus.GBLOC } @@ -239,7 +244,7 @@ func (h CreateOrderHandler) Handle(params orderop.CreateOrderParams) middleware. if *originDutyLocation.Address.IsOconus { originDutyLocationGBLOCOconus, err := models.FetchAddressGbloc(appCtx.DB(), originDutyLocation.Address, serviceMember) if err != nil { - return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") + return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Origin Duty Location Oconus GBLOC") } originDutyLocationGBLOC = originDutyLocationGBLOCOconus } else { diff --git a/pkg/models/gbloc_aors_test.go b/pkg/models/gbloc_aors_test.go new file mode 100644 index 00000000000..7e35492e58a --- /dev/null +++ b/pkg/models/gbloc_aors_test.go @@ -0,0 +1,22 @@ +package models_test + +import ( + "github.com/transcom/mymove/pkg/models" +) + +func (suite *ModelSuite) TestFetchGblocAorsByJppsoCodeRateAreaDept() { + usprc, err := models.FindByZipCode(suite.AppContextForTest().DB(), "99801") + suite.NotNil(usprc) + suite.FatalNoError(err) + oconusRateArea, err := models.FetchOconusRateAreaByCityId(suite.DB(), usprc.ID.String()) + suite.NotNil(oconusRateArea) + suite.NoError(err) + + jppsoRegion, err := models.FetchJppsoRegionByCode(suite.DB(), "MAPK") + suite.NotNil(jppsoRegion) + suite.NoError(err) + + gblocAors, err := models.FetchGblocAorsByJppsoCodeRateAreaDept(suite.DB(), jppsoRegion.ID, oconusRateArea.ID, models.DepartmentIndicatorARMY.String()) + suite.NotNil(gblocAors) + suite.NoError(err) +} diff --git a/pkg/models/jppso_regions_test.go b/pkg/models/jppso_regions_test.go new file mode 100644 index 00000000000..21da54ea898 --- /dev/null +++ b/pkg/models/jppso_regions_test.go @@ -0,0 +1,12 @@ +package models_test + +import ( + "github.com/transcom/mymove/pkg/models" +) + +func (suite *ModelSuite) TestFetchJppsoRegionByCode() { + jppsoRegion, err := models.FetchJppsoRegionByCode(suite.DB(), "MAPK") + suite.NotNil(jppsoRegion) + suite.NoError(err) + suite.Equal("USCG Base Ketchikan", jppsoRegion.Name) +} diff --git a/pkg/models/re_oconus_rate_areas_test.go b/pkg/models/re_oconus_rate_areas_test.go new file mode 100644 index 00000000000..366bcff7daf --- /dev/null +++ b/pkg/models/re_oconus_rate_areas_test.go @@ -0,0 +1,14 @@ +package models_test + +import ( + "github.com/transcom/mymove/pkg/models" +) + +func (suite *ModelSuite) TestFetchOconusRateAreaByCityId() { + usprc, err := models.FindByZipCode(suite.AppContextForTest().DB(), "99801") + suite.NotNil(usprc) + suite.FatalNoError(err) + oconusRateArea, err := models.FetchOconusRateAreaByCityId(suite.DB(), usprc.ID.String()) + suite.NotNil(oconusRateArea) + suite.NoError(err) +} diff --git a/pkg/models/us_post_region_city_test.go b/pkg/models/us_post_region_city_test.go index 1654d1a817e..abadd9cdfe6 100644 --- a/pkg/models/us_post_region_city_test.go +++ b/pkg/models/us_post_region_city_test.go @@ -26,3 +26,12 @@ func (suite *ModelSuite) TestFindByZipCode() { suite.NoError(err) suite.Equal("LOS ANGELES", usPostRegionCity.UsprcCountyNm) } + +func (suite *ModelSuite) TestFindByZipCodeAndCity() { + + // Attempt to gather 99677's County from the 99677 zip code and CORDOVA city + usPostRegionCity, err := models.FindByZipCodeAndCity(suite.DB(), "99677", "CORDOVA") + suite.NotNil(usPostRegionCity) + suite.NoError(err) + suite.Equal("CHUGACH", usPostRegionCity.UsprcCountyNm) +} From d47a51a8624bfc4592d5f79db8b46beb979d39b8 Mon Sep 17 00:00:00 2001 From: pambecker Date: Thu, 23 Jan 2025 14:53:40 +0000 Subject: [PATCH 31/32] add error handling --- pkg/handlers/internalapi/orders.go | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/pkg/handlers/internalapi/orders.go b/pkg/handlers/internalapi/orders.go index 2ee491048f8..fe54d5b40dd 100644 --- a/pkg/handlers/internalapi/orders.go +++ b/pkg/handlers/internalapi/orders.go @@ -177,7 +177,14 @@ func (h CreateOrdersHandler) Handle(params ordersop.CreateOrdersParams) middlewa } else { newDutyLocationGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), newDutyLocation.Address.PostalCode) if err != nil { - return handlers.ResponseForError(appCtx.Logger(), err), err + switch err { + case sql.ErrNoRows: + return nil, apperror.NewNotFoundError(newDutyLocation.ID, "while looking for New Duty Location PostalCodeToGBLOC") + default: + err = apperror.NewBadDataError("New duty location GBLOC cannot be verified") + appCtx.Logger().Error(err.Error()) + return handlers.ResponseForError(appCtx.Logger(), err), err + } } newDutyLocationGBLOC = &newDutyLocationGBLOCConus.GBLOC } @@ -393,9 +400,14 @@ func (h UpdateOrdersHandler) Handle(params ordersop.UpdateOrdersParams) middlewa } else { newDutyLocationGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), dutyLocation.Address.PostalCode) if err != nil { - err = apperror.NewBadDataError("New duty location GBLOC cannot be verified") - appCtx.Logger().Error(err.Error()) - return handlers.ResponseForError(appCtx.Logger(), err), err + switch err { + case sql.ErrNoRows: + return nil, apperror.NewNotFoundError(dutyLocation.ID, "while looking for New Duty Location PostalCodeToGBLOC") + default: + err = apperror.NewBadDataError("New duty location GBLOC cannot be verified") + appCtx.Logger().Error(err.Error()) + return handlers.ResponseForError(appCtx.Logger(), err), err + } } newDutyLocationGBLOC = &newDutyLocationGBLOCConus.GBLOC } @@ -422,7 +434,12 @@ func (h UpdateOrdersHandler) Handle(params ordersop.UpdateOrdersParams) middlewa } else { originDutyLocationGBLOCConus, err := models.FetchGBLOCForPostalCode(appCtx.DB(), originDutyLocation.Address.PostalCode) if err != nil { - return handlers.ResponseForError(appCtx.Logger(), err), err + switch err { + case sql.ErrNoRows: + return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Origin Duty Location PostalCodeToGBLOC") + default: + return handlers.ResponseForError(appCtx.Logger(), err), err + } } originDutyLocationGBLOC = &originDutyLocationGBLOCConus.GBLOC } From c30a8e8f5736234cf43fa8d4b0e40431e8b9b258 Mon Sep 17 00:00:00 2001 From: pambecker Date: Thu, 23 Jan 2025 14:58:19 +0000 Subject: [PATCH 32/32] PR updates --- pkg/handlers/ghcapi/orders.go | 4 ++-- pkg/handlers/internalapi/orders.go | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkg/handlers/ghcapi/orders.go b/pkg/handlers/ghcapi/orders.go index a8d066dd7c9..5002611ad70 100644 --- a/pkg/handlers/ghcapi/orders.go +++ b/pkg/handlers/ghcapi/orders.go @@ -222,7 +222,7 @@ func (h CreateOrderHandler) Handle(params orderop.CreateOrderParams) middleware. if *newDutyLocation.Address.IsOconus { newDutyLocationGBLOCOconus, err := models.FetchAddressGbloc(appCtx.DB(), newDutyLocation.Address, serviceMember) if err != nil { - return nil, apperror.NewNotFoundError(newDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") + return nil, apperror.NewNotFoundError(newDutyLocation.ID, "while looking for New Duty Location Oconus GBLOC") } newDutyLocationGBLOC = newDutyLocationGBLOCOconus } else { @@ -252,7 +252,7 @@ func (h CreateOrderHandler) Handle(params orderop.CreateOrderParams) middleware. if err != nil { switch err { case sql.ErrNoRows: - return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location PostalCodeToGBLOC") + return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Origin Duty Location PostalCodeToGBLOC") default: return nil, apperror.NewQueryError("PostalCodeToGBLOC", err, "") } diff --git a/pkg/handlers/internalapi/orders.go b/pkg/handlers/internalapi/orders.go index fe54d5b40dd..78d9d5064dd 100644 --- a/pkg/handlers/internalapi/orders.go +++ b/pkg/handlers/internalapi/orders.go @@ -171,7 +171,7 @@ func (h CreateOrdersHandler) Handle(params ordersop.CreateOrdersParams) middlewa if *newDutyLocation.Address.IsOconus { newDutyLocationGBLOCOconus, err := models.FetchAddressGbloc(appCtx.DB(), newDutyLocation.Address, serviceMember) if err != nil { - return nil, apperror.NewNotFoundError(newDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") + return nil, apperror.NewNotFoundError(newDutyLocation.ID, "while looking for New Duty Location Oconus GBLOC") } newDutyLocationGBLOC = newDutyLocationGBLOCOconus } else { @@ -204,7 +204,7 @@ func (h CreateOrdersHandler) Handle(params ordersop.CreateOrdersParams) middlewa if *originDutyLocation.Address.IsOconus { originDutyLocationGBLOCOconus, err := models.FetchAddressGbloc(appCtx.DB(), originDutyLocation.Address, serviceMember) if err != nil { - return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location Oconus GBLOC") + return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Origin Duty Location Oconus GBLOC") } originDutyLocationGBLOC = originDutyLocationGBLOCOconus } else { @@ -212,7 +212,7 @@ func (h CreateOrdersHandler) Handle(params ordersop.CreateOrdersParams) middlewa if err != nil { switch err { case sql.ErrNoRows: - return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Duty Location PostalCodeToGBLOC") + return nil, apperror.NewNotFoundError(originDutyLocation.ID, "while looking for Origin Duty Location PostalCodeToGBLOC") default: return nil, apperror.NewQueryError("PostalCodeToGBLOC", err, "") } @@ -394,7 +394,7 @@ func (h UpdateOrdersHandler) Handle(params ordersop.UpdateOrdersParams) middlewa if *dutyLocation.Address.IsOconus { newDutyLocationGBLOCOconus, err := models.FetchAddressGbloc(appCtx.DB(), dutyLocation.Address, order.ServiceMember) if err != nil { - return nil, apperror.NewNotFoundError(dutyLocation.ID, "while looking for Duty Location Oconus GBLOC") + return nil, apperror.NewNotFoundError(dutyLocation.ID, "while looking for New Duty Location Oconus GBLOC") } newDutyLocationGBLOC = newDutyLocationGBLOCOconus } else {