record-replay-req-res-scenario 13.1.20 → 16.0.1
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.
- package/README.md +3 -3
- package/assets/shared/shared_folder_info.txt +7 -0
- package/bin/record-replay-req-res-scenario +10 -10
- package/bin/record-replay-req-res-scenario-debug +10 -10
- package/bin/record-replay-req-res-scenario-debug-brk +10 -10
- package/bin/start.js +1 -1
- package/browser/README.md +24 -24
- package/{client/esm2020 → browser/esm2022}/lib/index.mjs +2 -2
- package/browser/{esm2020 → esm2022}/lib/record-replay-req-res-scenario.mjs +2 -2
- package/{client/fesm2015 → browser/fesm2022}/record-replay-req-res-scenario.mjs +4 -2
- package/browser/{fesm2015 → fesm2022}/record-replay-req-res-scenario.mjs.map +1 -1
- package/browser/lib/record-replay-req-res-scenario.d.ts +3 -3
- package/browser/package.json +6 -12
- package/client/README.md +24 -24
- package/{browser/esm2020 → client/esm2022}/lib/index.mjs +2 -2
- package/client/{esm2020 → esm2022}/lib/record-replay-req-res-scenario.mjs +2 -2
- package/client/{fesm2020 → fesm2022}/record-replay-req-res-scenario.mjs +4 -2
- package/{browser/fesm2020 → client/fesm2022}/record-replay-req-res-scenario.mjs.map +1 -1
- package/client/lib/record-replay-req-res-scenario.d.ts +3 -3
- package/client/package.json +296 -25
- package/index.js.map +1 -1
- package/lib/index.js.map +1 -1
- package/lib/record-replay-req-res-scenario.d.ts +3 -3
- package/lib/record-replay-req-res-scenario.js +14 -11
- package/lib/record-replay-req-res-scenario.js.map +1 -1
- package/lib/scenario.backend.d.ts +5 -5
- package/lib/scenario.backend.js +1 -2
- package/lib/scenario.backend.js.map +1 -1
- package/lib/start.backend.js.map +1 -1
- package/lib/tape.backend.js.map +1 -1
- package/package.json +42 -6
- package/package.json_devDependencies.json +223 -223
- package/package.json_tnp.json5 +42 -38
- package/tmp-environment.json +228 -206
- package/websql/README.md +24 -24
- package/websql/{esm2020 → esm2022}/lib/index.mjs +2 -2
- package/websql/{esm2020 → esm2022}/lib/record-replay-req-res-scenario.mjs +2 -2
- package/{browser/fesm2015 → websql/fesm2022}/record-replay-req-res-scenario.mjs +4 -2
- package/websql/{fesm2015 → fesm2022}/record-replay-req-res-scenario.mjs.map +1 -1
- package/websql/lib/record-replay-req-res-scenario.d.ts +3 -3
- package/websql/package.json +6 -12
- package/app.d.ts +0 -0
- package/app.js +0 -6
- package/app.js.map +0 -1
- package/browser/fesm2020/record-replay-req-res-scenario.mjs +0 -28
- package/client/fesm2015/record-replay-req-res-scenario.mjs.map +0 -1
- package/client/fesm2020/record-replay-req-res-scenario.mjs.map +0 -1
- package/websql/fesm2015/record-replay-req-res-scenario.mjs +0 -28
- package/websql/fesm2020/record-replay-req-res-scenario.mjs +0 -28
- package/websql/fesm2020/record-replay-req-res-scenario.mjs.map +0 -1
- /package/browser/{esm2020 → esm2022}/public-api.mjs +0 -0
- /package/browser/{esm2020 → esm2022}/record-replay-req-res-scenario.mjs +0 -0
- /package/browser/{record-replay-req-res-scenario.d.ts → index.d.ts} +0 -0
- /package/client/{esm2020 → esm2022}/public-api.mjs +0 -0
- /package/client/{esm2020 → esm2022}/record-replay-req-res-scenario.mjs +0 -0
- /package/client/{record-replay-req-res-scenario.d.ts → index.d.ts} +0 -0
- /package/websql/{esm2020 → esm2022}/public-api.mjs +0 -0
- /package/websql/{esm2020 → esm2022}/record-replay-req-res-scenario.mjs +0 -0
- /package/websql/{record-replay-req-res-scenario.d.ts → index.d.ts} +0 -0
package/tmp-environment.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"domain": "record-replay-req-res-scenario.example.domain.com",
|
|
3
|
-
"
|
|
3
|
+
"isCoreProject": false,
|
|
4
4
|
"ip": "localhost",
|
|
5
5
|
"packageJSON": {
|
|
6
6
|
"tnp": {
|
|
@@ -15,7 +15,8 @@
|
|
|
15
15
|
"tnp-helpers"
|
|
16
16
|
],
|
|
17
17
|
"dependencies": {},
|
|
18
|
-
"linkedFolders": []
|
|
18
|
+
"linkedFolders": [],
|
|
19
|
+
"npmFixes": []
|
|
19
20
|
},
|
|
20
21
|
"linkedProjects": [],
|
|
21
22
|
"smartContainerBuildTarget": "",
|
|
@@ -23,14 +24,15 @@
|
|
|
23
24
|
"libReleaseOptions": {
|
|
24
25
|
"nodts": false,
|
|
25
26
|
"obscure": false,
|
|
26
|
-
"ugly": false
|
|
27
|
+
"ugly": false,
|
|
28
|
+
"includeNodeModules": false
|
|
27
29
|
},
|
|
28
30
|
"smartContainerTarget": "",
|
|
29
31
|
"type": "isomorphic-lib",
|
|
30
32
|
"isCoreProject": false,
|
|
31
33
|
"useFramework": false,
|
|
32
34
|
"required": [],
|
|
33
|
-
"version": "
|
|
35
|
+
"version": "v4",
|
|
34
36
|
"isGenerated": false,
|
|
35
37
|
"requiredServers": [],
|
|
36
38
|
"license": "UNLICENSED",
|
|
@@ -39,12 +41,11 @@
|
|
|
39
41
|
"workerPlugins": {}
|
|
40
42
|
},
|
|
41
43
|
"name": "record-replay-req-res-scenario",
|
|
42
|
-
"version": "
|
|
44
|
+
"version": "16.0.1",
|
|
43
45
|
"license": "UNLICENSED",
|
|
44
|
-
"main": "index.js",
|
|
45
46
|
"dependencies": {
|
|
46
|
-
"ng-talkback": "~
|
|
47
|
-
"tnp-helpers": "~
|
|
47
|
+
"ng-talkback": "~16.0.1",
|
|
48
|
+
"tnp-helpers": "~16.0.6"
|
|
48
49
|
},
|
|
49
50
|
"private": false,
|
|
50
51
|
"bin": {
|
|
@@ -52,249 +53,270 @@
|
|
|
52
53
|
"record-replay-req-res-scenario-debug": "bin/record-replay-req-res-scenario-debug",
|
|
53
54
|
"record-replay-req-res-scenario-debug-brk": "bin/record-replay-req-res-scenario-debug-brk"
|
|
54
55
|
},
|
|
55
|
-
"lastBuildTagHash": "
|
|
56
|
+
"lastBuildTagHash": "d1af66f8afcecc9f1b532112715b068e149204c4",
|
|
56
57
|
"devDependencies": {
|
|
57
|
-
"@angular-devkit/build-angular": "~
|
|
58
|
-
"@angular-devkit/core": "~
|
|
59
|
-
"@angular/
|
|
60
|
-
"@angular/
|
|
61
|
-
"@angular/
|
|
62
|
-
"@angular/
|
|
63
|
-
"@angular/
|
|
64
|
-
"@angular/
|
|
65
|
-
"@angular/
|
|
66
|
-
"@angular/
|
|
67
|
-
"@angular/
|
|
68
|
-
"@angular/
|
|
69
|
-
"@angular/
|
|
70
|
-
"@angular/
|
|
71
|
-
"@angular/
|
|
72
|
-
"@angular/
|
|
73
|
-
"@
|
|
58
|
+
"@angular-devkit/build-angular": "~16.0.5",
|
|
59
|
+
"@angular-devkit/core": "~16.0.5",
|
|
60
|
+
"@angular-material-extensions/password-strength": "~12.1.0",
|
|
61
|
+
"@angular/animations": "~16.0.0",
|
|
62
|
+
"@angular/cdk": "~16.0.3",
|
|
63
|
+
"@angular/cli": "~16.0.5",
|
|
64
|
+
"@angular/common": "~16.0.0",
|
|
65
|
+
"@angular/compiler": "~16.0.0",
|
|
66
|
+
"@angular/compiler-cli": "~16.0.4",
|
|
67
|
+
"@angular/core": "~16.0.0",
|
|
68
|
+
"@angular/elements": "~16.0.4",
|
|
69
|
+
"@angular/forms": "~16.0.0",
|
|
70
|
+
"@angular/material": "~16.0.3",
|
|
71
|
+
"@angular/platform-browser": "~16.0.4",
|
|
72
|
+
"@angular/platform-browser-dynamic": "~16.0.4",
|
|
73
|
+
"@angular/pwa": "~16.0.5",
|
|
74
|
+
"@angular/router": "~16.0.0",
|
|
75
|
+
"@angular/service-worker": "~16.0.4",
|
|
76
|
+
"@babel/cli": "7.18.6",
|
|
74
77
|
"@iconify/icons-fa-solid": "1.2.2",
|
|
75
78
|
"@iconify/icons-mdi": "1.2.1",
|
|
76
|
-
"@mdi/js": "
|
|
77
|
-
"@
|
|
78
|
-
"@
|
|
79
|
-
"@
|
|
80
|
-
"@
|
|
81
|
-
"@
|
|
82
|
-
"@ngrx/
|
|
83
|
-
"@ngrx/
|
|
84
|
-
"@ngrx/
|
|
85
|
-
"@
|
|
86
|
-
"@
|
|
87
|
-
"@
|
|
88
|
-
"@
|
|
89
|
-
"@
|
|
90
|
-
"@ngx-
|
|
91
|
-
"@ngx-
|
|
92
|
-
"@ngx-translate/core": "
|
|
93
|
-
"@ngx-translate/http-loader": "
|
|
94
|
-
"@
|
|
95
|
-
"@
|
|
79
|
+
"@mdi/js": "7.2.96",
|
|
80
|
+
"@ng-matero/extensions": "16.0.0",
|
|
81
|
+
"@ngneat/falso": "6.4.0",
|
|
82
|
+
"@ngneat/hot-toast": "5.0.1",
|
|
83
|
+
"@ngneat/overview": "5.0.0",
|
|
84
|
+
"@ngneat/spectator": "15.0.0",
|
|
85
|
+
"@ngrx/component-store": "~16.0.1",
|
|
86
|
+
"@ngrx/data": "~16.0.1",
|
|
87
|
+
"@ngrx/effects": "~16.0.1",
|
|
88
|
+
"@ngrx/entity": "~16.0.1",
|
|
89
|
+
"@ngrx/router-store": "~16.0.1",
|
|
90
|
+
"@ngrx/schematics": "~16.0.1",
|
|
91
|
+
"@ngrx/store": "~16.0.1",
|
|
92
|
+
"@ngrx/store-devtools": "~16.0.1",
|
|
93
|
+
"@ngx-formly/core": "6.1.7",
|
|
94
|
+
"@ngx-formly/material": "6.1.7",
|
|
95
|
+
"@ngx-translate/core": "15.0.0",
|
|
96
|
+
"@ngx-translate/http-loader": "8.0.0",
|
|
97
|
+
"@sweetalert2/ngx-sweetalert2": "12.1.0",
|
|
98
|
+
"@testdeck/jasmine": "0.3.3",
|
|
99
|
+
"@testdeck/jest": "0.3.3",
|
|
100
|
+
"@testdeck/mocha": "0.3.3",
|
|
101
|
+
"@types/chai": "4.1.2",
|
|
96
102
|
"@types/chokidar": "2.1.3",
|
|
97
|
-
"@types/dateformat": "
|
|
98
|
-
"@types/diff": "
|
|
99
|
-
"@types/express": "
|
|
100
|
-
"@types/express-fileupload": "
|
|
101
|
-
"@types/fs-extra": "
|
|
102
|
-
"@types/glob": "
|
|
103
|
-
"@types/http-proxy": "
|
|
103
|
+
"@types/dateformat": "1.0.1",
|
|
104
|
+
"@types/diff": "3.2.2",
|
|
105
|
+
"@types/express": "4.11.0",
|
|
106
|
+
"@types/express-fileupload": "1.4.1",
|
|
107
|
+
"@types/fs-extra": "7.0.0",
|
|
108
|
+
"@types/glob": "5.0.35",
|
|
109
|
+
"@types/http-proxy": "1.16.0",
|
|
104
110
|
"@types/http-proxy-middleware": "0.19.2",
|
|
105
|
-
"@types/inquirer": "
|
|
106
|
-
"@types/jasmine": "
|
|
107
|
-
"@types/json-stringify-safe": "
|
|
111
|
+
"@types/inquirer": "7.3.1",
|
|
112
|
+
"@types/jasmine": "4.3.0",
|
|
113
|
+
"@types/json-stringify-safe": "5.0.0",
|
|
108
114
|
"@types/json5": "0.0.29",
|
|
109
|
-
"@types/lockfile": "
|
|
115
|
+
"@types/lockfile": "1.0.0",
|
|
110
116
|
"@types/lodash": "4.14.92",
|
|
111
|
-
"@types/lowdb": "
|
|
112
|
-
"@types/mocha": "
|
|
113
|
-
"@types/node": "
|
|
114
|
-
"@types/node-notifier": "
|
|
115
|
-
"@types/oauth2orize": "
|
|
116
|
-
"@types/password-hash": "
|
|
117
|
-
"@types/progress": "
|
|
117
|
+
"@types/lowdb": "1.0.6",
|
|
118
|
+
"@types/mocha": "5.2.5",
|
|
119
|
+
"@types/node": "16.18.21",
|
|
120
|
+
"@types/node-notifier": "5.4.0",
|
|
121
|
+
"@types/oauth2orize": "1.8.0",
|
|
122
|
+
"@types/password-hash": "1.2.19",
|
|
123
|
+
"@types/progress": "2.0.3",
|
|
118
124
|
"@types/q": "1.5.5",
|
|
119
|
-
"@types/rimraf": "
|
|
125
|
+
"@types/rimraf": "2.0.2",
|
|
120
126
|
"@types/semver": "6.0.1",
|
|
121
|
-
"@types/systeminformation": "
|
|
122
|
-
"@types/vinyl": "
|
|
123
|
-
"@types/watch": "
|
|
124
|
-
"accepts": "
|
|
125
|
-
"
|
|
126
|
-
"
|
|
127
|
-
"
|
|
127
|
+
"@types/systeminformation": "3.23.0",
|
|
128
|
+
"@types/vinyl": "2.0.2",
|
|
129
|
+
"@types/watch": "1.0.0",
|
|
130
|
+
"accepts": "1.3.4",
|
|
131
|
+
"angular-material-css-vars": "5.0.2",
|
|
132
|
+
"any-project-cli": "~16.0.31",
|
|
133
|
+
"axios": "1.3.5",
|
|
134
|
+
"background-worker-process": "~16.0.48",
|
|
135
|
+
"base32": "0.0.7",
|
|
128
136
|
"bcryptjs": "2.4.3",
|
|
129
137
|
"better-sqlite3": "7.6.2",
|
|
130
|
-
"body-parser": "
|
|
131
|
-
"bootstrap": "
|
|
132
|
-
"
|
|
133
|
-
"buffer-shims": "^1.0.0",
|
|
138
|
+
"body-parser": "1.18.2",
|
|
139
|
+
"bootstrap": "4.6.2",
|
|
140
|
+
"buffer-shims": "1.0.0",
|
|
134
141
|
"callsite-record": "4.1.3",
|
|
135
|
-
"chai": "
|
|
136
|
-
"chalk": "
|
|
137
|
-
"check-node-version": "
|
|
142
|
+
"chai": "4.2.0",
|
|
143
|
+
"chalk": "2.3.2",
|
|
144
|
+
"check-node-version": "3.2.0",
|
|
138
145
|
"cheerio": "1.0.0-rc.3",
|
|
139
146
|
"chokidar": "3.5.1",
|
|
140
|
-
"circular-json": "
|
|
141
|
-
"
|
|
147
|
+
"circular-json": "0.5.1",
|
|
148
|
+
"class-validator": "0.14.0",
|
|
149
|
+
"command-exists": "1.2.2",
|
|
142
150
|
"compression": "1.7.4",
|
|
143
|
-
"concurrently": "
|
|
144
|
-
"content-type": "
|
|
145
|
-
"cookie-parser": "
|
|
146
|
-
"copy-paste": "
|
|
147
|
-
"cors": "
|
|
148
|
-
"cpr": "
|
|
149
|
-
"cross-spawn": "
|
|
150
|
-
"dateformat": "
|
|
151
|
+
"concurrently": "3.5.1",
|
|
152
|
+
"content-type": "1.0.4",
|
|
153
|
+
"cookie-parser": "1.4.3",
|
|
154
|
+
"copy-paste": "1.5.3",
|
|
155
|
+
"cors": "2.8.4",
|
|
156
|
+
"cpr": "3.0.1",
|
|
157
|
+
"cross-spawn": "7.0.3",
|
|
158
|
+
"dateformat": "3.0.3",
|
|
151
159
|
"detect-mocha": "0.1.0",
|
|
152
|
-
"diff": "
|
|
160
|
+
"diff": "3.2.0",
|
|
153
161
|
"element-resize-detector": "1.1.15",
|
|
154
|
-
"enquirer": "
|
|
162
|
+
"enquirer": "2.3.0",
|
|
155
163
|
"enum-values": "1.2.1",
|
|
156
|
-
"errorhandler": "
|
|
164
|
+
"errorhandler": "1.5.0",
|
|
157
165
|
"eslint": "7.13.0",
|
|
158
166
|
"eslint-plugin-import": "2.22.1",
|
|
159
167
|
"eslint-plugin-jsdoc": "30.7.8",
|
|
160
168
|
"eslint-plugin-prefer-arrow": "1.2.2",
|
|
161
|
-
"express": "
|
|
162
|
-
"express-fileupload": "
|
|
169
|
+
"express": "4.16.3",
|
|
170
|
+
"express-fileupload": "1.4.0",
|
|
163
171
|
"express-session": "1.17.3",
|
|
164
|
-
"
|
|
165
|
-
"file-
|
|
166
|
-
"firedev
|
|
167
|
-
"firedev-crud
|
|
168
|
-
"firedev-
|
|
169
|
-
"firedev-
|
|
170
|
-
"firedev-
|
|
172
|
+
"file-loader": "1.1.5",
|
|
173
|
+
"file-saver": "2.0.5",
|
|
174
|
+
"firedev": "^16",
|
|
175
|
+
"firedev-crud": "~16.0.53",
|
|
176
|
+
"firedev-crud-deamon": "~16.0.43",
|
|
177
|
+
"firedev-ports": "~16.0.48",
|
|
178
|
+
"firedev-storage": "~16.0.40",
|
|
179
|
+
"firedev-type-sql": "~16.0.1",
|
|
180
|
+
"firedev-typeorm": "~16.0.37",
|
|
181
|
+
"firedev-ui": "~16.0.7",
|
|
171
182
|
"fkill": "6.1.0",
|
|
172
|
-
"font-awesome": "
|
|
183
|
+
"font-awesome": "4.7.0",
|
|
184
|
+
"form-data": "4.0.0",
|
|
173
185
|
"fs-extra": "8.1.0",
|
|
174
|
-
"fuzzy": "
|
|
175
|
-
"glob": "
|
|
176
|
-
"gulp": "
|
|
177
|
-
"hostile": "
|
|
178
|
-
"
|
|
186
|
+
"fuzzy": "0.1.3",
|
|
187
|
+
"glob": "7.1.2",
|
|
188
|
+
"gulp": "3.9.1",
|
|
189
|
+
"hostile": "1.3.3",
|
|
190
|
+
"howler": "2.2.3",
|
|
191
|
+
"http-proxy": "1.16.2",
|
|
179
192
|
"http-proxy-middleware": "0.19.1",
|
|
180
193
|
"http-server": "0.11.1",
|
|
181
|
-
"
|
|
182
|
-
"
|
|
183
|
-
"inquirer
|
|
184
|
-
"
|
|
185
|
-
"
|
|
186
|
-
"
|
|
187
|
-
"
|
|
188
|
-
"
|
|
189
|
-
"
|
|
190
|
-
"
|
|
191
|
-
"
|
|
192
|
-
"
|
|
193
|
-
"
|
|
194
|
-
"
|
|
195
|
-
"
|
|
196
|
-
"
|
|
197
|
-
"karma
|
|
198
|
-
"karma-
|
|
199
|
-
"karma-
|
|
200
|
-
"
|
|
201
|
-
"
|
|
202
|
-
"
|
|
203
|
-
"
|
|
204
|
-
"
|
|
205
|
-
"
|
|
206
|
-
"lodash
|
|
207
|
-
"lodash
|
|
208
|
-
"lowdb": "
|
|
209
|
-
"magic-renamer": "~
|
|
194
|
+
"immutable": "4.3.0",
|
|
195
|
+
"incremental-compiler": "~16.0.30",
|
|
196
|
+
"inquirer": "7.3.3",
|
|
197
|
+
"inquirer-autocomplete-prompt": "1.3.0",
|
|
198
|
+
"is-elevated": "3.0.0",
|
|
199
|
+
"isomorphic-region-loader": "~16.0.41",
|
|
200
|
+
"istanbul-instrumenter-loader": "2.0.0",
|
|
201
|
+
"jasmine-core": "4.6.0",
|
|
202
|
+
"jimp": "0.22.8",
|
|
203
|
+
"jscodeshift": "0.6.3",
|
|
204
|
+
"json-stringify-safe": "5.0.1",
|
|
205
|
+
"json10": "~16.0.48",
|
|
206
|
+
"json10-writer": "~16.0.44",
|
|
207
|
+
"json5": "2.2.1",
|
|
208
|
+
"json5-writer": "0.2.0",
|
|
209
|
+
"jszip": "3.10.1",
|
|
210
|
+
"karma": "6.4.0",
|
|
211
|
+
"karma-chrome-launcher": "3.2.0",
|
|
212
|
+
"karma-cli": "1.0.1",
|
|
213
|
+
"karma-coverage": "2.2.0",
|
|
214
|
+
"karma-jasmine": "5.1.0",
|
|
215
|
+
"karma-jasmine-html-reporter": "2.0.0",
|
|
216
|
+
"lnk": "1.0.1",
|
|
217
|
+
"localforage": "1.10.0",
|
|
218
|
+
"lockfile": "1.0.4",
|
|
219
|
+
"lodash": "4.17.20",
|
|
220
|
+
"lodash-walk-object": "~16.0.48",
|
|
221
|
+
"lowdb": "1.0.0",
|
|
222
|
+
"magic-renamer": "~16.0.45",
|
|
210
223
|
"material-design-icons": "3.0.1",
|
|
211
|
-
"method-override": "
|
|
212
|
-
"minimist": "
|
|
213
|
-
"mkdirp": "
|
|
214
|
-
"mocha": "
|
|
215
|
-
"moment": "
|
|
216
|
-
"morphi": "~
|
|
217
|
-
"ng-
|
|
218
|
-
"
|
|
219
|
-
"
|
|
220
|
-
"
|
|
221
|
-
"
|
|
222
|
-
"
|
|
223
|
-
"ngx-
|
|
224
|
+
"method-override": "2.3.10",
|
|
225
|
+
"minimist": "1.2.0",
|
|
226
|
+
"mkdirp": "0.5.1",
|
|
227
|
+
"mocha": "5.2.0",
|
|
228
|
+
"moment": "2.29.3",
|
|
229
|
+
"morphi": "~16.0.5",
|
|
230
|
+
"ng-for-track-by-property": "16.0.1",
|
|
231
|
+
"ng-in-viewport": "15.0.2",
|
|
232
|
+
"ng-lock": "16.0.1",
|
|
233
|
+
"ng-packagr": "16.0.1",
|
|
234
|
+
"ng2-logger": "~16.0.4",
|
|
235
|
+
"ng2-rest": "~16.0.12",
|
|
236
|
+
"ngx-ace-wrapper": "14.0.0",
|
|
237
|
+
"ngx-editor": "15.3.0",
|
|
238
|
+
"ngx-highlightjs": "9.0.0",
|
|
224
239
|
"ngx-moment": "6.0.2",
|
|
225
|
-
"ngx-pipes": "3.
|
|
240
|
+
"ngx-pipes": "3.2.2",
|
|
241
|
+
"ngx-progressbar": "11.0.0",
|
|
242
|
+
"ngx-scrollbar": "12.0.0",
|
|
243
|
+
"ngx-scrolltop": "6.0.0",
|
|
226
244
|
"ngx-store": "3.1.1",
|
|
227
|
-
"ngx-
|
|
228
|
-
"
|
|
229
|
-
"node-cli-tester": "~13.1.19",
|
|
245
|
+
"ngx-typed-js": "2.1.1",
|
|
246
|
+
"node-cli-tester": "~16.0.2",
|
|
230
247
|
"node-localstorage": "2.1.6",
|
|
231
|
-
"node-notifier": "
|
|
232
|
-
"nodemon": "
|
|
233
|
-
"npm-get-dependents": "
|
|
234
|
-
"npm-run": "
|
|
235
|
-
"omelette": "
|
|
248
|
+
"node-notifier": "6.0.0",
|
|
249
|
+
"nodemon": "1.14.11",
|
|
250
|
+
"npm-get-dependents": "1.0.1",
|
|
251
|
+
"npm-run": "4.1.2",
|
|
252
|
+
"omelette": "0.4.5",
|
|
236
253
|
"open": "7.2.1",
|
|
237
254
|
"ora": "3.4.0",
|
|
238
|
-
"passport": "
|
|
239
|
-
"passport-http-bearer": "
|
|
240
|
-
"password-hash": "
|
|
255
|
+
"passport": "0.3.2",
|
|
256
|
+
"passport-http-bearer": "1.0.1",
|
|
257
|
+
"password-hash": "1.2.2",
|
|
258
|
+
"pica": "9.0.1",
|
|
241
259
|
"portfinder": "1.0.21",
|
|
242
260
|
"prettier": "2.5.1",
|
|
243
|
-
"progress": "
|
|
244
|
-
"prompts": "
|
|
261
|
+
"progress": "2.0.3",
|
|
262
|
+
"prompts": "0.1.8",
|
|
245
263
|
"ps-list": "6.1.0",
|
|
246
|
-
"ps-node": "
|
|
247
|
-
"q": "
|
|
248
|
-
"randomcolor": "
|
|
249
|
-
"record-replay-req-res-scenario": "~13.1.
|
|
250
|
-
"reflect-metadata": "
|
|
251
|
-
"rimraf": "
|
|
252
|
-
"rxjs": "~7.
|
|
264
|
+
"ps-node": "0.1.6",
|
|
265
|
+
"q": "1.5.1",
|
|
266
|
+
"randomcolor": "0.5.3",
|
|
267
|
+
"record-replay-req-res-scenario": "~13.1.20",
|
|
268
|
+
"reflect-metadata": "0.1.10",
|
|
269
|
+
"rimraf": "2.6.2",
|
|
270
|
+
"rxjs": "~7.8.0",
|
|
253
271
|
"semver": "6.3.0",
|
|
254
|
-
"simple-git": "
|
|
255
|
-
"sloc": "
|
|
256
|
-
"socket.io": "
|
|
257
|
-
"sort-package-json": "
|
|
258
|
-
"sql.js": "
|
|
259
|
-
"static-columns": "~
|
|
260
|
-
"string-similarity": "
|
|
261
|
-
"sudo-block": "
|
|
262
|
-
"
|
|
263
|
-
"
|
|
264
|
-
"
|
|
265
|
-
"
|
|
266
|
-
"tnp-
|
|
267
|
-
"tnp-
|
|
268
|
-
"tnp-
|
|
269
|
-
"tnp-
|
|
270
|
-
"
|
|
271
|
-
"ts-
|
|
272
|
-
"ts-
|
|
273
|
-
"
|
|
274
|
-
"
|
|
275
|
-
"
|
|
276
|
-
"
|
|
277
|
-
"typescript
|
|
278
|
-
"
|
|
279
|
-
"
|
|
280
|
-
"
|
|
281
|
-
"
|
|
282
|
-
"
|
|
283
|
-
"
|
|
284
|
-
|
|
272
|
+
"simple-git": "1.96.0",
|
|
273
|
+
"sloc": "0.2.0",
|
|
274
|
+
"socket.io": "2.4.1",
|
|
275
|
+
"sort-package-json": "1.11.0",
|
|
276
|
+
"sql.js": "1.8.0",
|
|
277
|
+
"static-columns": "~16.0.5",
|
|
278
|
+
"string-similarity": "4.0.2",
|
|
279
|
+
"sudo-block": "3.0.0",
|
|
280
|
+
"sweetalert2": "11.7.12",
|
|
281
|
+
"systeminformation": "3.45.7",
|
|
282
|
+
"task.js": "0.1.5",
|
|
283
|
+
"threads": "1.7.0",
|
|
284
|
+
"tnp-cli": "~16.0.5",
|
|
285
|
+
"tnp-config": "~16.0.8",
|
|
286
|
+
"tnp-core": "~16.0.10",
|
|
287
|
+
"tnp-db": "~16.0.26",
|
|
288
|
+
"tnp-models": "~16.0.35",
|
|
289
|
+
"ts-debug": "1.3.0",
|
|
290
|
+
"ts-loader": "2.3.1",
|
|
291
|
+
"ts-node": "10.9.1",
|
|
292
|
+
"tslib": "~2.3.0",
|
|
293
|
+
"turndown": "7.1.2",
|
|
294
|
+
"typeorm": "~0.3.10",
|
|
295
|
+
"typescript": "~5.0.2",
|
|
296
|
+
"typescript-class-helpers": "~16.0.16",
|
|
297
|
+
"underscore": "1.9.1",
|
|
298
|
+
"uuid": "8.3.2",
|
|
299
|
+
"validator": "9.2.0",
|
|
300
|
+
"video.js": "8.3.0",
|
|
301
|
+
"vpn-split": "~13.1.23",
|
|
302
|
+
"watch": "1.0.2",
|
|
303
|
+
"yup": "1.1.1",
|
|
304
|
+
"zone.js": "~0.13.0"
|
|
305
|
+
},
|
|
306
|
+
"main": "index.js"
|
|
285
307
|
},
|
|
286
308
|
"build": {
|
|
287
|
-
"number":
|
|
288
|
-
"date": "
|
|
289
|
-
"hash": "
|
|
309
|
+
"number": 169,
|
|
310
|
+
"date": "2023-06-20T10:33:30.000Z",
|
|
311
|
+
"hash": "c51a6417bc685f242b2b91f51da472ed547a8af1",
|
|
290
312
|
"options": {}
|
|
291
313
|
},
|
|
292
314
|
"currentProjectName": "record-replay-req-res-scenario",
|
|
293
|
-
"
|
|
315
|
+
"currentProjectGenericName": "record-replay-req-res-scenario",
|
|
294
316
|
"currentProjectLaunchConfiguration": "{\"version\":\"0.2.0\",\"configurations\":[{\"type\":\"node\",\"request\":\"launch\",\"name\":\"Launch Server standalone\",\"program\":\"${workspaceFolder}/run.js\",\"args\":[\"--ENVoverride=%7B%0A%20%20%20%20%22clientProjectName%22%3A%20%22record-replay-req-res-scenario%22%0A%7D\"],\"runtimeArgs\":[\"--nolazy\",\"-r\",\"ts-node/register\",\"--experimental-worker\"]},{\"name\":\"Debugger with ng serve\",\"type\":\"chrome\",\"request\":\"launch\",\"preLaunchTask\":\"Ng Serve\",\"postDebugTask\":\"terminateall\",\"sourceMaps\":true,\"webRoot\":\"${workspaceFolder}\",\"sourceMapPathOverrides\":{\"webpack:/*\":\"${webRoot}/*\",\"/./*\":\"${webRoot}/*\",\"/tmp-src/*\":\"${webRoot}/*\",\"/*\":\"*\",\"/./~/*\":\"${webRoot}/node_modules/*\"}},{\"type\":\"node\",\"request\":\"attach\",\"name\":\"Attach to global cli tool\",\"port\":9229,\"skipFiles\":[\"<node_internals>/**\"]}],\"compounds\":[{\"name\":\"Debug backend/frontend\",\"configurations\":[\"Launch Server standalone\",\"Debugger with ng serve\"]}]}",
|
|
295
317
|
"currentProjectTasksConfiguration": "{\"version\":\"2.0.0\",\"tasks\":[{\"label\":\"terminateall\",\"command\":\"echo ${input:terminate}\",\"type\":\"shell\",\"problemMatcher\":[]},{\"label\":\"Ng Serve\",\"type\":\"shell\",\"command\":\"tnp build\",\"isBackground\":true,\"presentation\":{\"reveal\":\"always\"},\"group\":{\"kind\":\"build\",\"isDefault\":true},\"problemMatcher\":{\"owner\":\"typescript\",\"source\":\"ts\",\"applyTo\":\"closedDocuments\",\"fileLocation\":[\"relative\",\"${cwd}\"],\"pattern\":\"$tsc\",\"background\":{\"activeOnStart\":true,\"beginsPattern\":{\"regexp\":\"(.*?)\"},\"endsPattern\":{\"regexp\":\"Compiled |Failed to compile.\"}}}}],\"inputs\":[{\"id\":\"terminate\",\"type\":\"command\",\"command\":\"workbench.action.tasks.terminate\",\"args\":\"terminateAll\"}]}",
|
|
296
318
|
"currentProjectType": "isomorphic-lib",
|
|
297
|
-
"currentFrameworkVersion": "
|
|
319
|
+
"currentFrameworkVersion": "16.0.17",
|
|
298
320
|
"currentProjectIsStrictSite": false,
|
|
299
321
|
"currentProjectIsDependencySite": false,
|
|
300
322
|
"currentProjectIsStatic": false,
|
package/websql/README.md
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
# MyLib
|
|
2
|
-
|
|
3
|
-
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
-
|
|
5
|
-
## Code scaffolding
|
|
6
|
-
|
|
7
|
-
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
-
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
-
|
|
10
|
-
## Build
|
|
11
|
-
|
|
12
|
-
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
-
|
|
14
|
-
## Publishing
|
|
15
|
-
|
|
16
|
-
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
-
|
|
18
|
-
## Running unit tests
|
|
19
|
-
|
|
20
|
-
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
-
|
|
22
|
-
## Further help
|
|
23
|
-
|
|
24
|
-
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
1
|
+
# MyLib
|
|
2
|
+
|
|
3
|
+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
+
|
|
5
|
+
## Code scaffolding
|
|
6
|
+
|
|
7
|
+
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
+
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
+
|
|
10
|
+
## Build
|
|
11
|
+
|
|
12
|
+
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
+
|
|
14
|
+
## Publishing
|
|
15
|
+
|
|
16
|
+
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
+
|
|
18
|
+
## Running unit tests
|
|
19
|
+
|
|
20
|
+
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
+
|
|
22
|
+
## Further help
|
|
23
|
+
|
|
24
|
+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
@@ -3,5 +3,5 @@
|
|
|
3
3
|
/* */
|
|
4
4
|
export { RecordReplayReqResScenario } from './record-replay-req-res-scenario';
|
|
5
5
|
;
|
|
6
|
-
({}); // @--end-of-file-for-module=record-replay-req-res-scenario
|
|
7
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
6
|
+
({}); // @--end-of-file-for-module=record-replay-req-res-scenario lib/index.ts
|
|
7
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi90bXAtbGlicy1mb3ItYnVuZGxlLXdlYnNxbC9yZWNvcmQtcmVwbGF5LXJlcS1yZXMtc2NlbmFyaW8vcHJvamVjdHMvcmVjb3JkLXJlcGxheS1yZXEtcmVzLXNjZW5hcmlvL3NyYy9saWIvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBRUwsT0FBTyxFQUFFLDBCQUEwQixFQUF3QyxNQUFNLGtDQUFrQyxDQUFDO0FBSW5ILENBQUM7QUFBQSxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsd0VBQXdFIiwic291cmNlc0NvbnRlbnQiOlsiLyogKi9cbi8qICovXG4vKiAqL1xuICBcbmV4cG9ydCB7IFJlY29yZFJlcGxheVJlcVJlc1NjZW5hcmlvLCBSZWNvcmRlckNvbmZpZ01ldGEsIFJlcGxheUNvbmZpZ01ldGEgfSBmcm9tICcuL3JlY29yZC1yZXBsYXktcmVxLXJlcy1zY2VuYXJpbyc7XG5cblxuXG4gOyh7fSk7IC8vIEAtLWVuZC1vZi1maWxlLWZvci1tb2R1bGU9cmVjb3JkLXJlcGxheS1yZXEtcmVzLXNjZW5hcmlvIGxpYi9pbmRleC50cyJdfQ==
|
|
@@ -14,5 +14,5 @@
|
|
|
14
14
|
export class RecordReplayReqResScenario {
|
|
15
15
|
}
|
|
16
16
|
;
|
|
17
|
-
({}); // @--end-of-file-for-module=record-replay-req-res-scenario
|
|
18
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
17
|
+
({}); // @--end-of-file-for-module=record-replay-req-res-scenario lib/record-replay-req-res-scenario.ts
|
|
18
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVjb3JkLXJlcGxheS1yZXEtcmVzLXNjZW5hcmlvLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vdG1wLWxpYnMtZm9yLWJ1bmRsZS13ZWJzcWwvcmVjb3JkLXJlcGxheS1yZXEtcmVzLXNjZW5hcmlvL3Byb2plY3RzL3JlY29yZC1yZXBsYXktcmVxLXJlcy1zY2VuYXJpby9zcmMvbGliL3JlY29yZC1yZXBsYXktcmVxLXJlcy1zY2VuYXJpby50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBQ0wsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBc0NMLE1BQU0sT0FBTywwQkFBMEI7Q0ErV3RDO0FBR0EsQ0FBQztBQUFBLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxpR0FBaUciLCJzb3VyY2VzQ29udGVudCI6WyJcbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4gIFxuXG5cblxuZXhwb3J0IHR5cGUgUmVjb3JkRGF0YSA9IHsgaG9zdDogbnVtYmVyIHwgc3RyaW5nIHwgVVJMOyB0YWxrYmFja1Byb3h5UG9ydD86IG51bWJlciB8IHN0cmluZzsgfVxuXG5leHBvcnQgdHlwZSBSZWNvcmRlckNvbmZpZ01ldGEgPSB7XG4gIFtyZWNvcmRIb3N0TmFtZTogc3RyaW5nXTogUmVjb3JkRGF0YTtcbn0gJiB7IHNjZW5hcmlvTmFtZTogc3RyaW5nOyB9XG5cbmV4cG9ydCB0eXBlIFJlcGxheUNvbmZpZ01ldGEgPSB7XG4gIFtyZWNvcmRIb3N0TmFtZTogc3RyaW5nXTogeyB0YWxrYmFja1Byb3h5UG9ydD86IG51bWJlciB8IHN0cmluZzsgfVxufSAmIHsgc2NlbmFyaW9QYXRoOiBzdHJpbmc7IH1cblxudHlwZSBBcmdzT3B0UmVwbGF5UmVjb3JkQXJnVHlwZSA9IHsgcG9ydDogc3RyaW5nIHwgc3RyaW5nW107IGhvc3ROYW1lOiBzdHJpbmcgfCBzdHJpbmdbXTsgfTtcblxuaW50ZXJmYWNlIFJlY29yZEFyZ1R5cGUge1xuICByZWNvcmQ6IHtcbiAgICAvKipcbiAgICAgKiB1cmwgd2l0aCBob3N0IHRvIHJlY29yZFxuICAgICAqL1xuICAgIHVybDogVVJMO1xuICAgIC8qKlxuICAgICAqIElkZW50aWZpZXIgb2Ygd2hhdCB3YXMgdGhlIG5hbWUgb3IgaWQgb2Ygc2VydmVyLlxuICAgICAqIHRoaXMgbWV0YWRhdGEgaXMgdXNlZnVsbCB0byByZXBsYXkgYmFjayBtdWx0aXBsZSBzZXJ2ZXJzXG4gICAgICogb24gZGlmZmVyZW50IHRhbGtiYWNrIHBvcnRzXG4gICAgICovXG4gICAgbmFtZTogc3RyaW5nO1xuICB9O1xuICAvKipcbiAgICogdGFsa2JhY2sgcG9ydCBmb3IgbG9jYWxob3N0IHByb3h5XG4gICAqL1xuICB0YWxrYmFja1Byb3h5UG9ydDogbnVtYmVyO1xufVxuXG5cblxuZXhwb3J0IGNsYXNzIFJlY29yZFJlcGxheVJlcVJlc1NjZW5hcmlvIHtcbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuLyogKi9cbi8qICovXG4vKiAqL1xuICBcbn1cblxuXG4gOyh7fSk7IC8vIEAtLWVuZC1vZi1maWxlLWZvci1tb2R1bGU9cmVjb3JkLXJlcGxheS1yZXEtcmVzLXNjZW5hcmlvIGxpYi9yZWNvcmQtcmVwbGF5LXJlcS1yZXMtc2NlbmFyaW8udHMiXX0=
|