-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathschemaCollector.py
3301 lines (3112 loc) · 334 KB
/
schemaCollector.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import json
import os
import base64
import asyncio
import aiohttp
import pprint
import urllib.parse
import datetime
url = "https://centralusdtapp34.epicorsaas.com/SaaS840/api/v1/"
b64 = base64.b64encode(('jgrissom:Nimsgotadoor!1').encode("ascii")).decode("ascii")
creds = {'Authorization':'Basic ' + b64}
thingsToReplace = ["({","})",",","/","}","{","(",")","$","_____","____","___","__"]
list = [
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ABCCodeSvc/index.html" , "Erp.BO.ABCCodeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ACTTypeRevisionSvc/index.html" , "Erp.BO.ACTTypeRevisionSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ACTTypeSvc/index.html" , "Erp.BO.ACTTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AGAFIPCommDocTypeSvc/index.html" , "Erp.BO.AGAFIPCommDocTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AGAFIPResponsibilitySvc/index.html" , "Erp.BO.AGAFIPResponsibilitySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AGCAEASvc/index.html" , "Erp.BO.AGCAEASvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AGCustomsSvc/index.html" , "Erp.BO.AGCustomsSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AGDestinationSvc/index.html" , "Erp.BO.AGDestinationSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AGEmissionPointSvc/index.html" , "Erp.BO.AGEmissionPointSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AGIDDocTypeSvc/index.html" , "Erp.BO.AGIDDocTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AGInvoicingPointSvc/index.html" , "Erp.BO.AGInvoicingPointSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AGLocationSvc/index.html" , "Erp.BO.AGLocationSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AGProvinceSvc/index.html" , "Erp.BO.AGProvinceSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AGUserCompSvc/index.html" , "Erp.BO.AGUserCompSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AGWebServiceConfigSvc/index.html" , "Erp.BO.AGWebServiceConfigSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.APAdjustmentSvc/index.html" , "Erp.BO.APAdjustmentSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.APAgingTrackerSvc/index.html" , "Erp.BO.APAgingTrackerSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.APAlcHedSvc/index.html" , "Erp.BO.APAlcHedSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.APBOEMultiGenSvc/index.html" , "Erp.BO.APBOEMultiGenSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.APBankFileImportSvc/index.html" , "Erp.BO.APBankFileImportSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.APChkGrpSvc/index.html" , "Erp.BO.APChkGrpSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.APInvDtlSearchSvc/index.html" , "Erp.BO.APInvDtlSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.APInvGrpSvc/index.html" , "Erp.BO.APInvGrpSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.APInvMscSearchSvc/index.html" , "Erp.BO.APInvMscSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.APInvSearchSvc/index.html" , "Erp.BO.APInvSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.APInvoiceLoadSvc/index.html" , "Erp.BO.APInvoiceLoadSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.APInvoiceSvc/index.html" , "Erp.BO.APInvoiceSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.APLOCSvc/index.html" , "Erp.BO.APLOCSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.APPIWriteOffSvc/index.html" , "Erp.BO.APPIWriteOffSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.APPromNoteGrpSvc/index.html" , "Erp.BO.APPromNoteGrpSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.APPromissoryNotesSvc/index.html" , "Erp.BO.APPromissoryNotesSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.APTranSearchSvc/index.html" , "Erp.BO.APTranSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ARAdjustmentSvc/index.html" , "Erp.BO.ARAdjustmentSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ARAgingTrackerSvc/index.html" , "Erp.BO.ARAgingTrackerSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ARBOEMultiGenSvc/index.html" , "Erp.BO.ARBOEMultiGenSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ARInvSearchSvc/index.html" , "Erp.BO.ARInvSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ARInvcDtlSearchSvc/index.html" , "Erp.BO.ARInvcDtlSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ARInvoiceLoadSvc/index.html" , "Erp.BO.ARInvoiceLoadSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ARInvoiceSvc/index.html" , "Erp.BO.ARInvoiceSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ARLOCSvc/index.html" , "Erp.BO.ARLOCSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ARPIStatusChgSvc/index.html" , "Erp.BO.ARPIStatusChgSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ARPIWriteOffSvc/index.html" , "Erp.BO.ARPIWriteOffSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ARPromissoryNotesSvc/index.html" , "Erp.BO.ARPromissoryNotesSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ARRecTrackerSvc/index.html" , "Erp.BO.ARRecTrackerSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ATPSvc/index.html" , "Erp.BO.ATPSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AccountBudgetSvc/index.html" , "Erp.BO.AccountBudgetSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ActualCostAllocationWorkbenchSvc/index.html" , "Erp.BO.ActualCostAllocationWorkbenchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ActualCostingCategorySvc/index.html" , "Erp.BO.ActualCostingCategorySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AddPartWhseSvc/index.html" , "Erp.BO.AddPartWhseSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AdjustReturnContainerSvc/index.html" , "Erp.BO.AdjustReturnContainerSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.Adjustment1099Svc/index.html" , "Erp.BO.Adjustment1099Svc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AgingCreditSvc/index.html" , "Erp.BO.AgingCreditSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AgingRptFmtSvc/index.html" , "Erp.BO.AgingRptFmtSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AlcBatchSchedSearchSvc/index.html" , "Erp.BO.AlcBatchSchedSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AlcHedSvc/index.html" , "Erp.BO.AlcHedSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AlcHedTgtStampSearchSvc/index.html" , "Erp.BO.AlcHedTgtStampSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AlcHistorySvc/index.html" , "Erp.BO.AlcHistorySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AlertGroupSvc/index.html" , "Erp.BO.AlertGroupSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AlertLogSvc/index.html" , "Erp.BO.AlertLogSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AllocBatchSvc/index.html" , "Erp.BO.AllocBatchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AlternatePartSvc/index.html" , "Erp.BO.AlternatePartSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AnalysisCodeSvc/index.html" , "Erp.BO.AnalysisCodeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ApplyCreditMemoSvc/index.html" , "Erp.BO.ApplyCreditMemoSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ApplyDebitMemoSvc/index.html" , "Erp.BO.ApplyDebitMemoSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AprvVendSvc/index.html" , "Erp.BO.AprvVendSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AssetAddEntrySvc/index.html" , "Erp.BO.AssetAddEntrySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AssetClosePeriodSvc/index.html" , "Erp.BO.AssetClosePeriodSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AssetDispEntrySvc/index.html" , "Erp.BO.AssetDispEntrySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AssetImpairSvc/index.html" , "Erp.BO.AssetImpairSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AttrBinSvc/index.html" , "Erp.BO.AttrBinSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AttrWhseGroupSvc/index.html" , "Erp.BO.AttrWhseGroupSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AttributSvc/index.html" , "Erp.BO.AttributSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AutoBankRecSvc/index.html" , "Erp.BO.AutoBankRecSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.AutoTranReversalSvc/index.html" , "Erp.BO.AutoTranReversalSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.BENonAdmExpenseSvc/index.html" , "Erp.BO.BENonAdmExpenseSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.BESalesDomesticSvc/index.html" , "Erp.BO.BESalesDomesticSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.BESalesIntracomSvc/index.html" , "Erp.BO.BESalesIntracomSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.BOLGenerateSearchSvc/index.html" , "Erp.BO.BOLGenerateSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.BOLSvc/index.html" , "Erp.BO.BOLSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.BankAcctSvc/index.html" , "Erp.BO.BankAcctSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.BankAdjEntrySvc/index.html" , "Erp.BO.BankAdjEntrySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.BankBatchPayMethodSrchSvc/index.html" , "Erp.BO.BankBatchPayMethodSrchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.BankBatchSvc/index.html" , "Erp.BO.BankBatchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.BankBrnchSvc/index.html" , "Erp.BO.BankBrnchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.BankFeeSvc/index.html" , "Erp.BO.BankFeeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.BankFileImportSvc/index.html" , "Erp.BO.BankFileImportSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.BankFundTranSvc/index.html" , "Erp.BO.BankFundTranSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.BankPayMethodSearchSvc/index.html" , "Erp.BO.BankPayMethodSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.BankTransactionCodeSvc/index.html" , "Erp.BO.BankTransactionCodeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.BatchOpsSvc/index.html" , "Erp.BO.BatchOpsSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.BdnCdSvc/index.html" , "Erp.BO.BdnCdSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.BdnSetActPctSvc/index.html" , "Erp.BO.BdnSetActPctSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.BinSizeSvc/index.html" , "Erp.BO.BinSizeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.BomSearchSvc/index.html" , "Erp.BO.BomSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.BookOrdSvc/index.html" , "Erp.BO.BookOrdSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.BoxNumberSvc/index.html" , "Erp.BO.BoxNumberSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.BudgetCodeSvc/index.html" , "Erp.BO.BudgetCodeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.BurdenSetSvc/index.html" , "Erp.BO.BurdenSetSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.BusEntitiesSvc/index.html" , "Erp.BO.BusEntitiesSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.BusinessCategorySvc/index.html" , "Erp.BO.BusinessCategorySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.BuyerWorkbenchSvc/index.html" , "Erp.BO.BuyerWorkbenchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CCCountCycleSvc/index.html" , "Erp.BO.CCCountCycleSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CCDtlSearchSvc/index.html" , "Erp.BO.CCDtlSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CCHdrSearchSvc/index.html" , "Erp.BO.CCHdrSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CCPartSelectUpdSvc/index.html" , "Erp.BO.CCPartSelectUpdSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CCPeriodDefnSvc/index.html" , "Erp.BO.CCPeriodDefnSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CCScheduleSvc/index.html" , "Erp.BO.CCScheduleSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CCSheetSearchSvc/index.html" , "Erp.BO.CCSheetSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CCTagSearchSvc/index.html" , "Erp.BO.CCTagSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CNCustomsDeclBillDtlSearchSvc/index.html" , "Erp.BO.CNCustomsDeclBillDtlSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CNCustomsDeclarationBillSvc/index.html" , "Erp.BO.CNCustomsDeclarationBillSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CNCustomsHandbookSvc/index.html" , "Erp.BO.CNCustomsHandbookSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CNGLJrnAttachmentsSvc/index.html" , "Erp.BO.CNGLJrnAttachmentsSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CNGoldenTaxInterfaceSvc/index.html" , "Erp.BO.CNGoldenTaxInterfaceSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.COAActCatSvc/index.html" , "Erp.BO.COAActCatSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.COABookSearchSvc/index.html" , "Erp.BO.COABookSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.COAMapDataSvc/index.html" , "Erp.BO.COAMapDataSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.COAPESvc/index.html" , "Erp.BO.COAPESvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.COARefSearchSvc/index.html" , "Erp.BO.COARefSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.COARefSegSearchSvc/index.html" , "Erp.BO.COARefSegSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.COASegBalanceSvc/index.html" , "Erp.BO.COASegBalanceSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.COASegValuesSvc/index.html" , "Erp.BO.COASegValuesSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.COASegmentSearchSvc/index.html" , "Erp.BO.COASegmentSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.COASvc/index.html" , "Erp.BO.COASvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.COMagneticMediaReportSvc/index.html" , "Erp.BO.COMagneticMediaReportSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.COMagneticMediaSetupSvc/index.html" , "Erp.BO.COMagneticMediaSetupSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.COOneTimeSvc/index.html" , "Erp.BO.COOneTimeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CORevelationSvc/index.html" , "Erp.BO.CORevelationSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CRMCallSvc/index.html" , "Erp.BO.CRMCallSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CRMCompSvc/index.html" , "Erp.BO.CRMCompSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CalculatedFieldSvc/index.html" , "Erp.BO.CalculatedFieldSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CallTypeSvc/index.html" , "Erp.BO.CallTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CapPromiseSvc/index.html" , "Erp.BO.CapPromiseSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CapabilitySvc/index.html" , "Erp.BO.CapabilitySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CarrierSvc/index.html" , "Erp.BO.CarrierSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CartonStageSvc/index.html" , "Erp.BO.CartonStageSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CashDtlSearchSvc/index.html" , "Erp.BO.CashDtlSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CashFlowSvc/index.html" , "Erp.BO.CashFlowSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CashGrpSvc/index.html" , "Erp.BO.CashGrpSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CashHeadSearchSvc/index.html" , "Erp.BO.CashHeadSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CashRecSearchSvc/index.html" , "Erp.BO.CashRecSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CashRecSvc/index.html" , "Erp.BO.CashRecSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CashReceiptAdjustmentSvc/index.html" , "Erp.BO.CashReceiptAdjustmentSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ChangeImpactSvc/index.html" , "Erp.BO.ChangeImpactSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CheckDigitSvc/index.html" , "Erp.BO.CheckDigitSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CheckLstSvc/index.html" , "Erp.BO.CheckLstSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CheckRecSearchSvc/index.html" , "Erp.BO.CheckRecSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ClosePeriodSvc/index.html" , "Erp.BO.ClosePeriodSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CoaSegAcctSearchSvc/index.html" , "Erp.BO.CoaSegAcctSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.Code1099Svc/index.html" , "Erp.BO.Code1099Svc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CompanyLicenseInfoSvc/index.html" , "Erp.BO.CompanyLicenseInfoSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CompanySvc/index.html" , "Erp.BO.CompanySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ConfigurationDesignSvc/index.html" , "Erp.BO.ConfigurationDesignSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ConfigurationRuntimeSvc/index.html" , "Erp.BO.ConfigurationRuntimeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ConfiguratorAssembliesSvc/index.html" , "Erp.BO.ConfiguratorAssembliesSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ConfiguratorCodeEditorSvc/index.html" , "Erp.BO.ConfiguratorCodeEditorSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ConfiguratorDefSvc/index.html" , "Erp.BO.ConfiguratorDefSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ConfiguratorExpVarsSvc/index.html" , "Erp.BO.ConfiguratorExpVarsSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ConfiguratorRuleSvc/index.html" , "Erp.BO.ConfiguratorRuleSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ConfiguratorUDFuncsSvc/index.html" , "Erp.BO.ConfiguratorUDFuncsSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ConsMonitorSvc/index.html" , "Erp.BO.ConsMonitorSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ConsTgtDefSvc/index.html" , "Erp.BO.ConsTgtDefSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ConsTypeSvc/index.html" , "Erp.BO.ConsTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ConsolidToParentSvc/index.html" , "Erp.BO.ConsolidToParentSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ContactSvc/index.html" , "Erp.BO.ContactSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ContainerClassSvc/index.html" , "Erp.BO.ContainerClassSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ContainerTrackingSvc/index.html" , "Erp.BO.ContainerTrackingSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ContractRenewalSearchSvc/index.html" , "Erp.BO.ContractRenewalSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ControlIDExtractSvc/index.html" , "Erp.BO.ControlIDExtractSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ControlIDSvc/index.html" , "Erp.BO.ControlIDSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CorrectiveActionSvc/index.html" , "Erp.BO.CorrectiveActionSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CostAdjustmentSvc/index.html" , "Erp.BO.CostAdjustmentSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CostBurdenSearchSvc/index.html" , "Erp.BO.CostBurdenSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CostLaborSearchSvc/index.html" , "Erp.BO.CostLaborSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CostPartSearchSvc/index.html" , "Erp.BO.CostPartSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CostWorkBenchSvc/index.html" , "Erp.BO.CostWorkBenchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CountTagSvc/index.html" , "Erp.BO.CountTagSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CountryPortSearchSvc/index.html" , "Erp.BO.CountryPortSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CountrySvc/index.html" , "Erp.BO.CountrySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CourseRevisionSearchSvc/index.html" , "Erp.BO.CourseRevisionSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CourseSchSvc/index.html" , "Erp.BO.CourseSchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CourseSvc/index.html" , "Erp.BO.CourseSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CreateIDNumbersSvc/index.html" , "Erp.BO.CreateIDNumbersSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CreditCardProcSvc/index.html" , "Erp.BO.CreditCardProcSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CreditCardProcessorSvc/index.html" , "Erp.BO.CreditCardProcessorSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CreditCardTypeSvc/index.html" , "Erp.BO.CreditCardTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CreditManagerSvc/index.html" , "Erp.BO.CreditManagerSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CreditTranSvc/index.html" , "Erp.BO.CreditTranSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CrossDockSvc/index.html" , "Erp.BO.CrossDockSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CurrExRateSearchSvc/index.html" , "Erp.BO.CurrExRateSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CurrExRateSvc/index.html" , "Erp.BO.CurrExRateSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CurrRateGrpSvc/index.html" , "Erp.BO.CurrRateGrpSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CurrencySvc/index.html" , "Erp.BO.CurrencySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CustBankSearchSvc/index.html" , "Erp.BO.CustBankSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CustBillToSvc/index.html" , "Erp.BO.CustBillToSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CustCntSvc/index.html" , "Erp.BO.CustCntSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CustContImportSvc/index.html" , "Erp.BO.CustContImportSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CustGrupSvc/index.html" , "Erp.BO.CustGrupSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CustPriceListSearchSvc/index.html" , "Erp.BO.CustPriceListSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CustReminderSearchSvc/index.html" , "Erp.BO.CustReminderSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CustShipSummarySvc/index.html" , "Erp.BO.CustShipSummarySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CustShipSvc/index.html" , "Erp.BO.CustShipSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CustXPrtSearchSvc/index.html" , "Erp.BO.CustXPrtSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CustXPrtSvc/index.html" , "Erp.BO.CustXPrtSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CustomerPartXRefSvc/index.html" , "Erp.BO.CustomerPartXRefSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.CustomerSvc/index.html" , "Erp.BO.CustomerSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DBFieldSearchSvc/index.html" , "Erp.BO.DBFieldSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DEPartFIFOTranHistSvc/index.html" , "Erp.BO.DEPartFIFOTranHistSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DMRActnSearchSvc/index.html" , "Erp.BO.DMRActnSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DMRProcessingSvc/index.html" , "Erp.BO.DMRProcessingSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DataCheckSvc/index.html" , "Erp.BO.DataCheckSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DataExportSvc/index.html" , "Erp.BO.DataExportSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DataFixSvc/index.html" , "Erp.BO.DataFixSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DefExpRecogSvc/index.html" , "Erp.BO.DefExpRecogSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DeliveryTypeSvc/index.html" , "Erp.BO.DeliveryTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DemandCntDtlSearchSvc/index.html" , "Erp.BO.DemandCntDtlSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DemandContractSvc/index.html" , "Erp.BO.DemandContractSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DemandEntrySvc/index.html" , "Erp.BO.DemandEntrySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DemandFromOrdersSvc/index.html" , "Erp.BO.DemandFromOrdersSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DemandImportEntrySvc/index.html" , "Erp.BO.DemandImportEntrySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DemandLogSvc/index.html" , "Erp.BO.DemandLogSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DemandMassReviewSvc/index.html" , "Erp.BO.DemandMassReviewSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DemandPartSearchSvc/index.html" , "Erp.BO.DemandPartSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DemandReconcileSearchSvc/index.html" , "Erp.BO.DemandReconcileSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DemandReconcileSvc/index.html" , "Erp.BO.DemandReconcileSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DepSearchSvc/index.html" , "Erp.BO.DepSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DmdMassGrpSvc/index.html" , "Erp.BO.DmdMassGrpSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DrawingsSvc/index.html" , "Erp.BO.DrawingsSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DriverSvc/index.html" , "Erp.BO.DriverSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DropShipDtlSearchSvc/index.html" , "Erp.BO.DropShipDtlSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DropShipSvc/index.html" , "Erp.BO.DropShipSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DynAttrClassDtlSearchSvc/index.html" , "Erp.BO.DynAttrClassDtlSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DynAttrClassSvc/index.html" , "Erp.BO.DynAttrClassSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DynAttrMasterDtlSvc/index.html" , "Erp.BO.DynAttrMasterDtlSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DynAttrValueSetLangDescSvc/index.html" , "Erp.BO.DynAttrValueSetLangDescSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DynAttrValueSetSvc/index.html" , "Erp.BO.DynAttrValueSetSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DynAttrValueSvc/index.html" , "Erp.BO.DynAttrValueSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.DynCalSvc/index.html" , "Erp.BO.DynCalSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.EADSvc/index.html" , "Erp.BO.EADSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ECCCustomerSvc/index.html" , "Erp.BO.ECCCustomerSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ECCExtensionSvc/index.html" , "Erp.BO.ECCExtensionSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ECCSupplierSvc/index.html" , "Erp.BO.ECCSupplierSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ECCUDMapSvc/index.html" , "Erp.BO.ECCUDMapSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ECCWebServiceSvc/index.html" , "Erp.BO.ECCWebServiceSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ECOOprSearchSvc/index.html" , "Erp.BO.ECOOprSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ECORevSearchSvc/index.html" , "Erp.BO.ECORevSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ECSalesReportSvc/index.html" , "Erp.BO.ECSalesReportSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.EDIImportSvc/index.html" , "Erp.BO.EDIImportSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.EInvOperatorSvc/index.html" , "Erp.BO.EInvOperatorSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ETCAddrValidationSvc/index.html" , "Erp.BO.ETCAddrValidationSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ElectronicInterfaceSvc/index.html" , "Erp.BO.ElectronicInterfaceSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ElectronicReportSvc/index.html" , "Erp.BO.ElectronicReportSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.EmailTemplateSvc/index.html" , "Erp.BO.EmailTemplateSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.EmpBasicSvc/index.html" , "Erp.BO.EmpBasicSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.EmpCourseSvc/index.html" , "Erp.BO.EmpCourseSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.EmpExpenseGroupSvc/index.html" , "Erp.BO.EmpExpenseGroupSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.EmpExpenseSvc/index.html" , "Erp.BO.EmpExpenseSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.EmpRoleSearchSvc/index.html" , "Erp.BO.EmpRoleSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.EmpYTDLoadSvc/index.html" , "Erp.BO.EmpYTDLoadSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.EngWorkBenchSvc/index.html" , "Erp.BO.EngWorkBenchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.EntityGLCSvc/index.html" , "Erp.BO.EntityGLCSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.EpicorAgentSvc/index.html" , "Erp.BO.EpicorAgentSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.EquipLocSvc/index.html" , "Erp.BO.EquipLocSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.EquipMeterSvc/index.html" , "Erp.BO.EquipMeterSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.EquipStatusSvc/index.html" , "Erp.BO.EquipStatusSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.EquipSvc/index.html" , "Erp.BO.EquipSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.EquipTypeSvc/index.html" , "Erp.BO.EquipTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ErpMetaFxSvc/index.html" , "Erp.BO.ErpMetaFxSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ExtCompanySvc/index.html" , "Erp.BO.ExtCompanySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ExtFinAnlsCdSvc/index.html" , "Erp.BO.ExtFinAnlsCdSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ExtPREmpSvc/index.html" , "Erp.BO.ExtPREmpSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ExtPRHolidaySvc/index.html" , "Erp.BO.ExtPRHolidaySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ExtPRLayoutSvc/index.html" , "Erp.BO.ExtPRLayoutSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ExtPRPayClassSvc/index.html" , "Erp.BO.ExtPRPayClassSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ExtPRPayTypeSvc/index.html" , "Erp.BO.ExtPRPayTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ExtPRProcGrpSvc/index.html" , "Erp.BO.ExtPRProcGrpSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ExtPlantSearchSvc/index.html" , "Erp.BO.ExtPlantSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ExtWarehouseSearchSvc/index.html" , "Erp.BO.ExtWarehouseSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FAClassSvc/index.html" , "Erp.BO.FAClassSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FAGroupSvc/index.html" , "Erp.BO.FAGroupSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FAMethodSvc/index.html" , "Erp.BO.FAMethodSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FAReportCatSvc/index.html" , "Erp.BO.FAReportCatSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FARevalueRegSearchSvc/index.html" , "Erp.BO.FARevalueRegSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FARevalueSvc/index.html" , "Erp.BO.FARevalueSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FASpreadCodeSvc/index.html" , "Erp.BO.FASpreadCodeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FATranSearchSvc/index.html" , "Erp.BO.FATranSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FAssetFieldsSearchSvc/index.html" , "Erp.BO.FAssetFieldsSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FAssetRegSvc/index.html" , "Erp.BO.FAssetRegSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FAssetSvc/index.html" , "Erp.BO.FAssetSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FOBSvc/index.html" , "Erp.BO.FOBSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FSAInstallationTypeSvc/index.html" , "Erp.BO.FSAInstallationTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FSASyncWbSvc/index.html" , "Erp.BO.FSASyncWbSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FSAssetClassSvc/index.html" , "Erp.BO.FSAssetClassSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FSAssetConditionSvc/index.html" , "Erp.BO.FSAssetConditionSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FSCallCdSvc/index.html" , "Erp.BO.FSCallCdSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FSCallDtSearchSvc/index.html" , "Erp.BO.FSCallDtSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FSContCdSvc/index.html" , "Erp.BO.FSContCdSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FSContDtSearchSvc/index.html" , "Erp.BO.FSContDtSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FSContSNSearchSvc/index.html" , "Erp.BO.FSContSNSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FSTechSearchSvc/index.html" , "Erp.BO.FSTechSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FSWarrCdSvc/index.html" , "Erp.BO.FSWarrCdSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FinChargeSvc/index.html" , "Erp.BO.FinChargeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FinReportConfigSvc/index.html" , "Erp.BO.FinReportConfigSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FirstArtSvc/index.html" , "Erp.BO.FirstArtSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FiscalCalSvc/index.html" , "Erp.BO.FiscalCalSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FiscalPerSearchSvc/index.html" , "Erp.BO.FiscalPerSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FiscalYrSearchSvc/index.html" , "Erp.BO.FiscalYrSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ForecastSvc/index.html" , "Erp.BO.ForecastSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.Form1099Svc/index.html" , "Erp.BO.Form1099Svc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FormTypeSvc/index.html" , "Erp.BO.FormTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.FreightServiceSvc/index.html" , "Erp.BO.FreightServiceSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLAccountMassDelSvc/index.html" , "Erp.BO.GLAccountMassDelSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLAccountMassUpdSvc/index.html" , "Erp.BO.GLAccountMassUpdSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLAccountSvc/index.html" , "Erp.BO.GLAccountSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLAcctDispSvc/index.html" , "Erp.BO.GLAcctDispSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLAlcHedSvc/index.html" , "Erp.BO.GLAlcHedSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLBCOASegValuesSvc/index.html" , "Erp.BO.GLBCOASegValuesSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLBCOASegmentSearchSvc/index.html" , "Erp.BO.GLBCOASegmentSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLBCOASvc/index.html" , "Erp.BO.GLBCOASvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLBGLAccountSvc/index.html" , "Erp.BO.GLBGLAccountSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLBGLAcctDispSvc/index.html" , "Erp.BO.GLBGLAcctDispSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLBGLBookSvc/index.html" , "Erp.BO.GLBGLBookSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLBGLCOARefAcctSvc/index.html" , "Erp.BO.GLBGLCOARefAcctSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLBGLCOARefTypeSvc/index.html" , "Erp.BO.GLBGLCOARefTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLBJrnlCodeSvc/index.html" , "Erp.BO.GLBJrnlCodeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLBookPerSearchSvc/index.html" , "Erp.BO.GLBookPerSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLBookSvc/index.html" , "Erp.BO.GLBookSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLCOARefAcctSvc/index.html" , "Erp.BO.GLCOARefAcctSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLCOARefTypeSvc/index.html" , "Erp.BO.GLCOARefTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLCTAcctCntxtSvc/index.html" , "Erp.BO.GLCTAcctCntxtSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLCTEntitySearchSvc/index.html" , "Erp.BO.GLCTEntitySearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLCntrlSvc/index.html" , "Erp.BO.GLCntrlSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLCntrlTypeSvc/index.html" , "Erp.BO.GLCntrlTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLCntrlTypeSysSvc/index.html" , "Erp.BO.GLCntrlTypeSysSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLCostTransSvc/index.html" , "Erp.BO.GLCostTransSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLDailyBalanceSvc/index.html" , "Erp.BO.GLDailyBalanceSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLJournalEntrySvc/index.html" , "Erp.BO.GLJournalEntrySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLJrnDtlSvc/index.html" , "Erp.BO.GLJrnDtlSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLJrnGrpSvc/index.html" , "Erp.BO.GLJrnGrpSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLJrnSrcSearchSvc/index.html" , "Erp.BO.GLJrnSrcSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLPeriodBalSearchSvc/index.html" , "Erp.BO.GLPeriodBalSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLPurchSvc/index.html" , "Erp.BO.GLPurchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLRptColSetSearchSvc/index.html" , "Erp.BO.GLRptColSetSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLTrackerSvc/index.html" , "Erp.BO.GLTrackerSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GLTransMatchSvc/index.html" , "Erp.BO.GLTransMatchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GUIBatchAssignLNSvc/index.html" , "Erp.BO.GUIBatchAssignLNSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GUIGroupSearchSvc/index.html" , "Erp.BO.GUIGroupSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GUINumSvc/index.html" , "Erp.BO.GUINumSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GUITaxDeclareSvc/index.html" , "Erp.BO.GUITaxDeclareSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GUIVendDfltDocTypeSvc/index.html" , "Erp.BO.GUIVendDfltDocTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GetAmortizationSvc/index.html" , "Erp.BO.GetAmortizationSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GetContractRenewalSvc/index.html" , "Erp.BO.GetContractRenewalSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GetRequestSvc/index.html" , "Erp.BO.GetRequestSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GlRptMasSvc/index.html" , "Erp.BO.GlRptMasSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GlbAlertSvc/index.html" , "Erp.BO.GlbAlertSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GlbCurrRateGrpSvc/index.html" , "Erp.BO.GlbCurrRateGrpSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GlbCurrencySvc/index.html" , "Erp.BO.GlbCurrencySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GlbCustomerSearchSvc/index.html" , "Erp.BO.GlbCustomerSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GlbForecastSvc/index.html" , "Erp.BO.GlbForecastSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GlbPartSearchSvc/index.html" , "Erp.BO.GlbPartSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GlbPerConSearchSvc/index.html" , "Erp.BO.GlbPerConSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GlbTableSvc/index.html" , "Erp.BO.GlbTableSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GlbVendorSearchSvc/index.html" , "Erp.BO.GlbVendorSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.GlobalInputVarsSvc/index.html" , "Erp.BO.GlobalInputVarsSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.HXProjectSearchSvc/index.html" , "Erp.BO.HXProjectSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.HelpDeskSvc/index.html" , "Erp.BO.HelpDeskSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.HelpDeskTopicSvc/index.html" , "Erp.BO.HelpDeskTopicSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ICReceiptSearchSvc/index.html" , "Erp.BO.ICReceiptSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ICommCodeSvc/index.html" , "Erp.BO.ICommCodeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IDNumbersSvc/index.html" , "Erp.BO.IDNumbersSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMABCCodeSvc/index.html" , "Erp.BO.IMABCCodeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMCashHeadSvc/index.html" , "Erp.BO.IMCashHeadSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMCompanySvc/index.html" , "Erp.BO.IMCompanySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMCustomerSvc/index.html" , "Erp.BO.IMCustomerSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMEmpBasicSvc/index.html" , "Erp.BO.IMEmpBasicSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMEmpExpenseSvc/index.html" , "Erp.BO.IMEmpExpenseSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMExtSysChunkDefSvc/index.html" , "Erp.BO.IMExtSysChunkDefSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMFSCallhdSvc/index.html" , "Erp.BO.IMFSCallhdSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMFSContCdSvc/index.html" , "Erp.BO.IMFSContCdSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMFSContHdSvc/index.html" , "Erp.BO.IMFSContHdSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMFSWarrCdSvc/index.html" , "Erp.BO.IMFSWarrCdSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMInvTransferSvc/index.html" , "Erp.BO.IMInvTransferSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMInvcHeadSvc/index.html" , "Erp.BO.IMInvcHeadSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMInventoryQtyAdjSvc/index.html" , "Erp.BO.IMInventoryQtyAdjSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMLaborHedSvc/index.html" , "Erp.BO.IMLaborHedSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMMiscChrgSvc/index.html" , "Erp.BO.IMMiscChrgSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMMoveRequestSvc/index.html" , "Erp.BO.IMMoveRequestSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMMscShpHdSvc/index.html" , "Erp.BO.IMMscShpHdSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMMtlQueueSvc/index.html" , "Erp.BO.IMMtlQueueSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMPartBinSvc/index.html" , "Erp.BO.IMPartBinSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMPartSvc/index.html" , "Erp.BO.IMPartSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMPlantSvc/index.html" , "Erp.BO.IMPlantSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMPurMiscSvc/index.html" , "Erp.BO.IMPurMiscSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMRMAHeadSvc/index.html" , "Erp.BO.IMRMAHeadSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMSalesTaxSvc/index.html" , "Erp.BO.IMSalesTaxSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMSerialNoSvc/index.html" , "Erp.BO.IMSerialNoSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMShipDtlSvc/index.html" , "Erp.BO.IMShipDtlSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMWarehseSvc/index.html" , "Erp.BO.IMWarehseSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IMWhseBinSvc/index.html" , "Erp.BO.IMWhseBinSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.INGSTR1ReportSvc/index.html" , "Erp.BO.INGSTR1ReportSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.INGSTR2ReportExportSvc/index.html" , "Erp.BO.INGSTR2ReportExportSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.INGSTR2ReportImportSvc/index.html" , "Erp.BO.INGSTR2ReportImportSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.INLUTBondSvc/index.html" , "Erp.BO.INLUTBondSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.INMaterialBurdenSvc/index.html" , "Erp.BO.INMaterialBurdenSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IRWarehseSearchSvc/index.html" , "Erp.BO.IRWarehseSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IStatTrnSvc/index.html" , "Erp.BO.IStatTrnSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ImageCategorySvc/index.html" , "Erp.BO.ImageCategorySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ImageDefaultCategorySvc/index.html" , "Erp.BO.ImageDefaultCategorySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ImageLayerSvc/index.html" , "Erp.BO.ImageLayerSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ImageSubCategorySearchSvc/index.html" , "Erp.BO.ImageSubCategorySearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ImageSvc/index.html" , "Erp.BO.ImageSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ImportGrpSvc/index.html" , "Erp.BO.ImportGrpSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ImportLaborAndSchedParamsSvc/index.html" , "Erp.BO.ImportLaborAndSchedParamsSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ImportSubsidSvc/index.html" , "Erp.BO.ImportSubsidSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IncotermsSvc/index.html" , "Erp.BO.IncotermsSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IndClassCodeSearchSvc/index.html" , "Erp.BO.IndClassCodeSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IndirectSvc/index.html" , "Erp.BO.IndirectSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IndustryClassSvc/index.html" , "Erp.BO.IndustryClassSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.InspAttrSvc/index.html" , "Erp.BO.InspAttrSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.InspDataTrackerSvc/index.html" , "Erp.BO.InspDataTrackerSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.InspPlanRevSearchSvc/index.html" , "Erp.BO.InspPlanRevSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.InspPlanSvc/index.html" , "Erp.BO.InspPlanSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.InspProcessingSvc/index.html" , "Erp.BO.InspProcessingSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.InspResultsSvc/index.html" , "Erp.BO.InspResultsSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.InspectrSvc/index.html" , "Erp.BO.InspectrSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.InternalPartCrossRefSvc/index.html" , "Erp.BO.InternalPartCrossRefSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IntgWorkbenchSvc/index.html" , "Erp.BO.IntgWorkbenchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IntraStatReportSvc/index.html" , "Erp.BO.IntraStatReportSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.InvTransferSvc/index.html" , "Erp.BO.InvTransferSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.InvcGrpSvc/index.html" , "Erp.BO.InvcGrpSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.InventoryAdvisorSvc/index.html" , "Erp.BO.InventoryAdvisorSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.InventoryAttributeSearchSvc/index.html" , "Erp.BO.InventoryAttributeSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.InventoryQtyAdjSvc/index.html" , "Erp.BO.InventoryQtyAdjSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.InvoiceIStatTrnSvc/index.html" , "Erp.BO.InvoiceIStatTrnSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.InvoiceReceiptMatchSvc/index.html" , "Erp.BO.InvoiceReceiptMatchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.IssueReturnSvc/index.html" , "Erp.BO.IssueReturnSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.JCDeptSvc/index.html" , "Erp.BO.JCDeptSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.JCShiftSvc/index.html" , "Erp.BO.JCShiftSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.JPAPPerBillStmtSvc/index.html" , "Erp.BO.JPAPPerBillStmtSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.JPAPPerBillSvc/index.html" , "Erp.BO.JPAPPerBillSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.JPPerBillStmtSvc/index.html" , "Erp.BO.JPPerBillStmtSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.JPPerBillSvc/index.html" , "Erp.BO.JPPerBillSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.JobAddlInfoSvc/index.html" , "Erp.BO.JobAddlInfoSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.JobAdjustmentSvc/index.html" , "Erp.BO.JobAdjustmentSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.JobAsmSearchSvc/index.html" , "Erp.BO.JobAsmSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.JobAsmblCostsSvc/index.html" , "Erp.BO.JobAsmblCostsSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.JobClosingCdSvc/index.html" , "Erp.BO.JobClosingCdSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.JobClosingSvc/index.html" , "Erp.BO.JobClosingSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.JobEntrySvc/index.html" , "Erp.BO.JobEntrySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.JobLogViewerSvc/index.html" , "Erp.BO.JobLogViewerSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.JobManagerSvc/index.html" , "Erp.BO.JobManagerSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.JobMtlSearchSvc/index.html" , "Erp.BO.JobMtlSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.JobOperSearchSvc/index.html" , "Erp.BO.JobOperSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.JobPartSvc/index.html" , "Erp.BO.JobPartSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.JobProdSearchSvc/index.html" , "Erp.BO.JobProdSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.JobSchedSvc/index.html" , "Erp.BO.JobSchedSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.JobStatusSvc/index.html" , "Erp.BO.JobStatusSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.JournalTrackerDetailSvc/index.html" , "Erp.BO.JournalTrackerDetailSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.JrnlCodeSvc/index.html" , "Erp.BO.JrnlCodeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.KBMaxSvc/index.html" , "Erp.BO.KBMaxSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.KanBanTypeSvc/index.html" , "Erp.BO.KanBanTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.KanbanPartSearchSvc/index.html" , "Erp.BO.KanbanPartSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.KanbanReceiptsSvc/index.html" , "Erp.BO.KanbanReceiptsSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.LabExpCdSvc/index.html" , "Erp.BO.LabExpCdSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.LaborApprovalSvc/index.html" , "Erp.BO.LaborApprovalSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.LaborDtlGroupSvc/index.html" , "Erp.BO.LaborDtlGroupSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.LaborDtlSearchSvc/index.html" , "Erp.BO.LaborDtlSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.LaborDtlSvc/index.html" , "Erp.BO.LaborDtlSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.LaborSvc/index.html" , "Erp.BO.LaborSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.LbrPrjRoleSvc/index.html" , "Erp.BO.LbrPrjRoleSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.LegalNumCnfgSvc/index.html" , "Erp.BO.LegalNumCnfgSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.LegalNumGenOptsSvc/index.html" , "Erp.BO.LegalNumGenOptsSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.LegalNumHistorySvc/index.html" , "Erp.BO.LegalNumHistorySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.LegalNumPrefixSvc/index.html" , "Erp.BO.LegalNumPrefixSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.LifecycleSvc/index.html" , "Erp.BO.LifecycleSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.LinkQuoteSearchSvc/index.html" , "Erp.BO.LinkQuoteSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.Local001SearchSvc/index.html" , "Erp.BO.Local001SearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.LocationInventoryMtlSearchSvc/index.html" , "Erp.BO.LocationInventoryMtlSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.LocationInventorySearchSvc/index.html" , "Erp.BO.LocationInventorySearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.LocationMgmtSvc/index.html" , "Erp.BO.LocationMgmtSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.LockboxGroupSvc/index.html" , "Erp.BO.LockboxGroupSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.LockboxLayoutRecordTypeSvc/index.html" , "Erp.BO.LockboxLayoutRecordTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.LockboxLayoutSvc/index.html" , "Erp.BO.LockboxLayoutSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.LogAPInvSvc/index.html" , "Erp.BO.LogAPInvSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.LogInvAprvVoidSvc/index.html" , "Erp.BO.LogInvAprvVoidSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.LogInvGrpSvc/index.html" , "Erp.BO.LogInvGrpSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.LookupDataSvc/index.html" , "Erp.BO.LookupDataSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.LotSelectUpdateSvc/index.html" , "Erp.BO.LotSelectUpdateSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.LotSeqSvc/index.html" , "Erp.BO.LotSeqSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.LotTraceSvc/index.html" , "Erp.BO.LotTraceSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MESMenuSearchSvc/index.html" , "Erp.BO.MESMenuSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MESMenuSvc/index.html" , "Erp.BO.MESMenuSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MICRPrinterSvc/index.html" , "Erp.BO.MICRPrinterSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MLSupplyDemandSvc/index.html" , "Erp.BO.MLSupplyDemandSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MPSSvc/index.html" , "Erp.BO.MPSSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MXAPInvFolioImportSvc/index.html" , "Erp.BO.MXAPInvFolioImportSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MXAPPaymentFolioImportSvc/index.html" , "Erp.BO.MXAPPaymentFolioImportSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MXGLJournalFolioImportSvc/index.html" , "Erp.BO.MXGLJournalFolioImportSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MXPACConfigurationSvc/index.html" , "Erp.BO.MXPACConfigurationSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MXTaxRegimeSvc/index.html" , "Erp.BO.MXTaxRegimeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MXWHTaxCertificateSvc/index.html" , "Erp.BO.MXWHTaxCertificateSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MaintReqSvc/index.html" , "Erp.BO.MaintReqSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MaintResourceSvc/index.html" , "Erp.BO.MaintResourceSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MangCustSearchSvc/index.html" , "Erp.BO.MangCustSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ManufacturerSvc/index.html" , "Erp.BO.ManufacturerSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MassIssueToMfgSvc/index.html" , "Erp.BO.MassIssueToMfgSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MassOperationReplaceSvc/index.html" , "Erp.BO.MassOperationReplaceSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MassPartReplaceDeleteSvc/index.html" , "Erp.BO.MassPartReplaceDeleteSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MassRscGrpReplaceSvc/index.html" , "Erp.BO.MassRscGrpReplaceSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MasterPackSvc/index.html" , "Erp.BO.MasterPackSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MaterialQueueSvc/index.html" , "Erp.BO.MaterialQueueSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MaterialQueueTranTypesSvc/index.html" , "Erp.BO.MaterialQueueTranTypesSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MetaUIHarnessSvc/index.html" , "Erp.BO.MetaUIHarnessSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MetaUISharedSvc/index.html" , "Erp.BO.MetaUISharedSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MeterReadSvc/index.html" , "Erp.BO.MeterReadSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MfgPartSvc/index.html" , "Erp.BO.MfgPartSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MinMaxSfyMassUpdSvc/index.html" , "Erp.BO.MinMaxSfyMassUpdSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MiscChrgSvc/index.html" , "Erp.BO.MiscChrgSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MiscShipSvc/index.html" , "Erp.BO.MiscShipSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MiscShipToSearchSvc/index.html" , "Erp.BO.MiscShipToSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MktgActSvc/index.html" , "Erp.BO.MktgActSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MktgAdvSvc/index.html" , "Erp.BO.MktgAdvSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MktgCampSvc/index.html" , "Erp.BO.MktgCampSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MktgEvntSvc/index.html" , "Erp.BO.MktgEvntSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MktgLstSvc/index.html" , "Erp.BO.MktgLstSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MktgPubSvc/index.html" , "Erp.BO.MktgPubSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MobileAttachmentSvc/index.html" , "Erp.BO.MobileAttachmentSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MobileCRMSvc/index.html" , "Erp.BO.MobileCRMSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MobileEmpExpenseSvc/index.html" , "Erp.BO.MobileEmpExpenseSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MobileLaborSvc/index.html" , "Erp.BO.MobileLaborSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MobileSettingsSvc/index.html" , "Erp.BO.MobileSettingsSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MobileUserNotificationOptionSvc/index.html" , "Erp.BO.MobileUserNotificationOptionSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MobileUserNotificationSvc/index.html" , "Erp.BO.MobileUserNotificationSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MoveRequestSvc/index.html" , "Erp.BO.MoveRequestSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MrpProcQueueSvc/index.html" , "Erp.BO.MrpProcQueueSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MrpProcSvc/index.html" , "Erp.BO.MrpProcSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MrpQueueSvc/index.html" , "Erp.BO.MrpQueueSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MsgIDCounterSvc/index.html" , "Erp.BO.MsgIDCounterSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.MultiShipSearchSvc/index.html" , "Erp.BO.MultiShipSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.NARelationshipSvc/index.html" , "Erp.BO.NARelationshipSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.NLICPReportSvc/index.html" , "Erp.BO.NLICPReportSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.NLVATDeclarationSvc/index.html" , "Erp.BO.NLVATDeclarationSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.NaturalAcctCurrSearchSvc/index.html" , "Erp.BO.NaturalAcctCurrSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.NettingSvc/index.html" , "Erp.BO.NettingSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.NonConfSvc/index.html" , "Erp.BO.NonConfSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.NonFinBalDirectSvc/index.html" , "Erp.BO.NonFinBalDirectSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.OTSSearchSvc/index.html" , "Erp.BO.OTSSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.OpMasterSvc/index.html" , "Erp.BO.OpMasterSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.OpStdSvc/index.html" , "Erp.BO.OpStdSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.OpTextSvc/index.html" , "Erp.BO.OpTextSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.OrderAllocSvc/index.html" , "Erp.BO.OrderAllocSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.OrderDtlSearchSvc/index.html" , "Erp.BO.OrderDtlSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.OrderHistSvc/index.html" , "Erp.BO.OrderHistSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.OrderJobWizSvc/index.html" , "Erp.BO.OrderJobWizSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.OrderLineStatusSvc/index.html" , "Erp.BO.OrderLineStatusSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.OrderRelPlantSearchSvc/index.html" , "Erp.BO.OrderRelPlantSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.OrderRelSearchSvc/index.html" , "Erp.BO.OrderRelSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.OverrideSchedOrdersSvc/index.html" , "Erp.BO.OverrideSchedOrdersSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PAPlanSvc/index.html" , "Erp.BO.PAPlanSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PAScheduleSvc/index.html" , "Erp.BO.PAScheduleSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PAWeekSvc/index.html" , "Erp.BO.PAWeekSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PBGInvoiceSvc/index.html" , "Erp.BO.PBGInvoiceSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PBSchWrkSearchSvc/index.html" , "Erp.BO.PBSchWrkSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PBillSchSearchSvc/index.html" , "Erp.BO.PBillSchSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PCIDCustomerSearchSvc/index.html" , "Erp.BO.PCIDCustomerSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PCIDJobOperSearchSvc/index.html" , "Erp.BO.PCIDJobOperSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PCWarehseSearchSvc/index.html" , "Erp.BO.PCWarehseSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PCashCloseDaySvc/index.html" , "Erp.BO.PCashCloseDaySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PCashDeskSvc/index.html" , "Erp.BO.PCashDeskSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PCashEntrySvc/index.html" , "Erp.BO.PCashEntrySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PCashOprTypeSvc/index.html" , "Erp.BO.PCashOprTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PIStatusSvc/index.html" , "Erp.BO.PIStatusSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PITypeSvc/index.html" , "Erp.BO.PITypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PLJPKVATReportSvc/index.html" , "Erp.BO.PLJPKVATReportSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.POApvMsgSvc/index.html" , "Erp.BO.POApvMsgSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PODetailSearchSvc/index.html" , "Erp.BO.PODetailSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PODetailTrackerSearchSvc/index.html" , "Erp.BO.PODetailTrackerSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PORelSearchSvc/index.html" , "Erp.BO.PORelSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.POScheduleSvc/index.html" , "Erp.BO.POScheduleSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.POSuggChgSvc/index.html" , "Erp.BO.POSuggChgSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.POSuggSvc/index.html" , "Erp.BO.POSuggSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.POSvc/index.html" , "Erp.BO.POSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.POWorkbenchSvc/index.html" , "Erp.BO.POWorkbenchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PRChkGrpSvc/index.html" , "Erp.BO.PRChkGrpSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PRClassSvc/index.html" , "Erp.BO.PRClassSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PRDeductSvc/index.html" , "Erp.BO.PRDeductSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PREmployeeSvc/index.html" , "Erp.BO.PREmployeeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PRHoldySvc/index.html" , "Erp.BO.PRHoldySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PRTaxDtlSearchSvc/index.html" , "Erp.BO.PRTaxDtlSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PRW2DtlSvc/index.html" , "Erp.BO.PRW2DtlSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PRWrkCmpSvc/index.html" , "Erp.BO.PRWrkCmpSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PWLocHisSearchSvc/index.html" , "Erp.BO.PWLocHisSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PackClssSvc/index.html" , "Erp.BO.PackClssSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PackOutSearchSvc/index.html" , "Erp.BO.PackOutSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PackingMtlTypeSvc/index.html" , "Erp.BO.PackingMtlTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PackingSvc/index.html" , "Erp.BO.PackingSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PackingTypeSvc/index.html" , "Erp.BO.PackingTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ParsingParamsSvc/index.html" , "Erp.BO.ParsingParamsSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartAdvisorSvc/index.html" , "Erp.BO.PartAdvisorSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartAllocRuleClassSvc/index.html" , "Erp.BO.PartAllocRuleClassSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartAllocRuleMasterDtlSvc/index.html" , "Erp.BO.PartAllocRuleMasterDtlSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartAllocTemplateSvc/index.html" , "Erp.BO.PartAllocTemplateSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartAttributeSetSearchSvc/index.html" , "Erp.BO.PartAttributeSetSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartBinSearchSvc/index.html" , "Erp.BO.PartBinSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartClassSvc/index.html" , "Erp.BO.PartClassSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartClassWhseSearchSvc/index.html" , "Erp.BO.PartClassWhseSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartCostSearchSvc/index.html" , "Erp.BO.PartCostSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartDimSvc/index.html" , "Erp.BO.PartDimSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartFIFOCostSvc/index.html" , "Erp.BO.PartFIFOCostSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartLangDescSvc/index.html" , "Erp.BO.PartLangDescSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartLotIncludeAttributesSvc/index.html" , "Erp.BO.PartLotIncludeAttributesSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartOnHandWhseSvc/index.html" , "Erp.BO.PartOnHandWhseSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartPlantSearchSvc/index.html" , "Erp.BO.PartPlantSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartPlantWhseSearchSvc/index.html" , "Erp.BO.PartPlantWhseSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartRevSearchSvc/index.html" , "Erp.BO.PartRevSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartSchedSearchSvc/index.html" , "Erp.BO.PartSchedSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartSchedSvc/index.html" , "Erp.BO.PartSchedSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartSchedVendSearchSvc/index.html" , "Erp.BO.PartSchedVendSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartSvc/index.html" , "Erp.BO.PartSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartTranHistSvc/index.html" , "Erp.BO.PartTranHistSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartTranSvc/index.html" , "Erp.BO.PartTranSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartTranTranTypeSearchSvc/index.html" , "Erp.BO.PartTranTranTypeSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartWhseFullSearchSvc/index.html" , "Erp.BO.PartWhseFullSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartWhseSearchSvc/index.html" , "Erp.BO.PartWhseSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartWipSearchSvc/index.html" , "Erp.BO.PartWipSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartXRefMfgSvc/index.html" , "Erp.BO.PartXRefMfgSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PartXRefSelectSvc/index.html" , "Erp.BO.PartXRefSelectSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PayMethodSearchSvc/index.html" , "Erp.BO.PayMethodSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PayMethodSvc/index.html" , "Erp.BO.PayMethodSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PayTypeSvc/index.html" , "Erp.BO.PayTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PaymentEntrySvc/index.html" , "Erp.BO.PaymentEntrySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PayrollCheckEntrySvc/index.html" , "Erp.BO.PayrollCheckEntrySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PayrollTaxSvc/index.html" , "Erp.BO.PayrollTaxSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PcConDataSvc/index.html" , "Erp.BO.PcConDataSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PcConTypeSvc/index.html" , "Erp.BO.PcConTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PcECCSvc/index.html" , "Erp.BO.PcECCSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PcImageLayerIDWhereUsedSvc/index.html" , "Erp.BO.PcImageLayerIDWhereUsedSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PcInputsSearchSvc/index.html" , "Erp.BO.PcInputsSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PcLookupColSetHedSearchSvc/index.html" , "Erp.BO.PcLookupColSetHedSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PcLookupTblSvc/index.html" , "Erp.BO.PcLookupTblSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PcPropBagDefSvc/index.html" , "Erp.BO.PcPropBagDefSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PeLogViewerSvc/index.html" , "Erp.BO.PeLogViewerSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PerConLnkSearchSvc/index.html" , "Erp.BO.PerConLnkSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PerConSvc/index.html" , "Erp.BO.PerConSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PeriodicAvgCostingWorkbenchSvc/index.html" , "Erp.BO.PeriodicAvgCostingWorkbenchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PeriodicitySvc/index.html" , "Erp.BO.PeriodicitySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PersonSvc/index.html" , "Erp.BO.PersonSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PickedOrdersSvc/index.html" , "Erp.BO.PickedOrdersSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PipeLineSvc/index.html" , "Erp.BO.PipeLineSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PkgControlConfigSvc/index.html" , "Erp.BO.PkgControlConfigSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PkgControlGenPCIDSvc/index.html" , "Erp.BO.PkgControlGenPCIDSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PkgControlIDBuildSplitMergeSvc/index.html" , "Erp.BO.PkgControlIDBuildSplitMergeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PkgControlIDGeneratorSvc/index.html" , "Erp.BO.PkgControlIDGeneratorSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PkgControlIDMaintSvc/index.html" , "Erp.BO.PkgControlIDMaintSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PkgControlIDSvc/index.html" , "Erp.BO.PkgControlIDSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PkgControlJobOutputByPCIDSvc/index.html" , "Erp.BO.PkgControlJobOutputByPCIDSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PkgControlLabelTypeSvc/index.html" , "Erp.BO.PkgControlLabelTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PkgControlLabelValueSvc/index.html" , "Erp.BO.PkgControlLabelValueSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PkgControlParentPCIDMasterSvc/index.html" , "Erp.BO.PkgControlParentPCIDMasterSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PkgControlRepackReclassPCIDSvc/index.html" , "Erp.BO.PkgControlRepackReclassPCIDSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PkgControlResourcePrinterSvc/index.html" , "Erp.BO.PkgControlResourcePrinterSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PkgControlStationSvc/index.html" , "Erp.BO.PkgControlStationSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PkgControlTranRoutingPrinterSvc/index.html" , "Erp.BO.PkgControlTranRoutingPrinterSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PkgControlTranRoutingSvc/index.html" , "Erp.BO.PkgControlTranRoutingSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PkgControlVoidPCIDSvc/index.html" , "Erp.BO.PkgControlVoidPCIDSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PkgCtrlOverlayPCIDValidateSvc/index.html" , "Erp.BO.PkgCtrlOverlayPCIDValidateSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PkgCtrlTranRoutPrinterSearchSvc/index.html" , "Erp.BO.PkgCtrlTranRoutPrinterSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PlanContractSvc/index.html" , "Erp.BO.PlanContractSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PlanningWBSvc/index.html" , "Erp.BO.PlanningWBSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PlantConfCtrlSvc/index.html" , "Erp.BO.PlantConfCtrlSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PlantCostSvc/index.html" , "Erp.BO.PlantCostSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PlantFromSearchSvc/index.html" , "Erp.BO.PlantFromSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PlantSvc/index.html" , "Erp.BO.PlantSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PlantTranSearchSvc/index.html" , "Erp.BO.PlantTranSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PlantWhseSearchSvc/index.html" , "Erp.BO.PlantWhseSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PlasticPackagingTaxReportSvc/index.html" , "Erp.BO.PlasticPackagingTaxReportSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PostingRulesGLTranTypeSvc/index.html" , "Erp.BO.PostingRulesGLTranTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PostingRulesPackageSvc/index.html" , "Erp.BO.PostingRulesPackageSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PrefSchemeSvc/index.html" , "Erp.BO.PrefSchemeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PriceGroupSvc/index.html" , "Erp.BO.PriceGroupSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PriceListInquirySvc/index.html" , "Erp.BO.PriceListInquirySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PriceLstGroupsSvc/index.html" , "Erp.BO.PriceLstGroupsSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PriceLstHedSvc/index.html" , "Erp.BO.PriceLstHedSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PriceLstPartsSvc/index.html" , "Erp.BO.PriceLstPartsSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PriceLstSvc/index.html" , "Erp.BO.PriceLstSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ProdActDaySvc/index.html" , "Erp.BO.ProdActDaySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ProdActivitySvc/index.html" , "Erp.BO.ProdActivitySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ProdCalSvc/index.html" , "Erp.BO.ProdCalSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ProdCalWkSvc/index.html" , "Erp.BO.ProdCalWkSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ProdGrupSvc/index.html" , "Erp.BO.ProdGrupSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ProdTeamSvc/index.html" , "Erp.BO.ProdTeamSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ProjAnalysisSvc/index.html" , "Erp.BO.ProjAnalysisSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ProjChkLstTypeSvc/index.html" , "Erp.BO.ProjChkLstTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ProjMultiSvc/index.html" , "Erp.BO.ProjMultiSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ProjPhaseSearchSvc/index.html" , "Erp.BO.ProjPhaseSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ProjSummarySvc/index.html" , "Erp.BO.ProjSummarySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ProjectSvc/index.html" , "Erp.BO.ProjectSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PropertyValueSearchSvc/index.html" , "Erp.BO.PropertyValueSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PurAgentSvc/index.html" , "Erp.BO.PurAgentSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PurAuthSearchSvc/index.html" , "Erp.BO.PurAuthSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PurMiscSvc/index.html" , "Erp.BO.PurMiscSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PurTermsSvc/index.html" , "Erp.BO.PurTermsSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.PurchaseAdvisorSvc/index.html" , "Erp.BO.PurchaseAdvisorSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.QMarkUpSvc/index.html" , "Erp.BO.QMarkUpSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.QuickEntrySearchSvc/index.html" , "Erp.BO.QuickEntrySearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.QuickEntrySvc/index.html" , "Erp.BO.QuickEntrySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.QuickJobEntrySvc/index.html" , "Erp.BO.QuickJobEntrySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.QuoteAdtSvc/index.html" , "Erp.BO.QuoteAdtSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.QuoteAnalysisExpSvc/index.html" , "Erp.BO.QuoteAnalysisExpSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.QuoteAsmSearchSvc/index.html" , "Erp.BO.QuoteAsmSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.QuoteAsmSvc/index.html" , "Erp.BO.QuoteAsmSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.QuoteDtlSearchSvc/index.html" , "Erp.BO.QuoteDtlSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.QuoteSvc/index.html" , "Erp.BO.QuoteSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.RASchedCdSvc/index.html" , "Erp.BO.RASchedCdSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.RFQDecisionWizardSvc/index.html" , "Erp.BO.RFQDecisionWizardSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.RFQEntryJobSearchSvc/index.html" , "Erp.BO.RFQEntryJobSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.RFQEntryQuoteSearchSvc/index.html" , "Erp.BO.RFQEntryQuoteSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.RFQEntrySvc/index.html" , "Erp.BO.RFQEntrySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.RFQSuggSvc/index.html" , "Erp.BO.RFQSuggSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.RFQVendSvc/index.html" , "Erp.BO.RFQVendSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.RMADispSvc/index.html" , "Erp.BO.RMADispSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.RMADtlSearchSvc/index.html" , "Erp.BO.RMADtlSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.RMAProcSvc/index.html" , "Erp.BO.RMAProcSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.RateTypeSvc/index.html" , "Erp.BO.RateTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.RatingSvc/index.html" , "Erp.BO.RatingSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.RcvDtlSearchSvc/index.html" , "Erp.BO.RcvDtlSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ReasonSvc/index.html" , "Erp.BO.ReasonSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.RebateSvc/index.html" , "Erp.BO.RebateSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.RebateTransSvc/index.html" , "Erp.BO.RebateTransSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ReceiptSvc/index.html" , "Erp.BO.ReceiptSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ReceiptsFromMfgSvc/index.html" , "Erp.BO.ReceiptsFromMfgSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ReclassCodeSvc/index.html" , "Erp.BO.ReclassCodeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.RecurBookListSearchSvc/index.html" , "Erp.BO.RecurBookListSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.RecurringCycleSvc/index.html" , "Erp.BO.RecurringCycleSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.RecurringJournalSvc/index.html" , "Erp.BO.RecurringJournalSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.RefCategorySvc/index.html" , "Erp.BO.RefCategorySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.RegionSvc/index.html" , "Erp.BO.RegionSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ReminderGroupSvc/index.html" , "Erp.BO.ReminderGroupSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ReminderLetterSvc/index.html" , "Erp.BO.ReminderLetterSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.RenewalCodeSvc/index.html" , "Erp.BO.RenewalCodeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ReplenishmentSvc/index.html" , "Erp.BO.ReplenishmentSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ReportQtySvc/index.html" , "Erp.BO.ReportQtySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ReqActsSvc/index.html" , "Erp.BO.ReqActsSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ReqSvc/index.html" , "Erp.BO.ReqSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ReservePriSvc/index.html" , "Erp.BO.ReservePriSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ResourceCollectionSvc/index.html" , "Erp.BO.ResourceCollectionSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ResourceGroupSvc/index.html" , "Erp.BO.ResourceGroupSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ResourceSvc/index.html" , "Erp.BO.ResourceSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ResourceTypeSvc/index.html" , "Erp.BO.ResourceTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.RestrictFctsSvc/index.html" , "Erp.BO.RestrictFctsSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ReturnRequestSvc/index.html" , "Erp.BO.ReturnRequestSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ReverseCashReceiptSvc/index.html" , "Erp.BO.ReverseCashReceiptSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ReviewJrnSvc/index.html" , "Erp.BO.ReviewJrnSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.RevisionCompareSvc/index.html" , "Erp.BO.RevisionCompareSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.RlsClassSvc/index.html" , "Erp.BO.RlsClassSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.RoleCdSvc/index.html" , "Erp.BO.RoleCdSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.RoughCutParamSvc/index.html" , "Erp.BO.RoughCutParamSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.RunGLAllocSearchSvc/index.html" , "Erp.BO.RunGLAllocSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SNTranSearchSvc/index.html" , "Erp.BO.SNTranSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SOPOLinkSvc/index.html" , "Erp.BO.SOPOLinkSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SRTSearchSvc/index.html" , "Erp.BO.SRTSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SaleAuthSearchSvc/index.html" , "Erp.BO.SaleAuthSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SalesCatSvc/index.html" , "Erp.BO.SalesCatSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SalesOrdHedDtlSvc/index.html" , "Erp.BO.SalesOrdHedDtlSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SalesOrderSvc/index.html" , "Erp.BO.SalesOrderSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SalesPersonWBSvc/index.html" , "Erp.BO.SalesPersonWBSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SalesRepQuotaSvc/index.html" , "Erp.BO.SalesRepQuotaSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SalesRepSvc/index.html" , "Erp.BO.SalesRepSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SalesTRCSearchSvc/index.html" , "Erp.BO.SalesTRCSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SalesTaxSvc/index.html" , "Erp.BO.SalesTaxSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SalesTerSvc/index.html" , "Erp.BO.SalesTerSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SchedPriSvc/index.html" , "Erp.BO.SchedPriSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ScheduleEngineSvc/index.html" , "Erp.BO.ScheduleEngineSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SchedulingBoardSvc/index.html" , "Erp.BO.SchedulingBoardSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SelectedSerialNumbersSvc/index.html" , "Erp.BO.SelectedSerialNumbersSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SerialMatchSvc/index.html" , "Erp.BO.SerialMatchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SerialMatchingSvc/index.html" , "Erp.BO.SerialMatchingSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SerialNoAssignSvc/index.html" , "Erp.BO.SerialNoAssignSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SerialNoSvc/index.html" , "Erp.BO.SerialNoSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SerialNumMaskingSvc/index.html" , "Erp.BO.SerialNumMaskingSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SerialNumberSearchSvc/index.html" , "Erp.BO.SerialNumberSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ServiceCallCenterSvc/index.html" , "Erp.BO.ServiceCallCenterSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ServiceContractDtSearchSvc/index.html" , "Erp.BO.ServiceContractDtSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ServiceContractSearchSvc/index.html" , "Erp.BO.ServiceContractSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ServiceContractSvc/index.html" , "Erp.BO.ServiceContractSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SetupGrpSvc/index.html" , "Erp.BO.SetupGrpSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ShipDtlSearchSvc/index.html" , "Erp.BO.ShipDtlSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ShipToSvc/index.html" , "Erp.BO.ShipToSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ShipViaSvc/index.html" , "Erp.BO.ShipViaSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ShipWhseSearchSvc/index.html" , "Erp.BO.ShipWhseSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ShopLoadSvc/index.html" , "Erp.BO.ShopLoadSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.ShopWrnSvc/index.html" , "Erp.BO.ShopWrnSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SkipLotCtlSvc/index.html" , "Erp.BO.SkipLotCtlSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SpecRevSearchSvc/index.html" , "Erp.BO.SpecRevSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SpecificationSvc/index.html" , "Erp.BO.SpecificationSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SplitJobSvc/index.html" , "Erp.BO.SplitJobSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SplitMergeUOMSvc/index.html" , "Erp.BO.SplitMergeUOMSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.StageNoSvc/index.html" , "Erp.BO.StageNoSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.StageShipConfirmSvc/index.html" , "Erp.BO.StageShipConfirmSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.StatUOMSvc/index.html" , "Erp.BO.StatUOMSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.StockProvisionFormatSvc/index.html" , "Erp.BO.StockProvisionFormatSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SubConShipEntrySvc/index.html" , "Erp.BO.SubConShipEntrySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SubstanceRestrictionSvc/index.html" , "Erp.BO.SubstanceRestrictionSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SubstanceSearchSvc/index.html" , "Erp.BO.SubstanceSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SubstanceSvc/index.html" , "Erp.BO.SubstanceSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SupplierPartSvc/index.html" , "Erp.BO.SupplierPartSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.SupplierXRefSvc/index.html" , "Erp.BO.SupplierXRefSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TEApprovalTaskSvc/index.html" , "Erp.BO.TEApprovalTaskSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TFOrdDtlSearchSvc/index.html" , "Erp.BO.TFOrdDtlSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.THLocAPTaxReceiptSvc/index.html" , "Erp.BO.THLocAPTaxReceiptSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TWSellerAuthorizationSvc/index.html" , "Erp.BO.TWSellerAuthorizationSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TWVoidAndBlankGUINumsSvc/index.html" , "Erp.BO.TWVoidAndBlankGUINumsSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TariffSvc/index.html" , "Erp.BO.TariffSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TaskMastSvc/index.html" , "Erp.BO.TaskMastSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TaskSetSearchSvc/index.html" , "Erp.BO.TaskSetSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TaskSetSvc/index.html" , "Erp.BO.TaskSetSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TaskStatSvc/index.html" , "Erp.BO.TaskStatSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TaskSvc/index.html" , "Erp.BO.TaskSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TaskTypeSvc/index.html" , "Erp.BO.TaskTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TaxAlgrmSvc/index.html" , "Erp.BO.TaxAlgrmSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TaxAuthorityCdSvc/index.html" , "Erp.BO.TaxAuthorityCdSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TaxBoxDefaultSvc/index.html" , "Erp.BO.TaxBoxDefaultSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TaxBoxReportConfigSvc/index.html" , "Erp.BO.TaxBoxReportConfigSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TaxCatDSearchSvc/index.html" , "Erp.BO.TaxCatDSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TaxCatSvc/index.html" , "Erp.BO.TaxCatSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TaxCentSvc/index.html" , "Erp.BO.TaxCentSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TaxCertSearchSvc/index.html" , "Erp.BO.TaxCertSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TaxConnectCertificatesSvc/index.html" , "Erp.BO.TaxConnectCertificatesSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TaxExemptSearchSvc/index.html" , "Erp.BO.TaxExemptSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TaxJurisSvc/index.html" , "Erp.BO.TaxJurisSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TaxReconciliationSvc/index.html" , "Erp.BO.TaxReconciliationSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TaxResultsSvc/index.html" , "Erp.BO.TaxResultsSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TaxRgnSvc/index.html" , "Erp.BO.TaxRgnSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TaxRptCatSvc/index.html" , "Erp.BO.TaxRptCatSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TaxRptDtlSvc/index.html" , "Erp.BO.TaxRptDtlSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TaxSvcConfigSvc/index.html" , "Erp.BO.TaxSvcConfigSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TaxTextSvc/index.html" , "Erp.BO.TaxTextSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TaxValidationSvc/index.html" , "Erp.BO.TaxValidationSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TermsSvc/index.html" , "Erp.BO.TermsSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TimeExpenseSharedSvc/index.html" , "Erp.BO.TimeExpenseSharedSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TimePhasSvc/index.html" , "Erp.BO.TimePhasSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TimeTypeSvc/index.html" , "Erp.BO.TimeTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TopicChildSearchSvc/index.html" , "Erp.BO.TopicChildSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TrackingDtlSvc/index.html" , "Erp.BO.TrackingDtlSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TranDocTypeSvc/index.html" , "Erp.BO.TranDocTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TranGLCDetailSvc/index.html" , "Erp.BO.TranGLCDetailSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TranGLCJournalSvc/index.html" , "Erp.BO.TranGLCJournalSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TranTypeSearchSvc/index.html" , "Erp.BO.TranTypeSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TransOrderReceiptSvc/index.html" , "Erp.BO.TransOrderReceiptSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TransOrderShipSvc/index.html" , "Erp.BO.TransOrderShipSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TransSugSearchSvc/index.html" , "Erp.BO.TransSugSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TransferChgSugSvc/index.html" , "Erp.BO.TransferChgSugSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TransferOrderEntrySvc/index.html" , "Erp.BO.TransferOrderEntrySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.TransferWorkBenchSvc/index.html" , "Erp.BO.TransferWorkBenchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.UOMClassSvc/index.html" , "Erp.BO.UOMClassSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.UOMSearchSvc/index.html" , "Erp.BO.UOMSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.UOMStkSearchSvc/index.html" , "Erp.BO.UOMStkSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.UOMSvc/index.html" , "Erp.BO.UOMSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.USStateSvc/index.html" , "Erp.BO.USStateSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.USTINValidationResultSvc/index.html" , "Erp.BO.USTINValidationResultSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.USTINValidationSvc/index.html" , "Erp.BO.USTINValidationSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.UnpickTransactionSvc/index.html" , "Erp.BO.UnpickTransactionSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.UserCompSearchSvc/index.html" , "Erp.BO.UserCompSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.UserFileSvc/index.html" , "Erp.BO.UserFileSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.VATTaxSvc/index.html" , "Erp.BO.VATTaxSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.VNTGLRptMasSvc/index.html" , "Erp.BO.VNTGLRptMasSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.VendBankSearchSvc/index.html" , "Erp.BO.VendBankSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.VendCntSearchSvc/index.html" , "Erp.BO.VendCntSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.VendGrupSvc/index.html" , "Erp.BO.VendGrupSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.VendPartRestrictionSvc/index.html" , "Erp.BO.VendPartRestrictionSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.VendPartSvc/index.html" , "Erp.BO.VendPartSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.VendorPPSearchSvc/index.html" , "Erp.BO.VendorPPSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.VendorSvc/index.html" , "Erp.BO.VendorSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.VoidPRCheckSvc/index.html" , "Erp.BO.VoidPRCheckSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.VoidPaymentSvc/index.html" , "Erp.BO.VoidPaymentSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.WFGroupSvc/index.html" , "Erp.BO.WFGroupSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.WFStageSvc/index.html" , "Erp.BO.WFStageSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.WHTPaymentSubmitSvc/index.html" , "Erp.BO.WHTPaymentSubmitSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.WHTPaymentSvc/index.html" , "Erp.BO.WHTPaymentSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.WarehseSearchSvc/index.html" , "Erp.BO.WarehseSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.WarehseSvc/index.html" , "Erp.BO.WarehseSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.WarningSvc/index.html" , "Erp.BO.WarningSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.WaveSvc/index.html" , "Erp.BO.WaveSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.WebLogSvc/index.html" , "Erp.BO.WebLogSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.WhseBinSvc/index.html" , "Erp.BO.WhseBinSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.WhseGroupEmpSearchSvc/index.html" , "Erp.BO.WhseGroupEmpSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.WhseGroupSvc/index.html" , "Erp.BO.WhseGroupSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.WhsePartWhseSearchSvc/index.html" , "Erp.BO.WhsePartWhseSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.WhseSysPrinterSearchSvc/index.html" , "Erp.BO.WhseSysPrinterSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.WhseZoneSvc/index.html" , "Erp.BO.WhseZoneSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.WorkQueueSvc/index.html" , "Erp.BO.WorkQueueSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.WorkStationSvc/index.html" , "Erp.BO.WorkStationSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.WorkforceSearchSvc/index.html" , "Erp.BO.WorkforceSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Erp.BO.glaccountmassaddSvc/index.html" , "Erp.BO.glaccountmassaddSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.APIKeySvc/index.html" , "Ice.BO.APIKeySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.APITraceSvc/index.html" , "Ice.BO.APITraceSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.AccessScopeSvc/index.html" , "Ice.BO.AccessScopeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.AccountLockoutPolicySvc/index.html" , "Ice.BO.AccountLockoutPolicySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.AdminCompanySvc/index.html" , "Ice.BO.AdminCompanySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.AdminLicensingSvc/index.html" , "Ice.BO.AdminLicensingSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.AdminSessionSvc/index.html" , "Ice.BO.AdminSessionSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.AnnotationSvc/index.html" , "Ice.BO.AnnotationSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.AppRegistrationSvc/index.html" , "Ice.BO.AppRegistrationSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.AttachmentSvc/index.html" , "Ice.BO.AttachmentSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.AttachmentTransferSvc/index.html" , "Ice.BO.AttachmentTransferSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.AutoPrintSearchSvc/index.html" , "Ice.BO.AutoPrintSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.AutoRptSvc/index.html" , "Ice.BO.AutoRptSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.AzureADConfigSvc/index.html" , "Ice.BO.AzureADConfigSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.BAQDesignerSvc/index.html" , "Ice.BO.BAQDesignerSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.BAQExtDBSearchSvc/index.html" , "Ice.BO.BAQExtDBSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.BAQExtDatasourceSvc/index.html" , "Ice.BO.BAQExtDatasourceSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.BAQExtDsMetadataSvc/index.html" , "Ice.BO.BAQExtDsMetadataSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.BAQExtDsTypeSvc/index.html" , "Ice.BO.BAQExtDsTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.BORelationSearchSvc/index.html" , "Ice.BO.BORelationSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.BpHoldsSvc/index.html" , "Ice.BO.BpHoldsSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.BpInstanceCounterSvc/index.html" , "Ice.BO.BpInstanceCounterSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.BpMethodSvc/index.html" , "Ice.BO.BpMethodSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.BpTableDependSearchSvc/index.html" , "Ice.BO.BpTableDependSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.BpTextStorageSvc/index.html" , "Ice.BO.BpTextStorageSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.ChgLogSvc/index.html" , "Ice.BO.ChgLogSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.ChglogDirectiveSearchSvc/index.html" , "Ice.BO.ChglogDirectiveSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.CnvProgsSvc/index.html" , "Ice.BO.CnvProgsSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.CompanySvc/index.html" , "Ice.BO.CompanySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.ConfigCheckSvc/index.html" , "Ice.BO.ConfigCheckSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.ContextMenuDataSvc/index.html" , "Ice.BO.ContextMenuDataSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.ConversionSetSvc/index.html" , "Ice.BO.ConversionSetSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.DOCAssocSvc/index.html" , "Ice.BO.DOCAssocSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.DashBoardSvc/index.html" , "Ice.BO.DashBoardSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.DashboardMaintSvc/index.html" , "Ice.BO.DashboardMaintSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.DataDiscoverySvc/index.html" , "Ice.BO.DataDiscoverySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.DigitalCertificateStoreSvc/index.html" , "Ice.BO.DigitalCertificateStoreSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.DmsStorageTypeSvc/index.html" , "Ice.BO.DmsStorageTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.DocTypeSvc/index.html" , "Ice.BO.DocTypeSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.DynamicQuerySvc/index.html" , "Ice.BO.DynamicQuerySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.DynamicReportSvc/index.html" , "Ice.BO.DynamicReportSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.ESConfigSvc/index.html" , "Ice.BO.ESConfigSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.ESSearchSvc/index.html" , "Ice.BO.ESSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.ESignatureSvc/index.html" , "Ice.BO.ESignatureSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.ElementSvc/index.html" , "Ice.BO.ElementSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.ExportPackageSvc/index.html" , "Ice.BO.ExportPackageSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.ExtCompanySvc/index.html" , "Ice.BO.ExtCompanySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.ExtServiceRegistrationSvc/index.html" , "Ice.BO.ExtServiceRegistrationSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.ExtSystemSvc/index.html" , "Ice.BO.ExtSystemSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.ExtensionSvc/index.html" , "Ice.BO.ExtensionSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.FavoriteSvc/index.html" , "Ice.BO.FavoriteSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.GenxDataSvc/index.html" , "Ice.BO.GenxDataSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.HealthCheckSvc/index.html" , "Ice.BO.HealthCheckSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.IPFormCustomSvc/index.html" , "Ice.BO.IPFormCustomSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.ImportMgmtSvc/index.html" , "Ice.BO.ImportMgmtSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.ImportSvc/index.html" , "Ice.BO.ImportSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.InfoPromptFormSvc/index.html" , "Ice.BO.InfoPromptFormSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.IntegrationFieldMapSvc/index.html" , "Ice.BO.IntegrationFieldMapSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.IoTConfigSvc/index.html" , "Ice.BO.IoTConfigSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.IoTDeviceEventSvc/index.html" , "Ice.BO.IoTDeviceEventSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.IoTDeviceGroupSvc/index.html" , "Ice.BO.IoTDeviceGroupSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.IoTDeviceSvc/index.html" , "Ice.BO.IoTDeviceSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.IoTRuleSvc/index.html" , "Ice.BO.IoTRuleSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.KineticErpSvc/index.html" , "Ice.BO.KineticErpSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.LangNameSvc/index.html" , "Ice.BO.LangNameSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.LangOrgSvc/index.html" , "Ice.BO.LangOrgSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.LangProgSvc/index.html" , "Ice.BO.LangProgSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.LangTranSvc/index.html" , "Ice.BO.LangTranSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.LangXrefSvc/index.html" , "Ice.BO.LangXrefSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.MailLogSvc/index.html" , "Ice.BO.MailLogSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.MailSettingSvc/index.html" , "Ice.BO.MailSettingSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.MemoCatSvc/index.html" , "Ice.BO.MemoCatSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.MemoSvc/index.html" , "Ice.BO.MemoSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.MenuProgramSvc/index.html" , "Ice.BO.MenuProgramSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.MenuSvc/index.html" , "Ice.BO.MenuSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.MenuTabSvc/index.html" , "Ice.BO.MenuTabSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.MessageTemplateSvc/index.html" , "Ice.BO.MessageTemplateSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.NCChgLogSvc/index.html" , "Ice.BO.NCChgLogSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.NamedSearchSvc/index.html" , "Ice.BO.NamedSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.ObjectSecuritySvc/index.html" , "Ice.BO.ObjectSecuritySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.PDFFormSvc/index.html" , "Ice.BO.PDFFormSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.PDFFormTemplateSvc/index.html" , "Ice.BO.PDFFormTemplateSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.PasswordPolicySvc/index.html" , "Ice.BO.PasswordPolicySvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.PatchFldSvc/index.html" , "Ice.BO.PatchFldSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.PlantSvc/index.html" , "Ice.BO.PlantSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.PredictiveSearchSvc/index.html" , "Ice.BO.PredictiveSearchSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.ProcessSetSvc/index.html" , "Ice.BO.ProcessSetSvc" ],
["https://centralusdtapp34.epicorsaas.com/SaaS840/api/swagger/v1/odata/Ice.BO.ProcessTaskSvc/index.html" , "Ice.BO.ProcessTaskSvc" ],