@ssejal8/recipe-ui-kit 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (87) hide show
  1. package/.claude/settings.local.json +10 -0
  2. package/.npmr +1 -0
  3. package/README.md +354 -0
  4. package/apps/recipe-web/package.json +31 -0
  5. package/apps/recipe-web/src/app.css +418 -0
  6. package/apps/recipe-web/src/app.d.ts +32 -0
  7. package/apps/recipe-web/src/app.html +25 -0
  8. package/apps/recipe-web/src/lib/api/mealdb.ts +240 -0
  9. package/apps/recipe-web/src/lib/components/AppHeader.svelte +290 -0
  10. package/apps/recipe-web/src/lib/components/ConfirmDialog.svelte +46 -0
  11. package/apps/recipe-web/src/lib/components/Modal.svelte +33 -0
  12. package/apps/recipe-web/src/lib/components/RecipeCard.svelte +100 -0
  13. package/apps/recipe-web/src/lib/components/RecipeForm.svelte +560 -0
  14. package/apps/recipe-web/src/lib/components/RecipeGrid.svelte +77 -0
  15. package/apps/recipe-web/src/lib/components/RecipePickerDialog.svelte +185 -0
  16. package/apps/recipe-web/src/lib/components/Toaster.svelte +111 -0
  17. package/apps/recipe-web/src/lib/domain/recipe.ts +130 -0
  18. package/apps/recipe-web/src/lib/domain/validation.ts +189 -0
  19. package/apps/recipe-web/src/lib/stencil/WebComponent.svelte +145 -0
  20. package/apps/recipe-web/src/lib/stencil/register.ts +28 -0
  21. package/apps/recipe-web/src/lib/stores/favorites.svelte.ts +81 -0
  22. package/apps/recipe-web/src/lib/stores/myRecipes.svelte.ts +98 -0
  23. package/apps/recipe-web/src/lib/stores/persisted.svelte.ts +73 -0
  24. package/apps/recipe-web/src/lib/stores/planner.svelte.ts +275 -0
  25. package/apps/recipe-web/src/lib/stores/theme.svelte.ts +67 -0
  26. package/apps/recipe-web/src/lib/stores/toast.svelte.ts +66 -0
  27. package/apps/recipe-web/src/routes/+error.svelte +36 -0
  28. package/apps/recipe-web/src/routes/+layout.svelte +62 -0
  29. package/apps/recipe-web/src/routes/+page.svelte +352 -0
  30. package/apps/recipe-web/src/routes/+page.ts +107 -0
  31. package/apps/recipe-web/src/routes/favorites/+page.svelte +170 -0
  32. package/apps/recipe-web/src/routes/my-recipes/+layout.ts +55 -0
  33. package/apps/recipe-web/src/routes/my-recipes/+page.svelte +180 -0
  34. package/apps/recipe-web/src/routes/my-recipes/[id]/edit/+page.svelte +104 -0
  35. package/apps/recipe-web/src/routes/my-recipes/new/+page.svelte +67 -0
  36. package/apps/recipe-web/src/routes/planner/+page.svelte +422 -0
  37. package/apps/recipe-web/src/routes/recipes/[id]/+page.svelte +538 -0
  38. package/apps/recipe-web/src/routes/recipes/[id]/+page.ts +24 -0
  39. package/apps/recipe-web/static/favicon.svg +8 -0
  40. package/apps/recipe-web/static/robots.txt +2 -0
  41. package/apps/recipe-web/svelte.config.js +35 -0
  42. package/apps/recipe-web/tsconfig.json +14 -0
  43. package/apps/recipe-web/vite.config.ts +23 -0
  44. package/package.json +29 -0
  45. package/packages/recipe-kit-stencil/LICENSE +21 -0
  46. package/packages/recipe-kit-stencil/README.md +185 -0
  47. package/packages/recipe-kit-stencil/package-lock.json +4772 -0
  48. package/packages/recipe-kit-stencil/package.json +91 -0
  49. package/packages/recipe-kit-stencil/src/components/rk-badge/readme.md +38 -0
  50. package/packages/recipe-kit-stencil/src/components/rk-badge/rk-badge.css +102 -0
  51. package/packages/recipe-kit-stencil/src/components/rk-badge/rk-badge.tsx +31 -0
  52. package/packages/recipe-kit-stencil/src/components/rk-chip/readme.md +52 -0
  53. package/packages/recipe-kit-stencil/src/components/rk-chip/rk-chip.css +155 -0
  54. package/packages/recipe-kit-stencil/src/components/rk-chip/rk-chip.tsx +105 -0
  55. package/packages/recipe-kit-stencil/src/components/rk-empty-state/readme.md +44 -0
  56. package/packages/recipe-kit-stencil/src/components/rk-empty-state/rk-empty-state.css +64 -0
  57. package/packages/recipe-kit-stencil/src/components/rk-empty-state/rk-empty-state.tsx +50 -0
  58. package/packages/recipe-kit-stencil/src/components/rk-meal-slot/readme.md +58 -0
  59. package/packages/recipe-kit-stencil/src/components/rk-meal-slot/rk-meal-slot.css +225 -0
  60. package/packages/recipe-kit-stencil/src/components/rk-meal-slot/rk-meal-slot.tsx +182 -0
  61. package/packages/recipe-kit-stencil/src/components/rk-modal/readme.md +57 -0
  62. package/packages/recipe-kit-stencil/src/components/rk-modal/rk-modal.css +163 -0
  63. package/packages/recipe-kit-stencil/src/components/rk-modal/rk-modal.tsx +176 -0
  64. package/packages/recipe-kit-stencil/src/components/rk-rating/readme.md +42 -0
  65. package/packages/recipe-kit-stencil/src/components/rk-rating/rk-rating.css +71 -0
  66. package/packages/recipe-kit-stencil/src/components/rk-rating/rk-rating.tsx +114 -0
  67. package/packages/recipe-kit-stencil/src/components/rk-recipe-card/readme.md +66 -0
  68. package/packages/recipe-kit-stencil/src/components/rk-recipe-card/rk-recipe-card.css +280 -0
  69. package/packages/recipe-kit-stencil/src/components/rk-recipe-card/rk-recipe-card.tsx +179 -0
  70. package/packages/recipe-kit-stencil/src/components/rk-recipe-card/test/rk-recipe-card.spec.tsx +70 -0
  71. package/packages/recipe-kit-stencil/src/components/rk-search-bar/readme.md +67 -0
  72. package/packages/recipe-kit-stencil/src/components/rk-search-bar/rk-search-bar.css +141 -0
  73. package/packages/recipe-kit-stencil/src/components/rk-search-bar/rk-search-bar.tsx +152 -0
  74. package/packages/recipe-kit-stencil/src/components/rk-search-bar/test/rk-search-bar.spec.tsx +93 -0
  75. package/packages/recipe-kit-stencil/src/components/rk-segmented-control/readme.md +41 -0
  76. package/packages/recipe-kit-stencil/src/components/rk-segmented-control/rk-segmented-control.css +91 -0
  77. package/packages/recipe-kit-stencil/src/components/rk-segmented-control/rk-segmented-control.tsx +115 -0
  78. package/packages/recipe-kit-stencil/src/components/rk-tag-input/readme.md +47 -0
  79. package/packages/recipe-kit-stencil/src/components/rk-tag-input/rk-tag-input.css +146 -0
  80. package/packages/recipe-kit-stencil/src/components/rk-tag-input/rk-tag-input.tsx +181 -0
  81. package/packages/recipe-kit-stencil/src/components/rk-tag-input/test/rk-tag-input.spec.tsx +76 -0
  82. package/packages/recipe-kit-stencil/src/components.d.ts +1192 -0
  83. package/packages/recipe-kit-stencil/src/global/rk-global.css +104 -0
  84. package/packages/recipe-kit-stencil/src/index.html +259 -0
  85. package/packages/recipe-kit-stencil/src/index.ts +6 -0
  86. package/packages/recipe-kit-stencil/stencil.config.ts +41 -0
  87. package/packages/recipe-kit-stencil/tsconfig.json +24 -0
