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