karrio-server-pricing 2025.5rc1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (77) hide show
  1. karrio/server/pricing/__init__.py +1 -0
  2. karrio/server/pricing/admin.py +55 -0
  3. karrio/server/pricing/apps.py +12 -0
  4. karrio/server/pricing/migrations/0001_initial.py +974 -0
  5. karrio/server/pricing/migrations/0002_auto_20201127_0721.py +855 -0
  6. karrio/server/pricing/migrations/0003_auto_20201230_0820.py +939 -0
  7. karrio/server/pricing/migrations/0004_auto_20201231_1402.py +940 -0
  8. karrio/server/pricing/migrations/0005_auto_20210204_1725.py +923 -0
  9. karrio/server/pricing/migrations/0006_auto_20210217_1109.py +1224 -0
  10. karrio/server/pricing/migrations/0007_auto_20210218_1202.py +955 -0
  11. karrio/server/pricing/migrations/0008_auto_20210418_0504.py +1010 -0
  12. karrio/server/pricing/migrations/0009_auto_20210603_2149.py +1043 -0
  13. karrio/server/pricing/migrations/0010_auto_20210612_1608.py +1070 -0
  14. karrio/server/pricing/migrations/0011_auto_20210615_1601.py +1109 -0
  15. karrio/server/pricing/migrations/0012_surcharge_carrier_accounts.py +23 -0
  16. karrio/server/pricing/migrations/0013_alter_surcharge_services.py +1086 -0
  17. karrio/server/pricing/migrations/0014_auto_20211013_1520.py +12 -0
  18. karrio/server/pricing/migrations/0015_auto_20211204_1350.py +1124 -0
  19. karrio/server/pricing/migrations/0016_auto_20211220_1500.py +1126 -0
  20. karrio/server/pricing/migrations/0017_alter_surcharge_services.py +1093 -0
  21. karrio/server/pricing/migrations/0018_alter_surcharge_services.py +1100 -0
  22. karrio/server/pricing/migrations/0019_alter_surcharge_services.py +1093 -0
  23. karrio/server/pricing/migrations/0020_auto_20220412_1215.py +3175 -0
  24. karrio/server/pricing/migrations/0021_auto_20220413_0959.py +3179 -0
  25. karrio/server/pricing/migrations/0022_alter_surcharge_services.py +3144 -0
  26. karrio/server/pricing/migrations/0023_auto_20220504_1335.py +3175 -0
  27. karrio/server/pricing/migrations/0024_auto_20220808_0803.py +3180 -0
  28. karrio/server/pricing/migrations/0025_alter_surcharge_carriers.py +51 -0
  29. karrio/server/pricing/migrations/0026_auto_20220828_0158.py +3199 -0
  30. karrio/server/pricing/migrations/0027_alter_surcharge_services.py +3170 -0
  31. karrio/server/pricing/migrations/0028_surcharge_markup_carriers_surcharge_markup_services.py +3016 -0
  32. karrio/server/pricing/migrations/0029_alter_surcharge_services.py +2939 -0
  33. karrio/server/pricing/migrations/0030_alter_surcharge_services.py +2940 -0
  34. karrio/server/pricing/migrations/0031_alter_surcharge_carriers.py +52 -0
  35. karrio/server/pricing/migrations/0032_alter_surcharge_services.py +2963 -0
  36. karrio/server/pricing/migrations/0033_alter_surcharge_services.py +2964 -0
  37. karrio/server/pricing/migrations/0034_alter_surcharge_carriers_alter_surcharge_services.py +3009 -0
  38. karrio/server/pricing/migrations/0035_alter_surcharge_carriers.py +56 -0
  39. karrio/server/pricing/migrations/0036_alter_surcharge_carriers_alter_surcharge_services.py +3022 -0
  40. karrio/server/pricing/migrations/0037_alter_surcharge_carriers_alter_surcharge_services.py +3078 -0
  41. karrio/server/pricing/migrations/0038_alter_surcharge_carriers_alter_surcharge_services.py +3093 -0
  42. karrio/server/pricing/migrations/0039_alter_surcharge_carriers_alter_surcharge_services.py +3095 -0
  43. karrio/server/pricing/migrations/0040_alter_surcharge_services.py +3058 -0
  44. karrio/server/pricing/migrations/0041_alter_surcharge_services.py +3061 -0
  45. karrio/server/pricing/migrations/0042_alter_surcharge_carriers_alter_surcharge_services.py +3128 -0
  46. karrio/server/pricing/migrations/0043_alter_surcharge_services.py +3090 -0
  47. karrio/server/pricing/migrations/0044_alter_surcharge_carriers.py +62 -0
  48. karrio/server/pricing/migrations/0045_alter_surcharge_carriers.py +63 -0
  49. karrio/server/pricing/migrations/0046_alter_surcharge_services.py +3100 -0
  50. karrio/server/pricing/migrations/0047_alter_surcharge_services.py +3171 -0
  51. karrio/server/pricing/migrations/0048_alter_surcharge_services.py +3195 -0
  52. karrio/server/pricing/migrations/0049_alter_surcharge_carriers_alter_surcharge_services.py +3246 -0
  53. karrio/server/pricing/migrations/0050_alter_surcharge_carriers.py +64 -0
  54. karrio/server/pricing/migrations/0051_alter_surcharge_carriers_alter_surcharge_services.py +2956 -0
  55. karrio/server/pricing/migrations/0052_alter_surcharge_carriers_alter_surcharge_services.py +3547 -0
  56. karrio/server/pricing/migrations/0053_alter_surcharge_carriers_alter_surcharge_services.py +3561 -0
  57. karrio/server/pricing/migrations/0054_alter_surcharge_services.py +3409 -0
  58. karrio/server/pricing/migrations/0055_alter_surcharge_services.py +3455 -0
  59. karrio/server/pricing/migrations/0056_alter_surcharge_carriers_alter_surcharge_services.py +3609 -0
  60. karrio/server/pricing/migrations/0057_alter_surcharge_carriers_alter_surcharge_services.py +4384 -0
  61. karrio/server/pricing/migrations/0058_alter_surcharge_services.py +4321 -0
  62. karrio/server/pricing/migrations/0059_alter_surcharge_carriers_alter_surcharge_services.py +4892 -0
  63. karrio/server/pricing/migrations/0060_alter_surcharge_services.py +4894 -0
  64. karrio/server/pricing/migrations/0061_alter_surcharge_services.py +4888 -0
  65. karrio/server/pricing/migrations/0062_alter_surcharge_carriers_alter_surcharge_services.py +4704 -0
  66. karrio/server/pricing/migrations/0063_alter_surcharge_carriers_alter_surcharge_services.py +34 -0
  67. karrio/server/pricing/migrations/0064_alter_surcharge_carriers_alter_surcharge_services.py +4669 -0
  68. karrio/server/pricing/migrations/__init__.py +0 -0
  69. karrio/server/pricing/models.py +143 -0
  70. karrio/server/pricing/serializers.py +18 -0
  71. karrio/server/pricing/signals.py +35 -0
  72. karrio/server/pricing/tests.py +301 -0
  73. karrio/server/pricing/views.py +3 -0
  74. karrio_server_pricing-2025.5rc1.dist-info/METADATA +27 -0
  75. karrio_server_pricing-2025.5rc1.dist-info/RECORD +77 -0
  76. karrio_server_pricing-2025.5rc1.dist-info/WHEEL +5 -0
  77. karrio_server_pricing-2025.5rc1.dist-info/top_level.txt +2 -0