@@ -0,0 +1,4772 @@
1
+ {
2
+ "name": "recipe-kit-stencil",
3
+ "version": "0.1.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "recipe-kit-stencil",
9
+ "version": "0.1.0",
10
+ "license": "MIT",
11
+ "dependencies": {
12
+ "@stencil/core": "^4.44.1"
13
+ },
14
+ "devDependencies": {
15
+ "@types/jest": "^29.5.14",
16
+ "jest": "^29.7.0",
17
+ "jest-cli": "^29.7.0",
18
+ "puppeteer": "^24.10.2",
19
+ "rimraf": "^6.0.1"
20
+ }
21
+ },
22
+ "node_modules/@babel/code-frame": {
23
+ "version": "7.29.7",
24
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/code-frame/-/code-frame-7.29.7.tgz",
25
+ "integrity": "sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==",
26
+ "dev": true,
27
+ "license": "MIT",
28
+ "dependencies": {
29
+ "@babel/helper-validator-identifier": "^7.29.7",
30
+ "js-tokens": "^4.0.0",
31
+ "picocolors": "^1.1.1"
32
+ },
33
+ "engines": {
34
+ "node": ">=6.9.0"
35
+ }
36
+ },
37
+ "node_modules/@babel/compat-data": {
38
+ "version": "7.29.7",
39
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/compat-data/-/compat-data-7.29.7.tgz",
40
+ "integrity": "sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==",
41
+ "dev": true,
42
+ "license": "MIT",
43
+ "engines": {
44
+ "node": ">=6.9.0"
45
+ }
46
+ },
47
+ "node_modules/@babel/core": {
48
+ "version": "7.29.7",
49
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/core/-/core-7.29.7.tgz",
50
+ "integrity": "sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==",
51
+ "dev": true,
52
+ "license": "MIT",
53
+ "dependencies": {
54
+ "@babel/code-frame": "^7.29.7",
55
+ "@babel/generator": "^7.29.7",
56
+ "@babel/helper-compilation-targets": "^7.29.7",
57
+ "@babel/helper-module-transforms": "^7.29.7",
58
+ "@babel/helpers": "^7.29.7",
59
+ "@babel/parser": "^7.29.7",
60
+ "@babel/template": "^7.29.7",
61
+ "@babel/traverse": "^7.29.7",
62
+ "@babel/types": "^7.29.7",
63
+ "@jridgewell/remapping": "^2.3.5",
64
+ "convert-source-map": "^2.0.0",
65
+ "debug": "^4.1.0",
66
+ "gensync": "^1.0.0-beta.2",
67
+ "json5": "^2.2.3",
68
+ "semver": "^6.3.1"
69
+ },
70
+ "engines": {
71
+ "node": ">=6.9.0"
72
+ },
73
+ "funding": {
74
+ "type": "opencollective",
75
+ "url": "https://opencollective.com/babel"
76
+ }
77
+ },
78
+ "node_modules/@babel/generator": {
79
+ "version": "7.29.8",
80
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/generator/-/generator-7.29.8.tgz",
81
+ "integrity": "sha512-gZbepsdh3WDtgZKWL+vTPh71LSBrm/Y4/QDZBVCcYfmeTEEuoOYwlSy+G1StfJg+/Zy550u/3TATbm7qDbbMtg==",
82
+ "dev": true,
83
+ "license": "MIT",
84
+ "dependencies": {
85
+ "@babel/parser": "^7.29.8",
86
+ "@babel/types": "^7.29.8",
87
+ "@jridgewell/gen-mapping": "^0.3.12",
88
+ "@jridgewell/trace-mapping": "^0.3.28",
89
+ "jsesc": "^3.0.2"
90
+ },
91
+ "engines": {
92
+ "node": ">=6.9.0"
93
+ }
94
+ },
95
+ "node_modules/@babel/helper-compilation-targets": {
96
+ "version": "7.29.7",
97
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/helper-compilation-targets/-/helper-compilation-targets-7.29.7.tgz",
98
+ "integrity": "sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==",
99
+ "dev": true,
100
+ "license": "MIT",
101
+ "dependencies": {
102
+ "@babel/compat-data": "^7.29.7",
103
+ "@babel/helper-validator-option": "^7.29.7",
104
+ "browserslist": "^4.24.0",
105
+ "lru-cache": "^5.1.1",
106
+ "semver": "^6.3.1"
107
+ },
108
+ "engines": {
109
+ "node": ">=6.9.0"
110
+ }
111
+ },
112
+ "node_modules/@babel/helper-globals": {
113
+ "version": "7.29.7",
114
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/helper-globals/-/helper-globals-7.29.7.tgz",
115
+ "integrity": "sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==",
116
+ "dev": true,
117
+ "license": "MIT",
118
+ "engines": {
119
+ "node": ">=6.9.0"
120
+ }
121
+ },
122
+ "node_modules/@babel/helper-module-imports": {
123
+ "version": "7.29.7",
124
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/helper-module-imports/-/helper-module-imports-7.29.7.tgz",
125
+ "integrity": "sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==",
126
+ "dev": true,
127
+ "license": "MIT",
128
+ "dependencies": {
129
+ "@babel/traverse": "^7.29.7",
130
+ "@babel/types": "^7.29.7"
131
+ },
132
+ "engines": {
133
+ "node": ">=6.9.0"
134
+ }
135
+ },
136
+ "node_modules/@babel/helper-module-transforms": {
137
+ "version": "7.29.7",
138
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/helper-module-transforms/-/helper-module-transforms-7.29.7.tgz",
139
+ "integrity": "sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==",
140
+ "dev": true,
141
+ "license": "MIT",
142
+ "dependencies": {
143
+ "@babel/helper-module-imports": "^7.29.7",
144
+ "@babel/helper-validator-identifier": "^7.29.7",
145
+ "@babel/traverse": "^7.29.7"
146
+ },
147
+ "engines": {
148
+ "node": ">=6.9.0"
149
+ },
150
+ "peerDependencies": {
151
+ "@babel/core": "^7.0.0"
152
+ }
153
+ },
154
+ "node_modules/@babel/helper-plugin-utils": {
155
+ "version": "7.29.7",
156
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/helper-plugin-utils/-/helper-plugin-utils-7.29.7.tgz",
157
+ "integrity": "sha512-G7sHYigPY17oO5SYWnfD/0MTBwVR781S/JI643e/JhUYgVgWE/61SoW3NH9KWUKyKq5LVh3npif99Wkt6j86Jw==",
158
+ "dev": true,
159
+ "license": "MIT",
160
+ "engines": {
161
+ "node": ">=6.9.0"
162
+ }
163
+ },
164
+ "node_modules/@babel/helper-string-parser": {
165
+ "version": "7.29.7",
166
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz",
167
+ "integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==",
168
+ "dev": true,
169
+ "license": "MIT",
170
+ "engines": {
171
+ "node": ">=6.9.0"
172
+ }
173
+ },
174
+ "node_modules/@babel/helper-validator-identifier": {
175
+ "version": "7.29.7",
176
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz",
177
+ "integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==",
178
+ "dev": true,
179
+ "license": "MIT",
180
+ "engines": {
181
+ "node": ">=6.9.0"
182
+ }
183
+ },
184
+ "node_modules/@babel/helper-validator-option": {
185
+ "version": "7.29.7",
186
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/helper-validator-option/-/helper-validator-option-7.29.7.tgz",
187
+ "integrity": "sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==",
188
+ "dev": true,
189
+ "license": "MIT",
190
+ "engines": {
191
+ "node": ">=6.9.0"
192
+ }
193
+ },
194
+ "node_modules/@babel/helpers": {
195
+ "version": "7.29.7",
196
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/helpers/-/helpers-7.29.7.tgz",
197
+ "integrity": "sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==",
198
+ "dev": true,
199
+ "license": "MIT",
200
+ "dependencies": {
201
+ "@babel/template": "^7.29.7",
202
+ "@babel/types": "^7.29.7"
203
+ },
204
+ "engines": {
205
+ "node": ">=6.9.0"
206
+ }
207
+ },
208
+ "node_modules/@babel/parser": {
209
+ "version": "7.29.8",
210
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/parser/-/parser-7.29.8.tgz",
211
+ "integrity": "sha512-E8lTAYNB1KW+FH+VGJuZM1ioAx2E6oVlvQFRrf5P8ZZmsiJXYAD9vTFV7yyEURNzgh1dFqMZuO6tUwcARbqFCA==",
212
+ "dev": true,
213
+ "license": "MIT",
214
+ "dependencies": {
215
+ "@babel/types": "^7.29.8"
216
+ },
217
+ "bin": {
218
+ "parser": "bin/babel-parser.js"
219
+ },
220
+ "engines": {
221
+ "node": ">=6.0.0"
222
+ }
223
+ },
224
+ "node_modules/@babel/plugin-syntax-async-generators": {
225
+ "version": "7.8.4",
226
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
227
+ "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
228
+ "dev": true,
229
+ "license": "MIT",
230
+ "dependencies": {
231
+ "@babel/helper-plugin-utils": "^7.8.0"
232
+ },
233
+ "peerDependencies": {
234
+ "@babel/core": "^7.0.0-0"
235
+ }
236
+ },
237
+ "node_modules/@babel/plugin-syntax-bigint": {
238
+ "version": "7.8.3",
239
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz",
240
+ "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==",
241
+ "dev": true,
242
+ "license": "MIT",
243
+ "dependencies": {
244
+ "@babel/helper-plugin-utils": "^7.8.0"
245
+ },
246
+ "peerDependencies": {
247
+ "@babel/core": "^7.0.0-0"
248
+ }
249
+ },
250
+ "node_modules/@babel/plugin-syntax-class-properties": {
251
+ "version": "7.12.13",
252
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz",
253
+ "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==",
254
+ "dev": true,
255
+ "license": "MIT",
256
+ "dependencies": {
257
+ "@babel/helper-plugin-utils": "^7.12.13"
258
+ },
259
+ "peerDependencies": {
260
+ "@babel/core": "^7.0.0-0"
261
+ }
262
+ },
263
+ "node_modules/@babel/plugin-syntax-class-static-block": {
264
+ "version": "7.14.5",
265
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz",
266
+ "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==",
267
+ "dev": true,
268
+ "license": "MIT",
269
+ "dependencies": {
270
+ "@babel/helper-plugin-utils": "^7.14.5"
271
+ },
272
+ "engines": {
273
+ "node": ">=6.9.0"
274
+ },
275
+ "peerDependencies": {
276
+ "@babel/core": "^7.0.0-0"
277
+ }
278
+ },
279
+ "node_modules/@babel/plugin-syntax-import-attributes": {
280
+ "version": "7.29.7",
281
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.29.7.tgz",
282
+ "integrity": "sha512-zGYcYfq/WmZ4V+kBIXQon9dSSc8ircGZqw9ZaNhhGj9nZkeBu1jHLBDQqYYi5WA9uawvA2sIMbry2nCFhf5Djg==",
283
+ "dev": true,
284
+ "license": "MIT",
285
+ "dependencies": {
286
+ "@babel/helper-plugin-utils": "^7.29.7"
287
+ },
288
+ "engines": {
289
+ "node": ">=6.9.0"
290
+ },
291
+ "peerDependencies": {
292
+ "@babel/core": "^7.0.0-0"
293
+ }
294
+ },
295
+ "node_modules/@babel/plugin-syntax-import-meta": {
296
+ "version": "7.10.4",
297
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz",
298
+ "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==",
299
+ "dev": true,
300
+ "license": "MIT",
301
+ "dependencies": {
302
+ "@babel/helper-plugin-utils": "^7.10.4"
303
+ },
304
+ "peerDependencies": {
305
+ "@babel/core": "^7.0.0-0"
306
+ }
307
+ },
308
+ "node_modules/@babel/plugin-syntax-json-strings": {
309
+ "version": "7.8.3",
310
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
311
+ "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
312
+ "dev": true,
313
+ "license": "MIT",
314
+ "dependencies": {
315
+ "@babel/helper-plugin-utils": "^7.8.0"
316
+ },
317
+ "peerDependencies": {
318
+ "@babel/core": "^7.0.0-0"
319
+ }
320
+ },
321
+ "node_modules/@babel/plugin-syntax-jsx": {
322
+ "version": "7.29.7",
323
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.29.7.tgz",
324
+ "integrity": "sha512-TSu8+mHCoEaaCDEZ0I3+6mvTBYR4PCxQwf2z9/r5Tbztv6NaLR3B9thGTTxX2WGuGHJqRiAbKPeGTJ5XWXVg6A==",
325
+ "dev": true,
326
+ "license": "MIT",
327
+ "dependencies": {
328
+ "@babel/helper-plugin-utils": "^7.29.7"
329
+ },
330
+ "engines": {
331
+ "node": ">=6.9.0"
332
+ },
333
+ "peerDependencies": {
334
+ "@babel/core": "^7.0.0-0"
335
+ }
336
+ },
337
+ "node_modules/@babel/plugin-syntax-logical-assignment-operators": {
338
+ "version": "7.10.4",
339
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
340
+ "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
341
+ "dev": true,
342
+ "license": "MIT",
343
+ "dependencies": {
344
+ "@babel/helper-plugin-utils": "^7.10.4"
345
+ },
346
+ "peerDependencies": {
347
+ "@babel/core": "^7.0.0-0"
348
+ }
349
+ },
350
+ "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": {
351
+ "version": "7.8.3",
352
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
353
+ "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
354
+ "dev": true,
355
+ "license": "MIT",
356
+ "dependencies": {
357
+ "@babel/helper-plugin-utils": "^7.8.0"
358
+ },
359
+ "peerDependencies": {
360
+ "@babel/core": "^7.0.0-0"
361
+ }
362
+ },
363
+ "node_modules/@babel/plugin-syntax-numeric-separator": {
364
+ "version": "7.10.4",
365
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
366
+ "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
367
+ "dev": true,
368
+ "license": "MIT",
369
+ "dependencies": {
370
+ "@babel/helper-plugin-utils": "^7.10.4"
371
+ },
372
+ "peerDependencies": {
373
+ "@babel/core": "^7.0.0-0"
374
+ }
375
+ },
376
+ "node_modules/@babel/plugin-syntax-object-rest-spread": {
377
+ "version": "7.8.3",
378
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
379
+ "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
380
+ "dev": true,
381
+ "license": "MIT",
382
+ "dependencies": {
383
+ "@babel/helper-plugin-utils": "^7.8.0"
384
+ },
385
+ "peerDependencies": {
386
+ "@babel/core": "^7.0.0-0"
387
+ }
388
+ },
389
+ "node_modules/@babel/plugin-syntax-optional-catch-binding": {
390
+ "version": "7.8.3",
391
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
392
+ "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
393
+ "dev": true,
394
+ "license": "MIT",
395
+ "dependencies": {
396
+ "@babel/helper-plugin-utils": "^7.8.0"
397
+ },
398
+ "peerDependencies": {
399
+ "@babel/core": "^7.0.0-0"
400
+ }
401
+ },
402
+ "node_modules/@babel/plugin-syntax-optional-chaining": {
403
+ "version": "7.8.3",
404
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
405
+ "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
406
+ "dev": true,
407
+ "license": "MIT",
408
+ "dependencies": {
409
+ "@babel/helper-plugin-utils": "^7.8.0"
410
+ },
411
+ "peerDependencies": {
412
+ "@babel/core": "^7.0.0-0"
413
+ }
414
+ },
415
+ "node_modules/@babel/plugin-syntax-private-property-in-object": {
416
+ "version": "7.14.5",
417
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz",
418
+ "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==",
419
+ "dev": true,
420
+ "license": "MIT",
421
+ "dependencies": {
422
+ "@babel/helper-plugin-utils": "^7.14.5"
423
+ },
424
+ "engines": {
425
+ "node": ">=6.9.0"
426
+ },
427
+ "peerDependencies": {
428
+ "@babel/core": "^7.0.0-0"
429
+ }
430
+ },
431
+ "node_modules/@babel/plugin-syntax-top-level-await": {
432
+ "version": "7.14.5",
433
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz",
434
+ "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==",
435
+ "dev": true,
436
+ "license": "MIT",
437
+ "dependencies": {
438
+ "@babel/helper-plugin-utils": "^7.14.5"
439
+ },
440
+ "engines": {
441
+ "node": ">=6.9.0"
442
+ },
443
+ "peerDependencies": {
444
+ "@babel/core": "^7.0.0-0"
445
+ }
446
+ },
447
+ "node_modules/@babel/plugin-syntax-typescript": {
448
+ "version": "7.29.7",
449
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.29.7.tgz",
450
+ "integrity": "sha512-ngr+82Sh0xMz25TPCZi+nC2iTzjfCdWS2ONXTp/PtSCHCgaCNBpdMqgvJ2ccdLlClVZ7sisIgB914j/JFe+RZA==",
451
+ "dev": true,
452
+ "license": "MIT",
453
+ "dependencies": {
454
+ "@babel/helper-plugin-utils": "^7.29.7"
455
+ },
456
+ "engines": {
457
+ "node": ">=6.9.0"
458
+ },
459
+ "peerDependencies": {
460
+ "@babel/core": "^7.0.0-0"
461
+ }
462
+ },
463
+ "node_modules/@babel/template": {
464
+ "version": "7.29.7",
465
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/template/-/template-7.29.7.tgz",
466
+ "integrity": "sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==",
467
+ "dev": true,
468
+ "license": "MIT",
469
+ "dependencies": {
470
+ "@babel/code-frame": "^7.29.7",
471
+ "@babel/parser": "^7.29.7",
472
+ "@babel/types": "^7.29.7"
473
+ },
474
+ "engines": {
475
+ "node": ">=6.9.0"
476
+ }
477
+ },
478
+ "node_modules/@babel/traverse": {
479
+ "version": "7.29.8",
480
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/traverse/-/traverse-7.29.8.tgz",
481
+ "integrity": "sha512-I5z7H3bf/41ktsNVLtpN0wAa336HkqIHQ5BuPLEhTkt1jVSyZpeNKIzTgEWmlxjdg81R0IgUCcaE+Ok3NvrfZg==",
482
+ "dev": true,
483
+ "license": "MIT",
484
+ "dependencies": {
485
+ "@babel/code-frame": "^7.29.7",
486
+ "@babel/generator": "^7.29.8",
487
+ "@babel/helper-globals": "^7.29.7",
488
+ "@babel/parser": "^7.29.8",
489
+ "@babel/template": "^7.29.7",
490
+ "@babel/types": "^7.29.8",
491
+ "debug": "^4.3.1"
492
+ },
493
+ "engines": {
494
+ "node": ">=6.9.0"
495
+ }
496
+ },
497
+ "node_modules/@babel/types": {
498
+ "version": "7.29.8",
499
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@babel/types/-/types-7.29.8.tgz",
500
+ "integrity": "sha512-Vj1jF3cPfxg7OAfoI7QnVKLoILlm2JF9pnVHrX8qx7AHMiYWT+NDAA7jChlNgRS4WTLc/fD1lXLmPixluj+3Gg==",
501
+ "dev": true,
502
+ "license": "MIT",
503
+ "dependencies": {
504
+ "@babel/helper-string-parser": "^7.29.7",
505
+ "@babel/helper-validator-identifier": "^7.29.7"
506
+ },
507
+ "engines": {
508
+ "node": ">=6.9.0"
509
+ }
510
+ },
511
+ "node_modules/@bcoe/v8-coverage": {
512
+ "version": "0.2.3",
513
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
514
+ "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==",
515
+ "dev": true,
516
+ "license": "MIT"
517
+ },
518
+ "node_modules/@istanbuljs/load-nyc-config": {
519
+ "version": "1.1.0",
520
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz",
521
+ "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==",
522
+ "dev": true,
523
+ "license": "ISC",
524
+ "dependencies": {
525
+ "camelcase": "^5.3.1",
526
+ "find-up": "^4.1.0",
527
+ "get-package-type": "^0.1.0",
528
+ "js-yaml": "^3.13.1",
529
+ "resolve-from": "^5.0.0"
530
+ },
531
+ "engines": {
532
+ "node": ">=8"
533
+ }
534
+ },
535
+ "node_modules/@istanbuljs/schema": {
536
+ "version": "0.1.6",
537
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@istanbuljs/schema/-/schema-0.1.6.tgz",
538
+ "integrity": "sha512-+Sg6GCR/wy1oSmQDFq4LQDAhm3ETKnorxN+y5nbLULOR3P0c14f2Wurzj3/xqPXtasLFfHd5iRFQ7AJt4KH2cw==",
539
+ "dev": true,
540
+ "license": "MIT",
541
+ "engines": {
542
+ "node": ">=8"
543
+ }
544
+ },
545
+ "node_modules/@jest/console": {
546
+ "version": "29.7.0",
547
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@jest/console/-/console-29.7.0.tgz",
548
+ "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==",
549
+ "dev": true,
550
+ "license": "MIT",
551
+ "dependencies": {
552
+ "@jest/types": "^29.6.3",
553
+ "@types/node": "*",
554
+ "chalk": "^4.0.0",
555
+ "jest-message-util": "^29.7.0",
556
+ "jest-util": "^29.7.0",
557
+ "slash": "^3.0.0"
558
+ },
559
+ "engines": {
560
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
561
+ }
562
+ },
563
+ "node_modules/@jest/core": {
564
+ "version": "29.7.0",
565
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@jest/core/-/core-29.7.0.tgz",
566
+ "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==",
567
+ "dev": true,
568
+ "license": "MIT",
569
+ "dependencies": {
570
+ "@jest/console": "^29.7.0",
571
+ "@jest/reporters": "^29.7.0",
572
+ "@jest/test-result": "^29.7.0",
573
+ "@jest/transform": "^29.7.0",
574
+ "@jest/types": "^29.6.3",
575
+ "@types/node": "*",
576
+ "ansi-escapes": "^4.2.1",
577
+ "chalk": "^4.0.0",
578
+ "ci-info": "^3.2.0",
579
+ "exit": "^0.1.2",
580
+ "graceful-fs": "^4.2.9",
581
+ "jest-changed-files": "^29.7.0",
582
+ "jest-config": "^29.7.0",
583
+ "jest-haste-map": "^29.7.0",
584
+ "jest-message-util": "^29.7.0",
585
+ "jest-regex-util": "^29.6.3",
586
+ "jest-resolve": "^29.7.0",
587
+ "jest-resolve-dependencies": "^29.7.0",
588
+ "jest-runner": "^29.7.0",
589
+ "jest-runtime": "^29.7.0",
590
+ "jest-snapshot": "^29.7.0",
591
+ "jest-util": "^29.7.0",
592
+ "jest-validate": "^29.7.0",
593
+ "jest-watcher": "^29.7.0",
594
+ "micromatch": "^4.0.4",
595
+ "pretty-format": "^29.7.0",
596
+ "slash": "^3.0.0",
597
+ "strip-ansi": "^6.0.0"
598
+ },
599
+ "engines": {
600
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
601
+ },
602
+ "peerDependencies": {
603
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
604
+ },
605
+ "peerDependenciesMeta": {
606
+ "node-notifier": {
607
+ "optional": true
608
+ }
609
+ }
610
+ },
611
+ "node_modules/@jest/environment": {
612
+ "version": "29.7.0",
613
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@jest/environment/-/environment-29.7.0.tgz",
614
+ "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==",
615
+ "dev": true,
616
+ "license": "MIT",
617
+ "dependencies": {
618
+ "@jest/fake-timers": "^29.7.0",
619
+ "@jest/types": "^29.6.3",
620
+ "@types/node": "*",
621
+ "jest-mock": "^29.7.0"
622
+ },
623
+ "engines": {
624
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
625
+ }
626
+ },
627
+ "node_modules/@jest/expect": {
628
+ "version": "29.7.0",
629
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@jest/expect/-/expect-29.7.0.tgz",
630
+ "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==",
631
+ "dev": true,
632
+ "license": "MIT",
633
+ "dependencies": {
634
+ "expect": "^29.7.0",
635
+ "jest-snapshot": "^29.7.0"
636
+ },
637
+ "engines": {
638
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
639
+ }
640
+ },
641
+ "node_modules/@jest/expect-utils": {
642
+ "version": "29.7.0",
643
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@jest/expect-utils/-/expect-utils-29.7.0.tgz",
644
+ "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==",
645
+ "dev": true,
646
+ "license": "MIT",
647
+ "dependencies": {
648
+ "jest-get-type": "^29.6.3"
649
+ },
650
+ "engines": {
651
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
652
+ }
653
+ },
654
+ "node_modules/@jest/fake-timers": {
655
+ "version": "29.7.0",
656
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@jest/fake-timers/-/fake-timers-29.7.0.tgz",
657
+ "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==",
658
+ "dev": true,
659
+ "license": "MIT",
660
+ "dependencies": {
661
+ "@jest/types": "^29.6.3",
662
+ "@sinonjs/fake-timers": "^10.0.2",
663
+ "@types/node": "*",
664
+ "jest-message-util": "^29.7.0",
665
+ "jest-mock": "^29.7.0",
666
+ "jest-util": "^29.7.0"
667
+ },
668
+ "engines": {
669
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
670
+ }
671
+ },
672
+ "node_modules/@jest/globals": {
673
+ "version": "29.7.0",
674
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@jest/globals/-/globals-29.7.0.tgz",
675
+ "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==",
676
+ "dev": true,
677
+ "license": "MIT",
678
+ "dependencies": {
679
+ "@jest/environment": "^29.7.0",
680
+ "@jest/expect": "^29.7.0",
681
+ "@jest/types": "^29.6.3",
682
+ "jest-mock": "^29.7.0"
683
+ },
684
+ "engines": {
685
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
686
+ }
687
+ },
688
+ "node_modules/@jest/reporters": {
689
+ "version": "29.7.0",
690
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@jest/reporters/-/reporters-29.7.0.tgz",
691
+ "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==",
692
+ "dev": true,
693
+ "license": "MIT",
694
+ "dependencies": {
695
+ "@bcoe/v8-coverage": "^0.2.3",
696
+ "@jest/console": "^29.7.0",
697
+ "@jest/test-result": "^29.7.0",
698
+ "@jest/transform": "^29.7.0",
699
+ "@jest/types": "^29.6.3",
700
+ "@jridgewell/trace-mapping": "^0.3.18",
701
+ "@types/node": "*",
702
+ "chalk": "^4.0.0",
703
+ "collect-v8-coverage": "^1.0.0",
704
+ "exit": "^0.1.2",
705
+ "glob": "^7.1.3",
706
+ "graceful-fs": "^4.2.9",
707
+ "istanbul-lib-coverage": "^3.0.0",
708
+ "istanbul-lib-instrument": "^6.0.0",
709
+ "istanbul-lib-report": "^3.0.0",
710
+ "istanbul-lib-source-maps": "^4.0.0",
711
+ "istanbul-reports": "^3.1.3",
712
+ "jest-message-util": "^29.7.0",
713
+ "jest-util": "^29.7.0",
714
+ "jest-worker": "^29.7.0",
715
+ "slash": "^3.0.0",
716
+ "string-length": "^4.0.1",
717
+ "strip-ansi": "^6.0.0",
718
+ "v8-to-istanbul": "^9.0.1"
719
+ },
720
+ "engines": {
721
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
722
+ },
723
+ "peerDependencies": {
724
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
725
+ },
726
+ "peerDependenciesMeta": {
727
+ "node-notifier": {
728
+ "optional": true
729
+ }
730
+ }
731
+ },
732
+ "node_modules/@jest/schemas": {
733
+ "version": "29.6.3",
734
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@jest/schemas/-/schemas-29.6.3.tgz",
735
+ "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==",
736
+ "dev": true,
737
+ "license": "MIT",
738
+ "dependencies": {
739
+ "@sinclair/typebox": "^0.27.8"
740
+ },
741
+ "engines": {
742
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
743
+ }
744
+ },
745
+ "node_modules/@jest/source-map": {
746
+ "version": "29.6.3",
747
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@jest/source-map/-/source-map-29.6.3.tgz",
748
+ "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==",
749
+ "dev": true,
750
+ "license": "MIT",
751
+ "dependencies": {
752
+ "@jridgewell/trace-mapping": "^0.3.18",
753
+ "callsites": "^3.0.0",
754
+ "graceful-fs": "^4.2.9"
755
+ },
756
+ "engines": {
757
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
758
+ }
759
+ },
760
+ "node_modules/@jest/test-result": {
761
+ "version": "29.7.0",
762
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@jest/test-result/-/test-result-29.7.0.tgz",
763
+ "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==",
764
+ "dev": true,
765
+ "license": "MIT",
766
+ "dependencies": {
767
+ "@jest/console": "^29.7.0",
768
+ "@jest/types": "^29.6.3",
769
+ "@types/istanbul-lib-coverage": "^2.0.0",
770
+ "collect-v8-coverage": "^1.0.0"
771
+ },
772
+ "engines": {
773
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
774
+ }
775
+ },
776
+ "node_modules/@jest/test-sequencer": {
777
+ "version": "29.7.0",
778
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz",
779
+ "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==",
780
+ "dev": true,
781
+ "license": "MIT",
782
+ "dependencies": {
783
+ "@jest/test-result": "^29.7.0",
784
+ "graceful-fs": "^4.2.9",
785
+ "jest-haste-map": "^29.7.0",
786
+ "slash": "^3.0.0"
787
+ },
788
+ "engines": {
789
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
790
+ }
791
+ },
792
+ "node_modules/@jest/transform": {
793
+ "version": "29.7.0",
794
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@jest/transform/-/transform-29.7.0.tgz",
795
+ "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==",
796
+ "dev": true,
797
+ "license": "MIT",
798
+ "dependencies": {
799
+ "@babel/core": "^7.11.6",
800
+ "@jest/types": "^29.6.3",
801
+ "@jridgewell/trace-mapping": "^0.3.18",
802
+ "babel-plugin-istanbul": "^6.1.1",
803
+ "chalk": "^4.0.0",
804
+ "convert-source-map": "^2.0.0",
805
+ "fast-json-stable-stringify": "^2.1.0",
806
+ "graceful-fs": "^4.2.9",
807
+ "jest-haste-map": "^29.7.0",
808
+ "jest-regex-util": "^29.6.3",
809
+ "jest-util": "^29.7.0",
810
+ "micromatch": "^4.0.4",
811
+ "pirates": "^4.0.4",
812
+ "slash": "^3.0.0",
813
+ "write-file-atomic": "^4.0.2"
814
+ },
815
+ "engines": {
816
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
817
+ }
818
+ },
819
+ "node_modules/@jest/types": {
820
+ "version": "29.6.3",
821
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@jest/types/-/types-29.6.3.tgz",
822
+ "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==",
823
+ "dev": true,
824
+ "license": "MIT",
825
+ "dependencies": {
826
+ "@jest/schemas": "^29.6.3",
827
+ "@types/istanbul-lib-coverage": "^2.0.0",
828
+ "@types/istanbul-reports": "^3.0.0",
829
+ "@types/node": "*",
830
+ "@types/yargs": "^17.0.8",
831
+ "chalk": "^4.0.0"
832
+ },
833
+ "engines": {
834
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
835
+ }
836
+ },
837
+ "node_modules/@jridgewell/gen-mapping": {
838
+ "version": "0.3.13",
839
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
840
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
841
+ "dev": true,
842
+ "license": "MIT",
843
+ "dependencies": {
844
+ "@jridgewell/sourcemap-codec": "^1.5.0",
845
+ "@jridgewell/trace-mapping": "^0.3.24"
846
+ }
847
+ },
848
+ "node_modules/@jridgewell/remapping": {
849
+ "version": "2.3.5",
850
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@jridgewell/remapping/-/remapping-2.3.5.tgz",
851
+ "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
852
+ "dev": true,
853
+ "license": "MIT",
854
+ "dependencies": {
855
+ "@jridgewell/gen-mapping": "^0.3.5",
856
+ "@jridgewell/trace-mapping": "^0.3.24"
857
+ }
858
+ },
859
+ "node_modules/@jridgewell/resolve-uri": {
860
+ "version": "3.1.2",
861
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
862
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
863
+ "dev": true,
864
+ "license": "MIT",
865
+ "engines": {
866
+ "node": ">=6.0.0"
867
+ }
868
+ },
869
+ "node_modules/@jridgewell/sourcemap-codec": {
870
+ "version": "1.5.5",
871
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
872
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
873
+ "dev": true,
874
+ "license": "MIT"
875
+ },
876
+ "node_modules/@jridgewell/trace-mapping": {
877
+ "version": "0.3.31",
878
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
879
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
880
+ "dev": true,
881
+ "license": "MIT",
882
+ "dependencies": {
883
+ "@jridgewell/resolve-uri": "^3.1.0",
884
+ "@jridgewell/sourcemap-codec": "^1.4.14"
885
+ }
886
+ },
887
+ "node_modules/@puppeteer/browsers": {
888
+ "version": "2.13.2",
889
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@puppeteer/browsers/-/browsers-2.13.2.tgz",
890
+ "integrity": "sha512-5EUZSUIc37H6aIXyWO0Z4y8NlF8NnjgmqeQgOGiswAU7pY0HOo16ho4+alIWmSfdZnjqBRawMsP3I5YqLSn6kw==",
891
+ "dev": true,
892
+ "license": "Apache-2.0",
893
+ "dependencies": {
894
+ "debug": "^4.4.3",
895
+ "extract-zip": "^2.0.1",
896
+ "progress": "^2.0.3",
897
+ "proxy-agent": "^6.5.0",
898
+ "semver": "^7.7.4",
899
+ "tar-fs": "^3.1.1",
900
+ "yargs": "^17.7.2"
901
+ },
902
+ "bin": {
903
+ "browsers": "lib/cjs/main-cli.js"
904
+ },
905
+ "engines": {
906
+ "node": ">=18"
907
+ }
908
+ },
909
+ "node_modules/@puppeteer/browsers/node_modules/semver": {
910
+ "version": "7.8.5",
911
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/semver/-/semver-7.8.5.tgz",
912
+ "integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==",
913
+ "dev": true,
914
+ "license": "ISC",
915
+ "bin": {
916
+ "semver": "bin/semver.js"
917
+ },
918
+ "engines": {
919
+ "node": ">=10"
920
+ }
921
+ },
922
+ "node_modules/@rollup/rollup-darwin-arm64": {
923
+ "version": "4.44.0",
924
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.44.0.tgz",
925
+ "integrity": "sha512-VGF3wy0Eq1gcEIkSCr8Ke03CWT+Pm2yveKLaDvq51pPpZza3JX/ClxXOCmTYYq3us5MvEuNRTaeyFThCKRQhOA==",
926
+ "cpu": [
927
+ "arm64"
928
+ ],
929
+ "license": "MIT",
930
+ "optional": true,
931
+ "os": [
932
+ "darwin"
933
+ ]
934
+ },
935
+ "node_modules/@rollup/rollup-darwin-x64": {
936
+ "version": "4.44.0",
937
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.44.0.tgz",
938
+ "integrity": "sha512-fBkyrDhwquRvrTxSGH/qqt3/T0w5Rg0L7ZIDypvBPc1/gzjJle6acCpZ36blwuwcKD/u6oCE/sRWlUAcxLWQbQ==",
939
+ "cpu": [
940
+ "x64"
941
+ ],
942
+ "license": "MIT",
943
+ "optional": true,
944
+ "os": [
945
+ "darwin"
946
+ ]
947
+ },
948
+ "node_modules/@rollup/rollup-linux-arm64-gnu": {
949
+ "version": "4.44.0",
950
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.44.0.tgz",
951
+ "integrity": "sha512-ZTR2mxBHb4tK4wGf9b8SYg0Y6KQPjGpR4UWwTFdnmjB4qRtoATZ5dWn3KsDwGa5Z2ZBOE7K52L36J9LueKBdOQ==",
952
+ "cpu": [
953
+ "arm64"
954
+ ],
955
+ "license": "MIT",
956
+ "optional": true,
957
+ "os": [
958
+ "linux"
959
+ ]
960
+ },
961
+ "node_modules/@rollup/rollup-linux-arm64-musl": {
962
+ "version": "4.44.0",
963
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.44.0.tgz",
964
+ "integrity": "sha512-GFWfAhVhWGd4r6UxmnKRTBwP1qmModHtd5gkraeW2G490BpFOZkFtem8yuX2NyafIP/mGpRJgTJ2PwohQkUY/Q==",
965
+ "cpu": [
966
+ "arm64"
967
+ ],
968
+ "license": "MIT",
969
+ "optional": true,
970
+ "os": [
971
+ "linux"
972
+ ]
973
+ },
974
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
975
+ "version": "4.44.0",
976
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.44.0.tgz",
977
+ "integrity": "sha512-iUVJc3c0o8l9Sa/qlDL2Z9UP92UZZW1+EmQ4xfjTc1akr0iUFZNfxrXJ/R1T90h/ILm9iXEY6+iPrmYB3pXKjw==",
978
+ "cpu": [
979
+ "x64"
980
+ ],
981
+ "license": "MIT",
982
+ "optional": true,
983
+ "os": [
984
+ "linux"
985
+ ]
986
+ },
987
+ "node_modules/@rollup/rollup-linux-x64-musl": {
988
+ "version": "4.44.0",
989
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.44.0.tgz",
990
+ "integrity": "sha512-PQUobbhLTQT5yz/SPg116VJBgz+XOtXt8D1ck+sfJJhuEsMj2jSej5yTdp8CvWBSceu+WW+ibVL6dm0ptG5fcA==",
991
+ "cpu": [
992
+ "x64"
993
+ ],
994
+ "license": "MIT",
995
+ "optional": true,
996
+ "os": [
997
+ "linux"
998
+ ]
999
+ },
1000
+ "node_modules/@rollup/rollup-win32-arm64-msvc": {
1001
+ "version": "4.44.0",
1002
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.44.0.tgz",
1003
+ "integrity": "sha512-M0CpcHf8TWn+4oTxJfh7LQuTuaYeXGbk0eageVjQCKzYLsajWS/lFC94qlRqOlyC2KvRT90ZrfXULYmukeIy7w==",
1004
+ "cpu": [
1005
+ "arm64"
1006
+ ],
1007
+ "license": "MIT",
1008
+ "optional": true,
1009
+ "os": [
1010
+ "win32"
1011
+ ]
1012
+ },
1013
+ "node_modules/@rollup/rollup-win32-x64-msvc": {
1014
+ "version": "4.44.0",
1015
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.44.0.tgz",
1016
+ "integrity": "sha512-Q2Mgwt+D8hd5FIPUuPDsvPR7Bguza6yTkJxspDGkZj7tBRn2y4KSWYuIXpftFSjBra76TbKerCV7rgFPQrn+wQ==",
1017
+ "cpu": [
1018
+ "x64"
1019
+ ],
1020
+ "license": "MIT",
1021
+ "optional": true,
1022
+ "os": [
1023
+ "win32"
1024
+ ]
1025
+ },
1026
+ "node_modules/@sinclair/typebox": {
1027
+ "version": "0.27.12",
1028
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@sinclair/typebox/-/typebox-0.27.12.tgz",
1029
+ "integrity": "sha512-hhyNJ+nbR6ZR7pToHvllEFun9TL0sbL+tk/ON75lo+Xas054uez98qRbsuNt7MBCyZKK4+8Yli/OAGZhmfBZ/g==",
1030
+ "dev": true,
1031
+ "license": "MIT"
1032
+ },
1033
+ "node_modules/@sinonjs/commons": {
1034
+ "version": "3.0.1",
1035
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@sinonjs/commons/-/commons-3.0.1.tgz",
1036
+ "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==",
1037
+ "dev": true,
1038
+ "license": "BSD-3-Clause",
1039
+ "dependencies": {
1040
+ "type-detect": "4.0.8"
1041
+ }
1042
+ },
1043
+ "node_modules/@sinonjs/fake-timers": {
1044
+ "version": "10.3.0",
1045
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz",
1046
+ "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==",
1047
+ "dev": true,
1048
+ "license": "BSD-3-Clause",
1049
+ "dependencies": {
1050
+ "@sinonjs/commons": "^3.0.0"
1051
+ }
1052
+ },
1053
+ "node_modules/@stencil/core": {
1054
+ "version": "4.44.1",
1055
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@stencil/core/-/core-4.44.1.tgz",
1056
+ "integrity": "sha512-OaFtMODcDcKswPbJC6An6xAcNmeuBggxyUTVKSX1UY7bPtWgIR5mGy1jZ6JkyFGgIxZCj/9wp2r97KBQow9wOQ==",
1057
+ "license": "MIT",
1058
+ "bin": {
1059
+ "stencil": "bin/stencil"
1060
+ },
1061
+ "engines": {
1062
+ "node": ">=16.0.0",
1063
+ "npm": ">=7.10.0"
1064
+ },
1065
+ "optionalDependencies": {
1066
+ "@rollup/rollup-darwin-arm64": "4.44.0",
1067
+ "@rollup/rollup-darwin-x64": "4.44.0",
1068
+ "@rollup/rollup-linux-arm64-gnu": "4.44.0",
1069
+ "@rollup/rollup-linux-arm64-musl": "4.44.0",
1070
+ "@rollup/rollup-linux-x64-gnu": "4.44.0",
1071
+ "@rollup/rollup-linux-x64-musl": "4.44.0",
1072
+ "@rollup/rollup-win32-arm64-msvc": "4.44.0",
1073
+ "@rollup/rollup-win32-x64-msvc": "4.44.0"
1074
+ }
1075
+ },
1076
+ "node_modules/@tootallnate/quickjs-emscripten": {
1077
+ "version": "0.23.0",
1078
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@tootallnate/quickjs-emscripten/-/quickjs-emscripten-0.23.0.tgz",
1079
+ "integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==",
1080
+ "dev": true,
1081
+ "license": "MIT"
1082
+ },
1083
+ "node_modules/@types/babel__core": {
1084
+ "version": "7.20.5",
1085
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@types/babel__core/-/babel__core-7.20.5.tgz",
1086
+ "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
1087
+ "dev": true,
1088
+ "license": "MIT",
1089
+ "dependencies": {
1090
+ "@babel/parser": "^7.20.7",
1091
+ "@babel/types": "^7.20.7",
1092
+ "@types/babel__generator": "*",
1093
+ "@types/babel__template": "*",
1094
+ "@types/babel__traverse": "*"
1095
+ }
1096
+ },
1097
+ "node_modules/@types/babel__generator": {
1098
+ "version": "7.27.0",
1099
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@types/babel__generator/-/babel__generator-7.27.0.tgz",
1100
+ "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==",
1101
+ "dev": true,
1102
+ "license": "MIT",
1103
+ "dependencies": {
1104
+ "@babel/types": "^7.0.0"
1105
+ }
1106
+ },
1107
+ "node_modules/@types/babel__template": {
1108
+ "version": "7.4.4",
1109
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@types/babel__template/-/babel__template-7.4.4.tgz",
1110
+ "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
1111
+ "dev": true,
1112
+ "license": "MIT",
1113
+ "dependencies": {
1114
+ "@babel/parser": "^7.1.0",
1115
+ "@babel/types": "^7.0.0"
1116
+ }
1117
+ },
1118
+ "node_modules/@types/babel__traverse": {
1119
+ "version": "7.28.0",
1120
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@types/babel__traverse/-/babel__traverse-7.28.0.tgz",
1121
+ "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==",
1122
+ "dev": true,
1123
+ "license": "MIT",
1124
+ "dependencies": {
1125
+ "@babel/types": "^7.28.2"
1126
+ }
1127
+ },
1128
+ "node_modules/@types/graceful-fs": {
1129
+ "version": "4.1.9",
1130
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@types/graceful-fs/-/graceful-fs-4.1.9.tgz",
1131
+ "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==",
1132
+ "dev": true,
1133
+ "license": "MIT",
1134
+ "dependencies": {
1135
+ "@types/node": "*"
1136
+ }
1137
+ },
1138
+ "node_modules/@types/istanbul-lib-coverage": {
1139
+ "version": "2.0.6",
1140
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz",
1141
+ "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==",
1142
+ "dev": true,
1143
+ "license": "MIT"
1144
+ },
1145
+ "node_modules/@types/istanbul-lib-report": {
1146
+ "version": "3.0.3",
1147
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz",
1148
+ "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==",
1149
+ "dev": true,
1150
+ "license": "MIT",
1151
+ "dependencies": {
1152
+ "@types/istanbul-lib-coverage": "*"
1153
+ }
1154
+ },
1155
+ "node_modules/@types/istanbul-reports": {
1156
+ "version": "3.0.4",
1157
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz",
1158
+ "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==",
1159
+ "dev": true,
1160
+ "license": "MIT",
1161
+ "dependencies": {
1162
+ "@types/istanbul-lib-report": "*"
1163
+ }
1164
+ },
1165
+ "node_modules/@types/jest": {
1166
+ "version": "29.5.14",
1167
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@types/jest/-/jest-29.5.14.tgz",
1168
+ "integrity": "sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==",
1169
+ "dev": true,
1170
+ "license": "MIT",
1171
+ "dependencies": {
1172
+ "expect": "^29.0.0",
1173
+ "pretty-format": "^29.0.0"
1174
+ }
1175
+ },
1176
+ "node_modules/@types/node": {
1177
+ "version": "26.2.0",
1178
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@types/node/-/node-26.2.0.tgz",
1179
+ "integrity": "sha512-5IviulTZeRNp2vAJ514cc/HUlY5nZ9fCbq9DMyC52BrhFZACo3nI0R7qBxhQmo/d27NFe96ur/b7Wwxklda+kg==",
1180
+ "dev": true,
1181
+ "license": "MIT",
1182
+ "dependencies": {
1183
+ "undici-types": "~8.3.0"
1184
+ }
1185
+ },
1186
+ "node_modules/@types/stack-utils": {
1187
+ "version": "2.0.3",
1188
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@types/stack-utils/-/stack-utils-2.0.3.tgz",
1189
+ "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==",
1190
+ "dev": true,
1191
+ "license": "MIT"
1192
+ },
1193
+ "node_modules/@types/yargs": {
1194
+ "version": "17.0.35",
1195
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@types/yargs/-/yargs-17.0.35.tgz",
1196
+ "integrity": "sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==",
1197
+ "dev": true,
1198
+ "license": "MIT",
1199
+ "dependencies": {
1200
+ "@types/yargs-parser": "*"
1201
+ }
1202
+ },
1203
+ "node_modules/@types/yargs-parser": {
1204
+ "version": "21.0.3",
1205
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@types/yargs-parser/-/yargs-parser-21.0.3.tgz",
1206
+ "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==",
1207
+ "dev": true,
1208
+ "license": "MIT"
1209
+ },
1210
+ "node_modules/@types/yauzl": {
1211
+ "version": "2.10.3",
1212
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/@types/yauzl/-/yauzl-2.10.3.tgz",
1213
+ "integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==",
1214
+ "dev": true,
1215
+ "license": "MIT",
1216
+ "optional": true,
1217
+ "dependencies": {
1218
+ "@types/node": "*"
1219
+ }
1220
+ },
1221
+ "node_modules/agent-base": {
1222
+ "version": "7.1.4",
1223
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/agent-base/-/agent-base-7.1.4.tgz",
1224
+ "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==",
1225
+ "dev": true,
1226
+ "license": "MIT",
1227
+ "engines": {
1228
+ "node": ">= 14"
1229
+ }
1230
+ },
1231
+ "node_modules/ansi-escapes": {
1232
+ "version": "4.3.2",
1233
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
1234
+ "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
1235
+ "dev": true,
1236
+ "license": "MIT",
1237
+ "dependencies": {
1238
+ "type-fest": "^0.21.3"
1239
+ },
1240
+ "engines": {
1241
+ "node": ">=8"
1242
+ },
1243
+ "funding": {
1244
+ "url": "https://github.com/sponsors/sindresorhus"
1245
+ }
1246
+ },
1247
+ "node_modules/ansi-regex": {
1248
+ "version": "5.0.1",
1249
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/ansi-regex/-/ansi-regex-5.0.1.tgz",
1250
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
1251
+ "dev": true,
1252
+ "license": "MIT",
1253
+ "engines": {
1254
+ "node": ">=8"
1255
+ }
1256
+ },
1257
+ "node_modules/ansi-styles": {
1258
+ "version": "4.3.0",
1259
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/ansi-styles/-/ansi-styles-4.3.0.tgz",
1260
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
1261
+ "dev": true,
1262
+ "license": "MIT",
1263
+ "dependencies": {
1264
+ "color-convert": "^2.0.1"
1265
+ },
1266
+ "engines": {
1267
+ "node": ">=8"
1268
+ },
1269
+ "funding": {
1270
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
1271
+ }
1272
+ },
1273
+ "node_modules/anymatch": {
1274
+ "version": "3.1.3",
1275
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/anymatch/-/anymatch-3.1.3.tgz",
1276
+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
1277
+ "dev": true,
1278
+ "license": "ISC",
1279
+ "dependencies": {
1280
+ "normalize-path": "^3.0.0",
1281
+ "picomatch": "^2.0.4"
1282
+ },
1283
+ "engines": {
1284
+ "node": ">= 8"
1285
+ }
1286
+ },
1287
+ "node_modules/argparse": {
1288
+ "version": "1.0.10",
1289
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/argparse/-/argparse-1.0.10.tgz",
1290
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
1291
+ "dev": true,
1292
+ "license": "MIT",
1293
+ "dependencies": {
1294
+ "sprintf-js": "~1.0.2"
1295
+ }
1296
+ },
1297
+ "node_modules/ast-types": {
1298
+ "version": "0.13.4",
1299
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/ast-types/-/ast-types-0.13.4.tgz",
1300
+ "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==",
1301
+ "dev": true,
1302
+ "license": "MIT",
1303
+ "dependencies": {
1304
+ "tslib": "^2.0.1"
1305
+ },
1306
+ "engines": {
1307
+ "node": ">=4"
1308
+ }
1309
+ },
1310
+ "node_modules/b4a": {
1311
+ "version": "1.8.1",
1312
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/b4a/-/b4a-1.8.1.tgz",
1313
+ "integrity": "sha512-aiqre1Nr0B/6DgE2N5vwTc+2/oQZ4Wh1t4NznYY4E00y8LCt6NqdRv81so00oo27D8MVKTpUa/MwUUtBLXCoDw==",
1314
+ "dev": true,
1315
+ "license": "Apache-2.0",
1316
+ "peerDependencies": {
1317
+ "react-native-b4a": "*"
1318
+ },
1319
+ "peerDependenciesMeta": {
1320
+ "react-native-b4a": {
1321
+ "optional": true
1322
+ }
1323
+ }
1324
+ },
1325
+ "node_modules/babel-jest": {
1326
+ "version": "29.7.0",
1327
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/babel-jest/-/babel-jest-29.7.0.tgz",
1328
+ "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==",
1329
+ "dev": true,
1330
+ "license": "MIT",
1331
+ "dependencies": {
1332
+ "@jest/transform": "^29.7.0",
1333
+ "@types/babel__core": "^7.1.14",
1334
+ "babel-plugin-istanbul": "^6.1.1",
1335
+ "babel-preset-jest": "^29.6.3",
1336
+ "chalk": "^4.0.0",
1337
+ "graceful-fs": "^4.2.9",
1338
+ "slash": "^3.0.0"
1339
+ },
1340
+ "engines": {
1341
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
1342
+ },
1343
+ "peerDependencies": {
1344
+ "@babel/core": "^7.8.0"
1345
+ }
1346
+ },
1347
+ "node_modules/babel-plugin-istanbul": {
1348
+ "version": "6.1.1",
1349
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz",
1350
+ "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==",
1351
+ "dev": true,
1352
+ "license": "BSD-3-Clause",
1353
+ "dependencies": {
1354
+ "@babel/helper-plugin-utils": "^7.0.0",
1355
+ "@istanbuljs/load-nyc-config": "^1.0.0",
1356
+ "@istanbuljs/schema": "^0.1.2",
1357
+ "istanbul-lib-instrument": "^5.0.4",
1358
+ "test-exclude": "^6.0.0"
1359
+ },
1360
+ "engines": {
1361
+ "node": ">=8"
1362
+ }
1363
+ },
1364
+ "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": {
1365
+ "version": "5.2.1",
1366
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz",
1367
+ "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==",
1368
+ "dev": true,
1369
+ "license": "BSD-3-Clause",
1370
+ "dependencies": {
1371
+ "@babel/core": "^7.12.3",
1372
+ "@babel/parser": "^7.14.7",
1373
+ "@istanbuljs/schema": "^0.1.2",
1374
+ "istanbul-lib-coverage": "^3.2.0",
1375
+ "semver": "^6.3.0"
1376
+ },
1377
+ "engines": {
1378
+ "node": ">=8"
1379
+ }
1380
+ },
1381
+ "node_modules/babel-plugin-jest-hoist": {
1382
+ "version": "29.6.3",
1383
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz",
1384
+ "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==",
1385
+ "dev": true,
1386
+ "license": "MIT",
1387
+ "dependencies": {
1388
+ "@babel/template": "^7.3.3",
1389
+ "@babel/types": "^7.3.3",
1390
+ "@types/babel__core": "^7.1.14",
1391
+ "@types/babel__traverse": "^7.0.6"
1392
+ },
1393
+ "engines": {
1394
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
1395
+ }
1396
+ },
1397
+ "node_modules/babel-preset-current-node-syntax": {
1398
+ "version": "1.2.0",
1399
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.2.0.tgz",
1400
+ "integrity": "sha512-E/VlAEzRrsLEb2+dv8yp3bo4scof3l9nR4lrld+Iy5NyVqgVYUJnDAmunkhPMisRI32Qc4iRiz425d8vM++2fg==",
1401
+ "dev": true,
1402
+ "license": "MIT",
1403
+ "dependencies": {
1404
+ "@babel/plugin-syntax-async-generators": "^7.8.4",
1405
+ "@babel/plugin-syntax-bigint": "^7.8.3",
1406
+ "@babel/plugin-syntax-class-properties": "^7.12.13",
1407
+ "@babel/plugin-syntax-class-static-block": "^7.14.5",
1408
+ "@babel/plugin-syntax-import-attributes": "^7.24.7",
1409
+ "@babel/plugin-syntax-import-meta": "^7.10.4",
1410
+ "@babel/plugin-syntax-json-strings": "^7.8.3",
1411
+ "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
1412
+ "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
1413
+ "@babel/plugin-syntax-numeric-separator": "^7.10.4",
1414
+ "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
1415
+ "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
1416
+ "@babel/plugin-syntax-optional-chaining": "^7.8.3",
1417
+ "@babel/plugin-syntax-private-property-in-object": "^7.14.5",
1418
+ "@babel/plugin-syntax-top-level-await": "^7.14.5"
1419
+ },
1420
+ "peerDependencies": {
1421
+ "@babel/core": "^7.0.0 || ^8.0.0-0"
1422
+ }
1423
+ },
1424
+ "node_modules/babel-preset-jest": {
1425
+ "version": "29.6.3",
1426
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz",
1427
+ "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==",
1428
+ "dev": true,
1429
+ "license": "MIT",
1430
+ "dependencies": {
1431
+ "babel-plugin-jest-hoist": "^29.6.3",
1432
+ "babel-preset-current-node-syntax": "^1.0.0"
1433
+ },
1434
+ "engines": {
1435
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
1436
+ },
1437
+ "peerDependencies": {
1438
+ "@babel/core": "^7.0.0"
1439
+ }
1440
+ },
1441
+ "node_modules/balanced-match": {
1442
+ "version": "1.0.2",
1443
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/balanced-match/-/balanced-match-1.0.2.tgz",
1444
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
1445
+ "dev": true,
1446
+ "license": "MIT"
1447
+ },
1448
+ "node_modules/bare-events": {
1449
+ "version": "2.9.1",
1450
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/bare-events/-/bare-events-2.9.1.tgz",
1451
+ "integrity": "sha512-Z0oHEHAFDZkffN8Qc39zNZjQlMDkPJRyyyZieU1VH7u8c5S+qHZ2S8ixdKIAxEjfHO7FJxXmJWgteOghVanIsg==",
1452
+ "dev": true,
1453
+ "license": "Apache-2.0",
1454
+ "peerDependencies": {
1455
+ "bare-abort-controller": "*"
1456
+ },
1457
+ "peerDependenciesMeta": {
1458
+ "bare-abort-controller": {
1459
+ "optional": true
1460
+ }
1461
+ }
1462
+ },
1463
+ "node_modules/bare-fs": {
1464
+ "version": "4.8.0",
1465
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/bare-fs/-/bare-fs-4.8.0.tgz",
1466
+ "integrity": "sha512-fM+MhCvdQhZ7NV6S95a07gPSqjIYKn6mFaXfx266wN3ajZGl/+1AzH+ubkXQ0fFZvOe2nk9VHkzdYkQE5zMV3Q==",
1467
+ "dev": true,
1468
+ "license": "Apache-2.0",
1469
+ "dependencies": {
1470
+ "bare-events": "^2.5.4",
1471
+ "bare-path": "^3.0.0",
1472
+ "bare-stream": "^2.6.4",
1473
+ "bare-url": "^2.2.2",
1474
+ "fast-fifo": "^1.3.2"
1475
+ },
1476
+ "engines": {
1477
+ "bare": ">=1.28.0"
1478
+ },
1479
+ "peerDependencies": {
1480
+ "bare-buffer": "*"
1481
+ },
1482
+ "peerDependenciesMeta": {
1483
+ "bare-buffer": {
1484
+ "optional": true
1485
+ }
1486
+ }
1487
+ },
1488
+ "node_modules/bare-path": {
1489
+ "version": "3.1.1",
1490
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/bare-path/-/bare-path-3.1.1.tgz",
1491
+ "integrity": "sha512-JprUlveX3QjApC1cTpsUOiscADftCGVWkzitbHsRqv84hzYwYHw2mbluddsq5TvI8mH/8Ov1f4BiMAdcB0oYnQ==",
1492
+ "dev": true,
1493
+ "license": "Apache-2.0"
1494
+ },
1495
+ "node_modules/bare-stream": {
1496
+ "version": "2.13.3",
1497
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/bare-stream/-/bare-stream-2.13.3.tgz",
1498
+ "integrity": "sha512-Kc+brLqvEqGkjyfiwJmImAOqLZL7OsoLKuavx+hJjgVV3nLTOjloJyPMFxjUPerGGHrNH0fLU06jjykMLWrERQ==",
1499
+ "dev": true,
1500
+ "license": "Apache-2.0",
1501
+ "dependencies": {
1502
+ "b4a": "^1.8.1",
1503
+ "streamx": "^2.25.0",
1504
+ "teex": "^1.0.1"
1505
+ },
1506
+ "peerDependencies": {
1507
+ "bare-abort-controller": "*",
1508
+ "bare-buffer": "*",
1509
+ "bare-events": "*"
1510
+ },
1511
+ "peerDependenciesMeta": {
1512
+ "bare-abort-controller": {
1513
+ "optional": true
1514
+ },
1515
+ "bare-buffer": {
1516
+ "optional": true
1517
+ },
1518
+ "bare-events": {
1519
+ "optional": true
1520
+ }
1521
+ }
1522
+ },
1523
+ "node_modules/bare-url": {
1524
+ "version": "2.5.2",
1525
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/bare-url/-/bare-url-2.5.2.tgz",
1526
+ "integrity": "sha512-L13PCJzKG8RGvx8V1/DdMi12ERhC3tprr7/8a94BxpmnRsFqxh5XZNdhtMxu5HPkRshYOOWRGY8lDP7ZhpG9Cg==",
1527
+ "dev": true,
1528
+ "license": "Apache-2.0",
1529
+ "dependencies": {
1530
+ "bare-path": "^3.0.0"
1531
+ }
1532
+ },
1533
+ "node_modules/baseline-browser-mapping": {
1534
+ "version": "2.11.18",
1535
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/baseline-browser-mapping/-/baseline-browser-mapping-2.11.18.tgz",
1536
+ "integrity": "sha512-1iEmLEYSiE1SeBoAfPo/Mnx3PzfzHUkDK61ASkCpuk3YXugYLH5DYK1SzqV55F8FMI6s0F+/tCP7Polz1QRjxw==",
1537
+ "dev": true,
1538
+ "license": "Apache-2.0",
1539
+ "bin": {
1540
+ "baseline-browser-mapping": "dist/cli.cjs"
1541
+ },
1542
+ "engines": {
1543
+ "node": ">=6.0.0"
1544
+ }
1545
+ },
1546
+ "node_modules/basic-ftp": {
1547
+ "version": "5.3.1",
1548
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/basic-ftp/-/basic-ftp-5.3.1.tgz",
1549
+ "integrity": "sha512-bopVNp6ugyA150DDuZfPFdt1KZ5a94ZDiwX4hMgZDzF+GttD80lEy8kj98kbyhLXnPvhtIo93mdnLIjpCAeeOw==",
1550
+ "dev": true,
1551
+ "license": "MIT",
1552
+ "engines": {
1553
+ "node": ">=10.0.0"
1554
+ }
1555
+ },
1556
+ "node_modules/brace-expansion": {
1557
+ "version": "1.1.18",
1558
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/brace-expansion/-/brace-expansion-1.1.18.tgz",
1559
+ "integrity": "sha512-Edep/X9fGqVNmzKBVsDYIOtD+z1tuezV70LBjdCst9Tqu76lsnvRiZ6oTic1n+/BIwX6QDGAO94PN4N2SADvtw==",
1560
+ "dev": true,
1561
+ "license": "MIT",
1562
+ "dependencies": {
1563
+ "balanced-match": "^1.0.0",
1564
+ "concat-map": "0.0.1"
1565
+ }
1566
+ },
1567
+ "node_modules/braces": {
1568
+ "version": "3.0.3",
1569
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/braces/-/braces-3.0.3.tgz",
1570
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
1571
+ "dev": true,
1572
+ "license": "MIT",
1573
+ "dependencies": {
1574
+ "fill-range": "^7.1.1"
1575
+ },
1576
+ "engines": {
1577
+ "node": ">=8"
1578
+ }
1579
+ },
1580
+ "node_modules/browserslist": {
1581
+ "version": "4.28.8",
1582
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/browserslist/-/browserslist-4.28.8.tgz",
1583
+ "integrity": "sha512-V2NpofLblG64mfOtSgDhOJESZEGogzDMBv/q+W6oc4LXWP/q75eOXoOaaOu1EOadB9U4Bwx/e0yzbvwKH8zalA==",
1584
+ "dev": true,
1585
+ "funding": [
1586
+ {
1587
+ "type": "opencollective",
1588
+ "url": "https://opencollective.com/browserslist"
1589
+ },
1590
+ {
1591
+ "type": "tidelift",
1592
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
1593
+ },
1594
+ {
1595
+ "type": "github",
1596
+ "url": "https://github.com/sponsors/ai"
1597
+ }
1598
+ ],
1599
+ "license": "MIT",
1600
+ "dependencies": {
1601
+ "baseline-browser-mapping": "^2.11.12",
1602
+ "caniuse-lite": "^1.0.30001809",
1603
+ "electron-to-chromium": "^1.5.402",
1604
+ "node-releases": "^2.0.53",
1605
+ "update-browserslist-db": "^1.3.0"
1606
+ },
1607
+ "bin": {
1608
+ "browserslist": "cli.js"
1609
+ },
1610
+ "engines": {
1611
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
1612
+ }
1613
+ },
1614
+ "node_modules/bser": {
1615
+ "version": "2.1.1",
1616
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/bser/-/bser-2.1.1.tgz",
1617
+ "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==",
1618
+ "dev": true,
1619
+ "license": "Apache-2.0",
1620
+ "dependencies": {
1621
+ "node-int64": "^0.4.0"
1622
+ }
1623
+ },
1624
+ "node_modules/buffer-crc32": {
1625
+ "version": "0.2.13",
1626
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
1627
+ "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==",
1628
+ "dev": true,
1629
+ "license": "MIT",
1630
+ "engines": {
1631
+ "node": "*"
1632
+ }
1633
+ },
1634
+ "node_modules/buffer-from": {
1635
+ "version": "1.1.2",
1636
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/buffer-from/-/buffer-from-1.1.2.tgz",
1637
+ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
1638
+ "dev": true,
1639
+ "license": "MIT"
1640
+ },
1641
+ "node_modules/callsites": {
1642
+ "version": "3.1.0",
1643
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/callsites/-/callsites-3.1.0.tgz",
1644
+ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
1645
+ "dev": true,
1646
+ "license": "MIT",
1647
+ "engines": {
1648
+ "node": ">=6"
1649
+ }
1650
+ },
1651
+ "node_modules/camelcase": {
1652
+ "version": "5.3.1",
1653
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/camelcase/-/camelcase-5.3.1.tgz",
1654
+ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
1655
+ "dev": true,
1656
+ "license": "MIT",
1657
+ "engines": {
1658
+ "node": ">=6"
1659
+ }
1660
+ },
1661
+ "node_modules/caniuse-lite": {
1662
+ "version": "1.0.30001809",
1663
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/caniuse-lite/-/caniuse-lite-1.0.30001809.tgz",
1664
+ "integrity": "sha512-xxWVywk6a6Arlk+hymeycyn/VgqEfLDxupvhH/xiY5SJ/18kmi9o6MiO320DCUzypORHLtvh0I4i04tUhCNHNQ==",
1665
+ "dev": true,
1666
+ "funding": [
1667
+ {
1668
+ "type": "opencollective",
1669
+ "url": "https://opencollective.com/browserslist"
1670
+ },
1671
+ {
1672
+ "type": "tidelift",
1673
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
1674
+ },
1675
+ {
1676
+ "type": "github",
1677
+ "url": "https://github.com/sponsors/ai"
1678
+ }
1679
+ ],
1680
+ "license": "CC-BY-4.0"
1681
+ },
1682
+ "node_modules/chalk": {
1683
+ "version": "4.1.2",
1684
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/chalk/-/chalk-4.1.2.tgz",
1685
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
1686
+ "dev": true,
1687
+ "license": "MIT",
1688
+ "dependencies": {
1689
+ "ansi-styles": "^4.1.0",
1690
+ "supports-color": "^7.1.0"
1691
+ },
1692
+ "engines": {
1693
+ "node": ">=10"
1694
+ },
1695
+ "funding": {
1696
+ "url": "https://github.com/chalk/chalk?sponsor=1"
1697
+ }
1698
+ },
1699
+ "node_modules/char-regex": {
1700
+ "version": "1.0.2",
1701
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/char-regex/-/char-regex-1.0.2.tgz",
1702
+ "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==",
1703
+ "dev": true,
1704
+ "license": "MIT",
1705
+ "engines": {
1706
+ "node": ">=10"
1707
+ }
1708
+ },
1709
+ "node_modules/chromium-bidi": {
1710
+ "version": "14.0.0",
1711
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/chromium-bidi/-/chromium-bidi-14.0.0.tgz",
1712
+ "integrity": "sha512-9gYlLtS6tStdRWzrtXaTMnqcM4dudNegMXJxkR0I/CXObHalYeYcAMPrL19eroNZHtJ8DQmu1E+ZNOYu/IXMXw==",
1713
+ "dev": true,
1714
+ "license": "Apache-2.0",
1715
+ "dependencies": {
1716
+ "mitt": "^3.0.1",
1717
+ "zod": "^3.24.1"
1718
+ },
1719
+ "peerDependencies": {
1720
+ "devtools-protocol": "*"
1721
+ }
1722
+ },
1723
+ "node_modules/ci-info": {
1724
+ "version": "3.9.0",
1725
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/ci-info/-/ci-info-3.9.0.tgz",
1726
+ "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
1727
+ "dev": true,
1728
+ "funding": [
1729
+ {
1730
+ "type": "github",
1731
+ "url": "https://github.com/sponsors/sibiraj-s"
1732
+ }
1733
+ ],
1734
+ "license": "MIT",
1735
+ "engines": {
1736
+ "node": ">=8"
1737
+ }
1738
+ },
1739
+ "node_modules/cjs-module-lexer": {
1740
+ "version": "1.4.3",
1741
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz",
1742
+ "integrity": "sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==",
1743
+ "dev": true,
1744
+ "license": "MIT"
1745
+ },
1746
+ "node_modules/cliui": {
1747
+ "version": "8.0.1",
1748
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/cliui/-/cliui-8.0.1.tgz",
1749
+ "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
1750
+ "dev": true,
1751
+ "license": "ISC",
1752
+ "dependencies": {
1753
+ "string-width": "^4.2.0",
1754
+ "strip-ansi": "^6.0.1",
1755
+ "wrap-ansi": "^7.0.0"
1756
+ },
1757
+ "engines": {
1758
+ "node": ">=12"
1759
+ }
1760
+ },
1761
+ "node_modules/co": {
1762
+ "version": "4.6.0",
1763
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/co/-/co-4.6.0.tgz",
1764
+ "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==",
1765
+ "dev": true,
1766
+ "license": "MIT",
1767
+ "engines": {
1768
+ "iojs": ">= 1.0.0",
1769
+ "node": ">= 0.12.0"
1770
+ }
1771
+ },
1772
+ "node_modules/collect-v8-coverage": {
1773
+ "version": "1.0.3",
1774
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/collect-v8-coverage/-/collect-v8-coverage-1.0.3.tgz",
1775
+ "integrity": "sha512-1L5aqIkwPfiodaMgQunkF1zRhNqifHBmtbbbxcr6yVxxBnliw4TDOW6NxpO8DJLgJ16OT+Y4ztZqP6p/FtXnAw==",
1776
+ "dev": true,
1777
+ "license": "MIT"
1778
+ },
1779
+ "node_modules/color-convert": {
1780
+ "version": "2.0.1",
1781
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/color-convert/-/color-convert-2.0.1.tgz",
1782
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
1783
+ "dev": true,
1784
+ "license": "MIT",
1785
+ "dependencies": {
1786
+ "color-name": "~1.1.4"
1787
+ },
1788
+ "engines": {
1789
+ "node": ">=7.0.0"
1790
+ }
1791
+ },
1792
+ "node_modules/color-name": {
1793
+ "version": "1.1.4",
1794
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/color-name/-/color-name-1.1.4.tgz",
1795
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
1796
+ "dev": true,
1797
+ "license": "MIT"
1798
+ },
1799
+ "node_modules/concat-map": {
1800
+ "version": "0.0.1",
1801
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/concat-map/-/concat-map-0.0.1.tgz",
1802
+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
1803
+ "dev": true,
1804
+ "license": "MIT"
1805
+ },
1806
+ "node_modules/convert-source-map": {
1807
+ "version": "2.0.0",
1808
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/convert-source-map/-/convert-source-map-2.0.0.tgz",
1809
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
1810
+ "dev": true,
1811
+ "license": "MIT"
1812
+ },
1813
+ "node_modules/cosmiconfig": {
1814
+ "version": "9.0.2",
1815
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/cosmiconfig/-/cosmiconfig-9.0.2.tgz",
1816
+ "integrity": "sha512-gtTZxTDau1wL7Y7zifc2dd8jHSK/k6BTx/2Xp/BpdlAdnlYWFVt7qhJqgwi7637yRwRQ3qL4ZidbB4I8tA5VOg==",
1817
+ "dev": true,
1818
+ "license": "MIT",
1819
+ "dependencies": {
1820
+ "env-paths": "^2.2.1",
1821
+ "import-fresh": "^3.3.0",
1822
+ "js-yaml": "^4.1.0",
1823
+ "parse-json": "^5.2.0"
1824
+ },
1825
+ "engines": {
1826
+ "node": ">=14"
1827
+ },
1828
+ "funding": {
1829
+ "url": "https://github.com/sponsors/d-fischer"
1830
+ },
1831
+ "peerDependencies": {
1832
+ "typescript": ">=4.9.5"
1833
+ },
1834
+ "peerDependenciesMeta": {
1835
+ "typescript": {
1836
+ "optional": true
1837
+ }
1838
+ }
1839
+ },
1840
+ "node_modules/cosmiconfig/node_modules/argparse": {
1841
+ "version": "2.0.1",
1842
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/argparse/-/argparse-2.0.1.tgz",
1843
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
1844
+ "dev": true,
1845
+ "license": "Python-2.0"
1846
+ },
1847
+ "node_modules/cosmiconfig/node_modules/js-yaml": {
1848
+ "version": "4.3.2",
1849
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/js-yaml/-/js-yaml-4.3.2.tgz",
1850
+ "integrity": "sha512-SFNOvSJ+Dgf/9An904Yx+CgSlIPCkIpao4qo51lpee25TIRejdH3rhR4EZMGoNx3/TP3O+wzWuiTFl4sqbltzA==",
1851
+ "dev": true,
1852
+ "funding": [
1853
+ {
1854
+ "type": "github",
1855
+ "url": "https://github.com/sponsors/puzrin"
1856
+ },
1857
+ {
1858
+ "type": "github",
1859
+ "url": "https://github.com/sponsors/nodeca"
1860
+ }
1861
+ ],
1862
+ "license": "MIT",
1863
+ "dependencies": {
1864
+ "argparse": "^2.0.1"
1865
+ },
1866
+ "bin": {
1867
+ "js-yaml": "bin/js-yaml.js"
1868
+ }
1869
+ },
1870
+ "node_modules/create-jest": {
1871
+ "version": "29.7.0",
1872
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/create-jest/-/create-jest-29.7.0.tgz",
1873
+ "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==",
1874
+ "dev": true,
1875
+ "license": "MIT",
1876
+ "dependencies": {
1877
+ "@jest/types": "^29.6.3",
1878
+ "chalk": "^4.0.0",
1879
+ "exit": "^0.1.2",
1880
+ "graceful-fs": "^4.2.9",
1881
+ "jest-config": "^29.7.0",
1882
+ "jest-util": "^29.7.0",
1883
+ "prompts": "^2.0.1"
1884
+ },
1885
+ "bin": {
1886
+ "create-jest": "bin/create-jest.js"
1887
+ },
1888
+ "engines": {
1889
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
1890
+ }
1891
+ },
1892
+ "node_modules/cross-spawn": {
1893
+ "version": "7.0.6",
1894
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/cross-spawn/-/cross-spawn-7.0.6.tgz",
1895
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
1896
+ "dev": true,
1897
+ "license": "MIT",
1898
+ "dependencies": {
1899
+ "path-key": "^3.1.0",
1900
+ "shebang-command": "^2.0.0",
1901
+ "which": "^2.0.1"
1902
+ },
1903
+ "engines": {
1904
+ "node": ">= 8"
1905
+ }
1906
+ },
1907
+ "node_modules/data-uri-to-buffer": {
1908
+ "version": "6.0.2",
1909
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/data-uri-to-buffer/-/data-uri-to-buffer-6.0.2.tgz",
1910
+ "integrity": "sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==",
1911
+ "dev": true,
1912
+ "license": "MIT",
1913
+ "engines": {
1914
+ "node": ">= 14"
1915
+ }
1916
+ },
1917
+ "node_modules/debug": {
1918
+ "version": "4.4.3",
1919
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/debug/-/debug-4.4.3.tgz",
1920
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
1921
+ "dev": true,
1922
+ "license": "MIT",
1923
+ "dependencies": {
1924
+ "ms": "^2.1.3"
1925
+ },
1926
+ "engines": {
1927
+ "node": ">=6.0"
1928
+ },
1929
+ "peerDependenciesMeta": {
1930
+ "supports-color": {
1931
+ "optional": true
1932
+ }
1933
+ }
1934
+ },
1935
+ "node_modules/dedent": {
1936
+ "version": "1.7.2",
1937
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/dedent/-/dedent-1.7.2.tgz",
1938
+ "integrity": "sha512-WzMx3mW98SN+zn3hgemf4OzdmyNhhhKz5Ay0pUfQiMQ3e1g+xmTJWp/pKdwKVXhdSkAEGIIzqeuWrL3mV/AXbA==",
1939
+ "dev": true,
1940
+ "license": "MIT",
1941
+ "peerDependencies": {
1942
+ "babel-plugin-macros": "^3.1.0"
1943
+ },
1944
+ "peerDependenciesMeta": {
1945
+ "babel-plugin-macros": {
1946
+ "optional": true
1947
+ }
1948
+ }
1949
+ },
1950
+ "node_modules/deepmerge": {
1951
+ "version": "4.3.1",
1952
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/deepmerge/-/deepmerge-4.3.1.tgz",
1953
+ "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
1954
+ "dev": true,
1955
+ "license": "MIT",
1956
+ "engines": {
1957
+ "node": ">=0.10.0"
1958
+ }
1959
+ },
1960
+ "node_modules/degenerator": {
1961
+ "version": "5.0.1",
1962
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/degenerator/-/degenerator-5.0.1.tgz",
1963
+ "integrity": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==",
1964
+ "dev": true,
1965
+ "license": "MIT",
1966
+ "dependencies": {
1967
+ "ast-types": "^0.13.4",
1968
+ "escodegen": "^2.1.0",
1969
+ "esprima": "^4.0.1"
1970
+ },
1971
+ "engines": {
1972
+ "node": ">= 14"
1973
+ }
1974
+ },
1975
+ "node_modules/detect-newline": {
1976
+ "version": "3.1.0",
1977
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/detect-newline/-/detect-newline-3.1.0.tgz",
1978
+ "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==",
1979
+ "dev": true,
1980
+ "license": "MIT",
1981
+ "engines": {
1982
+ "node": ">=8"
1983
+ }
1984
+ },
1985
+ "node_modules/devtools-protocol": {
1986
+ "version": "0.0.1608973",
1987
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/devtools-protocol/-/devtools-protocol-0.0.1608973.tgz",
1988
+ "integrity": "sha512-Tpm17fxYzt+J7VrGdc1k8YdRqS3YV7se/M6KeemEqvUbq/n7At1rWVuXMxQgpWkdwSdIEKYbU//Bve+Shm4YNQ==",
1989
+ "dev": true,
1990
+ "license": "BSD-3-Clause"
1991
+ },
1992
+ "node_modules/diff-sequences": {
1993
+ "version": "29.6.3",
1994
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/diff-sequences/-/diff-sequences-29.6.3.tgz",
1995
+ "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==",
1996
+ "dev": true,
1997
+ "license": "MIT",
1998
+ "engines": {
1999
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2000
+ }
2001
+ },
2002
+ "node_modules/electron-to-chromium": {
2003
+ "version": "1.5.412",
2004
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/electron-to-chromium/-/electron-to-chromium-1.5.412.tgz",
2005
+ "integrity": "sha512-z4rMe3esBzlzovKHj4gxJnsCGZRK5l4baUvm+gCGJBPE+gsyUMKsuU9tnEUtI1dOebXz1ytAPGjvXhmQ7rIPwA==",
2006
+ "dev": true,
2007
+ "license": "ISC"
2008
+ },
2009
+ "node_modules/emittery": {
2010
+ "version": "0.13.1",
2011
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/emittery/-/emittery-0.13.1.tgz",
2012
+ "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==",
2013
+ "dev": true,
2014
+ "license": "MIT",
2015
+ "engines": {
2016
+ "node": ">=12"
2017
+ },
2018
+ "funding": {
2019
+ "url": "https://github.com/sindresorhus/emittery?sponsor=1"
2020
+ }
2021
+ },
2022
+ "node_modules/emoji-regex": {
2023
+ "version": "8.0.0",
2024
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/emoji-regex/-/emoji-regex-8.0.0.tgz",
2025
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
2026
+ "dev": true,
2027
+ "license": "MIT"
2028
+ },
2029
+ "node_modules/end-of-stream": {
2030
+ "version": "1.4.5",
2031
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/end-of-stream/-/end-of-stream-1.4.5.tgz",
2032
+ "integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==",
2033
+ "dev": true,
2034
+ "license": "MIT",
2035
+ "dependencies": {
2036
+ "once": "^1.4.0"
2037
+ }
2038
+ },
2039
+ "node_modules/env-paths": {
2040
+ "version": "2.2.1",
2041
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/env-paths/-/env-paths-2.2.1.tgz",
2042
+ "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==",
2043
+ "dev": true,
2044
+ "license": "MIT",
2045
+ "engines": {
2046
+ "node": ">=6"
2047
+ }
2048
+ },
2049
+ "node_modules/error-ex": {
2050
+ "version": "1.3.4",
2051
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/error-ex/-/error-ex-1.3.4.tgz",
2052
+ "integrity": "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==",
2053
+ "dev": true,
2054
+ "license": "MIT",
2055
+ "dependencies": {
2056
+ "is-arrayish": "^0.2.1"
2057
+ }
2058
+ },
2059
+ "node_modules/es-errors": {
2060
+ "version": "1.3.0",
2061
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/es-errors/-/es-errors-1.3.0.tgz",
2062
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
2063
+ "dev": true,
2064
+ "license": "MIT",
2065
+ "engines": {
2066
+ "node": ">= 0.4"
2067
+ }
2068
+ },
2069
+ "node_modules/escalade": {
2070
+ "version": "3.2.0",
2071
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/escalade/-/escalade-3.2.0.tgz",
2072
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
2073
+ "dev": true,
2074
+ "license": "MIT",
2075
+ "engines": {
2076
+ "node": ">=6"
2077
+ }
2078
+ },
2079
+ "node_modules/escape-string-regexp": {
2080
+ "version": "2.0.0",
2081
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
2082
+ "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==",
2083
+ "dev": true,
2084
+ "license": "MIT",
2085
+ "engines": {
2086
+ "node": ">=8"
2087
+ }
2088
+ },
2089
+ "node_modules/escodegen": {
2090
+ "version": "2.1.0",
2091
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/escodegen/-/escodegen-2.1.0.tgz",
2092
+ "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==",
2093
+ "dev": true,
2094
+ "license": "BSD-2-Clause",
2095
+ "dependencies": {
2096
+ "esprima": "^4.0.1",
2097
+ "estraverse": "^5.2.0",
2098
+ "esutils": "^2.0.2"
2099
+ },
2100
+ "bin": {
2101
+ "escodegen": "bin/escodegen.js",
2102
+ "esgenerate": "bin/esgenerate.js"
2103
+ },
2104
+ "engines": {
2105
+ "node": ">=6.0"
2106
+ },
2107
+ "optionalDependencies": {
2108
+ "source-map": "~0.6.1"
2109
+ }
2110
+ },
2111
+ "node_modules/esprima": {
2112
+ "version": "4.0.1",
2113
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/esprima/-/esprima-4.0.1.tgz",
2114
+ "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
2115
+ "dev": true,
2116
+ "license": "BSD-2-Clause",
2117
+ "bin": {
2118
+ "esparse": "bin/esparse.js",
2119
+ "esvalidate": "bin/esvalidate.js"
2120
+ },
2121
+ "engines": {
2122
+ "node": ">=4"
2123
+ }
2124
+ },
2125
+ "node_modules/estraverse": {
2126
+ "version": "5.3.0",
2127
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/estraverse/-/estraverse-5.3.0.tgz",
2128
+ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
2129
+ "dev": true,
2130
+ "license": "BSD-2-Clause",
2131
+ "engines": {
2132
+ "node": ">=4.0"
2133
+ }
2134
+ },
2135
+ "node_modules/esutils": {
2136
+ "version": "2.0.3",
2137
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/esutils/-/esutils-2.0.3.tgz",
2138
+ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
2139
+ "dev": true,
2140
+ "license": "BSD-2-Clause",
2141
+ "engines": {
2142
+ "node": ">=0.10.0"
2143
+ }
2144
+ },
2145
+ "node_modules/events-universal": {
2146
+ "version": "1.0.1",
2147
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/events-universal/-/events-universal-1.0.1.tgz",
2148
+ "integrity": "sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==",
2149
+ "dev": true,
2150
+ "license": "Apache-2.0",
2151
+ "dependencies": {
2152
+ "bare-events": "^2.7.0"
2153
+ }
2154
+ },
2155
+ "node_modules/execa": {
2156
+ "version": "5.1.1",
2157
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/execa/-/execa-5.1.1.tgz",
2158
+ "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
2159
+ "dev": true,
2160
+ "license": "MIT",
2161
+ "dependencies": {
2162
+ "cross-spawn": "^7.0.3",
2163
+ "get-stream": "^6.0.0",
2164
+ "human-signals": "^2.1.0",
2165
+ "is-stream": "^2.0.0",
2166
+ "merge-stream": "^2.0.0",
2167
+ "npm-run-path": "^4.0.1",
2168
+ "onetime": "^5.1.2",
2169
+ "signal-exit": "^3.0.3",
2170
+ "strip-final-newline": "^2.0.0"
2171
+ },
2172
+ "engines": {
2173
+ "node": ">=10"
2174
+ },
2175
+ "funding": {
2176
+ "url": "https://github.com/sindresorhus/execa?sponsor=1"
2177
+ }
2178
+ },
2179
+ "node_modules/exit": {
2180
+ "version": "0.1.2",
2181
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/exit/-/exit-0.1.2.tgz",
2182
+ "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==",
2183
+ "dev": true,
2184
+ "engines": {
2185
+ "node": ">= 0.8.0"
2186
+ }
2187
+ },
2188
+ "node_modules/expect": {
2189
+ "version": "29.7.0",
2190
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/expect/-/expect-29.7.0.tgz",
2191
+ "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==",
2192
+ "dev": true,
2193
+ "license": "MIT",
2194
+ "dependencies": {
2195
+ "@jest/expect-utils": "^29.7.0",
2196
+ "jest-get-type": "^29.6.3",
2197
+ "jest-matcher-utils": "^29.7.0",
2198
+ "jest-message-util": "^29.7.0",
2199
+ "jest-util": "^29.7.0"
2200
+ },
2201
+ "engines": {
2202
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2203
+ }
2204
+ },
2205
+ "node_modules/extract-zip": {
2206
+ "version": "2.0.1",
2207
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/extract-zip/-/extract-zip-2.0.1.tgz",
2208
+ "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==",
2209
+ "dev": true,
2210
+ "license": "BSD-2-Clause",
2211
+ "dependencies": {
2212
+ "debug": "^4.1.1",
2213
+ "get-stream": "^5.1.0",
2214
+ "yauzl": "^2.10.0"
2215
+ },
2216
+ "bin": {
2217
+ "extract-zip": "cli.js"
2218
+ },
2219
+ "engines": {
2220
+ "node": ">= 10.17.0"
2221
+ },
2222
+ "optionalDependencies": {
2223
+ "@types/yauzl": "^2.9.1"
2224
+ }
2225
+ },
2226
+ "node_modules/extract-zip/node_modules/get-stream": {
2227
+ "version": "5.2.0",
2228
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/get-stream/-/get-stream-5.2.0.tgz",
2229
+ "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
2230
+ "dev": true,
2231
+ "license": "MIT",
2232
+ "dependencies": {
2233
+ "pump": "^3.0.0"
2234
+ },
2235
+ "engines": {
2236
+ "node": ">=8"
2237
+ },
2238
+ "funding": {
2239
+ "url": "https://github.com/sponsors/sindresorhus"
2240
+ }
2241
+ },
2242
+ "node_modules/fast-fifo": {
2243
+ "version": "1.3.2",
2244
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/fast-fifo/-/fast-fifo-1.3.2.tgz",
2245
+ "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==",
2246
+ "dev": true,
2247
+ "license": "MIT"
2248
+ },
2249
+ "node_modules/fast-json-stable-stringify": {
2250
+ "version": "2.1.0",
2251
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
2252
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
2253
+ "dev": true,
2254
+ "license": "MIT"
2255
+ },
2256
+ "node_modules/fb-watchman": {
2257
+ "version": "2.0.2",
2258
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/fb-watchman/-/fb-watchman-2.0.2.tgz",
2259
+ "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==",
2260
+ "dev": true,
2261
+ "license": "Apache-2.0",
2262
+ "dependencies": {
2263
+ "bser": "2.1.1"
2264
+ }
2265
+ },
2266
+ "node_modules/fd-slicer": {
2267
+ "version": "1.1.0",
2268
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/fd-slicer/-/fd-slicer-1.1.0.tgz",
2269
+ "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==",
2270
+ "dev": true,
2271
+ "license": "MIT",
2272
+ "dependencies": {
2273
+ "pend": "~1.2.0"
2274
+ }
2275
+ },
2276
+ "node_modules/fill-range": {
2277
+ "version": "7.1.1",
2278
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/fill-range/-/fill-range-7.1.1.tgz",
2279
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
2280
+ "dev": true,
2281
+ "license": "MIT",
2282
+ "dependencies": {
2283
+ "to-regex-range": "^5.0.1"
2284
+ },
2285
+ "engines": {
2286
+ "node": ">=8"
2287
+ }
2288
+ },
2289
+ "node_modules/find-up": {
2290
+ "version": "4.1.0",
2291
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/find-up/-/find-up-4.1.0.tgz",
2292
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
2293
+ "dev": true,
2294
+ "license": "MIT",
2295
+ "dependencies": {
2296
+ "locate-path": "^5.0.0",
2297
+ "path-exists": "^4.0.0"
2298
+ },
2299
+ "engines": {
2300
+ "node": ">=8"
2301
+ }
2302
+ },
2303
+ "node_modules/fs.realpath": {
2304
+ "version": "1.0.0",
2305
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/fs.realpath/-/fs.realpath-1.0.0.tgz",
2306
+ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
2307
+ "dev": true,
2308
+ "license": "ISC"
2309
+ },
2310
+ "node_modules/fsevents": {
2311
+ "version": "2.3.3",
2312
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/fsevents/-/fsevents-2.3.3.tgz",
2313
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
2314
+ "dev": true,
2315
+ "hasInstallScript": true,
2316
+ "license": "MIT",
2317
+ "optional": true,
2318
+ "os": [
2319
+ "darwin"
2320
+ ],
2321
+ "engines": {
2322
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
2323
+ }
2324
+ },
2325
+ "node_modules/function-bind": {
2326
+ "version": "1.1.2",
2327
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/function-bind/-/function-bind-1.1.2.tgz",
2328
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
2329
+ "dev": true,
2330
+ "license": "MIT",
2331
+ "funding": {
2332
+ "url": "https://github.com/sponsors/ljharb"
2333
+ }
2334
+ },
2335
+ "node_modules/gensync": {
2336
+ "version": "1.0.0-beta.2",
2337
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/gensync/-/gensync-1.0.0-beta.2.tgz",
2338
+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
2339
+ "dev": true,
2340
+ "license": "MIT",
2341
+ "engines": {
2342
+ "node": ">=6.9.0"
2343
+ }
2344
+ },
2345
+ "node_modules/get-caller-file": {
2346
+ "version": "2.0.5",
2347
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/get-caller-file/-/get-caller-file-2.0.5.tgz",
2348
+ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
2349
+ "dev": true,
2350
+ "license": "ISC",
2351
+ "engines": {
2352
+ "node": "6.* || 8.* || >= 10.*"
2353
+ }
2354
+ },
2355
+ "node_modules/get-package-type": {
2356
+ "version": "0.1.0",
2357
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/get-package-type/-/get-package-type-0.1.0.tgz",
2358
+ "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==",
2359
+ "dev": true,
2360
+ "license": "MIT",
2361
+ "engines": {
2362
+ "node": ">=8.0.0"
2363
+ }
2364
+ },
2365
+ "node_modules/get-stream": {
2366
+ "version": "6.0.1",
2367
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/get-stream/-/get-stream-6.0.1.tgz",
2368
+ "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
2369
+ "dev": true,
2370
+ "license": "MIT",
2371
+ "engines": {
2372
+ "node": ">=10"
2373
+ },
2374
+ "funding": {
2375
+ "url": "https://github.com/sponsors/sindresorhus"
2376
+ }
2377
+ },
2378
+ "node_modules/get-uri": {
2379
+ "version": "6.0.5",
2380
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/get-uri/-/get-uri-6.0.5.tgz",
2381
+ "integrity": "sha512-b1O07XYq8eRuVzBNgJLstU6FYc1tS6wnMtF1I1D9lE8LxZSOGZ7LhxN54yPP6mGw5f2CkXY2BQUL9Fx41qvcIg==",
2382
+ "dev": true,
2383
+ "license": "MIT",
2384
+ "dependencies": {
2385
+ "basic-ftp": "^5.0.2",
2386
+ "data-uri-to-buffer": "^6.0.2",
2387
+ "debug": "^4.3.4"
2388
+ },
2389
+ "engines": {
2390
+ "node": ">= 14"
2391
+ }
2392
+ },
2393
+ "node_modules/glob": {
2394
+ "version": "7.2.3",
2395
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/glob/-/glob-7.2.3.tgz",
2396
+ "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
2397
+ "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
2398
+ "dev": true,
2399
+ "license": "ISC",
2400
+ "dependencies": {
2401
+ "fs.realpath": "^1.0.0",
2402
+ "inflight": "^1.0.4",
2403
+ "inherits": "2",
2404
+ "minimatch": "^3.1.1",
2405
+ "once": "^1.3.0",
2406
+ "path-is-absolute": "^1.0.0"
2407
+ },
2408
+ "engines": {
2409
+ "node": "*"
2410
+ },
2411
+ "funding": {
2412
+ "url": "https://github.com/sponsors/isaacs"
2413
+ }
2414
+ },
2415
+ "node_modules/graceful-fs": {
2416
+ "version": "4.2.11",
2417
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/graceful-fs/-/graceful-fs-4.2.11.tgz",
2418
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
2419
+ "dev": true,
2420
+ "license": "ISC"
2421
+ },
2422
+ "node_modules/has-flag": {
2423
+ "version": "4.0.0",
2424
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/has-flag/-/has-flag-4.0.0.tgz",
2425
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
2426
+ "dev": true,
2427
+ "license": "MIT",
2428
+ "engines": {
2429
+ "node": ">=8"
2430
+ }
2431
+ },
2432
+ "node_modules/hasown": {
2433
+ "version": "2.0.4",
2434
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/hasown/-/hasown-2.0.4.tgz",
2435
+ "integrity": "sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==",
2436
+ "dev": true,
2437
+ "license": "MIT",
2438
+ "dependencies": {
2439
+ "function-bind": "^1.1.2"
2440
+ },
2441
+ "engines": {
2442
+ "node": ">= 0.4"
2443
+ }
2444
+ },
2445
+ "node_modules/html-escaper": {
2446
+ "version": "2.0.2",
2447
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/html-escaper/-/html-escaper-2.0.2.tgz",
2448
+ "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==",
2449
+ "dev": true,
2450
+ "license": "MIT"
2451
+ },
2452
+ "node_modules/http-proxy-agent": {
2453
+ "version": "7.0.2",
2454
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz",
2455
+ "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==",
2456
+ "dev": true,
2457
+ "license": "MIT",
2458
+ "dependencies": {
2459
+ "agent-base": "^7.1.0",
2460
+ "debug": "^4.3.4"
2461
+ },
2462
+ "engines": {
2463
+ "node": ">= 14"
2464
+ }
2465
+ },
2466
+ "node_modules/https-proxy-agent": {
2467
+ "version": "7.0.6",
2468
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
2469
+ "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
2470
+ "dev": true,
2471
+ "license": "MIT",
2472
+ "dependencies": {
2473
+ "agent-base": "^7.1.2",
2474
+ "debug": "4"
2475
+ },
2476
+ "engines": {
2477
+ "node": ">= 14"
2478
+ }
2479
+ },
2480
+ "node_modules/human-signals": {
2481
+ "version": "2.1.0",
2482
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/human-signals/-/human-signals-2.1.0.tgz",
2483
+ "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
2484
+ "dev": true,
2485
+ "license": "Apache-2.0",
2486
+ "engines": {
2487
+ "node": ">=10.17.0"
2488
+ }
2489
+ },
2490
+ "node_modules/import-fresh": {
2491
+ "version": "3.3.1",
2492
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/import-fresh/-/import-fresh-3.3.1.tgz",
2493
+ "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
2494
+ "dev": true,
2495
+ "license": "MIT",
2496
+ "dependencies": {
2497
+ "parent-module": "^1.0.0",
2498
+ "resolve-from": "^4.0.0"
2499
+ },
2500
+ "engines": {
2501
+ "node": ">=6"
2502
+ },
2503
+ "funding": {
2504
+ "url": "https://github.com/sponsors/sindresorhus"
2505
+ }
2506
+ },
2507
+ "node_modules/import-fresh/node_modules/resolve-from": {
2508
+ "version": "4.0.0",
2509
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/resolve-from/-/resolve-from-4.0.0.tgz",
2510
+ "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
2511
+ "dev": true,
2512
+ "license": "MIT",
2513
+ "engines": {
2514
+ "node": ">=4"
2515
+ }
2516
+ },
2517
+ "node_modules/import-local": {
2518
+ "version": "3.2.0",
2519
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/import-local/-/import-local-3.2.0.tgz",
2520
+ "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==",
2521
+ "dev": true,
2522
+ "license": "MIT",
2523
+ "dependencies": {
2524
+ "pkg-dir": "^4.2.0",
2525
+ "resolve-cwd": "^3.0.0"
2526
+ },
2527
+ "bin": {
2528
+ "import-local-fixture": "fixtures/cli.js"
2529
+ },
2530
+ "engines": {
2531
+ "node": ">=8"
2532
+ },
2533
+ "funding": {
2534
+ "url": "https://github.com/sponsors/sindresorhus"
2535
+ }
2536
+ },
2537
+ "node_modules/imurmurhash": {
2538
+ "version": "0.1.4",
2539
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/imurmurhash/-/imurmurhash-0.1.4.tgz",
2540
+ "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
2541
+ "dev": true,
2542
+ "license": "MIT",
2543
+ "engines": {
2544
+ "node": ">=0.8.19"
2545
+ }
2546
+ },
2547
+ "node_modules/inflight": {
2548
+ "version": "1.0.6",
2549
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/inflight/-/inflight-1.0.6.tgz",
2550
+ "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
2551
+ "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
2552
+ "dev": true,
2553
+ "license": "ISC",
2554
+ "dependencies": {
2555
+ "once": "^1.3.0",
2556
+ "wrappy": "1"
2557
+ }
2558
+ },
2559
+ "node_modules/inherits": {
2560
+ "version": "2.0.4",
2561
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/inherits/-/inherits-2.0.4.tgz",
2562
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
2563
+ "dev": true,
2564
+ "license": "ISC"
2565
+ },
2566
+ "node_modules/ip-address": {
2567
+ "version": "10.5.0",
2568
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/ip-address/-/ip-address-10.5.0.tgz",
2569
+ "integrity": "sha512-R5SnVLJmgYYvf2F2ZgwSBnelz5G4q5AxIC277GDfUaNbrZKNANcBC7RHqYYePlszf4kBolVkJauG0ZjHHFh55g==",
2570
+ "dev": true,
2571
+ "license": "MIT",
2572
+ "engines": {
2573
+ "node": ">= 12"
2574
+ }
2575
+ },
2576
+ "node_modules/is-arrayish": {
2577
+ "version": "0.2.1",
2578
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/is-arrayish/-/is-arrayish-0.2.1.tgz",
2579
+ "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
2580
+ "dev": true,
2581
+ "license": "MIT"
2582
+ },
2583
+ "node_modules/is-core-module": {
2584
+ "version": "2.16.2",
2585
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/is-core-module/-/is-core-module-2.16.2.tgz",
2586
+ "integrity": "sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA==",
2587
+ "dev": true,
2588
+ "license": "MIT",
2589
+ "dependencies": {
2590
+ "hasown": "^2.0.3"
2591
+ },
2592
+ "engines": {
2593
+ "node": ">= 0.4"
2594
+ },
2595
+ "funding": {
2596
+ "url": "https://github.com/sponsors/ljharb"
2597
+ }
2598
+ },
2599
+ "node_modules/is-fullwidth-code-point": {
2600
+ "version": "3.0.0",
2601
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
2602
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
2603
+ "dev": true,
2604
+ "license": "MIT",
2605
+ "engines": {
2606
+ "node": ">=8"
2607
+ }
2608
+ },
2609
+ "node_modules/is-generator-fn": {
2610
+ "version": "2.1.0",
2611
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/is-generator-fn/-/is-generator-fn-2.1.0.tgz",
2612
+ "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==",
2613
+ "dev": true,
2614
+ "license": "MIT",
2615
+ "engines": {
2616
+ "node": ">=6"
2617
+ }
2618
+ },
2619
+ "node_modules/is-number": {
2620
+ "version": "7.0.0",
2621
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/is-number/-/is-number-7.0.0.tgz",
2622
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
2623
+ "dev": true,
2624
+ "license": "MIT",
2625
+ "engines": {
2626
+ "node": ">=0.12.0"
2627
+ }
2628
+ },
2629
+ "node_modules/is-stream": {
2630
+ "version": "2.0.1",
2631
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/is-stream/-/is-stream-2.0.1.tgz",
2632
+ "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
2633
+ "dev": true,
2634
+ "license": "MIT",
2635
+ "engines": {
2636
+ "node": ">=8"
2637
+ },
2638
+ "funding": {
2639
+ "url": "https://github.com/sponsors/sindresorhus"
2640
+ }
2641
+ },
2642
+ "node_modules/isexe": {
2643
+ "version": "2.0.0",
2644
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/isexe/-/isexe-2.0.0.tgz",
2645
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
2646
+ "dev": true,
2647
+ "license": "ISC"
2648
+ },
2649
+ "node_modules/istanbul-lib-coverage": {
2650
+ "version": "3.2.2",
2651
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz",
2652
+ "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==",
2653
+ "dev": true,
2654
+ "license": "BSD-3-Clause",
2655
+ "engines": {
2656
+ "node": ">=8"
2657
+ }
2658
+ },
2659
+ "node_modules/istanbul-lib-instrument": {
2660
+ "version": "6.0.3",
2661
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz",
2662
+ "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==",
2663
+ "dev": true,
2664
+ "license": "BSD-3-Clause",
2665
+ "dependencies": {
2666
+ "@babel/core": "^7.23.9",
2667
+ "@babel/parser": "^7.23.9",
2668
+ "@istanbuljs/schema": "^0.1.3",
2669
+ "istanbul-lib-coverage": "^3.2.0",
2670
+ "semver": "^7.5.4"
2671
+ },
2672
+ "engines": {
2673
+ "node": ">=10"
2674
+ }
2675
+ },
2676
+ "node_modules/istanbul-lib-instrument/node_modules/semver": {
2677
+ "version": "7.8.5",
2678
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/semver/-/semver-7.8.5.tgz",
2679
+ "integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==",
2680
+ "dev": true,
2681
+ "license": "ISC",
2682
+ "bin": {
2683
+ "semver": "bin/semver.js"
2684
+ },
2685
+ "engines": {
2686
+ "node": ">=10"
2687
+ }
2688
+ },
2689
+ "node_modules/istanbul-lib-report": {
2690
+ "version": "3.0.1",
2691
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz",
2692
+ "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==",
2693
+ "dev": true,
2694
+ "license": "BSD-3-Clause",
2695
+ "dependencies": {
2696
+ "istanbul-lib-coverage": "^3.0.0",
2697
+ "make-dir": "^4.0.0",
2698
+ "supports-color": "^7.1.0"
2699
+ },
2700
+ "engines": {
2701
+ "node": ">=10"
2702
+ }
2703
+ },
2704
+ "node_modules/istanbul-lib-source-maps": {
2705
+ "version": "4.0.1",
2706
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz",
2707
+ "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==",
2708
+ "dev": true,
2709
+ "license": "BSD-3-Clause",
2710
+ "dependencies": {
2711
+ "debug": "^4.1.1",
2712
+ "istanbul-lib-coverage": "^3.0.0",
2713
+ "source-map": "^0.6.1"
2714
+ },
2715
+ "engines": {
2716
+ "node": ">=10"
2717
+ }
2718
+ },
2719
+ "node_modules/istanbul-reports": {
2720
+ "version": "3.2.0",
2721
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/istanbul-reports/-/istanbul-reports-3.2.0.tgz",
2722
+ "integrity": "sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==",
2723
+ "dev": true,
2724
+ "license": "BSD-3-Clause",
2725
+ "dependencies": {
2726
+ "html-escaper": "^2.0.0",
2727
+ "istanbul-lib-report": "^3.0.0"
2728
+ },
2729
+ "engines": {
2730
+ "node": ">=8"
2731
+ }
2732
+ },
2733
+ "node_modules/jest": {
2734
+ "version": "29.7.0",
2735
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/jest/-/jest-29.7.0.tgz",
2736
+ "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==",
2737
+ "dev": true,
2738
+ "license": "MIT",
2739
+ "dependencies": {
2740
+ "@jest/core": "^29.7.0",
2741
+ "@jest/types": "^29.6.3",
2742
+ "import-local": "^3.0.2",
2743
+ "jest-cli": "^29.7.0"
2744
+ },
2745
+ "bin": {
2746
+ "jest": "bin/jest.js"
2747
+ },
2748
+ "engines": {
2749
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2750
+ },
2751
+ "peerDependencies": {
2752
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
2753
+ },
2754
+ "peerDependenciesMeta": {
2755
+ "node-notifier": {
2756
+ "optional": true
2757
+ }
2758
+ }
2759
+ },
2760
+ "node_modules/jest-changed-files": {
2761
+ "version": "29.7.0",
2762
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/jest-changed-files/-/jest-changed-files-29.7.0.tgz",
2763
+ "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==",
2764
+ "dev": true,
2765
+ "license": "MIT",
2766
+ "dependencies": {
2767
+ "execa": "^5.0.0",
2768
+ "jest-util": "^29.7.0",
2769
+ "p-limit": "^3.1.0"
2770
+ },
2771
+ "engines": {
2772
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2773
+ }
2774
+ },
2775
+ "node_modules/jest-circus": {
2776
+ "version": "29.7.0",
2777
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/jest-circus/-/jest-circus-29.7.0.tgz",
2778
+ "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==",
2779
+ "dev": true,
2780
+ "license": "MIT",
2781
+ "dependencies": {
2782
+ "@jest/environment": "^29.7.0",
2783
+ "@jest/expect": "^29.7.0",
2784
+ "@jest/test-result": "^29.7.0",
2785
+ "@jest/types": "^29.6.3",
2786
+ "@types/node": "*",
2787
+ "chalk": "^4.0.0",
2788
+ "co": "^4.6.0",
2789
+ "dedent": "^1.0.0",
2790
+ "is-generator-fn": "^2.0.0",
2791
+ "jest-each": "^29.7.0",
2792
+ "jest-matcher-utils": "^29.7.0",
2793
+ "jest-message-util": "^29.7.0",
2794
+ "jest-runtime": "^29.7.0",
2795
+ "jest-snapshot": "^29.7.0",
2796
+ "jest-util": "^29.7.0",
2797
+ "p-limit": "^3.1.0",
2798
+ "pretty-format": "^29.7.0",
2799
+ "pure-rand": "^6.0.0",
2800
+ "slash": "^3.0.0",
2801
+ "stack-utils": "^2.0.3"
2802
+ },
2803
+ "engines": {
2804
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2805
+ }
2806
+ },
2807
+ "node_modules/jest-cli": {
2808
+ "version": "29.7.0",
2809
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/jest-cli/-/jest-cli-29.7.0.tgz",
2810
+ "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==",
2811
+ "dev": true,
2812
+ "license": "MIT",
2813
+ "dependencies": {
2814
+ "@jest/core": "^29.7.0",
2815
+ "@jest/test-result": "^29.7.0",
2816
+ "@jest/types": "^29.6.3",
2817
+ "chalk": "^4.0.0",
2818
+ "create-jest": "^29.7.0",
2819
+ "exit": "^0.1.2",
2820
+ "import-local": "^3.0.2",
2821
+ "jest-config": "^29.7.0",
2822
+ "jest-util": "^29.7.0",
2823
+ "jest-validate": "^29.7.0",
2824
+ "yargs": "^17.3.1"
2825
+ },
2826
+ "bin": {
2827
+ "jest": "bin/jest.js"
2828
+ },
2829
+ "engines": {
2830
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2831
+ },
2832
+ "peerDependencies": {
2833
+ "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
2834
+ },
2835
+ "peerDependenciesMeta": {
2836
+ "node-notifier": {
2837
+ "optional": true
2838
+ }
2839
+ }
2840
+ },
2841
+ "node_modules/jest-config": {
2842
+ "version": "29.7.0",
2843
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/jest-config/-/jest-config-29.7.0.tgz",
2844
+ "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==",
2845
+ "dev": true,
2846
+ "license": "MIT",
2847
+ "dependencies": {
2848
+ "@babel/core": "^7.11.6",
2849
+ "@jest/test-sequencer": "^29.7.0",
2850
+ "@jest/types": "^29.6.3",
2851
+ "babel-jest": "^29.7.0",
2852
+ "chalk": "^4.0.0",
2853
+ "ci-info": "^3.2.0",
2854
+ "deepmerge": "^4.2.2",
2855
+ "glob": "^7.1.3",
2856
+ "graceful-fs": "^4.2.9",
2857
+ "jest-circus": "^29.7.0",
2858
+ "jest-environment-node": "^29.7.0",
2859
+ "jest-get-type": "^29.6.3",
2860
+ "jest-regex-util": "^29.6.3",
2861
+ "jest-resolve": "^29.7.0",
2862
+ "jest-runner": "^29.7.0",
2863
+ "jest-util": "^29.7.0",
2864
+ "jest-validate": "^29.7.0",
2865
+ "micromatch": "^4.0.4",
2866
+ "parse-json": "^5.2.0",
2867
+ "pretty-format": "^29.7.0",
2868
+ "slash": "^3.0.0",
2869
+ "strip-json-comments": "^3.1.1"
2870
+ },
2871
+ "engines": {
2872
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2873
+ },
2874
+ "peerDependencies": {
2875
+ "@types/node": "*",
2876
+ "ts-node": ">=9.0.0"
2877
+ },
2878
+ "peerDependenciesMeta": {
2879
+ "@types/node": {
2880
+ "optional": true
2881
+ },
2882
+ "ts-node": {
2883
+ "optional": true
2884
+ }
2885
+ }
2886
+ },
2887
+ "node_modules/jest-diff": {
2888
+ "version": "29.7.0",
2889
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/jest-diff/-/jest-diff-29.7.0.tgz",
2890
+ "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==",
2891
+ "dev": true,
2892
+ "license": "MIT",
2893
+ "dependencies": {
2894
+ "chalk": "^4.0.0",
2895
+ "diff-sequences": "^29.6.3",
2896
+ "jest-get-type": "^29.6.3",
2897
+ "pretty-format": "^29.7.0"
2898
+ },
2899
+ "engines": {
2900
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2901
+ }
2902
+ },
2903
+ "node_modules/jest-docblock": {
2904
+ "version": "29.7.0",
2905
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/jest-docblock/-/jest-docblock-29.7.0.tgz",
2906
+ "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==",
2907
+ "dev": true,
2908
+ "license": "MIT",
2909
+ "dependencies": {
2910
+ "detect-newline": "^3.0.0"
2911
+ },
2912
+ "engines": {
2913
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2914
+ }
2915
+ },
2916
+ "node_modules/jest-each": {
2917
+ "version": "29.7.0",
2918
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/jest-each/-/jest-each-29.7.0.tgz",
2919
+ "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==",
2920
+ "dev": true,
2921
+ "license": "MIT",
2922
+ "dependencies": {
2923
+ "@jest/types": "^29.6.3",
2924
+ "chalk": "^4.0.0",
2925
+ "jest-get-type": "^29.6.3",
2926
+ "jest-util": "^29.7.0",
2927
+ "pretty-format": "^29.7.0"
2928
+ },
2929
+ "engines": {
2930
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2931
+ }
2932
+ },
2933
+ "node_modules/jest-environment-node": {
2934
+ "version": "29.7.0",
2935
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/jest-environment-node/-/jest-environment-node-29.7.0.tgz",
2936
+ "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==",
2937
+ "dev": true,
2938
+ "license": "MIT",
2939
+ "dependencies": {
2940
+ "@jest/environment": "^29.7.0",
2941
+ "@jest/fake-timers": "^29.7.0",
2942
+ "@jest/types": "^29.6.3",
2943
+ "@types/node": "*",
2944
+ "jest-mock": "^29.7.0",
2945
+ "jest-util": "^29.7.0"
2946
+ },
2947
+ "engines": {
2948
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2949
+ }
2950
+ },
2951
+ "node_modules/jest-get-type": {
2952
+ "version": "29.6.3",
2953
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/jest-get-type/-/jest-get-type-29.6.3.tgz",
2954
+ "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==",
2955
+ "dev": true,
2956
+ "license": "MIT",
2957
+ "engines": {
2958
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2959
+ }
2960
+ },
2961
+ "node_modules/jest-haste-map": {
2962
+ "version": "29.7.0",
2963
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/jest-haste-map/-/jest-haste-map-29.7.0.tgz",
2964
+ "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==",
2965
+ "dev": true,
2966
+ "license": "MIT",
2967
+ "dependencies": {
2968
+ "@jest/types": "^29.6.3",
2969
+ "@types/graceful-fs": "^4.1.3",
2970
+ "@types/node": "*",
2971
+ "anymatch": "^3.0.3",
2972
+ "fb-watchman": "^2.0.0",
2973
+ "graceful-fs": "^4.2.9",
2974
+ "jest-regex-util": "^29.6.3",
2975
+ "jest-util": "^29.7.0",
2976
+ "jest-worker": "^29.7.0",
2977
+ "micromatch": "^4.0.4",
2978
+ "walker": "^1.0.8"
2979
+ },
2980
+ "engines": {
2981
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2982
+ },
2983
+ "optionalDependencies": {
2984
+ "fsevents": "^2.3.2"
2985
+ }
2986
+ },
2987
+ "node_modules/jest-leak-detector": {
2988
+ "version": "29.7.0",
2989
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz",
2990
+ "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==",
2991
+ "dev": true,
2992
+ "license": "MIT",
2993
+ "dependencies": {
2994
+ "jest-get-type": "^29.6.3",
2995
+ "pretty-format": "^29.7.0"
2996
+ },
2997
+ "engines": {
2998
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
2999
+ }
3000
+ },
3001
+ "node_modules/jest-matcher-utils": {
3002
+ "version": "29.7.0",
3003
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz",
3004
+ "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==",
3005
+ "dev": true,
3006
+ "license": "MIT",
3007
+ "dependencies": {
3008
+ "chalk": "^4.0.0",
3009
+ "jest-diff": "^29.7.0",
3010
+ "jest-get-type": "^29.6.3",
3011
+ "pretty-format": "^29.7.0"
3012
+ },
3013
+ "engines": {
3014
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
3015
+ }
3016
+ },
3017
+ "node_modules/jest-message-util": {
3018
+ "version": "29.7.0",
3019
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/jest-message-util/-/jest-message-util-29.7.0.tgz",
3020
+ "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==",
3021
+ "dev": true,
3022
+ "license": "MIT",
3023
+ "dependencies": {
3024
+ "@babel/code-frame": "^7.12.13",
3025
+ "@jest/types": "^29.6.3",
3026
+ "@types/stack-utils": "^2.0.0",
3027
+ "chalk": "^4.0.0",
3028
+ "graceful-fs": "^4.2.9",
3029
+ "micromatch": "^4.0.4",
3030
+ "pretty-format": "^29.7.0",
3031
+ "slash": "^3.0.0",
3032
+ "stack-utils": "^2.0.3"
3033
+ },
3034
+ "engines": {
3035
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
3036
+ }
3037
+ },
3038
+ "node_modules/jest-mock": {
3039
+ "version": "29.7.0",
3040
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/jest-mock/-/jest-mock-29.7.0.tgz",
3041
+ "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==",
3042
+ "dev": true,
3043
+ "license": "MIT",
3044
+ "dependencies": {
3045
+ "@jest/types": "^29.6.3",
3046
+ "@types/node": "*",
3047
+ "jest-util": "^29.7.0"
3048
+ },
3049
+ "engines": {
3050
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
3051
+ }
3052
+ },
3053
+ "node_modules/jest-pnp-resolver": {
3054
+ "version": "1.2.3",
3055
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz",
3056
+ "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==",
3057
+ "dev": true,
3058
+ "license": "MIT",
3059
+ "engines": {
3060
+ "node": ">=6"
3061
+ },
3062
+ "peerDependencies": {
3063
+ "jest-resolve": "*"
3064
+ },
3065
+ "peerDependenciesMeta": {
3066
+ "jest-resolve": {
3067
+ "optional": true
3068
+ }
3069
+ }
3070
+ },
3071
+ "node_modules/jest-regex-util": {
3072
+ "version": "29.6.3",
3073
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/jest-regex-util/-/jest-regex-util-29.6.3.tgz",
3074
+ "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==",
3075
+ "dev": true,
3076
+ "license": "MIT",
3077
+ "engines": {
3078
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
3079
+ }
3080
+ },
3081
+ "node_modules/jest-resolve": {
3082
+ "version": "29.7.0",
3083
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/jest-resolve/-/jest-resolve-29.7.0.tgz",
3084
+ "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==",
3085
+ "dev": true,
3086
+ "license": "MIT",
3087
+ "dependencies": {
3088
+ "chalk": "^4.0.0",
3089
+ "graceful-fs": "^4.2.9",
3090
+ "jest-haste-map": "^29.7.0",
3091
+ "jest-pnp-resolver": "^1.2.2",
3092
+ "jest-util": "^29.7.0",
3093
+ "jest-validate": "^29.7.0",
3094
+ "resolve": "^1.20.0",
3095
+ "resolve.exports": "^2.0.0",
3096
+ "slash": "^3.0.0"
3097
+ },
3098
+ "engines": {
3099
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
3100
+ }
3101
+ },
3102
+ "node_modules/jest-resolve-dependencies": {
3103
+ "version": "29.7.0",
3104
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz",
3105
+ "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==",
3106
+ "dev": true,
3107
+ "license": "MIT",
3108
+ "dependencies": {
3109
+ "jest-regex-util": "^29.6.3",
3110
+ "jest-snapshot": "^29.7.0"
3111
+ },
3112
+ "engines": {
3113
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
3114
+ }
3115
+ },
3116
+ "node_modules/jest-runner": {
3117
+ "version": "29.7.0",
3118
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/jest-runner/-/jest-runner-29.7.0.tgz",
3119
+ "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==",
3120
+ "dev": true,
3121
+ "license": "MIT",
3122
+ "dependencies": {
3123
+ "@jest/console": "^29.7.0",
3124
+ "@jest/environment": "^29.7.0",
3125
+ "@jest/test-result": "^29.7.0",
3126
+ "@jest/transform": "^29.7.0",
3127
+ "@jest/types": "^29.6.3",
3128
+ "@types/node": "*",
3129
+ "chalk": "^4.0.0",
3130
+ "emittery": "^0.13.1",
3131
+ "graceful-fs": "^4.2.9",
3132
+ "jest-docblock": "^29.7.0",
3133
+ "jest-environment-node": "^29.7.0",
3134
+ "jest-haste-map": "^29.7.0",
3135
+ "jest-leak-detector": "^29.7.0",
3136
+ "jest-message-util": "^29.7.0",
3137
+ "jest-resolve": "^29.7.0",
3138
+ "jest-runtime": "^29.7.0",
3139
+ "jest-util": "^29.7.0",
3140
+ "jest-watcher": "^29.7.0",
3141
+ "jest-worker": "^29.7.0",
3142
+ "p-limit": "^3.1.0",
3143
+ "source-map-support": "0.5.13"
3144
+ },
3145
+ "engines": {
3146
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
3147
+ }
3148
+ },
3149
+ "node_modules/jest-runtime": {
3150
+ "version": "29.7.0",
3151
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/jest-runtime/-/jest-runtime-29.7.0.tgz",
3152
+ "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==",
3153
+ "dev": true,
3154
+ "license": "MIT",
3155
+ "dependencies": {
3156
+ "@jest/environment": "^29.7.0",
3157
+ "@jest/fake-timers": "^29.7.0",
3158
+ "@jest/globals": "^29.7.0",
3159
+ "@jest/source-map": "^29.6.3",
3160
+ "@jest/test-result": "^29.7.0",
3161
+ "@jest/transform": "^29.7.0",
3162
+ "@jest/types": "^29.6.3",
3163
+ "@types/node": "*",
3164
+ "chalk": "^4.0.0",
3165
+ "cjs-module-lexer": "^1.0.0",
3166
+ "collect-v8-coverage": "^1.0.0",
3167
+ "glob": "^7.1.3",
3168
+ "graceful-fs": "^4.2.9",
3169
+ "jest-haste-map": "^29.7.0",
3170
+ "jest-message-util": "^29.7.0",
3171
+ "jest-mock": "^29.7.0",
3172
+ "jest-regex-util": "^29.6.3",
3173
+ "jest-resolve": "^29.7.0",
3174
+ "jest-snapshot": "^29.7.0",
3175
+ "jest-util": "^29.7.0",
3176
+ "slash": "^3.0.0",
3177
+ "strip-bom": "^4.0.0"
3178
+ },
3179
+ "engines": {
3180
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
3181
+ }
3182
+ },
3183
+ "node_modules/jest-snapshot": {
3184
+ "version": "29.7.0",
3185
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/jest-snapshot/-/jest-snapshot-29.7.0.tgz",
3186
+ "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==",
3187
+ "dev": true,
3188
+ "license": "MIT",
3189
+ "dependencies": {
3190
+ "@babel/core": "^7.11.6",
3191
+ "@babel/generator": "^7.7.2",
3192
+ "@babel/plugin-syntax-jsx": "^7.7.2",
3193
+ "@babel/plugin-syntax-typescript": "^7.7.2",
3194
+ "@babel/types": "^7.3.3",
3195
+ "@jest/expect-utils": "^29.7.0",
3196
+ "@jest/transform": "^29.7.0",
3197
+ "@jest/types": "^29.6.3",
3198
+ "babel-preset-current-node-syntax": "^1.0.0",
3199
+ "chalk": "^4.0.0",
3200
+ "expect": "^29.7.0",
3201
+ "graceful-fs": "^4.2.9",
3202
+ "jest-diff": "^29.7.0",
3203
+ "jest-get-type": "^29.6.3",
3204
+ "jest-matcher-utils": "^29.7.0",
3205
+ "jest-message-util": "^29.7.0",
3206
+ "jest-util": "^29.7.0",
3207
+ "natural-compare": "^1.4.0",
3208
+ "pretty-format": "^29.7.0",
3209
+ "semver": "^7.5.3"
3210
+ },
3211
+ "engines": {
3212
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
3213
+ }
3214
+ },
3215
+ "node_modules/jest-snapshot/node_modules/semver": {
3216
+ "version": "7.8.5",
3217
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/semver/-/semver-7.8.5.tgz",
3218
+ "integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==",
3219
+ "dev": true,
3220
+ "license": "ISC",
3221
+ "bin": {
3222
+ "semver": "bin/semver.js"
3223
+ },
3224
+ "engines": {
3225
+ "node": ">=10"
3226
+ }
3227
+ },
3228
+ "node_modules/jest-util": {
3229
+ "version": "29.7.0",
3230
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/jest-util/-/jest-util-29.7.0.tgz",
3231
+ "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==",
3232
+ "dev": true,
3233
+ "license": "MIT",
3234
+ "dependencies": {
3235
+ "@jest/types": "^29.6.3",
3236
+ "@types/node": "*",
3237
+ "chalk": "^4.0.0",
3238
+ "ci-info": "^3.2.0",
3239
+ "graceful-fs": "^4.2.9",
3240
+ "picomatch": "^2.2.3"
3241
+ },
3242
+ "engines": {
3243
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
3244
+ }
3245
+ },
3246
+ "node_modules/jest-validate": {
3247
+ "version": "29.7.0",
3248
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/jest-validate/-/jest-validate-29.7.0.tgz",
3249
+ "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==",
3250
+ "dev": true,
3251
+ "license": "MIT",
3252
+ "dependencies": {
3253
+ "@jest/types": "^29.6.3",
3254
+ "camelcase": "^6.2.0",
3255
+ "chalk": "^4.0.0",
3256
+ "jest-get-type": "^29.6.3",
3257
+ "leven": "^3.1.0",
3258
+ "pretty-format": "^29.7.0"
3259
+ },
3260
+ "engines": {
3261
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
3262
+ }
3263
+ },
3264
+ "node_modules/jest-validate/node_modules/camelcase": {
3265
+ "version": "6.3.0",
3266
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/camelcase/-/camelcase-6.3.0.tgz",
3267
+ "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
3268
+ "dev": true,
3269
+ "license": "MIT",
3270
+ "engines": {
3271
+ "node": ">=10"
3272
+ },
3273
+ "funding": {
3274
+ "url": "https://github.com/sponsors/sindresorhus"
3275
+ }
3276
+ },
3277
+ "node_modules/jest-watcher": {
3278
+ "version": "29.7.0",
3279
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/jest-watcher/-/jest-watcher-29.7.0.tgz",
3280
+ "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==",
3281
+ "dev": true,
3282
+ "license": "MIT",
3283
+ "dependencies": {
3284
+ "@jest/test-result": "^29.7.0",
3285
+ "@jest/types": "^29.6.3",
3286
+ "@types/node": "*",
3287
+ "ansi-escapes": "^4.2.1",
3288
+ "chalk": "^4.0.0",
3289
+ "emittery": "^0.13.1",
3290
+ "jest-util": "^29.7.0",
3291
+ "string-length": "^4.0.1"
3292
+ },
3293
+ "engines": {
3294
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
3295
+ }
3296
+ },
3297
+ "node_modules/jest-worker": {
3298
+ "version": "29.7.0",
3299
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/jest-worker/-/jest-worker-29.7.0.tgz",
3300
+ "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==",
3301
+ "dev": true,
3302
+ "license": "MIT",
3303
+ "dependencies": {
3304
+ "@types/node": "*",
3305
+ "jest-util": "^29.7.0",
3306
+ "merge-stream": "^2.0.0",
3307
+ "supports-color": "^8.0.0"
3308
+ },
3309
+ "engines": {
3310
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
3311
+ }
3312
+ },
3313
+ "node_modules/jest-worker/node_modules/supports-color": {
3314
+ "version": "8.1.1",
3315
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/supports-color/-/supports-color-8.1.1.tgz",
3316
+ "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
3317
+ "dev": true,
3318
+ "license": "MIT",
3319
+ "dependencies": {
3320
+ "has-flag": "^4.0.0"
3321
+ },
3322
+ "engines": {
3323
+ "node": ">=10"
3324
+ },
3325
+ "funding": {
3326
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
3327
+ }
3328
+ },
3329
+ "node_modules/js-tokens": {
3330
+ "version": "4.0.0",
3331
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/js-tokens/-/js-tokens-4.0.0.tgz",
3332
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
3333
+ "dev": true,
3334
+ "license": "MIT"
3335
+ },
3336
+ "node_modules/js-yaml": {
3337
+ "version": "3.15.2",
3338
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/js-yaml/-/js-yaml-3.15.2.tgz",
3339
+ "integrity": "sha512-6EuL879VkRA+1Cz578mKMiKvjPNEuk6+r1JaFzoSWejZmtf7xWbIyw1e3KkxlkzTIt9Taw6JBhEppG7utc1P+w==",
3340
+ "dev": true,
3341
+ "license": "MIT",
3342
+ "dependencies": {
3343
+ "argparse": "^1.0.7",
3344
+ "esprima": "^4.0.0"
3345
+ },
3346
+ "bin": {
3347
+ "js-yaml": "bin/js-yaml.js"
3348
+ }
3349
+ },
3350
+ "node_modules/jsesc": {
3351
+ "version": "3.1.0",
3352
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/jsesc/-/jsesc-3.1.0.tgz",
3353
+ "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
3354
+ "dev": true,
3355
+ "license": "MIT",
3356
+ "bin": {
3357
+ "jsesc": "bin/jsesc"
3358
+ },
3359
+ "engines": {
3360
+ "node": ">=6"
3361
+ }
3362
+ },
3363
+ "node_modules/json-parse-even-better-errors": {
3364
+ "version": "2.3.1",
3365
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
3366
+ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
3367
+ "dev": true,
3368
+ "license": "MIT"
3369
+ },
3370
+ "node_modules/json5": {
3371
+ "version": "2.2.3",
3372
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/json5/-/json5-2.2.3.tgz",
3373
+ "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
3374
+ "dev": true,
3375
+ "license": "MIT",
3376
+ "bin": {
3377
+ "json5": "lib/cli.js"
3378
+ },
3379
+ "engines": {
3380
+ "node": ">=6"
3381
+ }
3382
+ },
3383
+ "node_modules/kleur": {
3384
+ "version": "3.0.3",
3385
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/kleur/-/kleur-3.0.3.tgz",
3386
+ "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
3387
+ "dev": true,
3388
+ "license": "MIT",
3389
+ "engines": {
3390
+ "node": ">=6"
3391
+ }
3392
+ },
3393
+ "node_modules/leven": {
3394
+ "version": "3.1.0",
3395
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/leven/-/leven-3.1.0.tgz",
3396
+ "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==",
3397
+ "dev": true,
3398
+ "license": "MIT",
3399
+ "engines": {
3400
+ "node": ">=6"
3401
+ }
3402
+ },
3403
+ "node_modules/lines-and-columns": {
3404
+ "version": "1.2.4",
3405
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
3406
+ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
3407
+ "dev": true,
3408
+ "license": "MIT"
3409
+ },
3410
+ "node_modules/locate-path": {
3411
+ "version": "5.0.0",
3412
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/locate-path/-/locate-path-5.0.0.tgz",
3413
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
3414
+ "dev": true,
3415
+ "license": "MIT",
3416
+ "dependencies": {
3417
+ "p-locate": "^4.1.0"
3418
+ },
3419
+ "engines": {
3420
+ "node": ">=8"
3421
+ }
3422
+ },
3423
+ "node_modules/lru-cache": {
3424
+ "version": "5.1.1",
3425
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/lru-cache/-/lru-cache-5.1.1.tgz",
3426
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
3427
+ "dev": true,
3428
+ "license": "ISC",
3429
+ "dependencies": {
3430
+ "yallist": "^3.0.2"
3431
+ }
3432
+ },
3433
+ "node_modules/make-dir": {
3434
+ "version": "4.0.0",
3435
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/make-dir/-/make-dir-4.0.0.tgz",
3436
+ "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==",
3437
+ "dev": true,
3438
+ "license": "MIT",
3439
+ "dependencies": {
3440
+ "semver": "^7.5.3"
3441
+ },
3442
+ "engines": {
3443
+ "node": ">=10"
3444
+ },
3445
+ "funding": {
3446
+ "url": "https://github.com/sponsors/sindresorhus"
3447
+ }
3448
+ },
3449
+ "node_modules/make-dir/node_modules/semver": {
3450
+ "version": "7.8.5",
3451
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/semver/-/semver-7.8.5.tgz",
3452
+ "integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==",
3453
+ "dev": true,
3454
+ "license": "ISC",
3455
+ "bin": {
3456
+ "semver": "bin/semver.js"
3457
+ },
3458
+ "engines": {
3459
+ "node": ">=10"
3460
+ }
3461
+ },
3462
+ "node_modules/makeerror": {
3463
+ "version": "1.0.12",
3464
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/makeerror/-/makeerror-1.0.12.tgz",
3465
+ "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==",
3466
+ "dev": true,
3467
+ "license": "BSD-3-Clause",
3468
+ "dependencies": {
3469
+ "tmpl": "1.0.5"
3470
+ }
3471
+ },
3472
+ "node_modules/merge-stream": {
3473
+ "version": "2.0.0",
3474
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/merge-stream/-/merge-stream-2.0.0.tgz",
3475
+ "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
3476
+ "dev": true,
3477
+ "license": "MIT"
3478
+ },
3479
+ "node_modules/micromatch": {
3480
+ "version": "4.0.8",
3481
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/micromatch/-/micromatch-4.0.8.tgz",
3482
+ "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
3483
+ "dev": true,
3484
+ "license": "MIT",
3485
+ "dependencies": {
3486
+ "braces": "^3.0.3",
3487
+ "picomatch": "^2.3.1"
3488
+ },
3489
+ "engines": {
3490
+ "node": ">=8.6"
3491
+ }
3492
+ },
3493
+ "node_modules/mimic-fn": {
3494
+ "version": "2.1.0",
3495
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/mimic-fn/-/mimic-fn-2.1.0.tgz",
3496
+ "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
3497
+ "dev": true,
3498
+ "license": "MIT",
3499
+ "engines": {
3500
+ "node": ">=6"
3501
+ }
3502
+ },
3503
+ "node_modules/minimatch": {
3504
+ "version": "3.1.5",
3505
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/minimatch/-/minimatch-3.1.5.tgz",
3506
+ "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==",
3507
+ "dev": true,
3508
+ "license": "ISC",
3509
+ "dependencies": {
3510
+ "brace-expansion": "^1.1.7"
3511
+ },
3512
+ "engines": {
3513
+ "node": "*"
3514
+ }
3515
+ },
3516
+ "node_modules/minipass": {
3517
+ "version": "7.1.3",
3518
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/minipass/-/minipass-7.1.3.tgz",
3519
+ "integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==",
3520
+ "dev": true,
3521
+ "license": "BlueOak-1.0.0",
3522
+ "engines": {
3523
+ "node": ">=16 || 14 >=14.17"
3524
+ }
3525
+ },
3526
+ "node_modules/mitt": {
3527
+ "version": "3.0.1",
3528
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/mitt/-/mitt-3.0.1.tgz",
3529
+ "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==",
3530
+ "dev": true,
3531
+ "license": "MIT"
3532
+ },
3533
+ "node_modules/ms": {
3534
+ "version": "2.1.3",
3535
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/ms/-/ms-2.1.3.tgz",
3536
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
3537
+ "dev": true,
3538
+ "license": "MIT"
3539
+ },
3540
+ "node_modules/natural-compare": {
3541
+ "version": "1.4.0",
3542
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/natural-compare/-/natural-compare-1.4.0.tgz",
3543
+ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
3544
+ "dev": true,
3545
+ "license": "MIT"
3546
+ },
3547
+ "node_modules/netmask": {
3548
+ "version": "2.1.1",
3549
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/netmask/-/netmask-2.1.1.tgz",
3550
+ "integrity": "sha512-eonl3sLUha+S1GzTPxychyhnUzKyeQkZ7jLjKrBagJgPla13F+uQ71HgpFefyHgqrjEbCPkDArxYsjY8/+gLKA==",
3551
+ "dev": true,
3552
+ "license": "MIT",
3553
+ "engines": {
3554
+ "node": ">= 0.4.0"
3555
+ }
3556
+ },
3557
+ "node_modules/node-int64": {
3558
+ "version": "0.4.0",
3559
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/node-int64/-/node-int64-0.4.0.tgz",
3560
+ "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==",
3561
+ "dev": true,
3562
+ "license": "MIT"
3563
+ },
3564
+ "node_modules/node-releases": {
3565
+ "version": "2.0.53",
3566
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/node-releases/-/node-releases-2.0.53.tgz",
3567
+ "integrity": "sha512-D9UOmYG3UH1V+ENW56t5QXBwJw1YEY18ruVeus89Rw+SyIgjPkCO84bRzO3uNIYosJbNwiabWVn48o3uJLjxFQ==",
3568
+ "dev": true,
3569
+ "license": "MIT",
3570
+ "engines": {
3571
+ "node": ">=18"
3572
+ }
3573
+ },
3574
+ "node_modules/normalize-path": {
3575
+ "version": "3.0.0",
3576
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/normalize-path/-/normalize-path-3.0.0.tgz",
3577
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
3578
+ "dev": true,
3579
+ "license": "MIT",
3580
+ "engines": {
3581
+ "node": ">=0.10.0"
3582
+ }
3583
+ },
3584
+ "node_modules/npm-run-path": {
3585
+ "version": "4.0.1",
3586
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/npm-run-path/-/npm-run-path-4.0.1.tgz",
3587
+ "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
3588
+ "dev": true,
3589
+ "license": "MIT",
3590
+ "dependencies": {
3591
+ "path-key": "^3.0.0"
3592
+ },
3593
+ "engines": {
3594
+ "node": ">=8"
3595
+ }
3596
+ },
3597
+ "node_modules/once": {
3598
+ "version": "1.4.0",
3599
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/once/-/once-1.4.0.tgz",
3600
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
3601
+ "dev": true,
3602
+ "license": "ISC",
3603
+ "dependencies": {
3604
+ "wrappy": "1"
3605
+ }
3606
+ },
3607
+ "node_modules/onetime": {
3608
+ "version": "5.1.2",
3609
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/onetime/-/onetime-5.1.2.tgz",
3610
+ "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
3611
+ "dev": true,
3612
+ "license": "MIT",
3613
+ "dependencies": {
3614
+ "mimic-fn": "^2.1.0"
3615
+ },
3616
+ "engines": {
3617
+ "node": ">=6"
3618
+ },
3619
+ "funding": {
3620
+ "url": "https://github.com/sponsors/sindresorhus"
3621
+ }
3622
+ },
3623
+ "node_modules/p-limit": {
3624
+ "version": "3.1.0",
3625
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/p-limit/-/p-limit-3.1.0.tgz",
3626
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
3627
+ "dev": true,
3628
+ "license": "MIT",
3629
+ "dependencies": {
3630
+ "yocto-queue": "^0.1.0"
3631
+ },
3632
+ "engines": {
3633
+ "node": ">=10"
3634
+ },
3635
+ "funding": {
3636
+ "url": "https://github.com/sponsors/sindresorhus"
3637
+ }
3638
+ },
3639
+ "node_modules/p-locate": {
3640
+ "version": "4.1.0",
3641
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/p-locate/-/p-locate-4.1.0.tgz",
3642
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
3643
+ "dev": true,
3644
+ "license": "MIT",
3645
+ "dependencies": {
3646
+ "p-limit": "^2.2.0"
3647
+ },
3648
+ "engines": {
3649
+ "node": ">=8"
3650
+ }
3651
+ },
3652
+ "node_modules/p-locate/node_modules/p-limit": {
3653
+ "version": "2.3.0",
3654
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/p-limit/-/p-limit-2.3.0.tgz",
3655
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
3656
+ "dev": true,
3657
+ "license": "MIT",
3658
+ "dependencies": {
3659
+ "p-try": "^2.0.0"
3660
+ },
3661
+ "engines": {
3662
+ "node": ">=6"
3663
+ },
3664
+ "funding": {
3665
+ "url": "https://github.com/sponsors/sindresorhus"
3666
+ }
3667
+ },
3668
+ "node_modules/p-try": {
3669
+ "version": "2.2.0",
3670
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/p-try/-/p-try-2.2.0.tgz",
3671
+ "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
3672
+ "dev": true,
3673
+ "license": "MIT",
3674
+ "engines": {
3675
+ "node": ">=6"
3676
+ }
3677
+ },
3678
+ "node_modules/pac-proxy-agent": {
3679
+ "version": "7.2.0",
3680
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/pac-proxy-agent/-/pac-proxy-agent-7.2.0.tgz",
3681
+ "integrity": "sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==",
3682
+ "dev": true,
3683
+ "license": "MIT",
3684
+ "dependencies": {
3685
+ "@tootallnate/quickjs-emscripten": "^0.23.0",
3686
+ "agent-base": "^7.1.2",
3687
+ "debug": "^4.3.4",
3688
+ "get-uri": "^6.0.1",
3689
+ "http-proxy-agent": "^7.0.0",
3690
+ "https-proxy-agent": "^7.0.6",
3691
+ "pac-resolver": "^7.0.1",
3692
+ "socks-proxy-agent": "^8.0.5"
3693
+ },
3694
+ "engines": {
3695
+ "node": ">= 14"
3696
+ }
3697
+ },
3698
+ "node_modules/pac-resolver": {
3699
+ "version": "7.0.1",
3700
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/pac-resolver/-/pac-resolver-7.0.1.tgz",
3701
+ "integrity": "sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==",
3702
+ "dev": true,
3703
+ "license": "MIT",
3704
+ "dependencies": {
3705
+ "degenerator": "^5.0.0",
3706
+ "netmask": "^2.0.2"
3707
+ },
3708
+ "engines": {
3709
+ "node": ">= 14"
3710
+ }
3711
+ },
3712
+ "node_modules/package-json-from-dist": {
3713
+ "version": "1.0.1",
3714
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
3715
+ "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
3716
+ "dev": true,
3717
+ "license": "BlueOak-1.0.0"
3718
+ },
3719
+ "node_modules/parent-module": {
3720
+ "version": "1.0.1",
3721
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/parent-module/-/parent-module-1.0.1.tgz",
3722
+ "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
3723
+ "dev": true,
3724
+ "license": "MIT",
3725
+ "dependencies": {
3726
+ "callsites": "^3.0.0"
3727
+ },
3728
+ "engines": {
3729
+ "node": ">=6"
3730
+ }
3731
+ },
3732
+ "node_modules/parse-json": {
3733
+ "version": "5.2.0",
3734
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/parse-json/-/parse-json-5.2.0.tgz",
3735
+ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
3736
+ "dev": true,
3737
+ "license": "MIT",
3738
+ "dependencies": {
3739
+ "@babel/code-frame": "^7.0.0",
3740
+ "error-ex": "^1.3.1",
3741
+ "json-parse-even-better-errors": "^2.3.0",
3742
+ "lines-and-columns": "^1.1.6"
3743
+ },
3744
+ "engines": {
3745
+ "node": ">=8"
3746
+ },
3747
+ "funding": {
3748
+ "url": "https://github.com/sponsors/sindresorhus"
3749
+ }
3750
+ },
3751
+ "node_modules/path-exists": {
3752
+ "version": "4.0.0",
3753
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/path-exists/-/path-exists-4.0.0.tgz",
3754
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
3755
+ "dev": true,
3756
+ "license": "MIT",
3757
+ "engines": {
3758
+ "node": ">=8"
3759
+ }
3760
+ },
3761
+ "node_modules/path-is-absolute": {
3762
+ "version": "1.0.1",
3763
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
3764
+ "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
3765
+ "dev": true,
3766
+ "license": "MIT",
3767
+ "engines": {
3768
+ "node": ">=0.10.0"
3769
+ }
3770
+ },
3771
+ "node_modules/path-key": {
3772
+ "version": "3.1.1",
3773
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/path-key/-/path-key-3.1.1.tgz",
3774
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
3775
+ "dev": true,
3776
+ "license": "MIT",
3777
+ "engines": {
3778
+ "node": ">=8"
3779
+ }
3780
+ },
3781
+ "node_modules/path-parse": {
3782
+ "version": "1.0.7",
3783
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/path-parse/-/path-parse-1.0.7.tgz",
3784
+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
3785
+ "dev": true,
3786
+ "license": "MIT"
3787
+ },
3788
+ "node_modules/path-scurry": {
3789
+ "version": "2.0.2",
3790
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/path-scurry/-/path-scurry-2.0.2.tgz",
3791
+ "integrity": "sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==",
3792
+ "dev": true,
3793
+ "license": "BlueOak-1.0.0",
3794
+ "dependencies": {
3795
+ "lru-cache": "^11.0.0",
3796
+ "minipass": "^7.1.2"
3797
+ },
3798
+ "engines": {
3799
+ "node": "18 || 20 || >=22"
3800
+ },
3801
+ "funding": {
3802
+ "url": "https://github.com/sponsors/isaacs"
3803
+ }
3804
+ },
3805
+ "node_modules/path-scurry/node_modules/lru-cache": {
3806
+ "version": "11.5.2",
3807
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/lru-cache/-/lru-cache-11.5.2.tgz",
3808
+ "integrity": "sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==",
3809
+ "dev": true,
3810
+ "license": "BlueOak-1.0.0",
3811
+ "engines": {
3812
+ "node": "20 || >=22"
3813
+ }
3814
+ },
3815
+ "node_modules/pend": {
3816
+ "version": "1.2.0",
3817
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/pend/-/pend-1.2.0.tgz",
3818
+ "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==",
3819
+ "dev": true,
3820
+ "license": "MIT"
3821
+ },
3822
+ "node_modules/picocolors": {
3823
+ "version": "1.1.1",
3824
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/picocolors/-/picocolors-1.1.1.tgz",
3825
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
3826
+ "dev": true,
3827
+ "license": "ISC"
3828
+ },
3829
+ "node_modules/picomatch": {
3830
+ "version": "2.3.2",
3831
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/picomatch/-/picomatch-2.3.2.tgz",
3832
+ "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==",
3833
+ "dev": true,
3834
+ "license": "MIT",
3835
+ "engines": {
3836
+ "node": ">=8.6"
3837
+ },
3838
+ "funding": {
3839
+ "url": "https://github.com/sponsors/jonschlinkert"
3840
+ }
3841
+ },
3842
+ "node_modules/pirates": {
3843
+ "version": "4.0.7",
3844
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/pirates/-/pirates-4.0.7.tgz",
3845
+ "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==",
3846
+ "dev": true,
3847
+ "license": "MIT",
3848
+ "engines": {
3849
+ "node": ">= 6"
3850
+ }
3851
+ },
3852
+ "node_modules/pkg-dir": {
3853
+ "version": "4.2.0",
3854
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/pkg-dir/-/pkg-dir-4.2.0.tgz",
3855
+ "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
3856
+ "dev": true,
3857
+ "license": "MIT",
3858
+ "dependencies": {
3859
+ "find-up": "^4.0.0"
3860
+ },
3861
+ "engines": {
3862
+ "node": ">=8"
3863
+ }
3864
+ },
3865
+ "node_modules/pretty-format": {
3866
+ "version": "29.7.0",
3867
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/pretty-format/-/pretty-format-29.7.0.tgz",
3868
+ "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==",
3869
+ "dev": true,
3870
+ "license": "MIT",
3871
+ "dependencies": {
3872
+ "@jest/schemas": "^29.6.3",
3873
+ "ansi-styles": "^5.0.0",
3874
+ "react-is": "^18.0.0"
3875
+ },
3876
+ "engines": {
3877
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
3878
+ }
3879
+ },
3880
+ "node_modules/pretty-format/node_modules/ansi-styles": {
3881
+ "version": "5.2.0",
3882
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/ansi-styles/-/ansi-styles-5.2.0.tgz",
3883
+ "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
3884
+ "dev": true,
3885
+ "license": "MIT",
3886
+ "engines": {
3887
+ "node": ">=10"
3888
+ },
3889
+ "funding": {
3890
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
3891
+ }
3892
+ },
3893
+ "node_modules/progress": {
3894
+ "version": "2.0.3",
3895
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/progress/-/progress-2.0.3.tgz",
3896
+ "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==",
3897
+ "dev": true,
3898
+ "license": "MIT",
3899
+ "engines": {
3900
+ "node": ">=0.4.0"
3901
+ }
3902
+ },
3903
+ "node_modules/prompts": {
3904
+ "version": "2.4.2",
3905
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/prompts/-/prompts-2.4.2.tgz",
3906
+ "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
3907
+ "dev": true,
3908
+ "license": "MIT",
3909
+ "dependencies": {
3910
+ "kleur": "^3.0.3",
3911
+ "sisteransi": "^1.0.5"
3912
+ },
3913
+ "engines": {
3914
+ "node": ">= 6"
3915
+ }
3916
+ },
3917
+ "node_modules/proxy-agent": {
3918
+ "version": "6.5.0",
3919
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/proxy-agent/-/proxy-agent-6.5.0.tgz",
3920
+ "integrity": "sha512-TmatMXdr2KlRiA2CyDu8GqR8EjahTG3aY3nXjdzFyoZbmB8hrBsTyMezhULIXKnC0jpfjlmiZ3+EaCzoInSu/A==",
3921
+ "dev": true,
3922
+ "license": "MIT",
3923
+ "dependencies": {
3924
+ "agent-base": "^7.1.2",
3925
+ "debug": "^4.3.4",
3926
+ "http-proxy-agent": "^7.0.1",
3927
+ "https-proxy-agent": "^7.0.6",
3928
+ "lru-cache": "^7.14.1",
3929
+ "pac-proxy-agent": "^7.1.0",
3930
+ "proxy-from-env": "^1.1.0",
3931
+ "socks-proxy-agent": "^8.0.5"
3932
+ },
3933
+ "engines": {
3934
+ "node": ">= 14"
3935
+ }
3936
+ },
3937
+ "node_modules/proxy-agent/node_modules/lru-cache": {
3938
+ "version": "7.18.3",
3939
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/lru-cache/-/lru-cache-7.18.3.tgz",
3940
+ "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==",
3941
+ "dev": true,
3942
+ "license": "ISC",
3943
+ "engines": {
3944
+ "node": ">=12"
3945
+ }
3946
+ },
3947
+ "node_modules/proxy-from-env": {
3948
+ "version": "1.1.0",
3949
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
3950
+ "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
3951
+ "dev": true,
3952
+ "license": "MIT"
3953
+ },
3954
+ "node_modules/pump": {
3955
+ "version": "3.0.4",
3956
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/pump/-/pump-3.0.4.tgz",
3957
+ "integrity": "sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==",
3958
+ "dev": true,
3959
+ "license": "MIT",
3960
+ "dependencies": {
3961
+ "end-of-stream": "^1.1.0",
3962
+ "once": "^1.3.1"
3963
+ }
3964
+ },
3965
+ "node_modules/puppeteer": {
3966
+ "version": "24.43.1",
3967
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/puppeteer/-/puppeteer-24.43.1.tgz",
3968
+ "integrity": "sha512-/FSOViCrqRdb1HDocpsM9Z1giA71gTQPUt3SpHGVRALKAy/rJr1fLFYZW9F23qPxqVxTHQnbh/5B5opJST3kAw==",
3969
+ "dev": true,
3970
+ "hasInstallScript": true,
3971
+ "license": "Apache-2.0",
3972
+ "dependencies": {
3973
+ "@puppeteer/browsers": "2.13.2",
3974
+ "chromium-bidi": "14.0.0",
3975
+ "cosmiconfig": "^9.0.0",
3976
+ "devtools-protocol": "0.0.1608973",
3977
+ "puppeteer-core": "24.43.1",
3978
+ "typed-query-selector": "^2.12.2"
3979
+ },
3980
+ "bin": {
3981
+ "puppeteer": "lib/cjs/puppeteer/node/cli.js"
3982
+ },
3983
+ "engines": {
3984
+ "node": ">=18"
3985
+ }
3986
+ },
3987
+ "node_modules/puppeteer-core": {
3988
+ "version": "24.43.1",
3989
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/puppeteer-core/-/puppeteer-core-24.43.1.tgz",
3990
+ "integrity": "sha512-T5ScUMAsmhdNbgDR41AGESYeS6V9MSgetkSnVhhW+gXvzC42VesKCn5ld87gAZDJ6vLHL9GkRvY9WtQWSnwFbw==",
3991
+ "dev": true,
3992
+ "license": "Apache-2.0",
3993
+ "dependencies": {
3994
+ "@puppeteer/browsers": "2.13.2",
3995
+ "chromium-bidi": "14.0.0",
3996
+ "debug": "^4.4.3",
3997
+ "devtools-protocol": "0.0.1608973",
3998
+ "typed-query-selector": "^2.12.2",
3999
+ "webdriver-bidi-protocol": "0.4.1",
4000
+ "ws": "^8.20.0"
4001
+ },
4002
+ "engines": {
4003
+ "node": ">=18"
4004
+ }
4005
+ },
4006
+ "node_modules/pure-rand": {
4007
+ "version": "6.1.0",
4008
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/pure-rand/-/pure-rand-6.1.0.tgz",
4009
+ "integrity": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==",
4010
+ "dev": true,
4011
+ "funding": [
4012
+ {
4013
+ "type": "individual",
4014
+ "url": "https://github.com/sponsors/dubzzz"
4015
+ },
4016
+ {
4017
+ "type": "opencollective",
4018
+ "url": "https://opencollective.com/fast-check"
4019
+ }
4020
+ ],
4021
+ "license": "MIT"
4022
+ },
4023
+ "node_modules/react-is": {
4024
+ "version": "18.3.1",
4025
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/react-is/-/react-is-18.3.1.tgz",
4026
+ "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
4027
+ "dev": true,
4028
+ "license": "MIT"
4029
+ },
4030
+ "node_modules/require-directory": {
4031
+ "version": "2.1.1",
4032
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/require-directory/-/require-directory-2.1.1.tgz",
4033
+ "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
4034
+ "dev": true,
4035
+ "license": "MIT",
4036
+ "engines": {
4037
+ "node": ">=0.10.0"
4038
+ }
4039
+ },
4040
+ "node_modules/resolve": {
4041
+ "version": "1.22.12",
4042
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/resolve/-/resolve-1.22.12.tgz",
4043
+ "integrity": "sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==",
4044
+ "dev": true,
4045
+ "license": "MIT",
4046
+ "dependencies": {
4047
+ "es-errors": "^1.3.0",
4048
+ "is-core-module": "^2.16.1",
4049
+ "path-parse": "^1.0.7",
4050
+ "supports-preserve-symlinks-flag": "^1.0.0"
4051
+ },
4052
+ "bin": {
4053
+ "resolve": "bin/resolve"
4054
+ },
4055
+ "engines": {
4056
+ "node": ">= 0.4"
4057
+ },
4058
+ "funding": {
4059
+ "url": "https://github.com/sponsors/ljharb"
4060
+ }
4061
+ },
4062
+ "node_modules/resolve-cwd": {
4063
+ "version": "3.0.0",
4064
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/resolve-cwd/-/resolve-cwd-3.0.0.tgz",
4065
+ "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==",
4066
+ "dev": true,
4067
+ "license": "MIT",
4068
+ "dependencies": {
4069
+ "resolve-from": "^5.0.0"
4070
+ },
4071
+ "engines": {
4072
+ "node": ">=8"
4073
+ }
4074
+ },
4075
+ "node_modules/resolve-from": {
4076
+ "version": "5.0.0",
4077
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/resolve-from/-/resolve-from-5.0.0.tgz",
4078
+ "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
4079
+ "dev": true,
4080
+ "license": "MIT",
4081
+ "engines": {
4082
+ "node": ">=8"
4083
+ }
4084
+ },
4085
+ "node_modules/resolve.exports": {
4086
+ "version": "2.0.3",
4087
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/resolve.exports/-/resolve.exports-2.0.3.tgz",
4088
+ "integrity": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==",
4089
+ "dev": true,
4090
+ "license": "MIT",
4091
+ "engines": {
4092
+ "node": ">=10"
4093
+ }
4094
+ },
4095
+ "node_modules/rimraf": {
4096
+ "version": "6.1.3",
4097
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/rimraf/-/rimraf-6.1.3.tgz",
4098
+ "integrity": "sha512-LKg+Cr2ZF61fkcaK1UdkH2yEBBKnYjTyWzTJT6KNPcSPaiT7HSdhtMXQuN5wkTX0Xu72KQ1l8S42rlmexS2hSA==",
4099
+ "dev": true,
4100
+ "license": "BlueOak-1.0.0",
4101
+ "dependencies": {
4102
+ "glob": "^13.0.3",
4103
+ "package-json-from-dist": "^1.0.1"
4104
+ },
4105
+ "bin": {
4106
+ "rimraf": "dist/esm/bin.mjs"
4107
+ },
4108
+ "engines": {
4109
+ "node": "20 || >=22"
4110
+ },
4111
+ "funding": {
4112
+ "url": "https://github.com/sponsors/isaacs"
4113
+ }
4114
+ },
4115
+ "node_modules/rimraf/node_modules/balanced-match": {
4116
+ "version": "4.0.4",
4117
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/balanced-match/-/balanced-match-4.0.4.tgz",
4118
+ "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
4119
+ "dev": true,
4120
+ "license": "MIT",
4121
+ "engines": {
4122
+ "node": "18 || 20 || >=22"
4123
+ }
4124
+ },
4125
+ "node_modules/rimraf/node_modules/brace-expansion": {
4126
+ "version": "5.0.9",
4127
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/brace-expansion/-/brace-expansion-5.0.9.tgz",
4128
+ "integrity": "sha512-ScQ4IuvIEF1TMlP7Zt+vjJ//9zlPb2SDcxWxM3bk8s6t6GGdJ7KO1dCcTidOPJKePW30LE/2cT7wCyPho9/Wxg==",
4129
+ "dev": true,
4130
+ "license": "MIT",
4131
+ "dependencies": {
4132
+ "balanced-match": "^4.0.2"
4133
+ },
4134
+ "engines": {
4135
+ "node": "20 || >=22"
4136
+ }
4137
+ },
4138
+ "node_modules/rimraf/node_modules/glob": {
4139
+ "version": "13.0.6",
4140
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/glob/-/glob-13.0.6.tgz",
4141
+ "integrity": "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==",
4142
+ "dev": true,
4143
+ "license": "BlueOak-1.0.0",
4144
+ "dependencies": {
4145
+ "minimatch": "^10.2.2",
4146
+ "minipass": "^7.1.3",
4147
+ "path-scurry": "^2.0.2"
4148
+ },
4149
+ "engines": {
4150
+ "node": "18 || 20 || >=22"
4151
+ },
4152
+ "funding": {
4153
+ "url": "https://github.com/sponsors/isaacs"
4154
+ }
4155
+ },
4156
+ "node_modules/rimraf/node_modules/minimatch": {
4157
+ "version": "10.2.6",
4158
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/minimatch/-/minimatch-10.2.6.tgz",
4159
+ "integrity": "sha512-vpLQEs+VLCr1nU0BXS07maYoFwlDAH0gngQuuttxIwutDFEMHq2blX+8vpgxDdK3J1PwjCJiep77OitTZ4Ll1A==",
4160
+ "dev": true,
4161
+ "license": "BlueOak-1.0.0",
4162
+ "dependencies": {
4163
+ "brace-expansion": "^5.0.8"
4164
+ },
4165
+ "engines": {
4166
+ "node": "18 || 20 || >=22"
4167
+ },
4168
+ "funding": {
4169
+ "url": "https://github.com/sponsors/isaacs"
4170
+ }
4171
+ },
4172
+ "node_modules/semver": {
4173
+ "version": "6.3.1",
4174
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/semver/-/semver-6.3.1.tgz",
4175
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
4176
+ "dev": true,
4177
+ "license": "ISC",
4178
+ "bin": {
4179
+ "semver": "bin/semver.js"
4180
+ }
4181
+ },
4182
+ "node_modules/shebang-command": {
4183
+ "version": "2.0.0",
4184
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/shebang-command/-/shebang-command-2.0.0.tgz",
4185
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
4186
+ "dev": true,
4187
+ "license": "MIT",
4188
+ "dependencies": {
4189
+ "shebang-regex": "^3.0.0"
4190
+ },
4191
+ "engines": {
4192
+ "node": ">=8"
4193
+ }
4194
+ },
4195
+ "node_modules/shebang-regex": {
4196
+ "version": "3.0.0",
4197
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/shebang-regex/-/shebang-regex-3.0.0.tgz",
4198
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
4199
+ "dev": true,
4200
+ "license": "MIT",
4201
+ "engines": {
4202
+ "node": ">=8"
4203
+ }
4204
+ },
4205
+ "node_modules/signal-exit": {
4206
+ "version": "3.0.7",
4207
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/signal-exit/-/signal-exit-3.0.7.tgz",
4208
+ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
4209
+ "dev": true,
4210
+ "license": "ISC"
4211
+ },
4212
+ "node_modules/sisteransi": {
4213
+ "version": "1.0.5",
4214
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/sisteransi/-/sisteransi-1.0.5.tgz",
4215
+ "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
4216
+ "dev": true,
4217
+ "license": "MIT"
4218
+ },
4219
+ "node_modules/slash": {
4220
+ "version": "3.0.0",
4221
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/slash/-/slash-3.0.0.tgz",
4222
+ "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
4223
+ "dev": true,
4224
+ "license": "MIT",
4225
+ "engines": {
4226
+ "node": ">=8"
4227
+ }
4228
+ },
4229
+ "node_modules/smart-buffer": {
4230
+ "version": "4.2.0",
4231
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/smart-buffer/-/smart-buffer-4.2.0.tgz",
4232
+ "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==",
4233
+ "dev": true,
4234
+ "license": "MIT",
4235
+ "engines": {
4236
+ "node": ">= 6.0.0",
4237
+ "npm": ">= 3.0.0"
4238
+ }
4239
+ },
4240
+ "node_modules/socks": {
4241
+ "version": "2.8.9",
4242
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/socks/-/socks-2.8.9.tgz",
4243
+ "integrity": "sha512-LJhUYUvItdQ0LkJTmPeaEObWXAqFyfmP85x0tch/ez9cahmhlBBLbIqDFnvBnUJGagb0JbIQrkBs1wJ+yRYpEw==",
4244
+ "dev": true,
4245
+ "license": "MIT",
4246
+ "dependencies": {
4247
+ "ip-address": "^10.1.1",
4248
+ "smart-buffer": "^4.2.0"
4249
+ },
4250
+ "engines": {
4251
+ "node": ">= 10.0.0",
4252
+ "npm": ">= 3.0.0"
4253
+ }
4254
+ },
4255
+ "node_modules/socks-proxy-agent": {
4256
+ "version": "8.0.5",
4257
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/socks-proxy-agent/-/socks-proxy-agent-8.0.5.tgz",
4258
+ "integrity": "sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==",
4259
+ "dev": true,
4260
+ "license": "MIT",
4261
+ "dependencies": {
4262
+ "agent-base": "^7.1.2",
4263
+ "debug": "^4.3.4",
4264
+ "socks": "^2.8.3"
4265
+ },
4266
+ "engines": {
4267
+ "node": ">= 14"
4268
+ }
4269
+ },
4270
+ "node_modules/source-map": {
4271
+ "version": "0.6.1",
4272
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/source-map/-/source-map-0.6.1.tgz",
4273
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
4274
+ "dev": true,
4275
+ "license": "BSD-3-Clause",
4276
+ "engines": {
4277
+ "node": ">=0.10.0"
4278
+ }
4279
+ },
4280
+ "node_modules/source-map-support": {
4281
+ "version": "0.5.13",
4282
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/source-map-support/-/source-map-support-0.5.13.tgz",
4283
+ "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==",
4284
+ "dev": true,
4285
+ "license": "MIT",
4286
+ "dependencies": {
4287
+ "buffer-from": "^1.0.0",
4288
+ "source-map": "^0.6.0"
4289
+ }
4290
+ },
4291
+ "node_modules/sprintf-js": {
4292
+ "version": "1.0.3",
4293
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/sprintf-js/-/sprintf-js-1.0.3.tgz",
4294
+ "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==",
4295
+ "dev": true,
4296
+ "license": "BSD-3-Clause"
4297
+ },
4298
+ "node_modules/stack-utils": {
4299
+ "version": "2.0.6",
4300
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/stack-utils/-/stack-utils-2.0.6.tgz",
4301
+ "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==",
4302
+ "dev": true,
4303
+ "license": "MIT",
4304
+ "dependencies": {
4305
+ "escape-string-regexp": "^2.0.0"
4306
+ },
4307
+ "engines": {
4308
+ "node": ">=10"
4309
+ }
4310
+ },
4311
+ "node_modules/streamx": {
4312
+ "version": "2.28.0",
4313
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/streamx/-/streamx-2.28.0.tgz",
4314
+ "integrity": "sha512-1Yowhzjf0ivGMrTIkY9hav5TxobO9qIVqUE41fiCGMGgc3CLlf4MY+9AHmZqBWgDTue0fY9zWjYFVyf6Diuobw==",
4315
+ "dev": true,
4316
+ "license": "MIT",
4317
+ "dependencies": {
4318
+ "events-universal": "^1.0.0",
4319
+ "fast-fifo": "^1.3.2",
4320
+ "text-decoder": "^1.1.0"
4321
+ }
4322
+ },
4323
+ "node_modules/string-length": {
4324
+ "version": "4.0.2",
4325
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/string-length/-/string-length-4.0.2.tgz",
4326
+ "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==",
4327
+ "dev": true,
4328
+ "license": "MIT",
4329
+ "dependencies": {
4330
+ "char-regex": "^1.0.2",
4331
+ "strip-ansi": "^6.0.0"
4332
+ },
4333
+ "engines": {
4334
+ "node": ">=10"
4335
+ }
4336
+ },
4337
+ "node_modules/string-width": {
4338
+ "version": "4.2.3",
4339
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/string-width/-/string-width-4.2.3.tgz",
4340
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
4341
+ "dev": true,
4342
+ "license": "MIT",
4343
+ "dependencies": {
4344
+ "emoji-regex": "^8.0.0",
4345
+ "is-fullwidth-code-point": "^3.0.0",
4346
+ "strip-ansi": "^6.0.1"
4347
+ },
4348
+ "engines": {
4349
+ "node": ">=8"
4350
+ }
4351
+ },
4352
+ "node_modules/strip-ansi": {
4353
+ "version": "6.0.1",
4354
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/strip-ansi/-/strip-ansi-6.0.1.tgz",
4355
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
4356
+ "dev": true,
4357
+ "license": "MIT",
4358
+ "dependencies": {
4359
+ "ansi-regex": "^5.0.1"
4360
+ },
4361
+ "engines": {
4362
+ "node": ">=8"
4363
+ }
4364
+ },
4365
+ "node_modules/strip-bom": {
4366
+ "version": "4.0.0",
4367
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/strip-bom/-/strip-bom-4.0.0.tgz",
4368
+ "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==",
4369
+ "dev": true,
4370
+ "license": "MIT",
4371
+ "engines": {
4372
+ "node": ">=8"
4373
+ }
4374
+ },
4375
+ "node_modules/strip-final-newline": {
4376
+ "version": "2.0.0",
4377
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
4378
+ "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
4379
+ "dev": true,
4380
+ "license": "MIT",
4381
+ "engines": {
4382
+ "node": ">=6"
4383
+ }
4384
+ },
4385
+ "node_modules/strip-json-comments": {
4386
+ "version": "3.1.1",
4387
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
4388
+ "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
4389
+ "dev": true,
4390
+ "license": "MIT",
4391
+ "engines": {
4392
+ "node": ">=8"
4393
+ },
4394
+ "funding": {
4395
+ "url": "https://github.com/sponsors/sindresorhus"
4396
+ }
4397
+ },
4398
+ "node_modules/supports-color": {
4399
+ "version": "7.2.0",
4400
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/supports-color/-/supports-color-7.2.0.tgz",
4401
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
4402
+ "dev": true,
4403
+ "license": "MIT",
4404
+ "dependencies": {
4405
+ "has-flag": "^4.0.0"
4406
+ },
4407
+ "engines": {
4408
+ "node": ">=8"
4409
+ }
4410
+ },
4411
+ "node_modules/supports-preserve-symlinks-flag": {
4412
+ "version": "1.0.0",
4413
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
4414
+ "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
4415
+ "dev": true,
4416
+ "license": "MIT",
4417
+ "engines": {
4418
+ "node": ">= 0.4"
4419
+ },
4420
+ "funding": {
4421
+ "url": "https://github.com/sponsors/ljharb"
4422
+ }
4423
+ },
4424
+ "node_modules/tar-fs": {
4425
+ "version": "3.1.3",
4426
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/tar-fs/-/tar-fs-3.1.3.tgz",
4427
+ "integrity": "sha512-/hU4AXnIdZu+Gvl1pk0oI5f5HxWsCJRtY2aFaJdk9VvyL48DWU6iU5WAIPG+wIi1YvWA6eTJvIviP/tMAZZNwQ==",
4428
+ "dev": true,
4429
+ "license": "MIT",
4430
+ "dependencies": {
4431
+ "pump": "^3.0.0",
4432
+ "tar-stream": "^3.1.5"
4433
+ },
4434
+ "optionalDependencies": {
4435
+ "bare-fs": "^4.0.1",
4436
+ "bare-path": "^3.0.0"
4437
+ }
4438
+ },
4439
+ "node_modules/tar-stream": {
4440
+ "version": "3.2.0",
4441
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/tar-stream/-/tar-stream-3.2.0.tgz",
4442
+ "integrity": "sha512-ojzvCvVaNp6aOTFmG7jaRD0meowIAuPc3cMMhSgKiVWws1GyHbGd/xvnyuRKcKlMpt3qvxx6r0hreCNITP9hIg==",
4443
+ "dev": true,
4444
+ "license": "MIT",
4445
+ "dependencies": {
4446
+ "b4a": "^1.6.4",
4447
+ "bare-fs": "^4.5.5",
4448
+ "fast-fifo": "^1.2.0",
4449
+ "streamx": "^2.15.0"
4450
+ }
4451
+ },
4452
+ "node_modules/teex": {
4453
+ "version": "1.0.1",
4454
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/teex/-/teex-1.0.1.tgz",
4455
+ "integrity": "sha512-eYE6iEI62Ni1H8oIa7KlDU6uQBtqr4Eajni3wX7rpfXD8ysFx8z0+dri+KWEPWpBsxXfxu58x/0jvTVT1ekOSg==",
4456
+ "dev": true,
4457
+ "license": "MIT",
4458
+ "dependencies": {
4459
+ "streamx": "^2.12.5"
4460
+ }
4461
+ },
4462
+ "node_modules/test-exclude": {
4463
+ "version": "6.0.0",
4464
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/test-exclude/-/test-exclude-6.0.0.tgz",
4465
+ "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==",
4466
+ "dev": true,
4467
+ "license": "ISC",
4468
+ "dependencies": {
4469
+ "@istanbuljs/schema": "^0.1.2",
4470
+ "glob": "^7.1.4",
4471
+ "minimatch": "^3.0.4"
4472
+ },
4473
+ "engines": {
4474
+ "node": ">=8"
4475
+ }
4476
+ },
4477
+ "node_modules/text-decoder": {
4478
+ "version": "1.2.7",
4479
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/text-decoder/-/text-decoder-1.2.7.tgz",
4480
+ "integrity": "sha512-vlLytXkeP4xvEq2otHeJfSQIRyWxo/oZGEbXrtEEF9Hnmrdly59sUbzZ/QgyWuLYHctCHxFF4tRQZNQ9k60ExQ==",
4481
+ "dev": true,
4482
+ "license": "Apache-2.0",
4483
+ "dependencies": {
4484
+ "b4a": "^1.6.4"
4485
+ }
4486
+ },
4487
+ "node_modules/tmpl": {
4488
+ "version": "1.0.5",
4489
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/tmpl/-/tmpl-1.0.5.tgz",
4490
+ "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==",
4491
+ "dev": true,
4492
+ "license": "BSD-3-Clause"
4493
+ },
4494
+ "node_modules/to-regex-range": {
4495
+ "version": "5.0.1",
4496
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/to-regex-range/-/to-regex-range-5.0.1.tgz",
4497
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
4498
+ "dev": true,
4499
+ "license": "MIT",
4500
+ "dependencies": {
4501
+ "is-number": "^7.0.0"
4502
+ },
4503
+ "engines": {
4504
+ "node": ">=8.0"
4505
+ }
4506
+ },
4507
+ "node_modules/tslib": {
4508
+ "version": "2.8.1",
4509
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/tslib/-/tslib-2.8.1.tgz",
4510
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
4511
+ "dev": true,
4512
+ "license": "0BSD"
4513
+ },
4514
+ "node_modules/type-detect": {
4515
+ "version": "4.0.8",
4516
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/type-detect/-/type-detect-4.0.8.tgz",
4517
+ "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==",
4518
+ "dev": true,
4519
+ "license": "MIT",
4520
+ "engines": {
4521
+ "node": ">=4"
4522
+ }
4523
+ },
4524
+ "node_modules/type-fest": {
4525
+ "version": "0.21.3",
4526
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/type-fest/-/type-fest-0.21.3.tgz",
4527
+ "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
4528
+ "dev": true,
4529
+ "license": "(MIT OR CC0-1.0)",
4530
+ "engines": {
4531
+ "node": ">=10"
4532
+ },
4533
+ "funding": {
4534
+ "url": "https://github.com/sponsors/sindresorhus"
4535
+ }
4536
+ },
4537
+ "node_modules/typed-query-selector": {
4538
+ "version": "2.12.2",
4539
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/typed-query-selector/-/typed-query-selector-2.12.2.tgz",
4540
+ "integrity": "sha512-EOPFbyIub4ngnEdqi2yOcNeDLaX/0jcE1JoAXQDDMIthap7FoN795lc/SHfIq2d416VufXpM8z/lD+WRm2gfOQ==",
4541
+ "dev": true,
4542
+ "license": "MIT"
4543
+ },
4544
+ "node_modules/undici-types": {
4545
+ "version": "8.3.0",
4546
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/undici-types/-/undici-types-8.3.0.tgz",
4547
+ "integrity": "sha512-j375ScV60dom+YkPFIfTLcOiPxkN/buHz5GobjLhixFuANaNs3C9l4GmrWqejgXWJ7BbJcFYpTEUkS1Ge8bpZQ==",
4548
+ "dev": true,
4549
+ "license": "MIT"
4550
+ },
4551
+ "node_modules/update-browserslist-db": {
4552
+ "version": "1.3.1",
4553
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/update-browserslist-db/-/update-browserslist-db-1.3.1.tgz",
4554
+ "integrity": "sha512-ZZ61DsRsOnakl74HAmp3oSN4aXUmEWXf+i/yv0h7tIBfICc3VdrFErQKUUKPgu3AMsTUMbcongALEN4l6GSUrQ==",
4555
+ "dev": true,
4556
+ "funding": [
4557
+ {
4558
+ "type": "opencollective",
4559
+ "url": "https://opencollective.com/browserslist"
4560
+ },
4561
+ {
4562
+ "type": "tidelift",
4563
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
4564
+ },
4565
+ {
4566
+ "type": "github",
4567
+ "url": "https://github.com/sponsors/ai"
4568
+ }
4569
+ ],
4570
+ "license": "MIT",
4571
+ "dependencies": {
4572
+ "escalade": "^3.2.0",
4573
+ "picocolors": "^1.1.1"
4574
+ },
4575
+ "bin": {
4576
+ "update-browserslist-db": "cli.js"
4577
+ },
4578
+ "peerDependencies": {
4579
+ "browserslist": ">= 4.21.0"
4580
+ }
4581
+ },
4582
+ "node_modules/v8-to-istanbul": {
4583
+ "version": "9.3.0",
4584
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz",
4585
+ "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==",
4586
+ "dev": true,
4587
+ "license": "ISC",
4588
+ "dependencies": {
4589
+ "@jridgewell/trace-mapping": "^0.3.12",
4590
+ "@types/istanbul-lib-coverage": "^2.0.1",
4591
+ "convert-source-map": "^2.0.0"
4592
+ },
4593
+ "engines": {
4594
+ "node": ">=10.12.0"
4595
+ }
4596
+ },
4597
+ "node_modules/walker": {
4598
+ "version": "1.0.8",
4599
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/walker/-/walker-1.0.8.tgz",
4600
+ "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==",
4601
+ "dev": true,
4602
+ "license": "Apache-2.0",
4603
+ "dependencies": {
4604
+ "makeerror": "1.0.12"
4605
+ }
4606
+ },
4607
+ "node_modules/webdriver-bidi-protocol": {
4608
+ "version": "0.4.1",
4609
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/webdriver-bidi-protocol/-/webdriver-bidi-protocol-0.4.1.tgz",
4610
+ "integrity": "sha512-ARrjNjtWRRs2w4Tk7nqrf2gBI0QXWuOmMCx2hU+1jUt6d00MjMxURrhxhGbrsoiZKJrhTSTzbIrc554iKI10qw==",
4611
+ "dev": true,
4612
+ "license": "Apache-2.0"
4613
+ },
4614
+ "node_modules/which": {
4615
+ "version": "2.0.2",
4616
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/which/-/which-2.0.2.tgz",
4617
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
4618
+ "dev": true,
4619
+ "license": "ISC",
4620
+ "dependencies": {
4621
+ "isexe": "^2.0.0"
4622
+ },
4623
+ "bin": {
4624
+ "node-which": "bin/node-which"
4625
+ },
4626
+ "engines": {
4627
+ "node": ">= 8"
4628
+ }
4629
+ },
4630
+ "node_modules/wrap-ansi": {
4631
+ "version": "7.0.0",
4632
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
4633
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
4634
+ "dev": true,
4635
+ "license": "MIT",
4636
+ "dependencies": {
4637
+ "ansi-styles": "^4.0.0",
4638
+ "string-width": "^4.1.0",
4639
+ "strip-ansi": "^6.0.0"
4640
+ },
4641
+ "engines": {
4642
+ "node": ">=10"
4643
+ },
4644
+ "funding": {
4645
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
4646
+ }
4647
+ },
4648
+ "node_modules/wrappy": {
4649
+ "version": "1.0.2",
4650
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/wrappy/-/wrappy-1.0.2.tgz",
4651
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
4652
+ "dev": true,
4653
+ "license": "ISC"
4654
+ },
4655
+ "node_modules/write-file-atomic": {
4656
+ "version": "4.0.2",
4657
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/write-file-atomic/-/write-file-atomic-4.0.2.tgz",
4658
+ "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==",
4659
+ "dev": true,
4660
+ "license": "ISC",
4661
+ "dependencies": {
4662
+ "imurmurhash": "^0.1.4",
4663
+ "signal-exit": "^3.0.7"
4664
+ },
4665
+ "engines": {
4666
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
4667
+ }
4668
+ },
4669
+ "node_modules/ws": {
4670
+ "version": "8.21.3",
4671
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/ws/-/ws-8.21.3.tgz",
4672
+ "integrity": "sha512-201TZ/kPWxoPr/OKWjquZR1SWKXcvxdH+e1xrx89b3YbmzLMFCLfnaG1HFIgWzJOEWZ7MvpK++odZufgYR50Rw==",
4673
+ "dev": true,
4674
+ "license": "MIT",
4675
+ "engines": {
4676
+ "node": ">=10.0.0"
4677
+ },
4678
+ "peerDependencies": {
4679
+ "bufferutil": "^4.0.1",
4680
+ "utf-8-validate": ">=5.0.2"
4681
+ },
4682
+ "peerDependenciesMeta": {
4683
+ "bufferutil": {
4684
+ "optional": true
4685
+ },
4686
+ "utf-8-validate": {
4687
+ "optional": true
4688
+ }
4689
+ }
4690
+ },
4691
+ "node_modules/y18n": {
4692
+ "version": "5.0.8",
4693
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/y18n/-/y18n-5.0.8.tgz",
4694
+ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
4695
+ "dev": true,
4696
+ "license": "ISC",
4697
+ "engines": {
4698
+ "node": ">=10"
4699
+ }
4700
+ },
4701
+ "node_modules/yallist": {
4702
+ "version": "3.1.1",
4703
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/yallist/-/yallist-3.1.1.tgz",
4704
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
4705
+ "dev": true,
4706
+ "license": "ISC"
4707
+ },
4708
+ "node_modules/yargs": {
4709
+ "version": "17.7.3",
4710
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/yargs/-/yargs-17.7.3.tgz",
4711
+ "integrity": "sha512-GZtjxm/J/4TSxuL3FNYjCmLktBTnIw/rVmKSIyKeYAZpmJB2ig9VauCC5xsa82GNKVKDAqpOn3KVzNt0zmrU0g==",
4712
+ "dev": true,
4713
+ "license": "MIT",
4714
+ "dependencies": {
4715
+ "cliui": "^8.0.1",
4716
+ "escalade": "^3.1.1",
4717
+ "get-caller-file": "^2.0.5",
4718
+ "require-directory": "^2.1.1",
4719
+ "string-width": "^4.2.3",
4720
+ "y18n": "^5.0.5",
4721
+ "yargs-parser": "^21.1.1"
4722
+ },
4723
+ "engines": {
4724
+ "node": ">=12"
4725
+ }
4726
+ },
4727
+ "node_modules/yargs-parser": {
4728
+ "version": "21.1.1",
4729
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/yargs-parser/-/yargs-parser-21.1.1.tgz",
4730
+ "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
4731
+ "dev": true,
4732
+ "license": "ISC",
4733
+ "engines": {
4734
+ "node": ">=12"
4735
+ }
4736
+ },
4737
+ "node_modules/yauzl": {
4738
+ "version": "2.10.0",
4739
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/yauzl/-/yauzl-2.10.0.tgz",
4740
+ "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==",
4741
+ "dev": true,
4742
+ "license": "MIT",
4743
+ "dependencies": {
4744
+ "buffer-crc32": "~0.2.3",
4745
+ "fd-slicer": "~1.1.0"
4746
+ }
4747
+ },
4748
+ "node_modules/yocto-queue": {
4749
+ "version": "0.1.0",
4750
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/yocto-queue/-/yocto-queue-0.1.0.tgz",
4751
+ "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
4752
+ "dev": true,
4753
+ "license": "MIT",
4754
+ "engines": {
4755
+ "node": ">=10"
4756
+ },
4757
+ "funding": {
4758
+ "url": "https://github.com/sponsors/sindresorhus"
4759
+ }
4760
+ },
4761
+ "node_modules/zod": {
4762
+ "version": "3.25.76",
4763
+ "resolved": "https://artifactory.coxautoinc.com/artifactory/api/npm/ddc-npm/zod/-/zod-3.25.76.tgz",
4764
+ "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
4765
+ "dev": true,
4766
+ "license": "MIT",
4767
+ "funding": {
4768
+ "url": "https://github.com/sponsors/colinhacks"
4769
+ }
4770
+ }
4771
+ }
4772
+ }