@@ -0,0 +1,4321 @@
1
+ # Generated by Django 4.2.15 on 2024-08-24 03:00
2
+
3
+ from django.db import migrations
4
+ import karrio.server.core.fields
5
+
6
+
7
+ class Migration(migrations.Migration):
8
+
9
+ dependencies = [
10
+ ("pricing", "0057_alter_surcharge_carriers_alter_surcharge_services"),
11
+ ]
12
+
13
+ operations = [
14
+ migrations.AlterField(
15
+ model_name="surcharge",
16
+ name="services",
17
+ field=karrio.server.core.fields.MultiChoiceField(
18
+ blank=True,
19
+ choices=[
20
+ ("allied_road_service", "allied_road_service"),
21
+ ("allied_parcel_service", "allied_parcel_service"),
22
+ (
23
+ "allied_standard_pallet_service",
24
+ "allied_standard_pallet_service",
25
+ ),
26
+ (
27
+ "allied_oversized_pallet_service",
28
+ "allied_oversized_pallet_service",
29
+ ),
30
+ ("allied_road_service", "allied_road_service"),
31
+ ("allied_parcel_service", "allied_parcel_service"),
32
+ (
33
+ "allied_standard_pallet_service",
34
+ "allied_standard_pallet_service",
35
+ ),
36
+ (
37
+ "allied_oversized_pallet_service",
38
+ "allied_oversized_pallet_service",
39
+ ),
40
+ ("allied_local_normal_service", "allied_local_normal_service"),
41
+ ("allied_local_vip_service", "allied_local_vip_service"),
42
+ (
43
+ "allied_local_executive_service",
44
+ "allied_local_executive_service",
45
+ ),
46
+ ("allied_local_gold_service", "allied_local_gold_service"),
47
+ ("amazon_shipping_ground", "amazon_shipping_ground"),
48
+ ("amazon_shipping_standard", "amazon_shipping_standard"),
49
+ ("amazon_shipping_premium", "amazon_shipping_premium"),
50
+ ("asendia_us_e_com_tracked_ddp", "asendia_us_e_com_tracked_ddp"),
51
+ ("asendia_us_fully_tracked", "asendia_us_fully_tracked"),
52
+ ("asendia_us_country_tracked", "asendia_us_country_tracked"),
53
+ ("australiapost_parcel_post", "australiapost_parcel_post"),
54
+ ("australiapost_express_post", "australiapost_express_post"),
55
+ (
56
+ "australiapost_parcel_post_signature",
57
+ "australiapost_parcel_post_signature",
58
+ ),
59
+ (
60
+ "australiapost_express_post_signature",
61
+ "australiapost_express_post_signature",
62
+ ),
63
+ (
64
+ "australiapost_intl_standard_pack_track",
65
+ "australiapost_intl_standard_pack_track",
66
+ ),
67
+ (
68
+ "australiapost_intl_standard_with_signature",
69
+ "australiapost_intl_standard_with_signature",
70
+ ),
71
+ (
72
+ "australiapost_intl_express_merch",
73
+ "australiapost_intl_express_merch",
74
+ ),
75
+ (
76
+ "australiapost_intl_express_docs",
77
+ "australiapost_intl_express_docs",
78
+ ),
79
+ (
80
+ "australiapost_eparcel_post_returns",
81
+ "australiapost_eparcel_post_returns",
82
+ ),
83
+ (
84
+ "australiapost_express_eparcel_post_returns",
85
+ "australiapost_express_eparcel_post_returns",
86
+ ),
87
+ ("boxknight_sameday", "boxknight_sameday"),
88
+ ("boxknight_nextday", "boxknight_nextday"),
89
+ ("boxknight_scheduled", "boxknight_scheduled"),
90
+ ("bpack_24h_pro", "bpack_24h_pro"),
91
+ ("bpack_24h_business", "bpack_24h_business"),
92
+ ("bpack_bus", "bpack_bus"),
93
+ ("bpack_pallet", "bpack_pallet"),
94
+ ("bpack_easy_retour", "bpack_easy_retour"),
95
+ ("bpack_xl", "bpack_xl"),
96
+ ("bpack_bpost", "bpack_bpost"),
97
+ ("bpack_24_7", "bpack_24_7"),
98
+ ("bpack_world_business", "bpack_world_business"),
99
+ ("bpack_world_express_pro", "bpack_world_express_pro"),
100
+ ("bpack_europe_business", "bpack_europe_business"),
101
+ ("bpack_world_easy_return", "bpack_world_easy_return"),
102
+ ("bpack_bpost_international", "bpack_bpost_international"),
103
+ ("bpack_24_7_international", "bpack_24_7_international"),
104
+ ("canadapost_regular_parcel", "canadapost_regular_parcel"),
105
+ ("canadapost_expedited_parcel", "canadapost_expedited_parcel"),
106
+ ("canadapost_xpresspost", "canadapost_xpresspost"),
107
+ (
108
+ "canadapost_xpresspost_certified",
109
+ "canadapost_xpresspost_certified",
110
+ ),
111
+ ("canadapost_priority", "canadapost_priority"),
112
+ ("canadapost_library_books", "canadapost_library_books"),
113
+ (
114
+ "canadapost_expedited_parcel_usa",
115
+ "canadapost_expedited_parcel_usa",
116
+ ),
117
+ (
118
+ "canadapost_priority_worldwide_envelope_usa",
119
+ "canadapost_priority_worldwide_envelope_usa",
120
+ ),
121
+ (
122
+ "canadapost_priority_worldwide_pak_usa",
123
+ "canadapost_priority_worldwide_pak_usa",
124
+ ),
125
+ (
126
+ "canadapost_priority_worldwide_parcel_usa",
127
+ "canadapost_priority_worldwide_parcel_usa",
128
+ ),
129
+ (
130
+ "canadapost_small_packet_usa_air",
131
+ "canadapost_small_packet_usa_air",
132
+ ),
133
+ ("canadapost_tracked_packet_usa", "canadapost_tracked_packet_usa"),
134
+ (
135
+ "canadapost_tracked_packet_usa_lvm",
136
+ "canadapost_tracked_packet_usa_lvm",
137
+ ),
138
+ ("canadapost_xpresspost_usa", "canadapost_xpresspost_usa"),
139
+ (
140
+ "canadapost_xpresspost_international",
141
+ "canadapost_xpresspost_international",
142
+ ),
143
+ (
144
+ "canadapost_international_parcel_air",
145
+ "canadapost_international_parcel_air",
146
+ ),
147
+ (
148
+ "canadapost_international_parcel_surface",
149
+ "canadapost_international_parcel_surface",
150
+ ),
151
+ (
152
+ "canadapost_priority_worldwide_envelope_intl",
153
+ "canadapost_priority_worldwide_envelope_intl",
154
+ ),
155
+ (
156
+ "canadapost_priority_worldwide_pak_intl",
157
+ "canadapost_priority_worldwide_pak_intl",
158
+ ),
159
+ (
160
+ "canadapost_priority_worldwide_parcel_intl",
161
+ "canadapost_priority_worldwide_parcel_intl",
162
+ ),
163
+ (
164
+ "canadapost_small_packet_international_air",
165
+ "canadapost_small_packet_international_air",
166
+ ),
167
+ (
168
+ "canadapost_small_packet_international_surface",
169
+ "canadapost_small_packet_international_surface",
170
+ ),
171
+ (
172
+ "canadapost_tracked_packet_international",
173
+ "canadapost_tracked_packet_international",
174
+ ),
175
+ ("chronopost_retrait_bureau", "chronopost_retrait_bureau"),
176
+ ("chronopost_13", "chronopost_13"),
177
+ ("chronopost_10", "chronopost_10"),
178
+ ("chronopost_18", "chronopost_18"),
179
+ ("chronopost_relais", "chronopost_relais"),
180
+ (
181
+ "chronopost_express_international",
182
+ "chronopost_express_international",
183
+ ),
184
+ (
185
+ "chronopost_premium_international",
186
+ "chronopost_premium_international",
187
+ ),
188
+ (
189
+ "chronopost_classic_international",
190
+ "chronopost_classic_international",
191
+ ),
192
+ (
193
+ "colissimo_home_without_signature",
194
+ "colissimo_home_without_signature",
195
+ ),
196
+ ("colissimo_home_with_signature", "colissimo_home_with_signature"),
197
+ ("colissimo_eco_france", "colissimo_eco_france"),
198
+ ("colissimo_return_france", "colissimo_return_france"),
199
+ (
200
+ "colissimo_flash_without_signature",
201
+ "colissimo_flash_without_signature",
202
+ ),
203
+ (
204
+ "colissimo_flash_with_signature",
205
+ "colissimo_flash_with_signature",
206
+ ),
207
+ (
208
+ "colissimo_oversea_home_without_signature",
209
+ "colissimo_oversea_home_without_signature",
210
+ ),
211
+ (
212
+ "colissimo_oversea_home_with_signature",
213
+ "colissimo_oversea_home_with_signature",
214
+ ),
215
+ (
216
+ "colissimo_eco_om_without_signature",
217
+ "colissimo_eco_om_without_signature",
218
+ ),
219
+ (
220
+ "colissimo_eco_om_with_signature",
221
+ "colissimo_eco_om_with_signature",
222
+ ),
223
+ ("colissimo_retour_om", "colissimo_retour_om"),
224
+ (
225
+ "colissimo_return_international_from_france",
226
+ "colissimo_return_international_from_france",
227
+ ),
228
+ (
229
+ "colissimo_economical_big_export_offer",
230
+ "colissimo_economical_big_export_offer",
231
+ ),
232
+ (
233
+ "colissimo_out_of_home_national_international",
234
+ "colissimo_out_of_home_national_international",
235
+ ),
236
+ ("dhl_logistics_services", "dhl_logistics_services"),
237
+ ("dhl_domestic_express_12_00", "dhl_domestic_express_12_00"),
238
+ ("dhl_express_choice", "dhl_express_choice"),
239
+ ("dhl_express_choice_nondoc", "dhl_express_choice_nondoc"),
240
+ ("dhl_jetline", "dhl_jetline"),
241
+ ("dhl_sprintline", "dhl_sprintline"),
242
+ ("dhl_air_capacity_sales", "dhl_air_capacity_sales"),
243
+ ("dhl_express_easy", "dhl_express_easy"),
244
+ ("dhl_express_easy_nondoc", "dhl_express_easy_nondoc"),
245
+ ("dhl_parcel_product", "dhl_parcel_product"),
246
+ ("dhl_accounting", "dhl_accounting"),
247
+ ("dhl_breakbulk_express", "dhl_breakbulk_express"),
248
+ ("dhl_medical_express", "dhl_medical_express"),
249
+ ("dhl_express_worldwide_doc", "dhl_express_worldwide_doc"),
250
+ ("dhl_express_9_00_nondoc", "dhl_express_9_00_nondoc"),
251
+ ("dhl_freight_worldwide_nondoc", "dhl_freight_worldwide_nondoc"),
252
+ ("dhl_economy_select_domestic", "dhl_economy_select_domestic"),
253
+ ("dhl_economy_select_nondoc", "dhl_economy_select_nondoc"),
254
+ ("dhl_express_domestic_9_00", "dhl_express_domestic_9_00"),
255
+ ("dhl_jumbo_box_nondoc", "dhl_jumbo_box_nondoc"),
256
+ ("dhl_express_9_00", "dhl_express_9_00"),
257
+ ("dhl_express_10_30", "dhl_express_10_30"),
258
+ ("dhl_express_10_30_nondoc", "dhl_express_10_30_nondoc"),
259
+ ("dhl_express_domestic", "dhl_express_domestic"),
260
+ ("dhl_express_domestic_10_30", "dhl_express_domestic_10_30"),
261
+ ("dhl_express_worldwide_nondoc", "dhl_express_worldwide_nondoc"),
262
+ ("dhl_medical_express_nondoc", "dhl_medical_express_nondoc"),
263
+ ("dhl_globalmail", "dhl_globalmail"),
264
+ ("dhl_same_day", "dhl_same_day"),
265
+ ("dhl_express_12_00", "dhl_express_12_00"),
266
+ ("dhl_express_worldwide", "dhl_express_worldwide"),
267
+ ("dhl_parcel_product_nondoc", "dhl_parcel_product_nondoc"),
268
+ ("dhl_economy_select", "dhl_economy_select"),
269
+ ("dhl_express_envelope", "dhl_express_envelope"),
270
+ ("dhl_express_12_00_nondoc", "dhl_express_12_00_nondoc"),
271
+ ("dhl_destination_charges", "dhl_destination_charges"),
272
+ ("dhl_express_all", "dhl_express_all"),
273
+ ("dhl_parcel_de_paket", "dhl_parcel_de_paket"),
274
+ ("dhl_parcel_de_warenpost", "dhl_parcel_de_warenpost"),
275
+ ("dhl_parcel_de_europaket", "dhl_parcel_de_europaket"),
276
+ (
277
+ "dhl_parcel_de_paket_international",
278
+ "dhl_parcel_de_paket_international",
279
+ ),
280
+ (
281
+ "dhl_parcel_de_warenpost_international",
282
+ "dhl_parcel_de_warenpost_international",
283
+ ),
284
+ ("dhl_poland_premium", "dhl_poland_premium"),
285
+ ("dhl_poland_polska", "dhl_poland_polska"),
286
+ ("dhl_poland_09", "dhl_poland_09"),
287
+ ("dhl_poland_12", "dhl_poland_12"),
288
+ ("dhl_poland_connect", "dhl_poland_connect"),
289
+ ("dhl_poland_international", "dhl_poland_international"),
290
+ ("dpd_cl", "dpd_cl"),
291
+ ("dpd_express_10h", "dpd_express_10h"),
292
+ ("dpd_express_12h", "dpd_express_12h"),
293
+ ("dpd_express_18h_guarantee", "dpd_express_18h_guarantee"),
294
+ ("dpd_express_b2b_predict", "dpd_express_b2b_predict"),
295
+ ("dpdhl_paket", "dpdhl_paket"),
296
+ ("dpdhl_paket_international", "dpdhl_paket_international"),
297
+ ("dpdhl_europaket", "dpdhl_europaket"),
298
+ ("dpdhl_paket_connect", "dpdhl_paket_connect"),
299
+ ("dpdhl_warenpost", "dpdhl_warenpost"),
300
+ ("dpdhl_warenpost_international", "dpdhl_warenpost_international"),
301
+ ("dpdhl_retoure", "dpdhl_retoure"),
302
+ ("easypost_amazonmws_ups_rates", "easypost_amazonmws_ups_rates"),
303
+ ("easypost_amazonmws_usps_rates", "easypost_amazonmws_usps_rates"),
304
+ (
305
+ "easypost_amazonmws_fedex_rates",
306
+ "easypost_amazonmws_fedex_rates",
307
+ ),
308
+ ("easypost_amazonmws_ups_labels", "easypost_amazonmws_ups_labels"),
309
+ (
310
+ "easypost_amazonmws_usps_labels",
311
+ "easypost_amazonmws_usps_labels",
312
+ ),
313
+ (
314
+ "easypost_amazonmws_fedex_labels",
315
+ "easypost_amazonmws_fedex_labels",
316
+ ),
317
+ (
318
+ "easypost_amazonmws_ups_tracking",
319
+ "easypost_amazonmws_ups_tracking",
320
+ ),
321
+ (
322
+ "easypost_amazonmws_usps_tracking",
323
+ "easypost_amazonmws_usps_tracking",
324
+ ),
325
+ (
326
+ "easypost_amazonmws_fedex_tracking",
327
+ "easypost_amazonmws_fedex_tracking",
328
+ ),
329
+ (
330
+ "easypost_apc_parcel_connect_book_service",
331
+ "easypost_apc_parcel_connect_book_service",
332
+ ),
333
+ (
334
+ "easypost_apc_parcel_connect_expedited_ddp",
335
+ "easypost_apc_parcel_connect_expedited_ddp",
336
+ ),
337
+ (
338
+ "easypost_apc_parcel_connect_expedited_ddu",
339
+ "easypost_apc_parcel_connect_expedited_ddu",
340
+ ),
341
+ (
342
+ "easypost_apc_parcel_connect_priority_ddp",
343
+ "easypost_apc_parcel_connect_priority_ddp",
344
+ ),
345
+ (
346
+ "easypost_apc_parcel_connect_priority_ddp_delcon",
347
+ "easypost_apc_parcel_connect_priority_ddp_delcon",
348
+ ),
349
+ (
350
+ "easypost_apc_parcel_connect_priority_ddu",
351
+ "easypost_apc_parcel_connect_priority_ddu",
352
+ ),
353
+ (
354
+ "easypost_apc_parcel_connect_priority_ddu_delcon",
355
+ "easypost_apc_parcel_connect_priority_ddu_delcon",
356
+ ),
357
+ (
358
+ "easypost_apc_parcel_connect_priority_ddupqw",
359
+ "easypost_apc_parcel_connect_priority_ddupqw",
360
+ ),
361
+ (
362
+ "easypost_apc_parcel_connect_standard_ddu",
363
+ "easypost_apc_parcel_connect_standard_ddu",
364
+ ),
365
+ (
366
+ "easypost_apc_parcel_connect_standard_ddupqw",
367
+ "easypost_apc_parcel_connect_standard_ddupqw",
368
+ ),
369
+ (
370
+ "easypost_apc_parcel_connect_packet_ddu",
371
+ "easypost_apc_parcel_connect_packet_ddu",
372
+ ),
373
+ ("easypost_asendia_pmi", "easypost_asendia_pmi"),
374
+ ("easypost_asendia_e_packet", "easypost_asendia_e_packet"),
375
+ ("easypost_asendia_ipa", "easypost_asendia_ipa"),
376
+ ("easypost_asendia_isal", "easypost_asendia_isal"),
377
+ ("easypost_asendia_us_ads", "easypost_asendia_us_ads"),
378
+ (
379
+ "easypost_asendia_us_air_freight_inbound",
380
+ "easypost_asendia_us_air_freight_inbound",
381
+ ),
382
+ (
383
+ "easypost_asendia_us_air_freight_outbound",
384
+ "easypost_asendia_us_air_freight_outbound",
385
+ ),
386
+ (
387
+ "easypost_asendia_us_domestic_bound_printer_matter_expedited",
388
+ "easypost_asendia_us_domestic_bound_printer_matter_expedited",
389
+ ),
390
+ (
391
+ "easypost_asendia_us_domestic_bound_printer_matter_ground",
392
+ "easypost_asendia_us_domestic_bound_printer_matter_ground",
393
+ ),
394
+ (
395
+ "easypost_asendia_us_domestic_flats_expedited",
396
+ "easypost_asendia_us_domestic_flats_expedited",
397
+ ),
398
+ (
399
+ "easypost_asendia_us_domestic_flats_ground",
400
+ "easypost_asendia_us_domestic_flats_ground",
401
+ ),
402
+ (
403
+ "easypost_asendia_us_domestic_parcel_ground_over1lb",
404
+ "easypost_asendia_us_domestic_parcel_ground_over1lb",
405
+ ),
406
+ (
407
+ "easypost_asendia_us_domestic_parcel_ground_under1lb",
408
+ "easypost_asendia_us_domestic_parcel_ground_under1lb",
409
+ ),
410
+ (
411
+ "easypost_asendia_us_domestic_parcel_max_over1lb",
412
+ "easypost_asendia_us_domestic_parcel_max_over1lb",
413
+ ),
414
+ (
415
+ "easypost_asendia_us_domestic_parcel_max_under1lb",
416
+ "easypost_asendia_us_domestic_parcel_max_under1lb",
417
+ ),
418
+ (
419
+ "easypost_asendia_us_domestic_parcel_over1lb_expedited",
420
+ "easypost_asendia_us_domestic_parcel_over1lb_expedited",
421
+ ),
422
+ (
423
+ "easypost_asendia_us_domestic_parcel_under1lb_expedited",
424
+ "easypost_asendia_us_domestic_parcel_under1lb_expedited",
425
+ ),
426
+ (
427
+ "easypost_asendia_us_domestic_promo_parcel_expedited",
428
+ "easypost_asendia_us_domestic_promo_parcel_expedited",
429
+ ),
430
+ (
431
+ "easypost_asendia_us_domestic_promo_parcel_ground",
432
+ "easypost_asendia_us_domestic_promo_parcel_ground",
433
+ ),
434
+ (
435
+ "easypost_asendia_us_bulk_freight",
436
+ "easypost_asendia_us_bulk_freight",
437
+ ),
438
+ (
439
+ "easypost_asendia_us_business_mail_canada_lettermail",
440
+ "easypost_asendia_us_business_mail_canada_lettermail",
441
+ ),
442
+ (
443
+ "easypost_asendia_us_business_mail_canada_lettermail_machineable",
444
+ "easypost_asendia_us_business_mail_canada_lettermail_machineable",
445
+ ),
446
+ (
447
+ "easypost_asendia_us_business_mail_economy",
448
+ "easypost_asendia_us_business_mail_economy",
449
+ ),
450
+ (
451
+ "easypost_asendia_us_business_mail_economy_lp_wholesale",
452
+ "easypost_asendia_us_business_mail_economy_lp_wholesale",
453
+ ),
454
+ (
455
+ "easypost_asendia_us_business_mail_economy_sp_wholesale",
456
+ "easypost_asendia_us_business_mail_economy_sp_wholesale",
457
+ ),
458
+ (
459
+ "easypost_asendia_us_business_mail_ipa",
460
+ "easypost_asendia_us_business_mail_ipa",
461
+ ),
462
+ (
463
+ "easypost_asendia_us_business_mail_isal",
464
+ "easypost_asendia_us_business_mail_isal",
465
+ ),
466
+ (
467
+ "easypost_asendia_us_business_mail_priority",
468
+ "easypost_asendia_us_business_mail_priority",
469
+ ),
470
+ (
471
+ "easypost_asendia_us_business_mail_priority_lp_wholesale",
472
+ "easypost_asendia_us_business_mail_priority_lp_wholesale",
473
+ ),
474
+ (
475
+ "easypost_asendia_us_business_mail_priority_sp_wholesale",
476
+ "easypost_asendia_us_business_mail_priority_sp_wholesale",
477
+ ),
478
+ (
479
+ "easypost_asendia_us_marketing_mail_canada_personalized_lcp",
480
+ "easypost_asendia_us_marketing_mail_canada_personalized_lcp",
481
+ ),
482
+ (
483
+ "easypost_asendia_us_marketing_mail_canada_personalized_machineable",
484
+ "easypost_asendia_us_marketing_mail_canada_personalized_machineable",
485
+ ),
486
+ (
487
+ "easypost_asendia_us_marketing_mail_canada_personalized_ndg",
488
+ "easypost_asendia_us_marketing_mail_canada_personalized_ndg",
489
+ ),
490
+ (
491
+ "easypost_asendia_us_marketing_mail_economy",
492
+ "easypost_asendia_us_marketing_mail_economy",
493
+ ),
494
+ (
495
+ "easypost_asendia_us_marketing_mail_ipa",
496
+ "easypost_asendia_us_marketing_mail_ipa",
497
+ ),
498
+ (
499
+ "easypost_asendia_us_marketing_mail_isal",
500
+ "easypost_asendia_us_marketing_mail_isal",
501
+ ),
502
+ (
503
+ "easypost_asendia_us_marketing_mail_priority",
504
+ "easypost_asendia_us_marketing_mail_priority",
505
+ ),
506
+ (
507
+ "easypost_asendia_us_publications_canada_lcp",
508
+ "easypost_asendia_us_publications_canada_lcp",
509
+ ),
510
+ (
511
+ "easypost_asendia_us_publications_canada_ndg",
512
+ "easypost_asendia_us_publications_canada_ndg",
513
+ ),
514
+ (
515
+ "easypost_asendia_us_publications_economy",
516
+ "easypost_asendia_us_publications_economy",
517
+ ),
518
+ (
519
+ "easypost_asendia_us_publications_ipa",
520
+ "easypost_asendia_us_publications_ipa",
521
+ ),
522
+ (
523
+ "easypost_asendia_us_publications_isal",
524
+ "easypost_asendia_us_publications_isal",
525
+ ),
526
+ (
527
+ "easypost_asendia_us_publications_priority",
528
+ "easypost_asendia_us_publications_priority",
529
+ ),
530
+ (
531
+ "easypost_asendia_us_epaq_elite",
532
+ "easypost_asendia_us_epaq_elite",
533
+ ),
534
+ (
535
+ "easypost_asendia_us_epaq_elite_custom",
536
+ "easypost_asendia_us_epaq_elite_custom",
537
+ ),
538
+ (
539
+ "easypost_asendia_us_epaq_elite_dap",
540
+ "easypost_asendia_us_epaq_elite_dap",
541
+ ),
542
+ (
543
+ "easypost_asendia_us_epaq_elite_ddp",
544
+ "easypost_asendia_us_epaq_elite_ddp",
545
+ ),
546
+ (
547
+ "easypost_asendia_us_epaq_elite_ddp_oversized",
548
+ "easypost_asendia_us_epaq_elite_ddp_oversized",
549
+ ),
550
+ (
551
+ "easypost_asendia_us_epaq_elite_dpd",
552
+ "easypost_asendia_us_epaq_elite_dpd",
553
+ ),
554
+ (
555
+ "easypost_asendia_us_epaq_elite_direct_access_canada_ddp",
556
+ "easypost_asendia_us_epaq_elite_direct_access_canada_ddp",
557
+ ),
558
+ (
559
+ "easypost_asendia_us_epaq_elite_oversized",
560
+ "easypost_asendia_us_epaq_elite_oversized",
561
+ ),
562
+ ("easypost_asendia_us_epaq_plus", "easypost_asendia_us_epaq_plus"),
563
+ (
564
+ "easypost_asendia_us_epaq_plus_custom",
565
+ "easypost_asendia_us_epaq_plus_custom",
566
+ ),
567
+ (
568
+ "easypost_asendia_us_epaq_plus_customs_prepaid",
569
+ "easypost_asendia_us_epaq_plus_customs_prepaid",
570
+ ),
571
+ (
572
+ "easypost_asendia_us_epaq_plus_dap",
573
+ "easypost_asendia_us_epaq_plus_dap",
574
+ ),
575
+ (
576
+ "easypost_asendia_us_epaq_plus_ddp",
577
+ "easypost_asendia_us_epaq_plus_ddp",
578
+ ),
579
+ (
580
+ "easypost_asendia_us_epaq_plus_economy",
581
+ "easypost_asendia_us_epaq_plus_economy",
582
+ ),
583
+ (
584
+ "easypost_asendia_us_epaq_plus_wholesale",
585
+ "easypost_asendia_us_epaq_plus_wholesale",
586
+ ),
587
+ (
588
+ "easypost_asendia_us_epaq_pluse_packet",
589
+ "easypost_asendia_us_epaq_pluse_packet",
590
+ ),
591
+ (
592
+ "easypost_asendia_us_epaq_pluse_packet_canada_customs_pre_paid",
593
+ "easypost_asendia_us_epaq_pluse_packet_canada_customs_pre_paid",
594
+ ),
595
+ (
596
+ "easypost_asendia_us_epaq_pluse_packet_canada_ddp",
597
+ "easypost_asendia_us_epaq_pluse_packet_canada_ddp",
598
+ ),
599
+ (
600
+ "easypost_asendia_us_epaq_returns_domestic",
601
+ "easypost_asendia_us_epaq_returns_domestic",
602
+ ),
603
+ (
604
+ "easypost_asendia_us_epaq_returns_international",
605
+ "easypost_asendia_us_epaq_returns_international",
606
+ ),
607
+ (
608
+ "easypost_asendia_us_epaq_select",
609
+ "easypost_asendia_us_epaq_select",
610
+ ),
611
+ (
612
+ "easypost_asendia_us_epaq_select_custom",
613
+ "easypost_asendia_us_epaq_select_custom",
614
+ ),
615
+ (
616
+ "easypost_asendia_us_epaq_select_customs_prepaid_by_shopper",
617
+ "easypost_asendia_us_epaq_select_customs_prepaid_by_shopper",
618
+ ),
619
+ (
620
+ "easypost_asendia_us_epaq_select_dap",
621
+ "easypost_asendia_us_epaq_select_dap",
622
+ ),
623
+ (
624
+ "easypost_asendia_us_epaq_select_ddp",
625
+ "easypost_asendia_us_epaq_select_ddp",
626
+ ),
627
+ (
628
+ "easypost_asendia_us_epaq_select_ddp_direct_access",
629
+ "easypost_asendia_us_epaq_select_ddp_direct_access",
630
+ ),
631
+ (
632
+ "easypost_asendia_us_epaq_select_direct_access",
633
+ "easypost_asendia_us_epaq_select_direct_access",
634
+ ),
635
+ (
636
+ "easypost_asendia_us_epaq_select_direct_access_canada_ddp",
637
+ "easypost_asendia_us_epaq_select_direct_access_canada_ddp",
638
+ ),
639
+ (
640
+ "easypost_asendia_us_epaq_select_economy",
641
+ "easypost_asendia_us_epaq_select_economy",
642
+ ),
643
+ (
644
+ "easypost_asendia_us_epaq_select_oversized",
645
+ "easypost_asendia_us_epaq_select_oversized",
646
+ ),
647
+ (
648
+ "easypost_asendia_us_epaq_select_oversized_ddp",
649
+ "easypost_asendia_us_epaq_select_oversized_ddp",
650
+ ),
651
+ (
652
+ "easypost_asendia_us_epaq_select_pmei",
653
+ "easypost_asendia_us_epaq_select_pmei",
654
+ ),
655
+ (
656
+ "easypost_asendia_us_epaq_select_pmei_canada_customs_pre_paid",
657
+ "easypost_asendia_us_epaq_select_pmei_canada_customs_pre_paid",
658
+ ),
659
+ (
660
+ "easypost_asendia_us_epaq_select_pmeipc_postage",
661
+ "easypost_asendia_us_epaq_select_pmeipc_postage",
662
+ ),
663
+ (
664
+ "easypost_asendia_us_epaq_select_pmi",
665
+ "easypost_asendia_us_epaq_select_pmi",
666
+ ),
667
+ (
668
+ "easypost_asendia_us_epaq_select_pmi_canada_customs_prepaid",
669
+ "easypost_asendia_us_epaq_select_pmi_canada_customs_prepaid",
670
+ ),
671
+ (
672
+ "easypost_asendia_us_epaq_select_pmi_canada_ddp",
673
+ "easypost_asendia_us_epaq_select_pmi_canada_ddp",
674
+ ),
675
+ (
676
+ "easypost_asendia_us_epaq_select_pmi_non_presort",
677
+ "easypost_asendia_us_epaq_select_pmi_non_presort",
678
+ ),
679
+ (
680
+ "easypost_asendia_us_epaq_select_pmipc_postage",
681
+ "easypost_asendia_us_epaq_select_pmipc_postage",
682
+ ),
683
+ (
684
+ "easypost_asendia_us_epaq_standard",
685
+ "easypost_asendia_us_epaq_standard",
686
+ ),
687
+ (
688
+ "easypost_asendia_us_epaq_standard_custom",
689
+ "easypost_asendia_us_epaq_standard_custom",
690
+ ),
691
+ (
692
+ "easypost_asendia_us_epaq_standard_economy",
693
+ "easypost_asendia_us_epaq_standard_economy",
694
+ ),
695
+ (
696
+ "easypost_asendia_us_epaq_standard_ipa",
697
+ "easypost_asendia_us_epaq_standard_ipa",
698
+ ),
699
+ (
700
+ "easypost_asendia_us_epaq_standard_isal",
701
+ "easypost_asendia_us_epaq_standard_isal",
702
+ ),
703
+ (
704
+ "easypost_asendia_us_epaq_select_pmei_non_presort",
705
+ "easypost_asendia_us_epaq_select_pmei_non_presort",
706
+ ),
707
+ (
708
+ "easypost_australiapost_express_post",
709
+ "easypost_australiapost_express_post",
710
+ ),
711
+ (
712
+ "easypost_australiapost_express_post_signature",
713
+ "easypost_australiapost_express_post_signature",
714
+ ),
715
+ (
716
+ "easypost_australiapost_parcel_post",
717
+ "easypost_australiapost_parcel_post",
718
+ ),
719
+ (
720
+ "easypost_australiapost_parcel_post_signature",
721
+ "easypost_australiapost_parcel_post_signature",
722
+ ),
723
+ (
724
+ "easypost_australiapost_parcel_post_extra",
725
+ "easypost_australiapost_parcel_post_extra",
726
+ ),
727
+ (
728
+ "easypost_australiapost_parcel_post_wine_plus_signature",
729
+ "easypost_australiapost_parcel_post_wine_plus_signature",
730
+ ),
731
+ ("easypost_axlehire_delivery", "easypost_axlehire_delivery"),
732
+ (
733
+ "easypost_better_trucks_next_day",
734
+ "easypost_better_trucks_next_day",
735
+ ),
736
+ ("easypost_bond_standard", "easypost_bond_standard"),
737
+ (
738
+ "easypost_canadapost_regular_parcel",
739
+ "easypost_canadapost_regular_parcel",
740
+ ),
741
+ (
742
+ "easypost_canadapost_expedited_parcel",
743
+ "easypost_canadapost_expedited_parcel",
744
+ ),
745
+ (
746
+ "easypost_canadapost_xpresspost",
747
+ "easypost_canadapost_xpresspost",
748
+ ),
749
+ (
750
+ "easypost_canadapost_xpresspost_certified",
751
+ "easypost_canadapost_xpresspost_certified",
752
+ ),
753
+ ("easypost_canadapost_priority", "easypost_canadapost_priority"),
754
+ (
755
+ "easypost_canadapost_library_books",
756
+ "easypost_canadapost_library_books",
757
+ ),
758
+ (
759
+ "easypost_canadapost_expedited_parcel_usa",
760
+ "easypost_canadapost_expedited_parcel_usa",
761
+ ),
762
+ (
763
+ "easypost_canadapost_priority_worldwide_envelope_usa",
764
+ "easypost_canadapost_priority_worldwide_envelope_usa",
765
+ ),
766
+ (
767
+ "easypost_canadapost_priority_worldwide_pak_usa",
768
+ "easypost_canadapost_priority_worldwide_pak_usa",
769
+ ),
770
+ (
771
+ "easypost_canadapost_priority_worldwide_parcel_usa",
772
+ "easypost_canadapost_priority_worldwide_parcel_usa",
773
+ ),
774
+ (
775
+ "easypost_canadapost_small_packet_usa_air",
776
+ "easypost_canadapost_small_packet_usa_air",
777
+ ),
778
+ (
779
+ "easypost_canadapost_tracked_packet_usa",
780
+ "easypost_canadapost_tracked_packet_usa",
781
+ ),
782
+ (
783
+ "easypost_canadapost_tracked_packet_usalvm",
784
+ "easypost_canadapost_tracked_packet_usalvm",
785
+ ),
786
+ (
787
+ "easypost_canadapost_xpresspost_usa",
788
+ "easypost_canadapost_xpresspost_usa",
789
+ ),
790
+ (
791
+ "easypost_canadapost_xpresspost_international",
792
+ "easypost_canadapost_xpresspost_international",
793
+ ),
794
+ (
795
+ "easypost_canadapost_international_parcel_air",
796
+ "easypost_canadapost_international_parcel_air",
797
+ ),
798
+ (
799
+ "easypost_canadapost_international_parcel_surface",
800
+ "easypost_canadapost_international_parcel_surface",
801
+ ),
802
+ (
803
+ "easypost_canadapost_priority_worldwide_envelope_intl",
804
+ "easypost_canadapost_priority_worldwide_envelope_intl",
805
+ ),
806
+ (
807
+ "easypost_canadapost_priority_worldwide_pak_intl",
808
+ "easypost_canadapost_priority_worldwide_pak_intl",
809
+ ),
810
+ (
811
+ "easypost_canadapost_priority_worldwide_parcel_intl",
812
+ "easypost_canadapost_priority_worldwide_parcel_intl",
813
+ ),
814
+ (
815
+ "easypost_canadapost_small_packet_international_air",
816
+ "easypost_canadapost_small_packet_international_air",
817
+ ),
818
+ (
819
+ "easypost_canadapost_small_packet_international_surface",
820
+ "easypost_canadapost_small_packet_international_surface",
821
+ ),
822
+ (
823
+ "easypost_canadapost_tracked_packet_international",
824
+ "easypost_canadapost_tracked_packet_international",
825
+ ),
826
+ ("easypost_canpar_ground", "easypost_canpar_ground"),
827
+ ("easypost_canpar_select_letter", "easypost_canpar_select_letter"),
828
+ ("easypost_canpar_select_pak", "easypost_canpar_select_pak"),
829
+ ("easypost_canpar_select", "easypost_canpar_select"),
830
+ (
831
+ "easypost_canpar_overnight_letter",
832
+ "easypost_canpar_overnight_letter",
833
+ ),
834
+ ("easypost_canpar_overnight_pak", "easypost_canpar_overnight_pak"),
835
+ ("easypost_canpar_overnight", "easypost_canpar_overnight"),
836
+ ("easypost_canpar_select_usa", "easypost_canpar_select_usa"),
837
+ ("easypost_canpar_usa_pak", "easypost_canpar_usa_pak"),
838
+ ("easypost_canpar_usa_letter", "easypost_canpar_usa_letter"),
839
+ ("easypost_canpar_usa", "easypost_canpar_usa"),
840
+ ("easypost_canpar_international", "easypost_canpar_international"),
841
+ ("easypost_cdl_distribution", "easypost_cdl_distribution"),
842
+ ("easypost_cdl_same_day", "easypost_cdl_same_day"),
843
+ (
844
+ "easypost_courier_express_basic_parcel",
845
+ "easypost_courier_express_basic_parcel",
846
+ ),
847
+ (
848
+ "easypost_couriersplease_domestic_priority_signature",
849
+ "easypost_couriersplease_domestic_priority_signature",
850
+ ),
851
+ (
852
+ "easypost_couriersplease_domestic_priority",
853
+ "easypost_couriersplease_domestic_priority",
854
+ ),
855
+ (
856
+ "easypost_couriersplease_domestic_off_peak_signature",
857
+ "easypost_couriersplease_domestic_off_peak_signature",
858
+ ),
859
+ (
860
+ "easypost_couriersplease_domestic_off_peak",
861
+ "easypost_couriersplease_domestic_off_peak",
862
+ ),
863
+ (
864
+ "easypost_couriersplease_gold_domestic_signature",
865
+ "easypost_couriersplease_gold_domestic_signature",
866
+ ),
867
+ (
868
+ "easypost_couriersplease_gold_domestic",
869
+ "easypost_couriersplease_gold_domestic",
870
+ ),
871
+ (
872
+ "easypost_couriersplease_australian_city_express_signature",
873
+ "easypost_couriersplease_australian_city_express_signature",
874
+ ),
875
+ (
876
+ "easypost_couriersplease_australian_city_express",
877
+ "easypost_couriersplease_australian_city_express",
878
+ ),
879
+ (
880
+ "easypost_couriersplease_domestic_saver_signature",
881
+ "easypost_couriersplease_domestic_saver_signature",
882
+ ),
883
+ (
884
+ "easypost_couriersplease_domestic_saver",
885
+ "easypost_couriersplease_domestic_saver",
886
+ ),
887
+ (
888
+ "easypost_couriersplease_road_express",
889
+ "easypost_couriersplease_road_express",
890
+ ),
891
+ (
892
+ "easypost_couriersplease_5_kg_satchel",
893
+ "easypost_couriersplease_5_kg_satchel",
894
+ ),
895
+ (
896
+ "easypost_couriersplease_3_kg_satchel",
897
+ "easypost_couriersplease_3_kg_satchel",
898
+ ),
899
+ (
900
+ "easypost_couriersplease_1_kg_satchel",
901
+ "easypost_couriersplease_1_kg_satchel",
902
+ ),
903
+ (
904
+ "easypost_couriersplease_5_kg_satchel_atl",
905
+ "easypost_couriersplease_5_kg_satchel_atl",
906
+ ),
907
+ (
908
+ "easypost_couriersplease_3_kg_satchel_atl",
909
+ "easypost_couriersplease_3_kg_satchel_atl",
910
+ ),
911
+ (
912
+ "easypost_couriersplease_1_kg_satchel_atl",
913
+ "easypost_couriersplease_1_kg_satchel_atl",
914
+ ),
915
+ (
916
+ "easypost_couriersplease_500_gram_satchel",
917
+ "easypost_couriersplease_500_gram_satchel",
918
+ ),
919
+ (
920
+ "easypost_couriersplease_500_gram_satchel_atl",
921
+ "easypost_couriersplease_500_gram_satchel_atl",
922
+ ),
923
+ (
924
+ "easypost_couriersplease_25_kg_parcel",
925
+ "easypost_couriersplease_25_kg_parcel",
926
+ ),
927
+ (
928
+ "easypost_couriersplease_10_kg_parcel",
929
+ "easypost_couriersplease_10_kg_parcel",
930
+ ),
931
+ (
932
+ "easypost_couriersplease_5_kg_parcel",
933
+ "easypost_couriersplease_5_kg_parcel",
934
+ ),
935
+ (
936
+ "easypost_couriersplease_3_kg_parcel",
937
+ "easypost_couriersplease_3_kg_parcel",
938
+ ),
939
+ (
940
+ "easypost_couriersplease_1_kg_parcel",
941
+ "easypost_couriersplease_1_kg_parcel",
942
+ ),
943
+ (
944
+ "easypost_couriersplease_500_gram_parcel",
945
+ "easypost_couriersplease_500_gram_parcel",
946
+ ),
947
+ (
948
+ "easypost_couriersplease_500_gram_parcel_atl",
949
+ "easypost_couriersplease_500_gram_parcel_atl",
950
+ ),
951
+ (
952
+ "easypost_couriersplease_express_international_priority",
953
+ "easypost_couriersplease_express_international_priority",
954
+ ),
955
+ (
956
+ "easypost_couriersplease_international_saver",
957
+ "easypost_couriersplease_international_saver",
958
+ ),
959
+ (
960
+ "easypost_couriersplease_international_express_import",
961
+ "easypost_couriersplease_international_express_import",
962
+ ),
963
+ (
964
+ "easypost_couriersplease_domestic_tracked",
965
+ "easypost_couriersplease_domestic_tracked",
966
+ ),
967
+ (
968
+ "easypost_couriersplease_international_economy",
969
+ "easypost_couriersplease_international_economy",
970
+ ),
971
+ (
972
+ "easypost_couriersplease_international_standard",
973
+ "easypost_couriersplease_international_standard",
974
+ ),
975
+ (
976
+ "easypost_couriersplease_international_express",
977
+ "easypost_couriersplease_international_express",
978
+ ),
979
+ (
980
+ "easypost_deutschepost_packet_plus",
981
+ "easypost_deutschepost_packet_plus",
982
+ ),
983
+ (
984
+ "easypost_deutschepost_uk_priority_packet_plus",
985
+ "easypost_deutschepost_uk_priority_packet_plus",
986
+ ),
987
+ (
988
+ "easypost_deutschepost_uk_priority_packet",
989
+ "easypost_deutschepost_uk_priority_packet",
990
+ ),
991
+ (
992
+ "easypost_deutschepost_uk_priority_packet_tracked",
993
+ "easypost_deutschepost_uk_priority_packet_tracked",
994
+ ),
995
+ (
996
+ "easypost_deutschepost_uk_business_mail_registered",
997
+ "easypost_deutschepost_uk_business_mail_registered",
998
+ ),
999
+ (
1000
+ "easypost_deutschepost_uk_standard_packet",
1001
+ "easypost_deutschepost_uk_standard_packet",
1002
+ ),
1003
+ (
1004
+ "easypost_deutschepost_uk_business_mail_standard",
1005
+ "easypost_deutschepost_uk_business_mail_standard",
1006
+ ),
1007
+ ("easypost_dhl_ecom_asia_packet", "easypost_dhl_ecom_asia_packet"),
1008
+ (
1009
+ "easypost_dhl_ecom_asia_parcel_direct",
1010
+ "easypost_dhl_ecom_asia_parcel_direct",
1011
+ ),
1012
+ (
1013
+ "easypost_dhl_ecom_asia_parcel_direct_expedited",
1014
+ "easypost_dhl_ecom_asia_parcel_direct_expedited",
1015
+ ),
1016
+ (
1017
+ "easypost_dhl_ecom_parcel_expedited",
1018
+ "easypost_dhl_ecom_parcel_expedited",
1019
+ ),
1020
+ (
1021
+ "easypost_dhl_ecom_parcel_expedited_max",
1022
+ "easypost_dhl_ecom_parcel_expedited_max",
1023
+ ),
1024
+ (
1025
+ "easypost_dhl_ecom_parcel_ground",
1026
+ "easypost_dhl_ecom_parcel_ground",
1027
+ ),
1028
+ (
1029
+ "easypost_dhl_ecom_bpm_expedited",
1030
+ "easypost_dhl_ecom_bpm_expedited",
1031
+ ),
1032
+ ("easypost_dhl_ecom_bpm_ground", "easypost_dhl_ecom_bpm_ground"),
1033
+ (
1034
+ "easypost_dhl_ecom_parcel_international_direct",
1035
+ "easypost_dhl_ecom_parcel_international_direct",
1036
+ ),
1037
+ (
1038
+ "easypost_dhl_ecom_parcel_international_standard",
1039
+ "easypost_dhl_ecom_parcel_international_standard",
1040
+ ),
1041
+ (
1042
+ "easypost_dhl_ecom_packet_international",
1043
+ "easypost_dhl_ecom_packet_international",
1044
+ ),
1045
+ (
1046
+ "easypost_dhl_ecom_parcel_international_direct_priority",
1047
+ "easypost_dhl_ecom_parcel_international_direct_priority",
1048
+ ),
1049
+ (
1050
+ "easypost_dhl_ecom_parcel_international_direct_standard",
1051
+ "easypost_dhl_ecom_parcel_international_direct_standard",
1052
+ ),
1053
+ (
1054
+ "easypost_dhl_express_break_bulk_economy",
1055
+ "easypost_dhl_express_break_bulk_economy",
1056
+ ),
1057
+ (
1058
+ "easypost_dhl_express_break_bulk_express",
1059
+ "easypost_dhl_express_break_bulk_express",
1060
+ ),
1061
+ (
1062
+ "easypost_dhl_express_domestic_economy_select",
1063
+ "easypost_dhl_express_domestic_economy_select",
1064
+ ),
1065
+ (
1066
+ "easypost_dhl_express_domestic_express",
1067
+ "easypost_dhl_express_domestic_express",
1068
+ ),
1069
+ (
1070
+ "easypost_dhl_express_domestic_express1030",
1071
+ "easypost_dhl_express_domestic_express1030",
1072
+ ),
1073
+ (
1074
+ "easypost_dhl_express_domestic_express1200",
1075
+ "easypost_dhl_express_domestic_express1200",
1076
+ ),
1077
+ (
1078
+ "easypost_dhl_express_economy_select",
1079
+ "easypost_dhl_express_economy_select",
1080
+ ),
1081
+ (
1082
+ "easypost_dhl_express_economy_select_non_doc",
1083
+ "easypost_dhl_express_economy_select_non_doc",
1084
+ ),
1085
+ (
1086
+ "easypost_dhl_express_euro_pack",
1087
+ "easypost_dhl_express_euro_pack",
1088
+ ),
1089
+ (
1090
+ "easypost_dhl_express_europack_non_doc",
1091
+ "easypost_dhl_express_europack_non_doc",
1092
+ ),
1093
+ (
1094
+ "easypost_dhl_express_express1030",
1095
+ "easypost_dhl_express_express1030",
1096
+ ),
1097
+ (
1098
+ "easypost_dhl_express_express1030_non_doc",
1099
+ "easypost_dhl_express_express1030_non_doc",
1100
+ ),
1101
+ (
1102
+ "easypost_dhl_express_express1200_non_doc",
1103
+ "easypost_dhl_express_express1200_non_doc",
1104
+ ),
1105
+ (
1106
+ "easypost_dhl_express_express1200",
1107
+ "easypost_dhl_express_express1200",
1108
+ ),
1109
+ (
1110
+ "easypost_dhl_express_express900",
1111
+ "easypost_dhl_express_express900",
1112
+ ),
1113
+ (
1114
+ "easypost_dhl_express_express900_non_doc",
1115
+ "easypost_dhl_express_express900_non_doc",
1116
+ ),
1117
+ (
1118
+ "easypost_dhl_express_express_easy",
1119
+ "easypost_dhl_express_express_easy",
1120
+ ),
1121
+ (
1122
+ "easypost_dhl_express_express_easy_non_doc",
1123
+ "easypost_dhl_express_express_easy_non_doc",
1124
+ ),
1125
+ (
1126
+ "easypost_dhl_express_express_envelope",
1127
+ "easypost_dhl_express_express_envelope",
1128
+ ),
1129
+ (
1130
+ "easypost_dhl_express_express_worldwide",
1131
+ "easypost_dhl_express_express_worldwide",
1132
+ ),
1133
+ (
1134
+ "easypost_dhl_express_express_worldwide_b2_c",
1135
+ "easypost_dhl_express_express_worldwide_b2_c",
1136
+ ),
1137
+ (
1138
+ "easypost_dhl_express_express_worldwide_b2_c_non_doc",
1139
+ "easypost_dhl_express_express_worldwide_b2_c_non_doc",
1140
+ ),
1141
+ (
1142
+ "easypost_dhl_express_express_worldwide_ecx",
1143
+ "easypost_dhl_express_express_worldwide_ecx",
1144
+ ),
1145
+ (
1146
+ "easypost_dhl_express_express_worldwide_non_doc",
1147
+ "easypost_dhl_express_express_worldwide_non_doc",
1148
+ ),
1149
+ (
1150
+ "easypost_dhl_express_freight_worldwide",
1151
+ "easypost_dhl_express_freight_worldwide",
1152
+ ),
1153
+ (
1154
+ "easypost_dhl_express_globalmail_business",
1155
+ "easypost_dhl_express_globalmail_business",
1156
+ ),
1157
+ ("easypost_dhl_express_jet_line", "easypost_dhl_express_jet_line"),
1158
+ (
1159
+ "easypost_dhl_express_jumbo_box",
1160
+ "easypost_dhl_express_jumbo_box",
1161
+ ),
1162
+ (
1163
+ "easypost_dhl_express_logistics_services",
1164
+ "easypost_dhl_express_logistics_services",
1165
+ ),
1166
+ ("easypost_dhl_express_same_day", "easypost_dhl_express_same_day"),
1167
+ (
1168
+ "easypost_dhl_express_secure_line",
1169
+ "easypost_dhl_express_secure_line",
1170
+ ),
1171
+ (
1172
+ "easypost_dhl_express_sprint_line",
1173
+ "easypost_dhl_express_sprint_line",
1174
+ ),
1175
+ ("easypost_dpd_classic", "easypost_dpd_classic"),
1176
+ ("easypost_dpd_8_30", "easypost_dpd_8_30"),
1177
+ ("easypost_dpd_10_00", "easypost_dpd_10_00"),
1178
+ ("easypost_dpd_12_00", "easypost_dpd_12_00"),
1179
+ ("easypost_dpd_18_00", "easypost_dpd_18_00"),
1180
+ ("easypost_dpd_express", "easypost_dpd_express"),
1181
+ ("easypost_dpd_parcelletter", "easypost_dpd_parcelletter"),
1182
+ ("easypost_dpd_parcelletterplus", "easypost_dpd_parcelletterplus"),
1183
+ (
1184
+ "easypost_dpd_internationalmail",
1185
+ "easypost_dpd_internationalmail",
1186
+ ),
1187
+ (
1188
+ "easypost_dpd_uk_air_express_international_air",
1189
+ "easypost_dpd_uk_air_express_international_air",
1190
+ ),
1191
+ (
1192
+ "easypost_dpd_uk_air_classic_international_air",
1193
+ "easypost_dpd_uk_air_classic_international_air",
1194
+ ),
1195
+ ("easypost_dpd_uk_parcel_sunday", "easypost_dpd_uk_parcel_sunday"),
1196
+ (
1197
+ "easypost_dpd_uk_freight_parcel_sunday",
1198
+ "easypost_dpd_uk_freight_parcel_sunday",
1199
+ ),
1200
+ ("easypost_dpd_uk_pallet_sunday", "easypost_dpd_uk_pallet_sunday"),
1201
+ (
1202
+ "easypost_dpd_uk_pallet_dpd_classic",
1203
+ "easypost_dpd_uk_pallet_dpd_classic",
1204
+ ),
1205
+ (
1206
+ "easypost_dpd_uk_expresspak_dpd_classic",
1207
+ "easypost_dpd_uk_expresspak_dpd_classic",
1208
+ ),
1209
+ (
1210
+ "easypost_dpd_uk_expresspak_sunday",
1211
+ "easypost_dpd_uk_expresspak_sunday",
1212
+ ),
1213
+ (
1214
+ "easypost_dpd_uk_parcel_dpd_classic",
1215
+ "easypost_dpd_uk_parcel_dpd_classic",
1216
+ ),
1217
+ (
1218
+ "easypost_dpd_uk_parcel_dpd_two_day",
1219
+ "easypost_dpd_uk_parcel_dpd_two_day",
1220
+ ),
1221
+ (
1222
+ "easypost_dpd_uk_parcel_dpd_next_day",
1223
+ "easypost_dpd_uk_parcel_dpd_next_day",
1224
+ ),
1225
+ ("easypost_dpd_uk_parcel_dpd12", "easypost_dpd_uk_parcel_dpd12"),
1226
+ ("easypost_dpd_uk_parcel_dpd10", "easypost_dpd_uk_parcel_dpd10"),
1227
+ (
1228
+ "easypost_dpd_uk_parcel_return_to_shop",
1229
+ "easypost_dpd_uk_parcel_return_to_shop",
1230
+ ),
1231
+ (
1232
+ "easypost_dpd_uk_parcel_saturday",
1233
+ "easypost_dpd_uk_parcel_saturday",
1234
+ ),
1235
+ (
1236
+ "easypost_dpd_uk_parcel_saturday12",
1237
+ "easypost_dpd_uk_parcel_saturday12",
1238
+ ),
1239
+ (
1240
+ "easypost_dpd_uk_parcel_saturday10",
1241
+ "easypost_dpd_uk_parcel_saturday10",
1242
+ ),
1243
+ (
1244
+ "easypost_dpd_uk_parcel_sunday12",
1245
+ "easypost_dpd_uk_parcel_sunday12",
1246
+ ),
1247
+ (
1248
+ "easypost_dpd_uk_freight_parcel_dpd_classic",
1249
+ "easypost_dpd_uk_freight_parcel_dpd_classic",
1250
+ ),
1251
+ (
1252
+ "easypost_dpd_uk_freight_parcel_sunday12",
1253
+ "easypost_dpd_uk_freight_parcel_sunday12",
1254
+ ),
1255
+ (
1256
+ "easypost_dpd_uk_expresspak_dpd_next_day",
1257
+ "easypost_dpd_uk_expresspak_dpd_next_day",
1258
+ ),
1259
+ (
1260
+ "easypost_dpd_uk_expresspak_dpd12",
1261
+ "easypost_dpd_uk_expresspak_dpd12",
1262
+ ),
1263
+ (
1264
+ "easypost_dpd_uk_expresspak_dpd10",
1265
+ "easypost_dpd_uk_expresspak_dpd10",
1266
+ ),
1267
+ (
1268
+ "easypost_dpd_uk_expresspak_saturday",
1269
+ "easypost_dpd_uk_expresspak_saturday",
1270
+ ),
1271
+ (
1272
+ "easypost_dpd_uk_expresspak_saturday12",
1273
+ "easypost_dpd_uk_expresspak_saturday12",
1274
+ ),
1275
+ (
1276
+ "easypost_dpd_uk_expresspak_saturday10",
1277
+ "easypost_dpd_uk_expresspak_saturday10",
1278
+ ),
1279
+ (
1280
+ "easypost_dpd_uk_expresspak_sunday12",
1281
+ "easypost_dpd_uk_expresspak_sunday12",
1282
+ ),
1283
+ (
1284
+ "easypost_dpd_uk_pallet_sunday12",
1285
+ "easypost_dpd_uk_pallet_sunday12",
1286
+ ),
1287
+ (
1288
+ "easypost_dpd_uk_pallet_dpd_two_day",
1289
+ "easypost_dpd_uk_pallet_dpd_two_day",
1290
+ ),
1291
+ (
1292
+ "easypost_dpd_uk_pallet_dpd_next_day",
1293
+ "easypost_dpd_uk_pallet_dpd_next_day",
1294
+ ),
1295
+ ("easypost_dpd_uk_pallet_dpd12", "easypost_dpd_uk_pallet_dpd12"),
1296
+ ("easypost_dpd_uk_pallet_dpd10", "easypost_dpd_uk_pallet_dpd10"),
1297
+ (
1298
+ "easypost_dpd_uk_pallet_saturday",
1299
+ "easypost_dpd_uk_pallet_saturday",
1300
+ ),
1301
+ (
1302
+ "easypost_dpd_uk_pallet_saturday12",
1303
+ "easypost_dpd_uk_pallet_saturday12",
1304
+ ),
1305
+ (
1306
+ "easypost_dpd_uk_pallet_saturday10",
1307
+ "easypost_dpd_uk_pallet_saturday10",
1308
+ ),
1309
+ (
1310
+ "easypost_dpd_uk_freight_parcel_dpd_two_day",
1311
+ "easypost_dpd_uk_freight_parcel_dpd_two_day",
1312
+ ),
1313
+ (
1314
+ "easypost_dpd_uk_freight_parcel_dpd_next_day",
1315
+ "easypost_dpd_uk_freight_parcel_dpd_next_day",
1316
+ ),
1317
+ (
1318
+ "easypost_dpd_uk_freight_parcel_dpd12",
1319
+ "easypost_dpd_uk_freight_parcel_dpd12",
1320
+ ),
1321
+ (
1322
+ "easypost_dpd_uk_freight_parcel_dpd10",
1323
+ "easypost_dpd_uk_freight_parcel_dpd10",
1324
+ ),
1325
+ (
1326
+ "easypost_dpd_uk_freight_parcel_saturday",
1327
+ "easypost_dpd_uk_freight_parcel_saturday",
1328
+ ),
1329
+ (
1330
+ "easypost_dpd_uk_freight_parcel_saturday12",
1331
+ "easypost_dpd_uk_freight_parcel_saturday12",
1332
+ ),
1333
+ (
1334
+ "easypost_dpd_uk_freight_parcel_saturday10",
1335
+ "easypost_dpd_uk_freight_parcel_saturday10",
1336
+ ),
1337
+ (
1338
+ "easypost_epost_courier_service_ddp",
1339
+ "easypost_epost_courier_service_ddp",
1340
+ ),
1341
+ (
1342
+ "easypost_epost_courier_service_ddu",
1343
+ "easypost_epost_courier_service_ddu",
1344
+ ),
1345
+ (
1346
+ "easypost_epost_domestic_economy_parcel",
1347
+ "easypost_epost_domestic_economy_parcel",
1348
+ ),
1349
+ (
1350
+ "easypost_epost_domestic_parcel_bpm",
1351
+ "easypost_epost_domestic_parcel_bpm",
1352
+ ),
1353
+ (
1354
+ "easypost_epost_domestic_priority_parcel",
1355
+ "easypost_epost_domestic_priority_parcel",
1356
+ ),
1357
+ (
1358
+ "easypost_epost_domestic_priority_parcel_bpm",
1359
+ "easypost_epost_domestic_priority_parcel_bpm",
1360
+ ),
1361
+ ("easypost_epost_emi_service", "easypost_epost_emi_service"),
1362
+ (
1363
+ "easypost_epost_economy_parcel_service",
1364
+ "easypost_epost_economy_parcel_service",
1365
+ ),
1366
+ ("easypost_epost_ipa_service", "easypost_epost_ipa_service"),
1367
+ ("easypost_epost_isal_service", "easypost_epost_isal_service"),
1368
+ ("easypost_epost_pmi_service", "easypost_epost_pmi_service"),
1369
+ (
1370
+ "easypost_epost_priority_parcel_ddp",
1371
+ "easypost_epost_priority_parcel_ddp",
1372
+ ),
1373
+ (
1374
+ "easypost_epost_priority_parcel_ddu",
1375
+ "easypost_epost_priority_parcel_ddu",
1376
+ ),
1377
+ (
1378
+ "easypost_epost_priority_parcel_delivery_confirmation_ddp",
1379
+ "easypost_epost_priority_parcel_delivery_confirmation_ddp",
1380
+ ),
1381
+ (
1382
+ "easypost_epost_priority_parcel_delivery_confirmation_ddu",
1383
+ "easypost_epost_priority_parcel_delivery_confirmation_ddu",
1384
+ ),
1385
+ (
1386
+ "easypost_epost_epacket_service",
1387
+ "easypost_epost_epacket_service",
1388
+ ),
1389
+ (
1390
+ "easypost_estafeta_next_day_by930",
1391
+ "easypost_estafeta_next_day_by930",
1392
+ ),
1393
+ (
1394
+ "easypost_estafeta_next_day_by1130",
1395
+ "easypost_estafeta_next_day_by1130",
1396
+ ),
1397
+ ("easypost_estafeta_next_day", "easypost_estafeta_next_day"),
1398
+ ("easypost_estafeta_two_day", "easypost_estafeta_two_day"),
1399
+ ("easypost_estafeta_ltl", "easypost_estafeta_ltl"),
1400
+ ("easypost_fastway_parcel", "easypost_fastway_parcel"),
1401
+ ("easypost_fastway_satchel", "easypost_fastway_satchel"),
1402
+ ("easypost_fedex_ground", "easypost_fedex_ground"),
1403
+ ("easypost_fedex_2_day", "easypost_fedex_2_day"),
1404
+ ("easypost_fedex_2_day_am", "easypost_fedex_2_day_am"),
1405
+ ("easypost_fedex_express_saver", "easypost_fedex_express_saver"),
1406
+ (
1407
+ "easypost_fedex_standard_overnight",
1408
+ "easypost_fedex_standard_overnight",
1409
+ ),
1410
+ (
1411
+ "easypost_fedex_first_overnight",
1412
+ "easypost_fedex_first_overnight",
1413
+ ),
1414
+ (
1415
+ "easypost_fedex_priority_overnight",
1416
+ "easypost_fedex_priority_overnight",
1417
+ ),
1418
+ (
1419
+ "easypost_fedex_international_economy",
1420
+ "easypost_fedex_international_economy",
1421
+ ),
1422
+ (
1423
+ "easypost_fedex_international_first",
1424
+ "easypost_fedex_international_first",
1425
+ ),
1426
+ (
1427
+ "easypost_fedex_international_priority",
1428
+ "easypost_fedex_international_priority",
1429
+ ),
1430
+ (
1431
+ "easypost_fedex_ground_home_delivery",
1432
+ "easypost_fedex_ground_home_delivery",
1433
+ ),
1434
+ (
1435
+ "easypost_fedex_crossborder_cbec",
1436
+ "easypost_fedex_crossborder_cbec",
1437
+ ),
1438
+ (
1439
+ "easypost_fedex_crossborder_cbecl",
1440
+ "easypost_fedex_crossborder_cbecl",
1441
+ ),
1442
+ (
1443
+ "easypost_fedex_crossborder_cbecp",
1444
+ "easypost_fedex_crossborder_cbecp",
1445
+ ),
1446
+ (
1447
+ "easypost_fedex_sameday_city_economy_service",
1448
+ "easypost_fedex_sameday_city_economy_service",
1449
+ ),
1450
+ (
1451
+ "easypost_fedex_sameday_city_standard_service",
1452
+ "easypost_fedex_sameday_city_standard_service",
1453
+ ),
1454
+ (
1455
+ "easypost_fedex_sameday_city_priority_service",
1456
+ "easypost_fedex_sameday_city_priority_service",
1457
+ ),
1458
+ (
1459
+ "easypost_fedex_sameday_city_last_mile",
1460
+ "easypost_fedex_sameday_city_last_mile",
1461
+ ),
1462
+ ("easypost_fedex_smart_post", "easypost_fedex_smart_post"),
1463
+ ("easypost_globegistics_pmei", "easypost_globegistics_pmei"),
1464
+ (
1465
+ "easypost_globegistics_ecom_domestic",
1466
+ "easypost_globegistics_ecom_domestic",
1467
+ ),
1468
+ (
1469
+ "easypost_globegistics_ecom_europe",
1470
+ "easypost_globegistics_ecom_europe",
1471
+ ),
1472
+ (
1473
+ "easypost_globegistics_ecom_express",
1474
+ "easypost_globegistics_ecom_express",
1475
+ ),
1476
+ (
1477
+ "easypost_globegistics_ecom_extra",
1478
+ "easypost_globegistics_ecom_extra",
1479
+ ),
1480
+ (
1481
+ "easypost_globegistics_ecom_ipa",
1482
+ "easypost_globegistics_ecom_ipa",
1483
+ ),
1484
+ (
1485
+ "easypost_globegistics_ecom_isal",
1486
+ "easypost_globegistics_ecom_isal",
1487
+ ),
1488
+ (
1489
+ "easypost_globegistics_ecom_pmei_duty_paid",
1490
+ "easypost_globegistics_ecom_pmei_duty_paid",
1491
+ ),
1492
+ (
1493
+ "easypost_globegistics_ecom_pmi_duty_paid",
1494
+ "easypost_globegistics_ecom_pmi_duty_paid",
1495
+ ),
1496
+ (
1497
+ "easypost_globegistics_ecom_packet",
1498
+ "easypost_globegistics_ecom_packet",
1499
+ ),
1500
+ (
1501
+ "easypost_globegistics_ecom_packet_ddp",
1502
+ "easypost_globegistics_ecom_packet_ddp",
1503
+ ),
1504
+ (
1505
+ "easypost_globegistics_ecom_priority",
1506
+ "easypost_globegistics_ecom_priority",
1507
+ ),
1508
+ (
1509
+ "easypost_globegistics_ecom_standard",
1510
+ "easypost_globegistics_ecom_standard",
1511
+ ),
1512
+ (
1513
+ "easypost_globegistics_ecom_tracked_ddp",
1514
+ "easypost_globegistics_ecom_tracked_ddp",
1515
+ ),
1516
+ (
1517
+ "easypost_globegistics_ecom_tracked_ddu",
1518
+ "easypost_globegistics_ecom_tracked_ddu",
1519
+ ),
1520
+ (
1521
+ "easypost_gso_early_priority_overnight",
1522
+ "easypost_gso_early_priority_overnight",
1523
+ ),
1524
+ (
1525
+ "easypost_gso_priority_overnight",
1526
+ "easypost_gso_priority_overnight",
1527
+ ),
1528
+ (
1529
+ "easypost_gso_california_parcel_service",
1530
+ "easypost_gso_california_parcel_service",
1531
+ ),
1532
+ (
1533
+ "easypost_gso_saturday_delivery_service",
1534
+ "easypost_gso_saturday_delivery_service",
1535
+ ),
1536
+ (
1537
+ "easypost_gso_early_saturday_service",
1538
+ "easypost_gso_early_saturday_service",
1539
+ ),
1540
+ (
1541
+ "easypost_hermes_domestic_delivery",
1542
+ "easypost_hermes_domestic_delivery",
1543
+ ),
1544
+ (
1545
+ "easypost_hermes_domestic_delivery_signed",
1546
+ "easypost_hermes_domestic_delivery_signed",
1547
+ ),
1548
+ (
1549
+ "easypost_hermes_international_delivery",
1550
+ "easypost_hermes_international_delivery",
1551
+ ),
1552
+ (
1553
+ "easypost_hermes_international_delivery_signed",
1554
+ "easypost_hermes_international_delivery_signed",
1555
+ ),
1556
+ (
1557
+ "easypost_interlink_air_classic_international_air",
1558
+ "easypost_interlink_air_classic_international_air",
1559
+ ),
1560
+ (
1561
+ "easypost_interlink_air_express_international_air",
1562
+ "easypost_interlink_air_express_international_air",
1563
+ ),
1564
+ (
1565
+ "easypost_interlink_expresspak1_by10_30",
1566
+ "easypost_interlink_expresspak1_by10_30",
1567
+ ),
1568
+ (
1569
+ "easypost_interlink_expresspak1_by12",
1570
+ "easypost_interlink_expresspak1_by12",
1571
+ ),
1572
+ (
1573
+ "easypost_interlink_expresspak1_next_day",
1574
+ "easypost_interlink_expresspak1_next_day",
1575
+ ),
1576
+ (
1577
+ "easypost_interlink_expresspak1_saturday",
1578
+ "easypost_interlink_expresspak1_saturday",
1579
+ ),
1580
+ (
1581
+ "easypost_interlink_expresspak1_saturday_by10_30",
1582
+ "easypost_interlink_expresspak1_saturday_by10_30",
1583
+ ),
1584
+ (
1585
+ "easypost_interlink_expresspak1_saturday_by12",
1586
+ "easypost_interlink_expresspak1_saturday_by12",
1587
+ ),
1588
+ (
1589
+ "easypost_interlink_expresspak1_sunday",
1590
+ "easypost_interlink_expresspak1_sunday",
1591
+ ),
1592
+ (
1593
+ "easypost_interlink_expresspak1_sunday_by12",
1594
+ "easypost_interlink_expresspak1_sunday_by12",
1595
+ ),
1596
+ (
1597
+ "easypost_interlink_expresspak5_by10",
1598
+ "easypost_interlink_expresspak5_by10",
1599
+ ),
1600
+ (
1601
+ "easypost_interlink_expresspak5_by10_30",
1602
+ "easypost_interlink_expresspak5_by10_30",
1603
+ ),
1604
+ (
1605
+ "easypost_interlink_expresspak5_by12",
1606
+ "easypost_interlink_expresspak5_by12",
1607
+ ),
1608
+ (
1609
+ "easypost_interlink_expresspak5_next_day",
1610
+ "easypost_interlink_expresspak5_next_day",
1611
+ ),
1612
+ (
1613
+ "easypost_interlink_expresspak5_saturday",
1614
+ "easypost_interlink_expresspak5_saturday",
1615
+ ),
1616
+ (
1617
+ "easypost_interlink_expresspak5_saturday_by10",
1618
+ "easypost_interlink_expresspak5_saturday_by10",
1619
+ ),
1620
+ (
1621
+ "easypost_interlink_expresspak5_saturday_by10_30",
1622
+ "easypost_interlink_expresspak5_saturday_by10_30",
1623
+ ),
1624
+ (
1625
+ "easypost_interlink_expresspak5_saturday_by12",
1626
+ "easypost_interlink_expresspak5_saturday_by12",
1627
+ ),
1628
+ (
1629
+ "easypost_interlink_expresspak5_sunday",
1630
+ "easypost_interlink_expresspak5_sunday",
1631
+ ),
1632
+ (
1633
+ "easypost_interlink_expresspak5_sunday_by12",
1634
+ "easypost_interlink_expresspak5_sunday_by12",
1635
+ ),
1636
+ (
1637
+ "easypost_interlink_freight_by10",
1638
+ "easypost_interlink_freight_by10",
1639
+ ),
1640
+ (
1641
+ "easypost_interlink_freight_by12",
1642
+ "easypost_interlink_freight_by12",
1643
+ ),
1644
+ (
1645
+ "easypost_interlink_freight_next_day",
1646
+ "easypost_interlink_freight_next_day",
1647
+ ),
1648
+ (
1649
+ "easypost_interlink_freight_saturday",
1650
+ "easypost_interlink_freight_saturday",
1651
+ ),
1652
+ (
1653
+ "easypost_interlink_freight_saturday_by10",
1654
+ "easypost_interlink_freight_saturday_by10",
1655
+ ),
1656
+ (
1657
+ "easypost_interlink_freight_saturday_by12",
1658
+ "easypost_interlink_freight_saturday_by12",
1659
+ ),
1660
+ (
1661
+ "easypost_interlink_freight_sunday",
1662
+ "easypost_interlink_freight_sunday",
1663
+ ),
1664
+ (
1665
+ "easypost_interlink_freight_sunday_by12",
1666
+ "easypost_interlink_freight_sunday_by12",
1667
+ ),
1668
+ (
1669
+ "easypost_interlink_parcel_by10",
1670
+ "easypost_interlink_parcel_by10",
1671
+ ),
1672
+ (
1673
+ "easypost_interlink_parcel_by10_30",
1674
+ "easypost_interlink_parcel_by10_30",
1675
+ ),
1676
+ (
1677
+ "easypost_interlink_parcel_by12",
1678
+ "easypost_interlink_parcel_by12",
1679
+ ),
1680
+ (
1681
+ "easypost_interlink_parcel_dpd_europe_by_road",
1682
+ "easypost_interlink_parcel_dpd_europe_by_road",
1683
+ ),
1684
+ (
1685
+ "easypost_interlink_parcel_next_day",
1686
+ "easypost_interlink_parcel_next_day",
1687
+ ),
1688
+ (
1689
+ "easypost_interlink_parcel_return",
1690
+ "easypost_interlink_parcel_return",
1691
+ ),
1692
+ (
1693
+ "easypost_interlink_parcel_return_to_shop",
1694
+ "easypost_interlink_parcel_return_to_shop",
1695
+ ),
1696
+ (
1697
+ "easypost_interlink_parcel_saturday",
1698
+ "easypost_interlink_parcel_saturday",
1699
+ ),
1700
+ (
1701
+ "easypost_interlink_parcel_saturday_by10",
1702
+ "easypost_interlink_parcel_saturday_by10",
1703
+ ),
1704
+ (
1705
+ "easypost_interlink_parcel_saturday_by10_30",
1706
+ "easypost_interlink_parcel_saturday_by10_30",
1707
+ ),
1708
+ (
1709
+ "easypost_interlink_parcel_saturday_by12",
1710
+ "easypost_interlink_parcel_saturday_by12",
1711
+ ),
1712
+ (
1713
+ "easypost_interlink_parcel_ship_to_shop",
1714
+ "easypost_interlink_parcel_ship_to_shop",
1715
+ ),
1716
+ (
1717
+ "easypost_interlink_parcel_sunday",
1718
+ "easypost_interlink_parcel_sunday",
1719
+ ),
1720
+ (
1721
+ "easypost_interlink_parcel_sunday_by12",
1722
+ "easypost_interlink_parcel_sunday_by12",
1723
+ ),
1724
+ (
1725
+ "easypost_interlink_parcel_two_day",
1726
+ "easypost_interlink_parcel_two_day",
1727
+ ),
1728
+ (
1729
+ "easypost_interlink_pickup_parcel_dpd_europe_by_road",
1730
+ "easypost_interlink_pickup_parcel_dpd_europe_by_road",
1731
+ ),
1732
+ ("easypost_lasership_weekend", "easypost_lasership_weekend"),
1733
+ ("easypost_loomis_ground", "easypost_loomis_ground"),
1734
+ ("easypost_loomis_express1800", "easypost_loomis_express1800"),
1735
+ ("easypost_loomis_express1200", "easypost_loomis_express1200"),
1736
+ ("easypost_loomis_express900", "easypost_loomis_express900"),
1737
+ ("easypost_lso_ground_early", "easypost_lso_ground_early"),
1738
+ ("easypost_lso_ground_basic", "easypost_lso_ground_basic"),
1739
+ ("easypost_lso_priority_basic", "easypost_lso_priority_basic"),
1740
+ ("easypost_lso_priority_early", "easypost_lso_priority_early"),
1741
+ (
1742
+ "easypost_lso_priority_saturday",
1743
+ "easypost_lso_priority_saturday",
1744
+ ),
1745
+ ("easypost_lso_priority2nd_day", "easypost_lso_priority2nd_day"),
1746
+ (
1747
+ "easypost_newgistics_parcel_select",
1748
+ "easypost_newgistics_parcel_select",
1749
+ ),
1750
+ (
1751
+ "easypost_newgistics_parcel_select_lightweight",
1752
+ "easypost_newgistics_parcel_select_lightweight",
1753
+ ),
1754
+ ("easypost_newgistics_express", "easypost_newgistics_express"),
1755
+ (
1756
+ "easypost_newgistics_first_class_mail",
1757
+ "easypost_newgistics_first_class_mail",
1758
+ ),
1759
+ (
1760
+ "easypost_newgistics_priority_mail",
1761
+ "easypost_newgistics_priority_mail",
1762
+ ),
1763
+ (
1764
+ "easypost_newgistics_bound_printed_matter",
1765
+ "easypost_newgistics_bound_printed_matter",
1766
+ ),
1767
+ ("easypost_ontrac_sunrise", "easypost_ontrac_sunrise"),
1768
+ ("easypost_ontrac_gold", "easypost_ontrac_gold"),
1769
+ (
1770
+ "easypost_ontrac_on_trac_ground",
1771
+ "easypost_ontrac_on_trac_ground",
1772
+ ),
1773
+ (
1774
+ "easypost_ontrac_palletized_freight",
1775
+ "easypost_ontrac_palletized_freight",
1776
+ ),
1777
+ ("easypost_osm_first", "easypost_osm_first"),
1778
+ ("easypost_osm_expedited", "easypost_osm_expedited"),
1779
+ ("easypost_osm_bpm", "easypost_osm_bpm"),
1780
+ ("easypost_osm_media_mail", "easypost_osm_media_mail"),
1781
+ ("easypost_osm_marketing_parcel", "easypost_osm_marketing_parcel"),
1782
+ (
1783
+ "easypost_osm_marketing_parcel_tracked",
1784
+ "easypost_osm_marketing_parcel_tracked",
1785
+ ),
1786
+ ("easypost_parcll_economy_west", "easypost_parcll_economy_west"),
1787
+ ("easypost_parcll_economy_east", "easypost_parcll_economy_east"),
1788
+ (
1789
+ "easypost_parcll_economy_central",
1790
+ "easypost_parcll_economy_central",
1791
+ ),
1792
+ (
1793
+ "easypost_parcll_economy_northeast",
1794
+ "easypost_parcll_economy_northeast",
1795
+ ),
1796
+ ("easypost_parcll_economy_south", "easypost_parcll_economy_south"),
1797
+ (
1798
+ "easypost_parcll_expedited_west",
1799
+ "easypost_parcll_expedited_west",
1800
+ ),
1801
+ (
1802
+ "easypost_parcll_expedited_northeast",
1803
+ "easypost_parcll_expedited_northeast",
1804
+ ),
1805
+ ("easypost_parcll_regional_west", "easypost_parcll_regional_west"),
1806
+ ("easypost_parcll_regional_east", "easypost_parcll_regional_east"),
1807
+ (
1808
+ "easypost_parcll_regional_central",
1809
+ "easypost_parcll_regional_central",
1810
+ ),
1811
+ (
1812
+ "easypost_parcll_regional_northeast",
1813
+ "easypost_parcll_regional_northeast",
1814
+ ),
1815
+ (
1816
+ "easypost_parcll_regional_south",
1817
+ "easypost_parcll_regional_south",
1818
+ ),
1819
+ (
1820
+ "easypost_parcll_us_to_canada_economy_west",
1821
+ "easypost_parcll_us_to_canada_economy_west",
1822
+ ),
1823
+ (
1824
+ "easypost_parcll_us_to_canada_economy_central",
1825
+ "easypost_parcll_us_to_canada_economy_central",
1826
+ ),
1827
+ (
1828
+ "easypost_parcll_us_to_canada_economy_northeast",
1829
+ "easypost_parcll_us_to_canada_economy_northeast",
1830
+ ),
1831
+ (
1832
+ "easypost_parcll_us_to_europe_economy_west",
1833
+ "easypost_parcll_us_to_europe_economy_west",
1834
+ ),
1835
+ (
1836
+ "easypost_parcll_us_to_europe_economy_northeast",
1837
+ "easypost_parcll_us_to_europe_economy_northeast",
1838
+ ),
1839
+ ("easypost_purolator_express", "easypost_purolator_express"),
1840
+ (
1841
+ "easypost_purolator_express12_pm",
1842
+ "easypost_purolator_express12_pm",
1843
+ ),
1844
+ (
1845
+ "easypost_purolator_express_pack12_pm",
1846
+ "easypost_purolator_express_pack12_pm",
1847
+ ),
1848
+ (
1849
+ "easypost_purolator_express_box12_pm",
1850
+ "easypost_purolator_express_box12_pm",
1851
+ ),
1852
+ (
1853
+ "easypost_purolator_express_envelope12_pm",
1854
+ "easypost_purolator_express_envelope12_pm",
1855
+ ),
1856
+ (
1857
+ "easypost_purolator_express1030_am",
1858
+ "easypost_purolator_express1030_am",
1859
+ ),
1860
+ (
1861
+ "easypost_purolator_express9_am",
1862
+ "easypost_purolator_express9_am",
1863
+ ),
1864
+ (
1865
+ "easypost_purolator_express_box",
1866
+ "easypost_purolator_express_box",
1867
+ ),
1868
+ (
1869
+ "easypost_purolator_express_box1030_am",
1870
+ "easypost_purolator_express_box1030_am",
1871
+ ),
1872
+ (
1873
+ "easypost_purolator_express_box9_am",
1874
+ "easypost_purolator_express_box9_am",
1875
+ ),
1876
+ (
1877
+ "easypost_purolator_express_box_evening",
1878
+ "easypost_purolator_express_box_evening",
1879
+ ),
1880
+ (
1881
+ "easypost_purolator_express_box_international",
1882
+ "easypost_purolator_express_box_international",
1883
+ ),
1884
+ (
1885
+ "easypost_purolator_express_box_international1030_am",
1886
+ "easypost_purolator_express_box_international1030_am",
1887
+ ),
1888
+ (
1889
+ "easypost_purolator_express_box_international1200",
1890
+ "easypost_purolator_express_box_international1200",
1891
+ ),
1892
+ (
1893
+ "easypost_purolator_express_box_international9_am",
1894
+ "easypost_purolator_express_box_international9_am",
1895
+ ),
1896
+ (
1897
+ "easypost_purolator_express_box_us",
1898
+ "easypost_purolator_express_box_us",
1899
+ ),
1900
+ (
1901
+ "easypost_purolator_express_box_us1030_am",
1902
+ "easypost_purolator_express_box_us1030_am",
1903
+ ),
1904
+ (
1905
+ "easypost_purolator_express_box_us1200",
1906
+ "easypost_purolator_express_box_us1200",
1907
+ ),
1908
+ (
1909
+ "easypost_purolator_express_box_us9_am",
1910
+ "easypost_purolator_express_box_us9_am",
1911
+ ),
1912
+ (
1913
+ "easypost_purolator_express_envelope",
1914
+ "easypost_purolator_express_envelope",
1915
+ ),
1916
+ (
1917
+ "easypost_purolator_express_envelope1030_am",
1918
+ "easypost_purolator_express_envelope1030_am",
1919
+ ),
1920
+ (
1921
+ "easypost_purolator_express_envelope9_am",
1922
+ "easypost_purolator_express_envelope9_am",
1923
+ ),
1924
+ (
1925
+ "easypost_purolator_express_envelope_evening",
1926
+ "easypost_purolator_express_envelope_evening",
1927
+ ),
1928
+ (
1929
+ "easypost_purolator_express_envelope_international",
1930
+ "easypost_purolator_express_envelope_international",
1931
+ ),
1932
+ (
1933
+ "easypost_purolator_express_envelope_international1030_am",
1934
+ "easypost_purolator_express_envelope_international1030_am",
1935
+ ),
1936
+ (
1937
+ "easypost_purolator_express_envelope_international1200",
1938
+ "easypost_purolator_express_envelope_international1200",
1939
+ ),
1940
+ (
1941
+ "easypost_purolator_express_envelope_international9_am",
1942
+ "easypost_purolator_express_envelope_international9_am",
1943
+ ),
1944
+ (
1945
+ "easypost_purolator_express_envelope_us",
1946
+ "easypost_purolator_express_envelope_us",
1947
+ ),
1948
+ (
1949
+ "easypost_purolator_express_envelope_us1030_am",
1950
+ "easypost_purolator_express_envelope_us1030_am",
1951
+ ),
1952
+ (
1953
+ "easypost_purolator_express_envelope_us1200",
1954
+ "easypost_purolator_express_envelope_us1200",
1955
+ ),
1956
+ (
1957
+ "easypost_purolator_express_envelope_us9_am",
1958
+ "easypost_purolator_express_envelope_us9_am",
1959
+ ),
1960
+ (
1961
+ "easypost_purolator_express_evening",
1962
+ "easypost_purolator_express_evening",
1963
+ ),
1964
+ (
1965
+ "easypost_purolator_express_international",
1966
+ "easypost_purolator_express_international",
1967
+ ),
1968
+ (
1969
+ "easypost_purolator_express_international1030_am",
1970
+ "easypost_purolator_express_international1030_am",
1971
+ ),
1972
+ (
1973
+ "easypost_purolator_express_international1200",
1974
+ "easypost_purolator_express_international1200",
1975
+ ),
1976
+ (
1977
+ "easypost_purolator_express_international9_am",
1978
+ "easypost_purolator_express_international9_am",
1979
+ ),
1980
+ (
1981
+ "easypost_purolator_express_pack",
1982
+ "easypost_purolator_express_pack",
1983
+ ),
1984
+ (
1985
+ "easypost_purolator_express_pack1030_am",
1986
+ "easypost_purolator_express_pack1030_am",
1987
+ ),
1988
+ (
1989
+ "easypost_purolator_express_pack9_am",
1990
+ "easypost_purolator_express_pack9_am",
1991
+ ),
1992
+ (
1993
+ "easypost_purolator_express_pack_evening",
1994
+ "easypost_purolator_express_pack_evening",
1995
+ ),
1996
+ (
1997
+ "easypost_purolator_express_pack_international",
1998
+ "easypost_purolator_express_pack_international",
1999
+ ),
2000
+ (
2001
+ "easypost_purolator_express_pack_international1030_am",
2002
+ "easypost_purolator_express_pack_international1030_am",
2003
+ ),
2004
+ (
2005
+ "easypost_purolator_express_pack_international1200",
2006
+ "easypost_purolator_express_pack_international1200",
2007
+ ),
2008
+ (
2009
+ "easypost_purolator_express_pack_international9_am",
2010
+ "easypost_purolator_express_pack_international9_am",
2011
+ ),
2012
+ (
2013
+ "easypost_purolator_express_pack_us",
2014
+ "easypost_purolator_express_pack_us",
2015
+ ),
2016
+ (
2017
+ "easypost_purolator_express_pack_us1030_am",
2018
+ "easypost_purolator_express_pack_us1030_am",
2019
+ ),
2020
+ (
2021
+ "easypost_purolator_express_pack_us1200",
2022
+ "easypost_purolator_express_pack_us1200",
2023
+ ),
2024
+ (
2025
+ "easypost_purolator_express_pack_us9_am",
2026
+ "easypost_purolator_express_pack_us9_am",
2027
+ ),
2028
+ ("easypost_purolator_express_us", "easypost_purolator_express_us"),
2029
+ (
2030
+ "easypost_purolator_express_us1030_am",
2031
+ "easypost_purolator_express_us1030_am",
2032
+ ),
2033
+ (
2034
+ "easypost_purolator_express_us1200",
2035
+ "easypost_purolator_express_us1200",
2036
+ ),
2037
+ (
2038
+ "easypost_purolator_express_us9_am",
2039
+ "easypost_purolator_express_us9_am",
2040
+ ),
2041
+ ("easypost_purolator_ground", "easypost_purolator_ground"),
2042
+ (
2043
+ "easypost_purolator_ground1030_am",
2044
+ "easypost_purolator_ground1030_am",
2045
+ ),
2046
+ ("easypost_purolator_ground9_am", "easypost_purolator_ground9_am"),
2047
+ (
2048
+ "easypost_purolator_ground_distribution",
2049
+ "easypost_purolator_ground_distribution",
2050
+ ),
2051
+ (
2052
+ "easypost_purolator_ground_evening",
2053
+ "easypost_purolator_ground_evening",
2054
+ ),
2055
+ (
2056
+ "easypost_purolator_ground_regional",
2057
+ "easypost_purolator_ground_regional",
2058
+ ),
2059
+ ("easypost_purolator_ground_us", "easypost_purolator_ground_us"),
2060
+ (
2061
+ "easypost_royalmail_international_signed",
2062
+ "easypost_royalmail_international_signed",
2063
+ ),
2064
+ (
2065
+ "easypost_royalmail_international_tracked",
2066
+ "easypost_royalmail_international_tracked",
2067
+ ),
2068
+ (
2069
+ "easypost_royalmail_international_tracked_and_signed",
2070
+ "easypost_royalmail_international_tracked_and_signed",
2071
+ ),
2072
+ ("easypost_royalmail_1st_class", "easypost_royalmail_1st_class"),
2073
+ (
2074
+ "easypost_royalmail_1st_class_signed_for",
2075
+ "easypost_royalmail_1st_class_signed_for",
2076
+ ),
2077
+ ("easypost_royalmail_2nd_class", "easypost_royalmail_2nd_class"),
2078
+ (
2079
+ "easypost_royalmail_2nd_class_signed_for",
2080
+ "easypost_royalmail_2nd_class_signed_for",
2081
+ ),
2082
+ (
2083
+ "easypost_royalmail_royal_mail24",
2084
+ "easypost_royalmail_royal_mail24",
2085
+ ),
2086
+ (
2087
+ "easypost_royalmail_royal_mail24_signed_for",
2088
+ "easypost_royalmail_royal_mail24_signed_for",
2089
+ ),
2090
+ (
2091
+ "easypost_royalmail_royal_mail48",
2092
+ "easypost_royalmail_royal_mail48",
2093
+ ),
2094
+ (
2095
+ "easypost_royalmail_royal_mail48_signed_for",
2096
+ "easypost_royalmail_royal_mail48_signed_for",
2097
+ ),
2098
+ (
2099
+ "easypost_royalmail_special_delivery_guaranteed1pm",
2100
+ "easypost_royalmail_special_delivery_guaranteed1pm",
2101
+ ),
2102
+ (
2103
+ "easypost_royalmail_special_delivery_guaranteed9am",
2104
+ "easypost_royalmail_special_delivery_guaranteed9am",
2105
+ ),
2106
+ (
2107
+ "easypost_royalmail_standard_letter1st_class",
2108
+ "easypost_royalmail_standard_letter1st_class",
2109
+ ),
2110
+ (
2111
+ "easypost_royalmail_standard_letter1st_class_signed_for",
2112
+ "easypost_royalmail_standard_letter1st_class_signed_for",
2113
+ ),
2114
+ (
2115
+ "easypost_royalmail_standard_letter2nd_class",
2116
+ "easypost_royalmail_standard_letter2nd_class",
2117
+ ),
2118
+ (
2119
+ "easypost_royalmail_standard_letter2nd_class_signed_for",
2120
+ "easypost_royalmail_standard_letter2nd_class_signed_for",
2121
+ ),
2122
+ ("easypost_royalmail_tracked24", "easypost_royalmail_tracked24"),
2123
+ (
2124
+ "easypost_royalmail_tracked24_high_volume",
2125
+ "easypost_royalmail_tracked24_high_volume",
2126
+ ),
2127
+ (
2128
+ "easypost_royalmail_tracked24_high_volume_signature",
2129
+ "easypost_royalmail_tracked24_high_volume_signature",
2130
+ ),
2131
+ (
2132
+ "easypost_royalmail_tracked24_signature",
2133
+ "easypost_royalmail_tracked24_signature",
2134
+ ),
2135
+ ("easypost_royalmail_tracked48", "easypost_royalmail_tracked48"),
2136
+ (
2137
+ "easypost_royalmail_tracked48_high_volume",
2138
+ "easypost_royalmail_tracked48_high_volume",
2139
+ ),
2140
+ (
2141
+ "easypost_royalmail_tracked48_high_volume_signature",
2142
+ "easypost_royalmail_tracked48_high_volume_signature",
2143
+ ),
2144
+ (
2145
+ "easypost_royalmail_tracked48_signature",
2146
+ "easypost_royalmail_tracked48_signature",
2147
+ ),
2148
+ (
2149
+ "easypost_seko_ecommerce_standard_tracked",
2150
+ "easypost_seko_ecommerce_standard_tracked",
2151
+ ),
2152
+ (
2153
+ "easypost_seko_ecommerce_express_tracked",
2154
+ "easypost_seko_ecommerce_express_tracked",
2155
+ ),
2156
+ (
2157
+ "easypost_seko_domestic_express",
2158
+ "easypost_seko_domestic_express",
2159
+ ),
2160
+ (
2161
+ "easypost_seko_domestic_standard",
2162
+ "easypost_seko_domestic_standard",
2163
+ ),
2164
+ ("easypost_sendle_easy", "easypost_sendle_easy"),
2165
+ ("easypost_sendle_pro", "easypost_sendle_pro"),
2166
+ ("easypost_sendle_plus", "easypost_sendle_plus"),
2167
+ (
2168
+ "easypost_sfexpress_international_standard_express_doc",
2169
+ "easypost_sfexpress_international_standard_express_doc",
2170
+ ),
2171
+ (
2172
+ "easypost_sfexpress_international_standard_express_parcel",
2173
+ "easypost_sfexpress_international_standard_express_parcel",
2174
+ ),
2175
+ (
2176
+ "easypost_sfexpress_international_economy_express_pilot",
2177
+ "easypost_sfexpress_international_economy_express_pilot",
2178
+ ),
2179
+ (
2180
+ "easypost_sfexpress_international_economy_express_doc",
2181
+ "easypost_sfexpress_international_economy_express_doc",
2182
+ ),
2183
+ ("easypost_speedee_delivery", "easypost_speedee_delivery"),
2184
+ ("easypost_startrack_express", "easypost_startrack_express"),
2185
+ ("easypost_startrack_premium", "easypost_startrack_premium"),
2186
+ (
2187
+ "easypost_startrack_fixed_price_premium",
2188
+ "easypost_startrack_fixed_price_premium",
2189
+ ),
2190
+ (
2191
+ "easypost_tforce_same_day_white_glove",
2192
+ "easypost_tforce_same_day_white_glove",
2193
+ ),
2194
+ (
2195
+ "easypost_tforce_next_day_white_glove",
2196
+ "easypost_tforce_next_day_white_glove",
2197
+ ),
2198
+ ("easypost_uds_delivery_service", "easypost_uds_delivery_service"),
2199
+ ("easypost_ups_standard", "easypost_ups_standard"),
2200
+ ("easypost_ups_saver", "easypost_ups_saver"),
2201
+ ("easypost_ups_express_plus", "easypost_ups_express_plus"),
2202
+ ("easypost_ups_next_day_air", "easypost_ups_next_day_air"),
2203
+ (
2204
+ "easypost_ups_next_day_air_saver",
2205
+ "easypost_ups_next_day_air_saver",
2206
+ ),
2207
+ (
2208
+ "easypost_ups_next_day_air_early_am",
2209
+ "easypost_ups_next_day_air_early_am",
2210
+ ),
2211
+ ("easypost_ups_2nd_day_air", "easypost_ups_2nd_day_air"),
2212
+ ("easypost_ups_2nd_day_air_am", "easypost_ups_2nd_day_air_am"),
2213
+ ("easypost_ups_3_day_select", "easypost_ups_3_day_select"),
2214
+ (
2215
+ "easypost_ups_mail_expedited_mail_innovations",
2216
+ "easypost_ups_mail_expedited_mail_innovations",
2217
+ ),
2218
+ (
2219
+ "easypost_ups_mail_priority_mail_innovations",
2220
+ "easypost_ups_mail_priority_mail_innovations",
2221
+ ),
2222
+ (
2223
+ "easypost_ups_mail_economy_mail_innovations",
2224
+ "easypost_ups_mail_economy_mail_innovations",
2225
+ ),
2226
+ ("easypost_usps_library_mail", "easypost_usps_library_mail"),
2227
+ (
2228
+ "easypost_usps_first_class_mail_international",
2229
+ "easypost_usps_first_class_mail_international",
2230
+ ),
2231
+ (
2232
+ "easypost_usps_first_class_package_international_service",
2233
+ "easypost_usps_first_class_package_international_service",
2234
+ ),
2235
+ (
2236
+ "easypost_usps_priority_mail_international",
2237
+ "easypost_usps_priority_mail_international",
2238
+ ),
2239
+ (
2240
+ "easypost_usps_express_mail_international",
2241
+ "easypost_usps_express_mail_international",
2242
+ ),
2243
+ ("easypost_veho_next_day", "easypost_veho_next_day"),
2244
+ ("easypost_veho_same_day", "easypost_veho_same_day"),
2245
+ (
2246
+ "eshipper_aramex_economy_document_express",
2247
+ "eshipper_aramex_economy_document_express",
2248
+ ),
2249
+ (
2250
+ "eshipper_aramex_economy_parcel_express",
2251
+ "eshipper_aramex_economy_parcel_express",
2252
+ ),
2253
+ (
2254
+ "eshipper_aramex_priority_letter_express",
2255
+ "eshipper_aramex_priority_letter_express",
2256
+ ),
2257
+ (
2258
+ "eshipper_aramex_priority_parcel_express",
2259
+ "eshipper_aramex_priority_parcel_express",
2260
+ ),
2261
+ (
2262
+ "eshipper_canada_post_air_parcel_intl",
2263
+ "eshipper_canada_post_air_parcel_intl",
2264
+ ),
2265
+ (
2266
+ "eshipper_canada_post_expedited",
2267
+ "eshipper_canada_post_expedited",
2268
+ ),
2269
+ (
2270
+ "eshipper_canada_post_expedited_parcel_usa",
2271
+ "eshipper_canada_post_expedited_parcel_usa",
2272
+ ),
2273
+ (
2274
+ "eshipper_canada_post_priority_courier",
2275
+ "eshipper_canada_post_priority_courier",
2276
+ ),
2277
+ ("eshipper_canada_post_regular", "eshipper_canada_post_regular"),
2278
+ (
2279
+ "eshipper_canada_post_small_packet",
2280
+ "eshipper_canada_post_small_packet",
2281
+ ),
2282
+ (
2283
+ "eshipper_canada_post_small_packet_international_air",
2284
+ "eshipper_canada_post_small_packet_international_air",
2285
+ ),
2286
+ (
2287
+ "eshipper_canada_post_small_packet_international_surface",
2288
+ "eshipper_canada_post_small_packet_international_surface",
2289
+ ),
2290
+ (
2291
+ "eshipper_canada_post_surface_parcel_intl",
2292
+ "eshipper_canada_post_surface_parcel_intl",
2293
+ ),
2294
+ (
2295
+ "eshipper_canada_post_xpress_post",
2296
+ "eshipper_canada_post_xpress_post",
2297
+ ),
2298
+ (
2299
+ "eshipper_canada_post_xpress_post_intl",
2300
+ "eshipper_canada_post_xpress_post_intl",
2301
+ ),
2302
+ (
2303
+ "eshipper_canada_post_xpress_post_usa",
2304
+ "eshipper_canada_post_xpress_post_usa",
2305
+ ),
2306
+ (
2307
+ "eshipper_canada_post_xpresspost",
2308
+ "eshipper_canada_post_xpresspost",
2309
+ ),
2310
+ (
2311
+ "eshipper_canpar_express_letter",
2312
+ "eshipper_canpar_express_letter",
2313
+ ),
2314
+ ("eshipper_canpar_express_pak", "eshipper_canpar_express_pak"),
2315
+ (
2316
+ "eshipper_canpar_express_parcel",
2317
+ "eshipper_canpar_express_parcel",
2318
+ ),
2319
+ ("eshipper_canpar_ground", "eshipper_canpar_ground"),
2320
+ ("eshipper_canpar_international", "eshipper_canpar_international"),
2321
+ ("eshipper_canpar_select_letter", "eshipper_canpar_select_letter"),
2322
+ ("eshipper_canpar_select_pak", "eshipper_canpar_select_pak"),
2323
+ ("eshipper_canpar_select_parcel", "eshipper_canpar_select_parcel"),
2324
+ ("eshipper_canpar_usa", "eshipper_canpar_usa"),
2325
+ (
2326
+ "eshipper_canpar_usa_select_letter",
2327
+ "eshipper_canpar_usa_select_letter",
2328
+ ),
2329
+ (
2330
+ "eshipper_canpar_usa_select_pak",
2331
+ "eshipper_canpar_usa_select_pak",
2332
+ ),
2333
+ (
2334
+ "eshipper_canpar_usa_select_parcel",
2335
+ "eshipper_canpar_usa_select_parcel",
2336
+ ),
2337
+ ("eshipper_cpx_canada_post", "eshipper_cpx_canada_post"),
2338
+ ("eshipper_day_ross_ltl", "eshipper_day_ross_ltl"),
2339
+ ("eshipper_dhl_dhl_ground", "eshipper_dhl_dhl_ground"),
2340
+ ("eshipper_dhl_economy_select", "eshipper_dhl_economy_select"),
2341
+ ("eshipper_dhl_esi_export", "eshipper_dhl_esi_export"),
2342
+ ("eshipper_dhl_express_1030am", "eshipper_dhl_express_1030am"),
2343
+ ("eshipper_dhl_express_12pm", "eshipper_dhl_express_12pm"),
2344
+ ("eshipper_dhl_express_900", "eshipper_dhl_express_900"),
2345
+ ("eshipper_dhl_express_9am", "eshipper_dhl_express_9am"),
2346
+ ("eshipper_dhl_express_envelope", "eshipper_dhl_express_envelope"),
2347
+ (
2348
+ "eshipper_dhl_express_worldwide",
2349
+ "eshipper_dhl_express_worldwide",
2350
+ ),
2351
+ ("eshipper_dhl_import_express", "eshipper_dhl_import_express"),
2352
+ (
2353
+ "eshipper_dhl_import_express_12pm",
2354
+ "eshipper_dhl_import_express_12pm",
2355
+ ),
2356
+ (
2357
+ "eshipper_dhl_import_express_9am",
2358
+ "eshipper_dhl_import_express_9am",
2359
+ ),
2360
+ ("eshipper_ltl_apex_v", "eshipper_ltl_apex_v"),
2361
+ ("eshipper_ltl_apex_trucking", "eshipper_ltl_apex_trucking"),
2362
+ ("eshipper_ltl_apex_trucking_v", "eshipper_ltl_apex_trucking_v"),
2363
+ ("eshipper_ltl_fastfrate_rail", "eshipper_ltl_fastfrate_rail"),
2364
+ (
2365
+ "eshipper_ltl_kindersley_expedited",
2366
+ "eshipper_ltl_kindersley_expedited",
2367
+ ),
2368
+ ("eshipper_ltl_kindersley_rail", "eshipper_ltl_kindersley_rail"),
2369
+ (
2370
+ "eshipper_ltl_kindersley_regular",
2371
+ "eshipper_ltl_kindersley_regular",
2372
+ ),
2373
+ ("eshipper_ltl_kindersley_road", "eshipper_ltl_kindersley_road"),
2374
+ ("eshipper_ltl_kingsway_road", "eshipper_ltl_kingsway_road"),
2375
+ ("eshipper_ltl_m_o_eastbound", "eshipper_ltl_m_o_eastbound"),
2376
+ ("eshipper_ltl_mo_rail", "eshipper_ltl_mo_rail"),
2377
+ (
2378
+ "eshipper_ltl_national_fastfreight_rail",
2379
+ "eshipper_ltl_national_fastfreight_rail",
2380
+ ),
2381
+ (
2382
+ "eshipper_ltl_national_fastfreight_road",
2383
+ "eshipper_ltl_national_fastfreight_road",
2384
+ ),
2385
+ ("eshipper_ltl_vitran_rail", "eshipper_ltl_vitran_rail"),
2386
+ ("eshipper_ltl_vitran_road", "eshipper_ltl_vitran_road"),
2387
+ (
2388
+ "eshipper_ltl_western_canada_rail",
2389
+ "eshipper_ltl_western_canada_rail",
2390
+ ),
2391
+ (
2392
+ "eshipper_federal_express_2day_freight",
2393
+ "eshipper_federal_express_2day_freight",
2394
+ ),
2395
+ (
2396
+ "eshipper_federal_express_3day_freight",
2397
+ "eshipper_federal_express_3day_freight",
2398
+ ),
2399
+ (
2400
+ "eshipper_federal_express_fedex_2nd_day",
2401
+ "eshipper_federal_express_fedex_2nd_day",
2402
+ ),
2403
+ (
2404
+ "eshipper_federal_express_fedex_economy",
2405
+ "eshipper_federal_express_fedex_economy",
2406
+ ),
2407
+ (
2408
+ "eshipper_federal_express_fedex_first_overnight",
2409
+ "eshipper_federal_express_fedex_first_overnight",
2410
+ ),
2411
+ (
2412
+ "eshipper_federal_express_fedex_ground",
2413
+ "eshipper_federal_express_fedex_ground",
2414
+ ),
2415
+ (
2416
+ "eshipper_federal_express_fedex_ground_us",
2417
+ "eshipper_federal_express_fedex_ground_us",
2418
+ ),
2419
+ (
2420
+ "eshipper_federal_express_fedex_international_priority",
2421
+ "eshipper_federal_express_fedex_international_priority",
2422
+ ),
2423
+ (
2424
+ "eshipper_federal_express_fedex_international_priority_express",
2425
+ "eshipper_federal_express_fedex_international_priority_express",
2426
+ ),
2427
+ (
2428
+ "eshipper_federal_express_fedex_intl_economy",
2429
+ "eshipper_federal_express_fedex_intl_economy",
2430
+ ),
2431
+ (
2432
+ "eshipper_federal_express_fedex_intl_economy_freight",
2433
+ "eshipper_federal_express_fedex_intl_economy_freight",
2434
+ ),
2435
+ (
2436
+ "eshipper_federal_express_fedex_intl_priority",
2437
+ "eshipper_federal_express_fedex_intl_priority",
2438
+ ),
2439
+ (
2440
+ "eshipper_federal_express_fedex_intl_priority_express",
2441
+ "eshipper_federal_express_fedex_intl_priority_express",
2442
+ ),
2443
+ (
2444
+ "eshipper_federal_express_fedex_intl_priority_freight",
2445
+ "eshipper_federal_express_fedex_intl_priority_freight",
2446
+ ),
2447
+ (
2448
+ "eshipper_federal_express_fedex_priority",
2449
+ "eshipper_federal_express_fedex_priority",
2450
+ ),
2451
+ (
2452
+ "eshipper_federal_express_fedex_standard_overnight",
2453
+ "eshipper_federal_express_fedex_standard_overnight",
2454
+ ),
2455
+ ("eshipper_flashbird_ground", "eshipper_flashbird_ground"),
2456
+ ("eshipper_fleet_optics_ground", "eshipper_fleet_optics_ground"),
2457
+ (
2458
+ "eshipper_project44_a_duie_pyle",
2459
+ "eshipper_project44_a_duie_pyle",
2460
+ ),
2461
+ (
2462
+ "eshipper_project44_aaa_cooper_transportation",
2463
+ "eshipper_project44_aaa_cooper_transportation",
2464
+ ),
2465
+ (
2466
+ "eshipper_project44_aberdeen_express",
2467
+ "eshipper_project44_aberdeen_express",
2468
+ ),
2469
+ ("eshipper_project44_abfs", "eshipper_project44_abfs"),
2470
+ (
2471
+ "eshipper_project44_averitt_express",
2472
+ "eshipper_project44_averitt_express",
2473
+ ),
2474
+ (
2475
+ "eshipper_project44_brown_transfer_company",
2476
+ "eshipper_project44_brown_transfer_company",
2477
+ ),
2478
+ (
2479
+ "eshipper_project44_central_freight_lines",
2480
+ "eshipper_project44_central_freight_lines",
2481
+ ),
2482
+ (
2483
+ "eshipper_project44_central_transport",
2484
+ "eshipper_project44_central_transport",
2485
+ ),
2486
+ (
2487
+ "eshipper_project44_chicago_suburban_express",
2488
+ "eshipper_project44_chicago_suburban_express",
2489
+ ),
2490
+ (
2491
+ "eshipper_project44_clear_lane_freight",
2492
+ "eshipper_project44_clear_lane_freight",
2493
+ ),
2494
+ (
2495
+ "eshipper_project44_con_way_freight",
2496
+ "eshipper_project44_con_way_freight",
2497
+ ),
2498
+ (
2499
+ "eshipper_project44_crosscountry_courier",
2500
+ "eshipper_project44_crosscountry_courier",
2501
+ ),
2502
+ ("eshipper_project44_day_ross", "eshipper_project44_day_ross"),
2503
+ ("eshipper_project44_day_ross_v", "eshipper_project44_day_ross_v"),
2504
+ (
2505
+ "eshipper_project44_dayton_freight_lines",
2506
+ "eshipper_project44_dayton_freight_lines",
2507
+ ),
2508
+ (
2509
+ "eshipper_project44_dependable_highway_express",
2510
+ "eshipper_project44_dependable_highway_express",
2511
+ ),
2512
+ (
2513
+ "eshipper_project44_dohrn_transfer_company",
2514
+ "eshipper_project44_dohrn_transfer_company",
2515
+ ),
2516
+ (
2517
+ "eshipper_project44_dugan_truck_line",
2518
+ "eshipper_project44_dugan_truck_line",
2519
+ ),
2520
+ (
2521
+ "eshipper_project44_estes_express_lines",
2522
+ "eshipper_project44_estes_express_lines",
2523
+ ),
2524
+ (
2525
+ "eshipper_project44_expedited_freight_systems",
2526
+ "eshipper_project44_expedited_freight_systems",
2527
+ ),
2528
+ (
2529
+ "eshipper_project44_fedex_freight_canada",
2530
+ "eshipper_project44_fedex_freight_canada",
2531
+ ),
2532
+ (
2533
+ "eshipper_project44_fedex_freight_east",
2534
+ "eshipper_project44_fedex_freight_east",
2535
+ ),
2536
+ (
2537
+ "eshipper_project44_fedex_freight_national_canada",
2538
+ "eshipper_project44_fedex_freight_national_canada",
2539
+ ),
2540
+ (
2541
+ "eshipper_project44_fedex_freight_national_usa",
2542
+ "eshipper_project44_fedex_freight_national_usa",
2543
+ ),
2544
+ (
2545
+ "eshipper_project44_fedex_freight_usa",
2546
+ "eshipper_project44_fedex_freight_usa",
2547
+ ),
2548
+ (
2549
+ "eshipper_project44_fedex_national",
2550
+ "eshipper_project44_fedex_national",
2551
+ ),
2552
+ ("eshipper_project44_forwardair", "eshipper_project44_forwardair"),
2553
+ (
2554
+ "eshipper_project44_frontline_freight",
2555
+ "eshipper_project44_frontline_freight",
2556
+ ),
2557
+ (
2558
+ "eshipper_project44_holland_motor_express",
2559
+ "eshipper_project44_holland_motor_express",
2560
+ ),
2561
+ (
2562
+ "eshipper_project44_lakeville_motor_express",
2563
+ "eshipper_project44_lakeville_motor_express",
2564
+ ),
2565
+ (
2566
+ "eshipper_project44_manitoulin_tlx_inc",
2567
+ "eshipper_project44_manitoulin_tlx_inc",
2568
+ ),
2569
+ (
2570
+ "eshipper_project44_midwest_motor_express",
2571
+ "eshipper_project44_midwest_motor_express",
2572
+ ),
2573
+ (
2574
+ "eshipper_project44_monroe_transportation_services",
2575
+ "eshipper_project44_monroe_transportation_services",
2576
+ ),
2577
+ (
2578
+ "eshipper_project44_n_m_transfer",
2579
+ "eshipper_project44_n_m_transfer",
2580
+ ),
2581
+ (
2582
+ "eshipper_project44_new_england_motor_freight",
2583
+ "eshipper_project44_new_england_motor_freight",
2584
+ ),
2585
+ (
2586
+ "eshipper_project44_new_penn_motor_express",
2587
+ "eshipper_project44_new_penn_motor_express",
2588
+ ),
2589
+ ("eshipper_project44_pitt_ohio", "eshipper_project44_pitt_ohio"),
2590
+ ("eshipper_project44_polaris", "eshipper_project44_polaris"),
2591
+ (
2592
+ "eshipper_project44_purolator_freight",
2593
+ "eshipper_project44_purolator_freight",
2594
+ ),
2595
+ (
2596
+ "eshipper_project44_rl_carriers",
2597
+ "eshipper_project44_rl_carriers",
2598
+ ),
2599
+ (
2600
+ "eshipper_project44_roadrunner_transportation_services",
2601
+ "eshipper_project44_roadrunner_transportation_services",
2602
+ ),
2603
+ (
2604
+ "eshipper_project44_saia_motor_freight",
2605
+ "eshipper_project44_saia_motor_freight",
2606
+ ),
2607
+ (
2608
+ "eshipper_project44_southeastern_freight_lines",
2609
+ "eshipper_project44_southeastern_freight_lines",
2610
+ ),
2611
+ (
2612
+ "eshipper_project44_southwestern_motor_transport",
2613
+ "eshipper_project44_southwestern_motor_transport",
2614
+ ),
2615
+ (
2616
+ "eshipper_project44_standard_forwarding",
2617
+ "eshipper_project44_standard_forwarding",
2618
+ ),
2619
+ (
2620
+ "eshipper_project44_total_transportation_distribution",
2621
+ "eshipper_project44_total_transportation_distribution",
2622
+ ),
2623
+ (
2624
+ "eshipper_project44_tst_overland_express",
2625
+ "eshipper_project44_tst_overland_express",
2626
+ ),
2627
+ ("eshipper_project44_ups", "eshipper_project44_ups"),
2628
+ (
2629
+ "eshipper_project44_usf_reddaway",
2630
+ "eshipper_project44_usf_reddaway",
2631
+ ),
2632
+ (
2633
+ "eshipper_project44_valley_cartage",
2634
+ "eshipper_project44_valley_cartage",
2635
+ ),
2636
+ (
2637
+ "eshipper_project44_vision_express_ltl",
2638
+ "eshipper_project44_vision_express_ltl",
2639
+ ),
2640
+ (
2641
+ "eshipper_project44_ward_trucking",
2642
+ "eshipper_project44_ward_trucking",
2643
+ ),
2644
+ (
2645
+ "eshipper_project44_xpo_logistics",
2646
+ "eshipper_project44_xpo_logistics",
2647
+ ),
2648
+ (
2649
+ "eshipper_project44_xpress_global_systems",
2650
+ "eshipper_project44_xpress_global_systems",
2651
+ ),
2652
+ ("eshipper_project44_yrc", "eshipper_project44_yrc"),
2653
+ ("eshipper_purolator_express", "eshipper_purolator_express"),
2654
+ (
2655
+ "eshipper_purolator_express_1030",
2656
+ "eshipper_purolator_express_1030",
2657
+ ),
2658
+ (
2659
+ "eshipper_purolator_express_9am",
2660
+ "eshipper_purolator_express_9am",
2661
+ ),
2662
+ (
2663
+ "eshipper_purolator_expresscheque",
2664
+ "eshipper_purolator_expresscheque",
2665
+ ),
2666
+ ("eshipper_purolator_ground", "eshipper_purolator_ground"),
2667
+ (
2668
+ "eshipper_purolator_ground_1030",
2669
+ "eshipper_purolator_ground_1030",
2670
+ ),
2671
+ ("eshipper_purolator_ground_9am", "eshipper_purolator_ground_9am"),
2672
+ ("eshipper_purolator_puroletter", "eshipper_purolator_puroletter"),
2673
+ (
2674
+ "eshipper_purolator_puroletter_1030",
2675
+ "eshipper_purolator_puroletter_1030",
2676
+ ),
2677
+ (
2678
+ "eshipper_purolator_puroletter_9am",
2679
+ "eshipper_purolator_puroletter_9am",
2680
+ ),
2681
+ ("eshipper_purolator_puropak", "eshipper_purolator_puropak"),
2682
+ (
2683
+ "eshipper_purolator_puropak_1030",
2684
+ "eshipper_purolator_puropak_1030",
2685
+ ),
2686
+ (
2687
+ "eshipper_purolator_puropak_9am",
2688
+ "eshipper_purolator_puropak_9am",
2689
+ ),
2690
+ ("eshipper_pyk_ground_advantage", "eshipper_pyk_ground_advantage"),
2691
+ ("eshipper_pyk_priority_mail", "eshipper_pyk_priority_mail"),
2692
+ (
2693
+ "eshipper_sameday_9am_guaranteed",
2694
+ "eshipper_sameday_9am_guaranteed",
2695
+ ),
2696
+ ("eshipper_sameday_am_service", "eshipper_sameday_am_service"),
2697
+ (
2698
+ "eshipper_sameday_ground_service",
2699
+ "eshipper_sameday_ground_service",
2700
+ ),
2701
+ (
2702
+ "eshipper_sameday_h1_deliver_to_curbside",
2703
+ "eshipper_sameday_h1_deliver_to_curbside",
2704
+ ),
2705
+ (
2706
+ "eshipper_sameday_h2_delivery_to_room_of_choice",
2707
+ "eshipper_sameday_h2_delivery_to_room_of_choice",
2708
+ ),
2709
+ (
2710
+ "eshipper_sameday_h3_delivery_packaging_removal",
2711
+ "eshipper_sameday_h3_delivery_packaging_removal",
2712
+ ),
2713
+ (
2714
+ "eshipper_sameday_h4_delivery_to_curbside",
2715
+ "eshipper_sameday_h4_delivery_to_curbside",
2716
+ ),
2717
+ (
2718
+ "eshipper_sameday_h5_delivery_to_room_of_choice_2_man",
2719
+ "eshipper_sameday_h5_delivery_to_room_of_choice_2_man",
2720
+ ),
2721
+ (
2722
+ "eshipper_sameday_h6_delivery_packaging_removal_2_man",
2723
+ "eshipper_sameday_h6_delivery_packaging_removal_2_man",
2724
+ ),
2725
+ ("eshipper_sameday_ltl_service", "eshipper_sameday_ltl_service"),
2726
+ ("eshipper_sameday_pm_service", "eshipper_sameday_pm_service"),
2727
+ (
2728
+ "eshipper_sameday_urgent_letter",
2729
+ "eshipper_sameday_urgent_letter",
2730
+ ),
2731
+ ("eshipper_sameday_urgent_pac", "eshipper_sameday_urgent_pac"),
2732
+ ("eshipper_skip", "eshipper_skip"),
2733
+ (
2734
+ "eshipper_smartepost_intl_dhl_parcel_international_direct_ngr",
2735
+ "eshipper_smartepost_intl_dhl_parcel_international_direct_ngr",
2736
+ ),
2737
+ (
2738
+ "eshipper_smartepost_intl_global_mail_business_priority",
2739
+ "eshipper_smartepost_intl_global_mail_business_priority",
2740
+ ),
2741
+ (
2742
+ "eshipper_smartepost_intl_global_mail_business_standard",
2743
+ "eshipper_smartepost_intl_global_mail_business_standard",
2744
+ ),
2745
+ (
2746
+ "eshipper_smartepost_intl_global_mail_packet_plus_priority",
2747
+ "eshipper_smartepost_intl_global_mail_packet_plus_priority",
2748
+ ),
2749
+ (
2750
+ "eshipper_smartepost_intl_global_mail_packet_priority",
2751
+ "eshipper_smartepost_intl_global_mail_packet_priority",
2752
+ ),
2753
+ (
2754
+ "eshipper_smartepost_intl_global_mail_packet_standard",
2755
+ "eshipper_smartepost_intl_global_mail_packet_standard",
2756
+ ),
2757
+ (
2758
+ "eshipper_smartepost_intl_global_mail_parcel_direct_priority_yyz",
2759
+ "eshipper_smartepost_intl_global_mail_parcel_direct_priority_yyz",
2760
+ ),
2761
+ (
2762
+ "eshipper_smartepost_intl_global_mail_parcel_direct_standard_yyz",
2763
+ "eshipper_smartepost_intl_global_mail_parcel_direct_standard_yyz",
2764
+ ),
2765
+ (
2766
+ "eshipper_smartepost_intl_global_mail_parcel_priority",
2767
+ "eshipper_smartepost_intl_global_mail_parcel_priority",
2768
+ ),
2769
+ (
2770
+ "eshipper_smartepost_intl_global_mail_parcel_standard",
2771
+ "eshipper_smartepost_intl_global_mail_parcel_standard",
2772
+ ),
2773
+ ("eshipper_ups_expedited", "eshipper_ups_expedited"),
2774
+ ("eshipper_ups_express", "eshipper_ups_express"),
2775
+ ("eshipper_ups_express_early_am", "eshipper_ups_express_early_am"),
2776
+ ("eshipper_ups_ground", "eshipper_ups_ground"),
2777
+ (
2778
+ "eshipper_ups_second_day_air_am",
2779
+ "eshipper_ups_second_day_air_am",
2780
+ ),
2781
+ ("eshipper_ups_standard", "eshipper_ups_standard"),
2782
+ ("eshipper_ups_three_day_select", "eshipper_ups_three_day_select"),
2783
+ ("eshipper_ups_ups_saver", "eshipper_ups_ups_saver"),
2784
+ (
2785
+ "eshipper_ups_worldwide_expedited",
2786
+ "eshipper_ups_worldwide_expedited",
2787
+ ),
2788
+ (
2789
+ "eshipper_ups_worldwide_express",
2790
+ "eshipper_ups_worldwide_express",
2791
+ ),
2792
+ (
2793
+ "eshipper_ups_worldwide_express_plus",
2794
+ "eshipper_ups_worldwide_express_plus",
2795
+ ),
2796
+ (
2797
+ "eshipper_usps_first_class_mail",
2798
+ "eshipper_usps_first_class_mail",
2799
+ ),
2800
+ (
2801
+ "eshipper_usps_first_class_package_return_service",
2802
+ "eshipper_usps_first_class_package_return_service",
2803
+ ),
2804
+ ("eshipper_usps_library_mail", "eshipper_usps_library_mail"),
2805
+ ("eshipper_usps_media_mail", "eshipper_usps_media_mail"),
2806
+ ("eshipper_usps_parcel_select", "eshipper_usps_parcel_select"),
2807
+ ("eshipper_usps_pbx", "eshipper_usps_pbx"),
2808
+ ("eshipper_usps_pbx_lightweight", "eshipper_usps_pbx_lightweight"),
2809
+ ("eshipper_usps_priority_mail", "eshipper_usps_priority_mail"),
2810
+ (
2811
+ "eshipper_usps_priority_mail_express",
2812
+ "eshipper_usps_priority_mail_express",
2813
+ ),
2814
+ (
2815
+ "eshipper_usps_priority_mail_open_and_distribute",
2816
+ "eshipper_usps_priority_mail_open_and_distribute",
2817
+ ),
2818
+ (
2819
+ "eshipper_usps_priority_mail_return_service",
2820
+ "eshipper_usps_priority_mail_return_service",
2821
+ ),
2822
+ (
2823
+ "eshipper_usps_retail_ground_formerly_standard_post",
2824
+ "eshipper_usps_retail_ground_formerly_standard_post",
2825
+ ),
2826
+ (
2827
+ "fedex_international_priority_express",
2828
+ "fedex_international_priority_express",
2829
+ ),
2830
+ ("fedex_international_first", "fedex_international_first"),
2831
+ ("fedex_international_priority", "fedex_international_priority"),
2832
+ ("fedex_international_economy", "fedex_international_economy"),
2833
+ ("fedex_ground", "fedex_ground"),
2834
+ ("fedex_cargo_mail", "fedex_cargo_mail"),
2835
+ (
2836
+ "fedex_cargo_international_premium",
2837
+ "fedex_cargo_international_premium",
2838
+ ),
2839
+ ("fedex_first_overnight", "fedex_first_overnight"),
2840
+ ("fedex_first_overnight_freight", "fedex_first_overnight_freight"),
2841
+ ("fedex_1_day_freight", "fedex_1_day_freight"),
2842
+ ("fedex_2_day_freight", "fedex_2_day_freight"),
2843
+ ("fedex_3_day_freight", "fedex_3_day_freight"),
2844
+ (
2845
+ "fedex_international_priority_freight",
2846
+ "fedex_international_priority_freight",
2847
+ ),
2848
+ (
2849
+ "fedex_international_economy_freight",
2850
+ "fedex_international_economy_freight",
2851
+ ),
2852
+ (
2853
+ "fedex_cargo_airport_to_airport",
2854
+ "fedex_cargo_airport_to_airport",
2855
+ ),
2856
+ (
2857
+ "fedex_international_priority_distribution",
2858
+ "fedex_international_priority_distribution",
2859
+ ),
2860
+ (
2861
+ "fedex_ip_direct_distribution_freight",
2862
+ "fedex_ip_direct_distribution_freight",
2863
+ ),
2864
+ (
2865
+ "fedex_intl_ground_distribution",
2866
+ "fedex_intl_ground_distribution",
2867
+ ),
2868
+ ("fedex_ground_home_delivery", "fedex_ground_home_delivery"),
2869
+ ("fedex_smart_post", "fedex_smart_post"),
2870
+ ("fedex_priority_overnight", "fedex_priority_overnight"),
2871
+ ("fedex_standard_overnight", "fedex_standard_overnight"),
2872
+ ("fedex_2_day", "fedex_2_day"),
2873
+ ("fedex_2_day_am", "fedex_2_day_am"),
2874
+ ("fedex_express_saver", "fedex_express_saver"),
2875
+ ("fedex_same_day", "fedex_same_day"),
2876
+ ("fedex_same_day_city", "fedex_same_day_city"),
2877
+ ("fedex_one_day_freight", "fedex_one_day_freight"),
2878
+ (
2879
+ "fedex_international_economy_distribution",
2880
+ "fedex_international_economy_distribution",
2881
+ ),
2882
+ (
2883
+ "fedex_international_connect_plus",
2884
+ "fedex_international_connect_plus",
2885
+ ),
2886
+ (
2887
+ "fedex_international_distribution_freight",
2888
+ "fedex_international_distribution_freight",
2889
+ ),
2890
+ ("fedex_regional_economy", "fedex_regional_economy"),
2891
+ ("fedex_next_day_freight", "fedex_next_day_freight"),
2892
+ ("fedex_next_day", "fedex_next_day"),
2893
+ ("fedex_next_day_10am", "fedex_next_day_10am"),
2894
+ ("fedex_next_day_12pm", "fedex_next_day_12pm"),
2895
+ ("fedex_next_day_end_of_day", "fedex_next_day_end_of_day"),
2896
+ ("fedex_distance_deferred", "fedex_distance_deferred"),
2897
+ (
2898
+ "fedex_europe_first_international_priority",
2899
+ "fedex_europe_first_international_priority",
2900
+ ),
2901
+ ("fedex_1_day_freight", "fedex_1_day_freight"),
2902
+ ("fedex_2_day", "fedex_2_day"),
2903
+ ("fedex_2_day_am", "fedex_2_day_am"),
2904
+ ("fedex_2_day_freight", "fedex_2_day_freight"),
2905
+ ("fedex_3_day_freight", "fedex_3_day_freight"),
2906
+ (
2907
+ "fedex_cargo_airport_to_airport",
2908
+ "fedex_cargo_airport_to_airport",
2909
+ ),
2910
+ (
2911
+ "fedex_cargo_freight_forwarding",
2912
+ "fedex_cargo_freight_forwarding",
2913
+ ),
2914
+ (
2915
+ "fedex_cargo_international_express_freight",
2916
+ "fedex_cargo_international_express_freight",
2917
+ ),
2918
+ (
2919
+ "fedex_cargo_international_premium",
2920
+ "fedex_cargo_international_premium",
2921
+ ),
2922
+ ("fedex_cargo_mail", "fedex_cargo_mail"),
2923
+ ("fedex_cargo_registered_mail", "fedex_cargo_registered_mail"),
2924
+ ("fedex_cargo_surface_mail", "fedex_cargo_surface_mail"),
2925
+ (
2926
+ "fedex_custom_critical_air_expedite",
2927
+ "fedex_custom_critical_air_expedite",
2928
+ ),
2929
+ (
2930
+ "fedex_custom_critical_air_expedite_exclusive_use",
2931
+ "fedex_custom_critical_air_expedite_exclusive_use",
2932
+ ),
2933
+ (
2934
+ "fedex_custom_critical_air_expedite_network",
2935
+ "fedex_custom_critical_air_expedite_network",
2936
+ ),
2937
+ (
2938
+ "fedex_custom_critical_charter_air",
2939
+ "fedex_custom_critical_charter_air",
2940
+ ),
2941
+ (
2942
+ "fedex_custom_critical_point_to_point",
2943
+ "fedex_custom_critical_point_to_point",
2944
+ ),
2945
+ (
2946
+ "fedex_custom_critical_surface_expedite",
2947
+ "fedex_custom_critical_surface_expedite",
2948
+ ),
2949
+ (
2950
+ "fedex_custom_critical_surface_expedite_exclusive_use",
2951
+ "fedex_custom_critical_surface_expedite_exclusive_use",
2952
+ ),
2953
+ (
2954
+ "fedex_custom_critical_temp_assure_air",
2955
+ "fedex_custom_critical_temp_assure_air",
2956
+ ),
2957
+ (
2958
+ "fedex_custom_critical_temp_assure_validated_air",
2959
+ "fedex_custom_critical_temp_assure_validated_air",
2960
+ ),
2961
+ (
2962
+ "fedex_custom_critical_white_glove_services",
2963
+ "fedex_custom_critical_white_glove_services",
2964
+ ),
2965
+ ("fedex_distance_deferred", "fedex_distance_deferred"),
2966
+ ("fedex_express_saver", "fedex_express_saver"),
2967
+ ("fedex_first_freight", "fedex_first_freight"),
2968
+ ("fedex_freight_economy", "fedex_freight_economy"),
2969
+ ("fedex_freight_priority", "fedex_freight_priority"),
2970
+ ("fedex_ground", "fedex_ground"),
2971
+ (
2972
+ "fedex_international_priority_plus",
2973
+ "fedex_international_priority_plus",
2974
+ ),
2975
+ ("fedex_next_day_afternoon", "fedex_next_day_afternoon"),
2976
+ ("fedex_next_day_early_morning", "fedex_next_day_early_morning"),
2977
+ ("fedex_next_day_end_of_day", "fedex_next_day_end_of_day"),
2978
+ ("fedex_next_day_freight", "fedex_next_day_freight"),
2979
+ ("fedex_next_day_mid_morning", "fedex_next_day_mid_morning"),
2980
+ ("fedex_first_overnight", "fedex_first_overnight"),
2981
+ ("fedex_ground_home_delivery", "fedex_ground_home_delivery"),
2982
+ (
2983
+ "fedex_international_distribution_freight",
2984
+ "fedex_international_distribution_freight",
2985
+ ),
2986
+ ("fedex_international_economy", "fedex_international_economy"),
2987
+ (
2988
+ "fedex_international_economy_distribution",
2989
+ "fedex_international_economy_distribution",
2990
+ ),
2991
+ (
2992
+ "fedex_international_economy_freight",
2993
+ "fedex_international_economy_freight",
2994
+ ),
2995
+ ("fedex_international_first", "fedex_international_first"),
2996
+ ("fedex_international_ground", "fedex_international_ground"),
2997
+ ("fedex_international_priority", "fedex_international_priority"),
2998
+ (
2999
+ "fedex_international_priority_distribution",
3000
+ "fedex_international_priority_distribution",
3001
+ ),
3002
+ (
3003
+ "fedex_international_priority_express",
3004
+ "fedex_international_priority_express",
3005
+ ),
3006
+ (
3007
+ "fedex_international_priority_freight",
3008
+ "fedex_international_priority_freight",
3009
+ ),
3010
+ ("fedex_priority_overnight", "fedex_priority_overnight"),
3011
+ ("fedex_same_day", "fedex_same_day"),
3012
+ ("fedex_same_day_city", "fedex_same_day_city"),
3013
+ (
3014
+ "fedex_same_day_metro_afternoon",
3015
+ "fedex_same_day_metro_afternoon",
3016
+ ),
3017
+ ("fedex_same_day_metro_morning", "fedex_same_day_metro_morning"),
3018
+ ("fedex_same_day_metro_rush", "fedex_same_day_metro_rush"),
3019
+ ("fedex_smart_post", "fedex_smart_post"),
3020
+ ("fedex_standard_overnight", "fedex_standard_overnight"),
3021
+ (
3022
+ "fedex_transborder_distribution_consolidation",
3023
+ "fedex_transborder_distribution_consolidation",
3024
+ ),
3025
+ ("freightcom_all", "freightcom_all"),
3026
+ ("freightcom_usf_holland", "freightcom_usf_holland"),
3027
+ ("freightcom_central_transport", "freightcom_central_transport"),
3028
+ ("freightcom_estes", "freightcom_estes"),
3029
+ ("freightcom_canpar_ground", "freightcom_canpar_ground"),
3030
+ ("freightcom_canpar_select", "freightcom_canpar_select"),
3031
+ ("freightcom_canpar_overnight", "freightcom_canpar_overnight"),
3032
+ ("freightcom_dicom_ground", "freightcom_dicom_ground"),
3033
+ ("freightcom_purolator_ground", "freightcom_purolator_ground"),
3034
+ ("freightcom_purolator_express", "freightcom_purolator_express"),
3035
+ (
3036
+ "freightcom_purolator_express_9_am",
3037
+ "freightcom_purolator_express_9_am",
3038
+ ),
3039
+ (
3040
+ "freightcom_purolator_express_10_30_am",
3041
+ "freightcom_purolator_express_10_30_am",
3042
+ ),
3043
+ (
3044
+ "freightcom_purolator_ground_us",
3045
+ "freightcom_purolator_ground_us",
3046
+ ),
3047
+ (
3048
+ "freightcom_purolator_express_us",
3049
+ "freightcom_purolator_express_us",
3050
+ ),
3051
+ (
3052
+ "freightcom_purolator_express_us_9_am",
3053
+ "freightcom_purolator_express_us_9_am",
3054
+ ),
3055
+ (
3056
+ "freightcom_purolator_express_us_10_30_am",
3057
+ "freightcom_purolator_express_us_10_30_am",
3058
+ ),
3059
+ (
3060
+ "freightcom_fedex_express_saver",
3061
+ "freightcom_fedex_express_saver",
3062
+ ),
3063
+ ("freightcom_fedex_ground", "freightcom_fedex_ground"),
3064
+ ("freightcom_fedex_2day", "freightcom_fedex_2day"),
3065
+ (
3066
+ "freightcom_fedex_priority_overnight",
3067
+ "freightcom_fedex_priority_overnight",
3068
+ ),
3069
+ (
3070
+ "freightcom_fedex_standard_overnight",
3071
+ "freightcom_fedex_standard_overnight",
3072
+ ),
3073
+ (
3074
+ "freightcom_fedex_first_overnight",
3075
+ "freightcom_fedex_first_overnight",
3076
+ ),
3077
+ (
3078
+ "freightcom_fedex_international_priority",
3079
+ "freightcom_fedex_international_priority",
3080
+ ),
3081
+ (
3082
+ "freightcom_fedex_international_economy",
3083
+ "freightcom_fedex_international_economy",
3084
+ ),
3085
+ ("freightcom_ups_standard", "freightcom_ups_standard"),
3086
+ ("freightcom_ups_expedited", "freightcom_ups_expedited"),
3087
+ ("freightcom_ups_express_saver", "freightcom_ups_express_saver"),
3088
+ ("freightcom_ups_express", "freightcom_ups_express"),
3089
+ ("freightcom_ups_express_early", "freightcom_ups_express_early"),
3090
+ ("freightcom_ups_3day_select", "freightcom_ups_3day_select"),
3091
+ (
3092
+ "freightcom_ups_worldwide_expedited",
3093
+ "freightcom_ups_worldwide_expedited",
3094
+ ),
3095
+ (
3096
+ "freightcom_ups_worldwide_express",
3097
+ "freightcom_ups_worldwide_express",
3098
+ ),
3099
+ (
3100
+ "freightcom_ups_worldwide_express_plus",
3101
+ "freightcom_ups_worldwide_express_plus",
3102
+ ),
3103
+ (
3104
+ "freightcom_ups_worldwide_express_saver",
3105
+ "freightcom_ups_worldwide_express_saver",
3106
+ ),
3107
+ ("freightcom_dhl_express_easy", "freightcom_dhl_express_easy"),
3108
+ ("freightcom_dhl_express_10_30", "freightcom_dhl_express_10_30"),
3109
+ (
3110
+ "freightcom_dhl_express_worldwide",
3111
+ "freightcom_dhl_express_worldwide",
3112
+ ),
3113
+ ("freightcom_dhl_express_12_00", "freightcom_dhl_express_12_00"),
3114
+ ("freightcom_dhl_economy_select", "freightcom_dhl_economy_select"),
3115
+ (
3116
+ "freightcom_dhl_ecommerce_am_service",
3117
+ "freightcom_dhl_ecommerce_am_service",
3118
+ ),
3119
+ (
3120
+ "freightcom_dhl_ecommerce_ground_service",
3121
+ "freightcom_dhl_ecommerce_ground_service",
3122
+ ),
3123
+ (
3124
+ "freightcom_canadapost_regular_parcel",
3125
+ "freightcom_canadapost_regular_parcel",
3126
+ ),
3127
+ (
3128
+ "freightcom_canadapost_expedited_parcel",
3129
+ "freightcom_canadapost_expedited_parcel",
3130
+ ),
3131
+ (
3132
+ "freightcom_canadapost_xpresspost",
3133
+ "freightcom_canadapost_xpresspost",
3134
+ ),
3135
+ (
3136
+ "freightcom_canadapost_priority",
3137
+ "freightcom_canadapost_priority",
3138
+ ),
3139
+ ("standard_service", "standard_service"),
3140
+ ("geodis_EXP", "geodis_EXP"),
3141
+ ("geodis_MES", "geodis_MES"),
3142
+ ("geodis_express_france", "geodis_express_france"),
3143
+ (
3144
+ "geodis_retour_trans_fr_messagerie_plus",
3145
+ "geodis_retour_trans_fr_messagerie_plus",
3146
+ ),
3147
+ ("letter_ordered", "letter_ordered"),
3148
+ ("letter_simple", "letter_simple"),
3149
+ ("letter_valued", "letter_valued"),
3150
+ ("package_ordered", "package_ordered"),
3151
+ ("package_simple", "package_simple"),
3152
+ ("package_valued", "package_valued"),
3153
+ ("parcel_simple", "parcel_simple"),
3154
+ ("parcel_valued", "parcel_valued"),
3155
+ ("postcard_ordered", "postcard_ordered"),
3156
+ ("postcard_simple", "postcard_simple"),
3157
+ ("sekogram_simple", "sekogram_simple"),
3158
+ ("sprint_simple", "sprint_simple"),
3159
+ ("yes_ordered_value", "yes_ordered_value"),
3160
+ ("locate2u_local_delivery", "locate2u_local_delivery"),
3161
+ ("purolator_express_9_am", "purolator_express_9_am"),
3162
+ ("purolator_express_us", "purolator_express_us"),
3163
+ ("purolator_express_10_30_am", "purolator_express_10_30_am"),
3164
+ ("purolator_express_us_9_am", "purolator_express_us_9_am"),
3165
+ ("purolator_express_12_pm", "purolator_express_12_pm"),
3166
+ ("purolator_express_us_10_30_am", "purolator_express_us_10_30_am"),
3167
+ ("purolator_express", "purolator_express"),
3168
+ ("purolator_express_us_12_00", "purolator_express_us_12_00"),
3169
+ ("purolator_express_evening", "purolator_express_evening"),
3170
+ ("purolator_express_envelope_us", "purolator_express_envelope_us"),
3171
+ (
3172
+ "purolator_express_envelope_9_am",
3173
+ "purolator_express_envelope_9_am",
3174
+ ),
3175
+ (
3176
+ "purolator_express_us_envelope_9_am",
3177
+ "purolator_express_us_envelope_9_am",
3178
+ ),
3179
+ (
3180
+ "purolator_express_envelope_10_30_am",
3181
+ "purolator_express_envelope_10_30_am",
3182
+ ),
3183
+ (
3184
+ "purolator_express_us_envelope_10_30_am",
3185
+ "purolator_express_us_envelope_10_30_am",
3186
+ ),
3187
+ (
3188
+ "purolator_express_envelope_12_pm",
3189
+ "purolator_express_envelope_12_pm",
3190
+ ),
3191
+ (
3192
+ "purolator_express_us_envelope_12_00",
3193
+ "purolator_express_us_envelope_12_00",
3194
+ ),
3195
+ ("purolator_express_envelope", "purolator_express_envelope"),
3196
+ ("purolator_express_pack_us", "purolator_express_pack_us"),
3197
+ (
3198
+ "purolator_express_envelope_evening",
3199
+ "purolator_express_envelope_evening",
3200
+ ),
3201
+ (
3202
+ "purolator_express_us_pack_9_am",
3203
+ "purolator_express_us_pack_9_am",
3204
+ ),
3205
+ ("purolator_express_pack_9_am", "purolator_express_pack_9_am"),
3206
+ (
3207
+ "purolator_express_us_pack_10_30_am",
3208
+ "purolator_express_us_pack_10_30_am",
3209
+ ),
3210
+ (
3211
+ "purolator_express_pack10_30_am",
3212
+ "purolator_express_pack10_30_am",
3213
+ ),
3214
+ (
3215
+ "purolator_express_us_pack_12_00",
3216
+ "purolator_express_us_pack_12_00",
3217
+ ),
3218
+ ("purolator_express_pack_12_pm", "purolator_express_pack_12_pm"),
3219
+ ("purolator_express_box_us", "purolator_express_box_us"),
3220
+ ("purolator_express_pack", "purolator_express_pack"),
3221
+ ("purolator_express_us_box_9_am", "purolator_express_us_box_9_am"),
3222
+ (
3223
+ "purolator_express_pack_evening",
3224
+ "purolator_express_pack_evening",
3225
+ ),
3226
+ (
3227
+ "purolator_express_us_box_10_30_am",
3228
+ "purolator_express_us_box_10_30_am",
3229
+ ),
3230
+ ("purolator_express_box_9_am", "purolator_express_box_9_am"),
3231
+ (
3232
+ "purolator_express_us_box_12_00",
3233
+ "purolator_express_us_box_12_00",
3234
+ ),
3235
+ (
3236
+ "purolator_express_box_10_30_am",
3237
+ "purolator_express_box_10_30_am",
3238
+ ),
3239
+ ("purolator_ground_us", "purolator_ground_us"),
3240
+ ("purolator_express_box_12_pm", "purolator_express_box_12_pm"),
3241
+ (
3242
+ "purolator_express_international",
3243
+ "purolator_express_international",
3244
+ ),
3245
+ ("purolator_express_box", "purolator_express_box"),
3246
+ (
3247
+ "purolator_express_international_9_am",
3248
+ "purolator_express_international_9_am",
3249
+ ),
3250
+ ("purolator_express_box_evening", "purolator_express_box_evening"),
3251
+ (
3252
+ "purolator_express_international_10_30_am",
3253
+ "purolator_express_international_10_30_am",
3254
+ ),
3255
+ ("purolator_ground", "purolator_ground"),
3256
+ (
3257
+ "purolator_express_international_12_00",
3258
+ "purolator_express_international_12_00",
3259
+ ),
3260
+ ("purolator_ground_9_am", "purolator_ground_9_am"),
3261
+ (
3262
+ "purolator_express_envelope_international",
3263
+ "purolator_express_envelope_international",
3264
+ ),
3265
+ ("purolator_ground_10_30_am", "purolator_ground_10_30_am"),
3266
+ (
3267
+ "purolator_express_international_envelope_9_am",
3268
+ "purolator_express_international_envelope_9_am",
3269
+ ),
3270
+ ("purolator_ground_evening", "purolator_ground_evening"),
3271
+ (
3272
+ "purolator_express_international_envelope_10_30_am",
3273
+ "purolator_express_international_envelope_10_30_am",
3274
+ ),
3275
+ ("purolator_quick_ship", "purolator_quick_ship"),
3276
+ (
3277
+ "purolator_express_international_envelope_12_00",
3278
+ "purolator_express_international_envelope_12_00",
3279
+ ),
3280
+ ("purolator_quick_ship_envelope", "purolator_quick_ship_envelope"),
3281
+ (
3282
+ "purolator_express_pack_international",
3283
+ "purolator_express_pack_international",
3284
+ ),
3285
+ ("purolator_quick_ship_pack", "purolator_quick_ship_pack"),
3286
+ (
3287
+ "purolator_express_international_pack_9_am",
3288
+ "purolator_express_international_pack_9_am",
3289
+ ),
3290
+ ("purolator_quick_ship_box", "purolator_quick_ship_box"),
3291
+ (
3292
+ "purolator_express_international_pack_10_30_am",
3293
+ "purolator_express_international_pack_10_30_am",
3294
+ ),
3295
+ (
3296
+ "purolator_express_international_pack_12_00",
3297
+ "purolator_express_international_pack_12_00",
3298
+ ),
3299
+ (
3300
+ "purolator_express_box_international",
3301
+ "purolator_express_box_international",
3302
+ ),
3303
+ (
3304
+ "purolator_express_international_box_9_am",
3305
+ "purolator_express_international_box_9_am",
3306
+ ),
3307
+ (
3308
+ "purolator_express_international_box_10_30_am",
3309
+ "purolator_express_international_box_10_30_am",
3310
+ ),
3311
+ (
3312
+ "purolator_express_international_box_12_00",
3313
+ "purolator_express_international_box_12_00",
3314
+ ),
3315
+ ("roadie_local_delivery", "roadie_local_delivery"),
3316
+ (
3317
+ "sapient_royal_mail_hm_forces_mail",
3318
+ "sapient_royal_mail_hm_forces_mail",
3319
+ ),
3320
+ (
3321
+ "sapient_royal_mail_hm_forces_signed_for",
3322
+ "sapient_royal_mail_hm_forces_signed_for",
3323
+ ),
3324
+ (
3325
+ "sapient_royal_mail_hm_forces_special_delivery_500",
3326
+ "sapient_royal_mail_hm_forces_special_delivery_500",
3327
+ ),
3328
+ (
3329
+ "sapient_royal_mail_hm_forces_special_delivery_1000",
3330
+ "sapient_royal_mail_hm_forces_special_delivery_1000",
3331
+ ),
3332
+ (
3333
+ "sapient_royal_mail_hm_forces_special_delivery_2500",
3334
+ "sapient_royal_mail_hm_forces_special_delivery_2500",
3335
+ ),
3336
+ (
3337
+ "sapient_royal_mail_international_business_personal_correspondence_max_sort_residue_ll",
3338
+ "sapient_royal_mail_international_business_personal_correspondence_max_sort_residue_ll",
3339
+ ),
3340
+ (
3341
+ "sapient_royal_mail_international_business_mail_ll_max_sort_residue_standard",
3342
+ "sapient_royal_mail_international_business_mail_ll_max_sort_residue_standard",
3343
+ ),
3344
+ (
3345
+ "sapient_royal_mail_international_business_personal_correspondence_max_sort_residue_l",
3346
+ "sapient_royal_mail_international_business_personal_correspondence_max_sort_residue_l",
3347
+ ),
3348
+ (
3349
+ "sapient_royal_mail_international_business_mail_l_max_sort_residue_standard",
3350
+ "sapient_royal_mail_international_business_mail_l_max_sort_residue_standard",
3351
+ ),
3352
+ (
3353
+ "sapient_royal_mail_international_business_printed_matter_packet",
3354
+ "sapient_royal_mail_international_business_printed_matter_packet",
3355
+ ),
3356
+ ("sapient_royal_mail_1st_class", "sapient_royal_mail_1st_class"),
3357
+ ("sapient_royal_mail_2nd_class", "sapient_royal_mail_2nd_class"),
3358
+ (
3359
+ "sapient_royal_mail_1st_class_signed_for",
3360
+ "sapient_royal_mail_1st_class_signed_for",
3361
+ ),
3362
+ (
3363
+ "sapient_royal_mail_2nd_class_signed_for",
3364
+ "sapient_royal_mail_2nd_class_signed_for",
3365
+ ),
3366
+ (
3367
+ "sapient_royal_mail_international_business_parcel_priority_country_priced_boxable",
3368
+ "sapient_royal_mail_international_business_parcel_priority_country_priced_boxable",
3369
+ ),
3370
+ (
3371
+ "sapient_royal_mail_international_business_parcel_tracked_country_priced_boxable_extra_comp",
3372
+ "sapient_royal_mail_international_business_parcel_tracked_country_priced_boxable_extra_comp",
3373
+ ),
3374
+ (
3375
+ "sapient_royal_mail_international_business_parcel_priority_country_priced_boxable_ddp",
3376
+ "sapient_royal_mail_international_business_parcel_priority_country_priced_boxable_ddp",
3377
+ ),
3378
+ (
3379
+ "sapient_royal_mail_international_business_parcel_tracked_country_priced_boxable_ddp",
3380
+ "sapient_royal_mail_international_business_parcel_tracked_country_priced_boxable_ddp",
3381
+ ),
3382
+ (
3383
+ "sapient_royal_mail_international_business_parcel_tracked_country_priced_boxable",
3384
+ "sapient_royal_mail_international_business_parcel_tracked_country_priced_boxable",
3385
+ ),
3386
+ (
3387
+ "sapient_royal_mail_24_standard_signed_for_parcel_daily_rate_service",
3388
+ "sapient_royal_mail_24_standard_signed_for_parcel_daily_rate_service",
3389
+ ),
3390
+ (
3391
+ "sapient_royal_mail_48_standard_signed_for_parcel_daily_rate_service",
3392
+ "sapient_royal_mail_48_standard_signed_for_parcel_daily_rate_service",
3393
+ ),
3394
+ (
3395
+ "sapient_royal_mail_international_business_parcels_zero_sort_priority",
3396
+ "sapient_royal_mail_international_business_parcels_zero_sort_priority",
3397
+ ),
3398
+ (
3399
+ "sapient_royal_mail_international_business_parcels_zero_sort_priority_DE",
3400
+ "sapient_royal_mail_international_business_parcels_zero_sort_priority_DE",
3401
+ ),
3402
+ (
3403
+ "sapient_royal_mail_de_import_standard_24_parcel",
3404
+ "sapient_royal_mail_de_import_standard_24_parcel",
3405
+ ),
3406
+ (
3407
+ "sapient_royal_mail_de_import_standard_24_parcel_DE",
3408
+ "sapient_royal_mail_de_import_standard_24_parcel_DE",
3409
+ ),
3410
+ (
3411
+ "sapient_royal_mail_de_import_standard_24_ll",
3412
+ "sapient_royal_mail_de_import_standard_24_ll",
3413
+ ),
3414
+ (
3415
+ "sapient_royal_mail_de_import_standard_48_ll",
3416
+ "sapient_royal_mail_de_import_standard_48_ll",
3417
+ ),
3418
+ (
3419
+ "sapient_royal_mail_de_import_to_eu_tracked_signed_ll",
3420
+ "sapient_royal_mail_de_import_to_eu_tracked_signed_ll",
3421
+ ),
3422
+ (
3423
+ "sapient_royal_mail_de_import_to_eu_max_sort_ll",
3424
+ "sapient_royal_mail_de_import_to_eu_max_sort_ll",
3425
+ ),
3426
+ (
3427
+ "sapient_royal_mail_de_import_to_eu_tracked_parcel",
3428
+ "sapient_royal_mail_de_import_to_eu_tracked_parcel",
3429
+ ),
3430
+ (
3431
+ "sapient_royal_mail_de_import_to_eu_tracked_signed_parcel",
3432
+ "sapient_royal_mail_de_import_to_eu_tracked_signed_parcel",
3433
+ ),
3434
+ (
3435
+ "sapient_royal_mail_de_import_to_eu_tracked_high_vol_ll",
3436
+ "sapient_royal_mail_de_import_to_eu_tracked_high_vol_ll",
3437
+ ),
3438
+ (
3439
+ "sapient_royal_mail_de_import_to_eu_max_sort_parcel",
3440
+ "sapient_royal_mail_de_import_to_eu_max_sort_parcel",
3441
+ ),
3442
+ (
3443
+ "sapient_royal_mail_international_business_mail_ll_country_priced_priority",
3444
+ "sapient_royal_mail_international_business_mail_ll_country_priced_priority",
3445
+ ),
3446
+ (
3447
+ "sapient_royal_mail_international_business_personal_correspondence_l_priority_untracked",
3448
+ "sapient_royal_mail_international_business_personal_correspondence_l_priority_untracked",
3449
+ ),
3450
+ (
3451
+ "sapient_royal_mail_international_business_mail_ll_country_sort_priority",
3452
+ "sapient_royal_mail_international_business_mail_ll_country_sort_priority",
3453
+ ),
3454
+ (
3455
+ "sapient_royal_mail_international_business_parcels",
3456
+ "sapient_royal_mail_international_business_parcels",
3457
+ ),
3458
+ (
3459
+ "sapient_royal_mail_international_business_parcels_tracked_country_priced_extra_territorial_office_of_exchange",
3460
+ "sapient_royal_mail_international_business_parcels_tracked_country_priced_extra_territorial_office_of_exchange",
3461
+ ),
3462
+ (
3463
+ "sapient_royal_mail_international_business_parcels_tracked_signed_country_priced_extra_territorial_office_of_exchange",
3464
+ "sapient_royal_mail_international_business_parcels_tracked_signed_country_priced_extra_territorial_office_of_exchange",
3465
+ ),
3466
+ (
3467
+ "sapient_royal_mail_international_business_parcels_zero_sort_priority_extra_territorial_office_of_exchange",
3468
+ "sapient_royal_mail_international_business_parcels_zero_sort_priority_extra_territorial_office_of_exchange",
3469
+ ),
3470
+ (
3471
+ "sapient_royal_mail_international_business_mail_tracked_ll_country_priced_extra_territorial_office_of_exchange",
3472
+ "sapient_royal_mail_international_business_mail_tracked_ll_country_priced_extra_territorial_office_of_exchange",
3473
+ ),
3474
+ (
3475
+ "sapient_royal_mail_international_business_mail_tracked_signed_ll_country_priced_extra_territorial_office_of_exchange",
3476
+ "sapient_royal_mail_international_business_mail_tracked_signed_ll_country_priced_extra_territorial_office_of_exchange",
3477
+ ),
3478
+ (
3479
+ "sapient_royal_mail_international_business_mail_ll_country_priced_priority_extra_territorial_office_of_exchange",
3480
+ "sapient_royal_mail_international_business_mail_ll_country_priced_priority_extra_territorial_office_of_exchange",
3481
+ ),
3482
+ (
3483
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_territorial_office_of_exchange_e",
3484
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_territorial_office_of_exchange_e",
3485
+ ),
3486
+ (
3487
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_comp_extra_territorial_office_of_exchange_e",
3488
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_comp_extra_territorial_office_of_exchange_e",
3489
+ ),
3490
+ (
3491
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_territorial_office_of_exchange_c",
3492
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_territorial_office_of_exchange_c",
3493
+ ),
3494
+ (
3495
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_comp_extra_territorial_office_of_exchange_c",
3496
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_comp_extra_territorial_office_of_exchange_c",
3497
+ ),
3498
+ (
3499
+ "sapient_royal_mail_international_business_personal_correspondence_l_priority_untracked_extra_territorial_office_of_exchange",
3500
+ "sapient_royal_mail_international_business_personal_correspondence_l_priority_untracked_extra_territorial_office_of_exchange",
3501
+ ),
3502
+ (
3503
+ "sapient_royal_mail_international_business_personal_correspondence_l_tracked_high_vol_country_priced_extra_territorial_office_of_exchange",
3504
+ "sapient_royal_mail_international_business_personal_correspondence_l_tracked_high_vol_country_priced_extra_territorial_office_of_exchange",
3505
+ ),
3506
+ (
3507
+ "sapient_royal_mail_international_business_personal_correspondence_l_tracked_signed_high_vol_country_priced_extra_territorial_office_of_exchange",
3508
+ "sapient_royal_mail_international_business_personal_correspondence_l_tracked_signed_high_vol_country_priced_extra_territorial_office_of_exchange",
3509
+ ),
3510
+ (
3511
+ "sapient_royal_mail_international_business_personal_correspondence_signed_l_high_vol_country_priced_extra_territorial_office_of_exchange",
3512
+ "sapient_royal_mail_international_business_personal_correspondence_signed_l_high_vol_country_priced_extra_territorial_office_of_exchange",
3513
+ ),
3514
+ (
3515
+ "sapient_royal_mail_international_business_personal_correspondence_ll_country_sort_priority_extra_territorial_office_of_exchange",
3516
+ "sapient_royal_mail_international_business_personal_correspondence_ll_country_sort_priority_extra_territorial_office_of_exchange",
3517
+ ),
3518
+ (
3519
+ "sapient_royal_mail_international_business_personal_correspondence_tracked_ll_high_vol_extra_comp_country_priced_extra_territorial_office_of_exchange",
3520
+ "sapient_royal_mail_international_business_personal_correspondence_tracked_ll_high_vol_extra_comp_country_priced_extra_territorial_office_of_exchange",
3521
+ ),
3522
+ (
3523
+ "sapient_royal_mail_international_business_personal_correspondence_tracked_signed_ll_high_vol_extra_comp_country_priced_extra_territorial_office_of_exchange",
3524
+ "sapient_royal_mail_international_business_personal_correspondence_tracked_signed_ll_high_vol_extra_comp_country_priced_extra_territorial_office_of_exchange",
3525
+ ),
3526
+ (
3527
+ "sapient_royal_mail_international_business_personal_correspondence_signed_ll_extra_compensation_country_priced_extra_territorial_office_of_exchange",
3528
+ "sapient_royal_mail_international_business_personal_correspondence_signed_ll_extra_compensation_country_priced_extra_territorial_office_of_exchange",
3529
+ ),
3530
+ (
3531
+ "sapient_royal_mail_24_standard_signed_for_large_letter_flat_rate_service",
3532
+ "sapient_royal_mail_24_standard_signed_for_large_letter_flat_rate_service",
3533
+ ),
3534
+ (
3535
+ "sapient_royal_mail_48_standard_signed_for_large_letter_flat_rate_service",
3536
+ "sapient_royal_mail_48_standard_signed_for_large_letter_flat_rate_service",
3537
+ ),
3538
+ (
3539
+ "sapient_royal_mail_24_presorted_ll",
3540
+ "sapient_royal_mail_24_presorted_ll",
3541
+ ),
3542
+ (
3543
+ "sapient_royal_mail_48_presorted_ll",
3544
+ "sapient_royal_mail_48_presorted_ll",
3545
+ ),
3546
+ (
3547
+ "sapient_royal_mail_international_tracked_parcels_0_30kg",
3548
+ "sapient_royal_mail_international_tracked_parcels_0_30kg",
3549
+ ),
3550
+ (
3551
+ "sapient_royal_mail_international_business_tracked_express_npc",
3552
+ "sapient_royal_mail_international_business_tracked_express_npc",
3553
+ ),
3554
+ (
3555
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_comp",
3556
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_comp",
3557
+ ),
3558
+ (
3559
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_c_prio",
3560
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_c_prio",
3561
+ ),
3562
+ (
3563
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_xcomp_c_prio",
3564
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_xcomp_c_prio",
3565
+ ),
3566
+ (
3567
+ "sapient_royal_mail_international_business_parcels_zone_sort_priority_service",
3568
+ "sapient_royal_mail_international_business_parcels_zone_sort_priority_service",
3569
+ ),
3570
+ (
3571
+ "sapient_royal_mail_international_business_mail_large_letter_zone_sort_priority",
3572
+ "sapient_royal_mail_international_business_mail_large_letter_zone_sort_priority",
3573
+ ),
3574
+ (
3575
+ "sapient_royal_mail_international_business_mail_large_letter_zone_sort_priority_machine",
3576
+ "sapient_royal_mail_international_business_mail_large_letter_zone_sort_priority_machine",
3577
+ ),
3578
+ (
3579
+ "sapient_royal_mail_international_business_mail_letters_zone_sort_priority",
3580
+ "sapient_royal_mail_international_business_mail_letters_zone_sort_priority",
3581
+ ),
3582
+ (
3583
+ "sapient_royal_mail_import_de_tracked_returns_24",
3584
+ "sapient_royal_mail_import_de_tracked_returns_24",
3585
+ ),
3586
+ (
3587
+ "sapient_royal_mail_import_de_tracked_returns_48",
3588
+ "sapient_royal_mail_import_de_tracked_returns_48",
3589
+ ),
3590
+ (
3591
+ "sapient_royal_mail_import_de_tracked_24_letter_boxable_high_volume",
3592
+ "sapient_royal_mail_import_de_tracked_24_letter_boxable_high_volume",
3593
+ ),
3594
+ (
3595
+ "sapient_royal_mail_import_de_tracked_48_letter_boxable_high_volume",
3596
+ "sapient_royal_mail_import_de_tracked_48_letter_boxable_high_volume",
3597
+ ),
3598
+ (
3599
+ "sapient_royal_mail_import_de_tracked_48_letter_boxable",
3600
+ "sapient_royal_mail_import_de_tracked_48_letter_boxable",
3601
+ ),
3602
+ (
3603
+ "sapient_royal_mail_import_de_tracked_24_letter_boxable",
3604
+ "sapient_royal_mail_import_de_tracked_24_letter_boxable",
3605
+ ),
3606
+ (
3607
+ "sapient_royal_mail_import_de_tracked_48_high_volume",
3608
+ "sapient_royal_mail_import_de_tracked_48_high_volume",
3609
+ ),
3610
+ (
3611
+ "sapient_royal_mail_import_de_tracked_24_high_volume",
3612
+ "sapient_royal_mail_import_de_tracked_24_high_volume",
3613
+ ),
3614
+ (
3615
+ "sapient_royal_mail_import_de_tracked_24",
3616
+ "sapient_royal_mail_import_de_tracked_24",
3617
+ ),
3618
+ (
3619
+ "sapient_royal_mail_de_import_to_eu_signed_parcel",
3620
+ "sapient_royal_mail_de_import_to_eu_signed_parcel",
3621
+ ),
3622
+ (
3623
+ "sapient_royal_mail_import_de_tracked_48",
3624
+ "sapient_royal_mail_import_de_tracked_48",
3625
+ ),
3626
+ (
3627
+ "sapient_royal_mail_international_business_parcels_print_direct_priority",
3628
+ "sapient_royal_mail_international_business_parcels_print_direct_priority",
3629
+ ),
3630
+ (
3631
+ "sapient_royal_mail_international_business_parcels_print_direct_standard",
3632
+ "sapient_royal_mail_international_business_parcels_print_direct_standard",
3633
+ ),
3634
+ (
3635
+ "sapient_royal_mail_international_business_parcels_signed_extra_compensation_country_priced",
3636
+ "sapient_royal_mail_international_business_parcels_signed_extra_compensation_country_priced",
3637
+ ),
3638
+ (
3639
+ "sapient_royal_mail_international_business_parcels_tracked_zone_sort",
3640
+ "sapient_royal_mail_international_business_parcels_tracked_zone_sort",
3641
+ ),
3642
+ (
3643
+ "sapient_royal_mail_international_business_parcels_tracked_extra_comp_zone_sort",
3644
+ "sapient_royal_mail_international_business_parcels_tracked_extra_comp_zone_sort",
3645
+ ),
3646
+ (
3647
+ "sapient_royal_mail_international_business_parcels_signed_zone_sort",
3648
+ "sapient_royal_mail_international_business_parcels_signed_zone_sort",
3649
+ ),
3650
+ (
3651
+ "sapient_royal_mail_international_business_parcels_signed_extra_compensation_zone_sort",
3652
+ "sapient_royal_mail_international_business_parcels_signed_extra_compensation_zone_sort",
3653
+ ),
3654
+ (
3655
+ "sapient_royal_mail_international_business_parcels_tracked_country_priced",
3656
+ "sapient_royal_mail_international_business_parcels_tracked_country_priced",
3657
+ ),
3658
+ (
3659
+ "sapient_royal_mail_international_business_parcels_tracked_extra_comp_country_priced",
3660
+ "sapient_royal_mail_international_business_parcels_tracked_extra_comp_country_priced",
3661
+ ),
3662
+ (
3663
+ "sapient_royal_mail_international_business_parcels_signed_country_priced",
3664
+ "sapient_royal_mail_international_business_parcels_signed_country_priced",
3665
+ ),
3666
+ (
3667
+ "sapient_royal_mail_international_business_mail_tracked_high_vol_country_priced",
3668
+ "sapient_royal_mail_international_business_mail_tracked_high_vol_country_priced",
3669
+ ),
3670
+ (
3671
+ "sapient_royal_mail_international_business_mail_tracked_signed_high_vol_country_priced",
3672
+ "sapient_royal_mail_international_business_mail_tracked_signed_high_vol_country_priced",
3673
+ ),
3674
+ (
3675
+ "sapient_royal_mail_international_business_mail_signed_high_vol_country_priced",
3676
+ "sapient_royal_mail_international_business_mail_signed_high_vol_country_priced",
3677
+ ),
3678
+ (
3679
+ "sapient_royal_mail_international_business_mail_tracked_high_vol_extra_comp_country_priced",
3680
+ "sapient_royal_mail_international_business_mail_tracked_high_vol_extra_comp_country_priced",
3681
+ ),
3682
+ (
3683
+ "sapient_royal_mail_international_business_mail_tracked_signed_high_vol_extra_comp_country_priced",
3684
+ "sapient_royal_mail_international_business_mail_tracked_signed_high_vol_extra_comp_country_priced",
3685
+ ),
3686
+ (
3687
+ "sapient_royal_mail_international_business_parcel_tracked_boxable_country_priced",
3688
+ "sapient_royal_mail_international_business_parcel_tracked_boxable_country_priced",
3689
+ ),
3690
+ (
3691
+ "sapient_royal_mail_international_business_parcels_tracked_signed_zone_sort",
3692
+ "sapient_royal_mail_international_business_parcels_tracked_signed_zone_sort",
3693
+ ),
3694
+ (
3695
+ "sapient_royal_mail_international_business_parcels_tracked_signed_extra_compensation_zone_sort",
3696
+ "sapient_royal_mail_international_business_parcels_tracked_signed_extra_compensation_zone_sort",
3697
+ ),
3698
+ (
3699
+ "sapient_royal_mail_international_business_mail_tracked_signed_zone_sort",
3700
+ "sapient_royal_mail_international_business_mail_tracked_signed_zone_sort",
3701
+ ),
3702
+ (
3703
+ "sapient_royal_mail_international_business_parcels_tracked_signed_country_priced",
3704
+ "sapient_royal_mail_international_business_parcels_tracked_signed_country_priced",
3705
+ ),
3706
+ (
3707
+ "sapient_royal_mail_international_business_parcels_tracked_signed_extra_compensation_country_priced",
3708
+ "sapient_royal_mail_international_business_parcels_tracked_signed_extra_compensation_country_priced",
3709
+ ),
3710
+ (
3711
+ "sapient_royal_mail_international_business_mail_tracked_signed_country_priced",
3712
+ "sapient_royal_mail_international_business_mail_tracked_signed_country_priced",
3713
+ ),
3714
+ (
3715
+ "sapient_royal_mail_international_business_mail_tracked_zone_sort",
3716
+ "sapient_royal_mail_international_business_mail_tracked_zone_sort",
3717
+ ),
3718
+ (
3719
+ "sapient_royal_mail_international_business_mail_tracked_country_priced",
3720
+ "sapient_royal_mail_international_business_mail_tracked_country_priced",
3721
+ ),
3722
+ (
3723
+ "sapient_royal_mail_international_business_mail_signed_zone_sort",
3724
+ "sapient_royal_mail_international_business_mail_signed_zone_sort",
3725
+ ),
3726
+ (
3727
+ "sapient_royal_mail_international_business_mail_signed_country_priced",
3728
+ "sapient_royal_mail_international_business_mail_signed_country_priced",
3729
+ ),
3730
+ (
3731
+ "sapient_royal_mail_international_business_mail_signed_extra_compensation_country_priced",
3732
+ "sapient_royal_mail_international_business_mail_signed_extra_compensation_country_priced",
3733
+ ),
3734
+ (
3735
+ "sapient_royal_mail_international_business_parcels_tracked_direct_ireland_country",
3736
+ "sapient_royal_mail_international_business_parcels_tracked_direct_ireland_country",
3737
+ ),
3738
+ (
3739
+ "sapient_royal_mail_international_business_parcels_tracked_signed_ddp",
3740
+ "sapient_royal_mail_international_business_parcels_tracked_signed_ddp",
3741
+ ),
3742
+ (
3743
+ "sapient_royal_mail_international_standard_on_account",
3744
+ "sapient_royal_mail_international_standard_on_account",
3745
+ ),
3746
+ (
3747
+ "sapient_royal_mail_international_economy_on_account",
3748
+ "sapient_royal_mail_international_economy_on_account",
3749
+ ),
3750
+ (
3751
+ "sapient_royal_mail_international_signed_on_account",
3752
+ "sapient_royal_mail_international_signed_on_account",
3753
+ ),
3754
+ (
3755
+ "sapient_royal_mail_international_signed_on_account_extra_comp",
3756
+ "sapient_royal_mail_international_signed_on_account_extra_comp",
3757
+ ),
3758
+ (
3759
+ "sapient_royal_mail_international_tracked_on_account",
3760
+ "sapient_royal_mail_international_tracked_on_account",
3761
+ ),
3762
+ (
3763
+ "sapient_royal_mail_international_tracked_on_account_extra_comp",
3764
+ "sapient_royal_mail_international_tracked_on_account_extra_comp",
3765
+ ),
3766
+ (
3767
+ "sapient_royal_mail_international_tracked_signed_on_account",
3768
+ "sapient_royal_mail_international_tracked_signed_on_account",
3769
+ ),
3770
+ (
3771
+ "sapient_royal_mail_international_tracked_signed_on_account_extra_comp",
3772
+ "sapient_royal_mail_international_tracked_signed_on_account_extra_comp",
3773
+ ),
3774
+ (
3775
+ "sapient_royal_mail_48_ll_flat_rate",
3776
+ "sapient_royal_mail_48_ll_flat_rate",
3777
+ ),
3778
+ (
3779
+ "sapient_royal_mail_24_standard_signed_for_parcel_sort8_flat_rate_service",
3780
+ "sapient_royal_mail_24_standard_signed_for_parcel_sort8_flat_rate_service",
3781
+ ),
3782
+ (
3783
+ "sapient_royal_mail_48_standard_signed_for_parcel_sort8_flat_rate_service",
3784
+ "sapient_royal_mail_48_standard_signed_for_parcel_sort8_flat_rate_service",
3785
+ ),
3786
+ (
3787
+ "sapient_royal_mail_24_standard_signed_for_parcel_sort8_daily_rate_service",
3788
+ "sapient_royal_mail_24_standard_signed_for_parcel_sort8_daily_rate_service",
3789
+ ),
3790
+ (
3791
+ "sapient_royal_mail_48_standard_signed_for_parcel_sort8_daily_rate_service",
3792
+ "sapient_royal_mail_48_standard_signed_for_parcel_sort8_daily_rate_service",
3793
+ ),
3794
+ (
3795
+ "sapient_royal_mail_24_presorted_p",
3796
+ "sapient_royal_mail_24_presorted_p",
3797
+ ),
3798
+ (
3799
+ "sapient_royal_mail_48_presorted_p",
3800
+ "sapient_royal_mail_48_presorted_p",
3801
+ ),
3802
+ (
3803
+ "sapient_royal_mail_24_ll_flat_rate",
3804
+ "sapient_royal_mail_24_ll_flat_rate",
3805
+ ),
3806
+ (
3807
+ "sapient_royal_mail_rm24_presorted_p_annual_flat_rate",
3808
+ "sapient_royal_mail_rm24_presorted_p_annual_flat_rate",
3809
+ ),
3810
+ (
3811
+ "sapient_royal_mail_rm48_presorted_p_annual_flat_rate",
3812
+ "sapient_royal_mail_rm48_presorted_p_annual_flat_rate",
3813
+ ),
3814
+ (
3815
+ "sapient_royal_mail_rm48_presorted_ll_annual_flat_rate",
3816
+ "sapient_royal_mail_rm48_presorted_ll_annual_flat_rate",
3817
+ ),
3818
+ (
3819
+ "sapient_royal_mail_rm24_presorted_ll_annual_flat_rate",
3820
+ "sapient_royal_mail_rm24_presorted_ll_annual_flat_rate",
3821
+ ),
3822
+ (
3823
+ "sapient_royal_mail_24_standard_signed_for_packetpost_flat_rate_service",
3824
+ "sapient_royal_mail_24_standard_signed_for_packetpost_flat_rate_service",
3825
+ ),
3826
+ (
3827
+ "sapient_royal_mail_48_standard_signed_for_packetpost_flat_rate_service",
3828
+ "sapient_royal_mail_48_standard_signed_for_packetpost_flat_rate_service",
3829
+ ),
3830
+ (
3831
+ "sapient_royal_mail_parcelpost_flat_rate_annual",
3832
+ "sapient_royal_mail_parcelpost_flat_rate_annual",
3833
+ ),
3834
+ (
3835
+ "sapient_royal_mail_parcelpost_flat_rate_annual_PPJ",
3836
+ "sapient_royal_mail_parcelpost_flat_rate_annual_PPJ",
3837
+ ),
3838
+ (
3839
+ "sapient_royal_mail_rm24_ll_annual_flat_rate",
3840
+ "sapient_royal_mail_rm24_ll_annual_flat_rate",
3841
+ ),
3842
+ (
3843
+ "sapient_royal_mail_rm48_ll_annual_flat_rate",
3844
+ "sapient_royal_mail_rm48_ll_annual_flat_rate",
3845
+ ),
3846
+ (
3847
+ "sapient_royal_mail_international_business_personal_correspondence_max_sort_l",
3848
+ "sapient_royal_mail_international_business_personal_correspondence_max_sort_l",
3849
+ ),
3850
+ (
3851
+ "sapient_royal_mail_international_business_mail_large_letter_max_sort_priority_service",
3852
+ "sapient_royal_mail_international_business_mail_large_letter_max_sort_priority_service",
3853
+ ),
3854
+ (
3855
+ "sapient_royal_mail_international_business_mail_letters_max_sort_standard",
3856
+ "sapient_royal_mail_international_business_mail_letters_max_sort_standard",
3857
+ ),
3858
+ (
3859
+ "sapient_royal_mail_international_business_mail_large_letter_max_sort_standard_service",
3860
+ "sapient_royal_mail_international_business_mail_large_letter_max_sort_standard_service",
3861
+ ),
3862
+ (
3863
+ "sapient_royal_mail_48_sort8p_annual_flat_rate",
3864
+ "sapient_royal_mail_48_sort8p_annual_flat_rate",
3865
+ ),
3866
+ (
3867
+ "sapient_royal_mail_24_ll_daily_rate",
3868
+ "sapient_royal_mail_24_ll_daily_rate",
3869
+ ),
3870
+ (
3871
+ "sapient_royal_mail_24_p_daily_rate",
3872
+ "sapient_royal_mail_24_p_daily_rate",
3873
+ ),
3874
+ (
3875
+ "sapient_royal_mail_48_ll_daily_rate",
3876
+ "sapient_royal_mail_48_ll_daily_rate",
3877
+ ),
3878
+ (
3879
+ "sapient_royal_mail_48_p_daily_rate",
3880
+ "sapient_royal_mail_48_p_daily_rate",
3881
+ ),
3882
+ (
3883
+ "sapient_royal_mail_24_p_flat_rate",
3884
+ "sapient_royal_mail_24_p_flat_rate",
3885
+ ),
3886
+ (
3887
+ "sapient_royal_mail_48_p_flat_rate",
3888
+ "sapient_royal_mail_48_p_flat_rate",
3889
+ ),
3890
+ (
3891
+ "sapient_royal_mail_24_sort8_ll_annual_flat_rate",
3892
+ "sapient_royal_mail_24_sort8_ll_annual_flat_rate",
3893
+ ),
3894
+ (
3895
+ "sapient_royal_mail_24_sort8_p_annual_flat_rate",
3896
+ "sapient_royal_mail_24_sort8_p_annual_flat_rate",
3897
+ ),
3898
+ (
3899
+ "sapient_royal_mail_48_sort8_ll_annual_flat_rate",
3900
+ "sapient_royal_mail_48_sort8_ll_annual_flat_rate",
3901
+ ),
3902
+ (
3903
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_750",
3904
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_750",
3905
+ ),
3906
+ (
3907
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_1000",
3908
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_1000",
3909
+ ),
3910
+ (
3911
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_2500",
3912
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_2500",
3913
+ ),
3914
+ (
3915
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_750",
3916
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_750",
3917
+ ),
3918
+ (
3919
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_1000",
3920
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_1000",
3921
+ ),
3922
+ (
3923
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_2500",
3924
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_2500",
3925
+ ),
3926
+ (
3927
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_id_750",
3928
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_id_750",
3929
+ ),
3930
+ (
3931
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_id_1000",
3932
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_id_1000",
3933
+ ),
3934
+ (
3935
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_id_2500",
3936
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_id_2500",
3937
+ ),
3938
+ (
3939
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_id_750",
3940
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_id_750",
3941
+ ),
3942
+ (
3943
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_id_1000",
3944
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_id_1000",
3945
+ ),
3946
+ (
3947
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_id_2500",
3948
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_id_2500",
3949
+ ),
3950
+ (
3951
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_age_750",
3952
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_age_750",
3953
+ ),
3954
+ (
3955
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_age_1000",
3956
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_age_1000",
3957
+ ),
3958
+ (
3959
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_age_2500",
3960
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_age_2500",
3961
+ ),
3962
+ (
3963
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_age_750",
3964
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_age_750",
3965
+ ),
3966
+ (
3967
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_age_1000",
3968
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_age_1000",
3969
+ ),
3970
+ (
3971
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_age_2500",
3972
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_age_2500",
3973
+ ),
3974
+ (
3975
+ "sapient_royal_mail_special_delivery_guaranteed_age_750",
3976
+ "sapient_royal_mail_special_delivery_guaranteed_age_750",
3977
+ ),
3978
+ (
3979
+ "sapient_royal_mail_special_delivery_guaranteed_age_1000",
3980
+ "sapient_royal_mail_special_delivery_guaranteed_age_1000",
3981
+ ),
3982
+ (
3983
+ "sapient_royal_mail_special_delivery_guaranteed_age_2500",
3984
+ "sapient_royal_mail_special_delivery_guaranteed_age_2500",
3985
+ ),
3986
+ (
3987
+ "sapient_royal_mail_special_delivery_guaranteed_id_750",
3988
+ "sapient_royal_mail_special_delivery_guaranteed_id_750",
3989
+ ),
3990
+ (
3991
+ "sapient_royal_mail_special_delivery_guaranteed_id_1000",
3992
+ "sapient_royal_mail_special_delivery_guaranteed_id_1000",
3993
+ ),
3994
+ (
3995
+ "sapient_royal_mail_special_delivery_guaranteed_id_2500",
3996
+ "sapient_royal_mail_special_delivery_guaranteed_id_2500",
3997
+ ),
3998
+ (
3999
+ "sapient_royal_mail_special_delivery_guaranteed_750",
4000
+ "sapient_royal_mail_special_delivery_guaranteed_750",
4001
+ ),
4002
+ (
4003
+ "sapient_royal_mail_special_delivery_guaranteed_1000",
4004
+ "sapient_royal_mail_special_delivery_guaranteed_1000",
4005
+ ),
4006
+ (
4007
+ "sapient_royal_mail_special_delivery_guaranteed_2500",
4008
+ "sapient_royal_mail_special_delivery_guaranteed_2500",
4009
+ ),
4010
+ (
4011
+ "sapient_royal_mail_1st_class_standard_signed_for_letters_daily_rate_service",
4012
+ "sapient_royal_mail_1st_class_standard_signed_for_letters_daily_rate_service",
4013
+ ),
4014
+ (
4015
+ "sapient_royal_mail_2nd_class_standard_signed_for_letters_daily_rate_service",
4016
+ "sapient_royal_mail_2nd_class_standard_signed_for_letters_daily_rate_service",
4017
+ ),
4018
+ (
4019
+ "sapient_royal_mail_tracked_24_high_volume_signature_age",
4020
+ "sapient_royal_mail_tracked_24_high_volume_signature_age",
4021
+ ),
4022
+ (
4023
+ "sapient_royal_mail_tracked_48_high_volume_signature_age",
4024
+ "sapient_royal_mail_tracked_48_high_volume_signature_age",
4025
+ ),
4026
+ (
4027
+ "sapient_royal_mail_tracked_24_signature_age",
4028
+ "sapient_royal_mail_tracked_24_signature_age",
4029
+ ),
4030
+ (
4031
+ "sapient_royal_mail_tracked_48_signature_age",
4032
+ "sapient_royal_mail_tracked_48_signature_age",
4033
+ ),
4034
+ (
4035
+ "sapient_royal_mail_tracked_48_high_volume_signature_no_signature",
4036
+ "sapient_royal_mail_tracked_48_high_volume_signature_no_signature",
4037
+ ),
4038
+ (
4039
+ "sapient_royal_mail_tracked_24_high_volume_signature_no_signature",
4040
+ "sapient_royal_mail_tracked_24_high_volume_signature_no_signature",
4041
+ ),
4042
+ (
4043
+ "sapient_royal_mail_tracked_24_signature_no_signature",
4044
+ "sapient_royal_mail_tracked_24_signature_no_signature",
4045
+ ),
4046
+ (
4047
+ "sapient_royal_mail_tracked_48_signature_no_signature",
4048
+ "sapient_royal_mail_tracked_48_signature_no_signature",
4049
+ ),
4050
+ (
4051
+ "sapient_royal_mail_tracked_letter_boxable_48_high_volume_signature_no_signature",
4052
+ "sapient_royal_mail_tracked_letter_boxable_48_high_volume_signature_no_signature",
4053
+ ),
4054
+ (
4055
+ "sapient_royal_mail_tracked_letter_boxable_24_high_volume_signature_no_signature",
4056
+ "sapient_royal_mail_tracked_letter_boxable_24_high_volume_signature_no_signature",
4057
+ ),
4058
+ (
4059
+ "sapient_royal_mail_tracked_letter_boxable_24_signature_no_signature",
4060
+ "sapient_royal_mail_tracked_letter_boxable_24_signature_no_signature",
4061
+ ),
4062
+ (
4063
+ "sapient_royal_mail_tracked_letter_boxable_48_signature_no_signature",
4064
+ "sapient_royal_mail_tracked_letter_boxable_48_signature_no_signature",
4065
+ ),
4066
+ (
4067
+ "sapient_royal_mail_tracked_returns_24",
4068
+ "sapient_royal_mail_tracked_returns_24",
4069
+ ),
4070
+ (
4071
+ "sapient_royal_mail_tracked_returns_48",
4072
+ "sapient_royal_mail_tracked_returns_48",
4073
+ ),
4074
+ (
4075
+ "sapient_royal_mail_international_business_parcels_zero_sort_priority_WE",
4076
+ "sapient_royal_mail_international_business_parcels_zero_sort_priority_WE",
4077
+ ),
4078
+ (
4079
+ "sapient_royal_mail_international_business_mail_large_letter_zero_sort_priority",
4080
+ "sapient_royal_mail_international_business_mail_large_letter_zero_sort_priority",
4081
+ ),
4082
+ (
4083
+ "sapient_royal_mail_international_business_mail_large_letter_zero_sort_priority_machine",
4084
+ "sapient_royal_mail_international_business_mail_large_letter_zero_sort_priority_machine",
4085
+ ),
4086
+ (
4087
+ "sapient_royal_mail_international_business_mail_letters_zero_sort_priority",
4088
+ "sapient_royal_mail_international_business_mail_letters_zero_sort_priority",
4089
+ ),
4090
+ ("sendle_standard_pickup", "sendle_standard_pickup"),
4091
+ ("sendle_standard_dropoff", "sendle_standard_dropoff"),
4092
+ ("sendle_express_pickup", "sendle_express_pickup"),
4093
+ ("tge_freight_service", "tge_freight_service"),
4094
+ ("tnt_special_express", "tnt_special_express"),
4095
+ ("tnt_9_00_express", "tnt_9_00_express"),
4096
+ ("tnt_10_00_express", "tnt_10_00_express"),
4097
+ ("tnt_12_00_express", "tnt_12_00_express"),
4098
+ ("tnt_express", "tnt_express"),
4099
+ ("tnt_economy_express", "tnt_economy_express"),
4100
+ ("tnt_global_express", "tnt_global_express"),
4101
+ ("ups_standard", "ups_standard"),
4102
+ ("ups_worldwide_express", "ups_worldwide_express"),
4103
+ ("ups_worldwide_expedited", "ups_worldwide_expedited"),
4104
+ ("ups_worldwide_express_plus", "ups_worldwide_express_plus"),
4105
+ ("ups_worldwide_saver", "ups_worldwide_saver"),
4106
+ ("ups_2nd_day_air", "ups_2nd_day_air"),
4107
+ ("ups_2nd_day_air_am", "ups_2nd_day_air_am"),
4108
+ ("ups_3_day_select", "ups_3_day_select"),
4109
+ ("ups_ground", "ups_ground"),
4110
+ ("ups_next_day_air", "ups_next_day_air"),
4111
+ ("ups_next_day_air_early", "ups_next_day_air_early"),
4112
+ ("ups_next_day_air_saver", "ups_next_day_air_saver"),
4113
+ ("ups_expedited_ca", "ups_expedited_ca"),
4114
+ ("ups_express_saver_ca", "ups_express_saver_ca"),
4115
+ ("ups_3_day_select_ca_us", "ups_3_day_select_ca_us"),
4116
+ ("ups_access_point_economy_ca", "ups_access_point_economy_ca"),
4117
+ ("ups_express_ca", "ups_express_ca"),
4118
+ ("ups_express_early_ca", "ups_express_early_ca"),
4119
+ ("ups_express_saver_intl_ca", "ups_express_saver_intl_ca"),
4120
+ ("ups_standard_ca", "ups_standard_ca"),
4121
+ ("ups_worldwide_expedited_ca", "ups_worldwide_expedited_ca"),
4122
+ ("ups_worldwide_express_ca", "ups_worldwide_express_ca"),
4123
+ ("ups_worldwide_express_plus_ca", "ups_worldwide_express_plus_ca"),
4124
+ ("ups_express_early_ca_us", "ups_express_early_ca_us"),
4125
+ ("ups_access_point_economy_eu", "ups_access_point_economy_eu"),
4126
+ ("ups_expedited_eu", "ups_expedited_eu"),
4127
+ ("ups_express_eu", "ups_express_eu"),
4128
+ ("ups_standard_eu", "ups_standard_eu"),
4129
+ ("ups_worldwide_express_plus_eu", "ups_worldwide_express_plus_eu"),
4130
+ ("ups_worldwide_saver_eu", "ups_worldwide_saver_eu"),
4131
+ ("ups_access_point_economy_mx", "ups_access_point_economy_mx"),
4132
+ ("ups_expedited_mx", "ups_expedited_mx"),
4133
+ ("ups_express_mx", "ups_express_mx"),
4134
+ ("ups_standard_mx", "ups_standard_mx"),
4135
+ ("ups_worldwide_express_plus_mx", "ups_worldwide_express_plus_mx"),
4136
+ ("ups_worldwide_saver_mx", "ups_worldwide_saver_mx"),
4137
+ ("ups_access_point_economy_pl", "ups_access_point_economy_pl"),
4138
+ (
4139
+ "ups_today_dedicated_courrier_pl",
4140
+ "ups_today_dedicated_courrier_pl",
4141
+ ),
4142
+ ("ups_today_express_pl", "ups_today_express_pl"),
4143
+ ("ups_today_express_saver_pl", "ups_today_express_saver_pl"),
4144
+ ("ups_today_standard_pl", "ups_today_standard_pl"),
4145
+ ("ups_expedited_pl", "ups_expedited_pl"),
4146
+ ("ups_express_pl", "ups_express_pl"),
4147
+ ("ups_express_plus_pl", "ups_express_plus_pl"),
4148
+ ("ups_express_saver_pl", "ups_express_saver_pl"),
4149
+ ("ups_standard_pl", "ups_standard_pl"),
4150
+ ("ups_2nd_day_air_pr", "ups_2nd_day_air_pr"),
4151
+ ("ups_ground_pr", "ups_ground_pr"),
4152
+ ("ups_next_day_air_pr", "ups_next_day_air_pr"),
4153
+ ("ups_next_day_air_early_pr", "ups_next_day_air_early_pr"),
4154
+ ("ups_worldwide_expedited_pr", "ups_worldwide_expedited_pr"),
4155
+ ("ups_worldwide_express_pr", "ups_worldwide_express_pr"),
4156
+ ("ups_worldwide_express_plus_pr", "ups_worldwide_express_plus_pr"),
4157
+ ("ups_worldwide_saver_pr", "ups_worldwide_saver_pr"),
4158
+ ("ups_express_12_00_de", "ups_express_12_00_de"),
4159
+ ("ups_worldwide_express_freight", "ups_worldwide_express_freight"),
4160
+ (
4161
+ "ups_worldwide_express_freight_midday",
4162
+ "ups_worldwide_express_freight_midday",
4163
+ ),
4164
+ ("ups_worldwide_economy_ddu", "ups_worldwide_economy_ddu"),
4165
+ ("ups_worldwide_economy_ddp", "ups_worldwide_economy_ddp"),
4166
+ ("usps_standard_service", "usps_standard_service"),
4167
+ ("usps_parcel_select", "usps_parcel_select"),
4168
+ (
4169
+ "usps_parcel_select_lightweight",
4170
+ "usps_parcel_select_lightweight",
4171
+ ),
4172
+ ("usps_priority_mail_express", "usps_priority_mail_express"),
4173
+ ("usps_priority_mail", "usps_priority_mail"),
4174
+ (
4175
+ "usps_first_class_package_service",
4176
+ "usps_first_class_package_service",
4177
+ ),
4178
+ ("usps_library_mail", "usps_library_mail"),
4179
+ ("usps_media_mail", "usps_media_mail"),
4180
+ ("usps_bound_printed_matter", "usps_bound_printed_matter"),
4181
+ ("usps_connect_local", "usps_connect_local"),
4182
+ ("usps_connect_mail", "usps_connect_mail"),
4183
+ ("usps_connect_next_day", "usps_connect_next_day"),
4184
+ ("usps_connect_regional", "usps_connect_regional"),
4185
+ ("usps_connect_same_day", "usps_connect_same_day"),
4186
+ ("usps_ground_advantage", "usps_ground_advantage"),
4187
+ ("usps_retail_ground", "usps_retail_ground"),
4188
+ ("usps_all", "usps_all"),
4189
+ ("usps_standard_service", "usps_standard_service"),
4190
+ ("usps_parcel_select", "usps_parcel_select"),
4191
+ (
4192
+ "usps_parcel_select_lightweight",
4193
+ "usps_parcel_select_lightweight",
4194
+ ),
4195
+ ("usps_priority_mail_express", "usps_priority_mail_express"),
4196
+ ("usps_priority_mail", "usps_priority_mail"),
4197
+ (
4198
+ "usps_first_class_package_service",
4199
+ "usps_first_class_package_service",
4200
+ ),
4201
+ ("usps_library_mail", "usps_library_mail"),
4202
+ ("usps_media_mail", "usps_media_mail"),
4203
+ ("usps_bound_printed_matter", "usps_bound_printed_matter"),
4204
+ ("usps_connect_local", "usps_connect_local"),
4205
+ ("usps_connect_mail", "usps_connect_mail"),
4206
+ ("usps_connect_next_day", "usps_connect_next_day"),
4207
+ ("usps_connect_regional", "usps_connect_regional"),
4208
+ ("usps_connect_same_day", "usps_connect_same_day"),
4209
+ ("usps_ground_advantage", "usps_ground_advantage"),
4210
+ ("usps_retail_ground", "usps_retail_ground"),
4211
+ ("usps_all", "usps_all"),
4212
+ ("usps_first_class", "usps_first_class"),
4213
+ ("usps_first_class_commercial", "usps_first_class_commercial"),
4214
+ (
4215
+ "usps_first_class_hfp_commercial",
4216
+ "usps_first_class_hfp_commercial",
4217
+ ),
4218
+ ("usps_priority", "usps_priority"),
4219
+ ("usps_priority_commercial", "usps_priority_commercial"),
4220
+ ("usps_priority_cpp", "usps_priority_cpp"),
4221
+ ("usps_priority_hfp_commercial", "usps_priority_hfp_commercial"),
4222
+ ("usps_priority_hfp_cpp", "usps_priority_hfp_cpp"),
4223
+ ("usps_priority_mail_express", "usps_priority_mail_express"),
4224
+ (
4225
+ "usps_priority_mail_express_commercial",
4226
+ "usps_priority_mail_express_commercial",
4227
+ ),
4228
+ (
4229
+ "usps_priority_mail_express_cpp",
4230
+ "usps_priority_mail_express_cpp",
4231
+ ),
4232
+ ("usps_priority_mail_express_sh", "usps_priority_mail_express_sh"),
4233
+ (
4234
+ "usps_priority_mail_express_sh_commercial",
4235
+ "usps_priority_mail_express_sh_commercial",
4236
+ ),
4237
+ (
4238
+ "usps_priority_mail_express_hfp",
4239
+ "usps_priority_mail_express_hfp",
4240
+ ),
4241
+ (
4242
+ "usps_priority_mail_express_hfp_commercial",
4243
+ "usps_priority_mail_express_hfp_commercial",
4244
+ ),
4245
+ (
4246
+ "usps_priority_mail_express_hfp_cpp",
4247
+ "usps_priority_mail_express_hfp_cpp",
4248
+ ),
4249
+ ("usps_priority_mail_cubic", "usps_priority_mail_cubic"),
4250
+ ("usps_retail_ground", "usps_retail_ground"),
4251
+ ("usps_media", "usps_media"),
4252
+ ("usps_library", "usps_library"),
4253
+ ("usps_all", "usps_all"),
4254
+ ("usps_online", "usps_online"),
4255
+ ("usps_plus", "usps_plus"),
4256
+ ("usps_bpm", "usps_bpm"),
4257
+ ("usps_ground_advantage", "usps_ground_advantage"),
4258
+ (
4259
+ "usps_ground_advantage_commercial",
4260
+ "usps_ground_advantage_commercial",
4261
+ ),
4262
+ ("usps_ground_advantage_hfp", "usps_ground_advantage_hfp"),
4263
+ (
4264
+ "usps_ground_advantage_hfp_commercial",
4265
+ "usps_ground_advantage_hfp_commercial",
4266
+ ),
4267
+ ("usps_ground_advantage_cubic", "usps_ground_advantage_cubic"),
4268
+ ("usps_first_class", "usps_first_class"),
4269
+ ("usps_first_class_commercial", "usps_first_class_commercial"),
4270
+ (
4271
+ "usps_first_class_hfp_commercial",
4272
+ "usps_first_class_hfp_commercial",
4273
+ ),
4274
+ ("usps_priority", "usps_priority"),
4275
+ ("usps_priority_commercial", "usps_priority_commercial"),
4276
+ ("usps_priority_cpp", "usps_priority_cpp"),
4277
+ ("usps_priority_hfp_commercial", "usps_priority_hfp_commercial"),
4278
+ ("usps_priority_hfp_cpp", "usps_priority_hfp_cpp"),
4279
+ ("usps_priority_mail_express", "usps_priority_mail_express"),
4280
+ (
4281
+ "usps_priority_mail_express_commercial",
4282
+ "usps_priority_mail_express_commercial",
4283
+ ),
4284
+ (
4285
+ "usps_priority_mail_express_cpp",
4286
+ "usps_priority_mail_express_cpp",
4287
+ ),
4288
+ ("usps_priority_mail_express_sh", "usps_priority_mail_express_sh"),
4289
+ (
4290
+ "usps_priority_mail_express_sh_commercial",
4291
+ "usps_priority_mail_express_sh_commercial",
4292
+ ),
4293
+ (
4294
+ "usps_priority_mail_express_hfp",
4295
+ "usps_priority_mail_express_hfp",
4296
+ ),
4297
+ (
4298
+ "usps_priority_mail_express_hfp_commercial",
4299
+ "usps_priority_mail_express_hfp_commercial",
4300
+ ),
4301
+ (
4302
+ "usps_priority_mail_express_hfp_cpp",
4303
+ "usps_priority_mail_express_hfp_cpp",
4304
+ ),
4305
+ ("usps_priority_mail_cubic", "usps_priority_mail_cubic"),
4306
+ ("usps_retail_ground", "usps_retail_ground"),
4307
+ ("usps_media", "usps_media"),
4308
+ ("usps_library", "usps_library"),
4309
+ ("usps_all", "usps_all"),
4310
+ ("usps_online", "usps_online"),
4311
+ ("usps_plus", "usps_plus"),
4312
+ ("usps_bpm", "usps_bpm"),
4313
+ ("zoom2u_VIP", "zoom2u_VIP"),
4314
+ ("zoom2u_3_hour", "zoom2u_3_hour"),
4315
+ ("zoom2u_same_day", "zoom2u_same_day"),
4316
+ ],
4317
+ help_text="\n The list of services you want to apply the surcharge to.\n <br/>\n Note that by default, the surcharge is applied to all services\n ",
4318
+ null=True,
4319
+ ),
4320
+ ),
4321
+ ]