@30nama/sdk 1.8.5 → 1.8.7

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 (53) hide show
  1. package/dist/api/index.js +81 -97
  2. package/dist/api/index.js.map +1 -1
  3. package/dist/api/request.js +56 -70
  4. package/dist/api/request.js.map +1 -1
  5. package/dist/api/services/biography.js +41 -67
  6. package/dist/api/services/biography.js.map +1 -1
  7. package/dist/api/services/index.js +7 -23
  8. package/dist/api/services/index.js.map +1 -1
  9. package/dist/api/services/news.js +41 -67
  10. package/dist/api/services/news.js.map +1 -1
  11. package/dist/api/services/operator.js +201 -281
  12. package/dist/api/services/operator.js.map +1 -1
  13. package/dist/api/services/soundtrack.js +17 -34
  14. package/dist/api/services/soundtrack.js.map +1 -1
  15. package/dist/api/services/stream.js +51 -77
  16. package/dist/api/services/stream.js.map +1 -1
  17. package/dist/api/services/support.js +41 -67
  18. package/dist/api/services/support.js.map +1 -1
  19. package/dist/api/services/videoContent.js +291 -389
  20. package/dist/api/services/videoContent.js.map +1 -1
  21. package/dist/api/types.js +1 -2
  22. package/dist/core.js +13 -35
  23. package/dist/core.js.map +1 -1
  24. package/dist/entities/BaseEntity.js +2 -5
  25. package/dist/entities/BaseEntity.js.map +1 -1
  26. package/dist/entities/IArticle.d.ts +11 -31
  27. package/dist/entities/IArticle.js +10 -6
  28. package/dist/entities/IArticle.js.map +1 -1
  29. package/dist/entities/IAttachment.js +1 -2
  30. package/dist/entities/IBiography.js +14 -6
  31. package/dist/entities/IBiography.js.map +1 -1
  32. package/dist/entities/IBoxOffice.js +20 -6
  33. package/dist/entities/IBoxOffice.js.map +1 -1
  34. package/dist/entities/ICollection.js +9 -6
  35. package/dist/entities/ICollection.js.map +1 -1
  36. package/dist/entities/ICollector.js +1 -2
  37. package/dist/entities/IOperator.js +2 -5
  38. package/dist/entities/IOperator.js.map +1 -1
  39. package/dist/entities/IPerson.js +1 -2
  40. package/dist/entities/IRating.js +1 -2
  41. package/dist/entities/ISoundTrack.js +1 -2
  42. package/dist/entities/IStream.js +1 -2
  43. package/dist/entities/ITitle.js +34 -8
  44. package/dist/entities/ITitle.js.map +1 -1
  45. package/dist/entities/IVideoContent.js +26 -6
  46. package/dist/entities/IVideoContent.js.map +1 -1
  47. package/dist/entities/index.js +12 -28
  48. package/dist/entities/index.js.map +1 -1
  49. package/dist/index.js +7 -8
  50. package/dist/index.js.map +1 -1
  51. package/dist/pattern/index.js +10 -9
  52. package/dist/pattern/index.js.map +1 -1
  53. package/package.json +1 -1
@@ -1,84 +1,58 @@
1
- "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.streamGetEpisodes = streamGetEpisodes;
13
- exports.streamGetContinueWatching = streamGetContinueWatching;
14
- exports.streamDeleteContinueWatching = streamDeleteContinueWatching;
15
- exports.streamGenerateStreamLink = streamGenerateStreamLink;
16
- exports.streamSave = streamSave;
17
- const request_1 = require("../request");
1
+ import request from '../request';
18
2
  const servicePath = 'stream';
19
- function streamGetEpisodes(video_content_id) {
20
- return __awaiter(this, void 0, void 0, function* () {
21
- const This = this;
22
- This.log('info', 'Running action: streamGetEpisodes');
23
- const req = new request_1.default(`stream-seasons-episodes/${video_content_id}`, this);
24
- req.withService(servicePath);
25
- req.withMethod('get');
26
- const response = (yield req.execute());
27
- return response;
28
- });
3
+ export async function streamGetEpisodes(video_content_id) {
4
+ const This = this;
5
+ This.log('info', 'Running action: streamGetEpisodes');
6
+ const req = new request(`stream-seasons-episodes/${video_content_id}`, this);
7
+ req.withService(servicePath);
8
+ req.withMethod('get');
9
+ const response = (await req.execute());
10
+ return response;
29
11
  }
30
- function streamGetContinueWatching() {
31
- return __awaiter(this, arguments, void 0, function* (type = 'all', limit) {
32
- const This = this;
33
- This.log('info', 'Running action: streamGetContinueWatching');
34
- const req = new request_1.default(`show-archive-list`, this);
35
- req.withService(servicePath);
36
- req.withMethod('get');
37
- const response = (yield req.execute({ type, limit }));
38
- return response;
39
- });
12
+ export async function streamGetContinueWatching(type = 'all', limit) {
13
+ const This = this;
14
+ This.log('info', 'Running action: streamGetContinueWatching');
15
+ const req = new request(`show-archive-list`, this);
16
+ req.withService(servicePath);
17
+ req.withMethod('get');
18
+ const response = (await req.execute({ type, limit }));
19
+ return response;
40
20
  }
41
- function streamDeleteContinueWatching(id) {
42
- return __awaiter(this, void 0, void 0, function* () {
43
- const This = this;
44
- This.log('info', 'Running action: streamDeleteContinueWatching');
45
- const req = new request_1.default(`delete-content/${id}`, this);
46
- req.withService(servicePath);
47
- req.withMethod('put');
48
- const response = (yield req.execute());
49
- return response;
50
- });
21
+ export async function streamDeleteContinueWatching(id) {
22
+ const This = this;
23
+ This.log('info', 'Running action: streamDeleteContinueWatching');
24
+ const req = new request(`delete-content/${id}`, this);
25
+ req.withService(servicePath);
26
+ req.withMethod('put');
27
+ const response = (await req.execute());
28
+ return response;
51
29
  }
52
- function streamGenerateStreamLink(video_content_id, season_number, episode_number) {
53
- return __awaiter(this, void 0, void 0, function* () {
54
- const This = this;
55
- This.log('info', 'Running action: streamGenerateStreamLink');
56
- const req = new request_1.default(`generate-stream-link`, this);
57
- req.withService(servicePath);
58
- req.withMethod('get');
59
- const response = (yield req.execute({
60
- video_content_id,
61
- season_number,
62
- episode_number
63
- }));
64
- return response;
65
- });
30
+ export async function streamGenerateStreamLink(video_content_id, season_number, episode_number) {
31
+ const This = this;
32
+ This.log('info', 'Running action: streamGenerateStreamLink');
33
+ const req = new request(`generate-stream-link`, this);
34
+ req.withService(servicePath);
35
+ req.withMethod('get');
36
+ const response = (await req.execute({
37
+ video_content_id,
38
+ season_number,
39
+ episode_number
40
+ }));
41
+ return response;
66
42
  }
67
- function streamSave(stream_content_id, time, duration, video_content_id, profile_id) {
68
- return __awaiter(this, void 0, void 0, function* () {
69
- const This = this;
70
- This.log('info', 'Running action: streamSave');
71
- const req = new request_1.default(`save-stream-log`, this);
72
- req.withService(servicePath);
73
- req.withMethod('post');
74
- const response = (yield req.execute({
75
- stream_content_id,
76
- time,
77
- duration,
78
- video_content_id,
79
- profile_id
80
- }));
81
- return response;
82
- });
43
+ export async function streamSave(stream_content_id, time, duration, video_content_id, profile_id) {
44
+ const This = this;
45
+ This.log('info', 'Running action: streamSave');
46
+ const req = new request(`save-stream-log`, this);
47
+ req.withService(servicePath);
48
+ req.withMethod('post');
49
+ const response = (await req.execute({
50
+ stream_content_id,
51
+ time,
52
+ duration,
53
+ video_content_id,
54
+ profile_id
55
+ }));
56
+ return response;
83
57
  }
84
58
  //# sourceMappingURL=stream.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"stream.js","sourceRoot":"","sources":["../../../src/api/services/stream.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"stream.js","sourceRoot":"","sources":["../../../src/api/services/stream.ts"],"names":[],"mappings":"AACA,OAAO,OAAO,MAAM,YAAY,CAAA;AAGhC,MAAM,WAAW,GAAG,QAAQ,CAAA;AAE5B,MAAM,CAAC,KAAK,UAAU,iBAAiB,CAAY,gBAAwB;IACvE,MAAM,IAAI,GAAG,IAAW,CAAA;IACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,mCAAmC,CAAC,CAAA;IACrD,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,2BAA2B,gBAAgB,EAAE,EAAE,IAAI,CAAC,CAAA;IAC5E,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;IAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;IAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,EAAE,CAOtB,CAAA;IACf,OAAO,QAAQ,CAAA;AACnB,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,yBAAyB,CAAY,OAAmC,KAAK,EAAE,KAAc;IAC/G,MAAM,IAAI,GAAG,IAAW,CAAA;IACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,2CAA2C,CAAC,CAAA;IAC7D,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,mBAAmB,EAAE,IAAI,CAAC,CAAA;IAClD,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;IAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;IAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC,CAAgF,CAAA;IACpI,OAAO,QAAQ,CAAA;AACnB,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,4BAA4B,CAAY,EAAU;IACpE,MAAM,IAAI,GAAG,IAAW,CAAA;IACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,8CAA8C,CAAC,CAAA;IAChE,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,kBAAkB,EAAE,EAAE,EAAE,IAAI,CAAC,CAAA;IACrD,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;IAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;IAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,EAAE,CAAmC,CAAA;IACxE,OAAO,QAAQ,CAAA;AACnB,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,wBAAwB,CAAY,gBAAwB,EAAE,aAAsB,EAAE,cAAuB;IAC/H,MAAM,IAAI,GAAG,IAAW,CAAA;IACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,0CAA0C,CAAC,CAAA;IAC5D,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,sBAAsB,EAAE,IAAI,CAAC,CAAA;IACrD,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;IAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;IAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC;QAChC,gBAAgB;QAChB,aAAa;QACb,cAAc;KACjB,CAAC,CAAkC,CAAA;IACpC,OAAO,QAAQ,CAAA;AACnB,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,UAAU,CAAY,iBAAyB,EAAE,IAAY,EAAE,QAAgB,EAAE,gBAAwB,EAAE,UAAmB;IAChJ,MAAM,IAAI,GAAG,IAAW,CAAA;IACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,4BAA4B,CAAC,CAAA;IAC9C,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,iBAAiB,EAAE,IAAI,CAAC,CAAA;IAChD,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;IAC5B,GAAG,CAAC,UAAU,CAAC,MAAM,CAAC,CAAA;IAEtB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC;QAChC,iBAAiB;QACjB,IAAI;QACJ,QAAQ;QACR,gBAAgB;QAChB,UAAU;KACb,CAAC,CAAkC,CAAA;IACpC,OAAO,QAAQ,CAAA;AACnB,CAAC"}
@@ -1,74 +1,48 @@
1
- "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.supportCommonQuestions = supportCommonQuestions;
13
- exports.supportDMCA = supportDMCA;
14
- exports.supportRules = supportRules;
15
- exports.supportTrainingCenter = supportTrainingCenter;
16
- exports.supportTrainingDetail = supportTrainingDetail;
17
- const request_1 = require("../request");
1
+ import request from '../request';
18
2
  const servicePath = 'supportersystem';
19
- function supportCommonQuestions() {
20
- return __awaiter(this, void 0, void 0, function* () {
21
- const This = this;
22
- This.log('info', 'Running action: supportCommonQuestions');
23
- const req = new request_1.default(`system/common/questions`, this);
24
- req.withService(servicePath);
25
- req.withMethod('get');
26
- const response = (yield req.execute());
27
- return response;
28
- });
3
+ export async function supportCommonQuestions() {
4
+ const This = this;
5
+ This.log('info', 'Running action: supportCommonQuestions');
6
+ const req = new request(`system/common/questions`, this);
7
+ req.withService(servicePath);
8
+ req.withMethod('get');
9
+ const response = (await req.execute());
10
+ return response;
29
11
  }
30
- function supportDMCA() {
31
- return __awaiter(this, void 0, void 0, function* () {
32
- const This = this;
33
- This.log('info', 'Running action: supportDMCA');
34
- const req = new request_1.default(`system/dmca`, this);
35
- req.withService(servicePath);
36
- req.withMethod('get');
37
- const response = (yield req.execute());
38
- return response;
39
- });
12
+ export async function supportDMCA() {
13
+ const This = this;
14
+ This.log('info', 'Running action: supportDMCA');
15
+ const req = new request(`system/dmca`, this);
16
+ req.withService(servicePath);
17
+ req.withMethod('get');
18
+ const response = (await req.execute());
19
+ return response;
40
20
  }
41
- function supportRules() {
42
- return __awaiter(this, void 0, void 0, function* () {
43
- const This = this;
44
- This.log('info', 'Running action: supportRules');
45
- const req = new request_1.default(`system/rules`, this);
46
- req.withService(servicePath);
47
- req.withMethod('get');
48
- const response = (yield req.execute());
49
- return response;
50
- });
21
+ export async function supportRules() {
22
+ const This = this;
23
+ This.log('info', 'Running action: supportRules');
24
+ const req = new request(`system/rules`, this);
25
+ req.withService(servicePath);
26
+ req.withMethod('get');
27
+ const response = (await req.execute());
28
+ return response;
51
29
  }
52
- function supportTrainingCenter(search, page) {
53
- return __awaiter(this, void 0, void 0, function* () {
54
- const This = this;
55
- This.log('info', 'Running action: supportTrainingCenter');
56
- const req = new request_1.default(`system/training/center`, this);
57
- req.withService(servicePath);
58
- req.withMethod('get');
59
- const response = (yield req.execute({ search, page }));
60
- return response;
61
- });
30
+ export async function supportTrainingCenter(search, page) {
31
+ const This = this;
32
+ This.log('info', 'Running action: supportTrainingCenter');
33
+ const req = new request(`system/training/center`, this);
34
+ req.withService(servicePath);
35
+ req.withMethod('get');
36
+ const response = (await req.execute({ search, page }));
37
+ return response;
62
38
  }
63
- function supportTrainingDetail(id) {
64
- return __awaiter(this, void 0, void 0, function* () {
65
- const This = this;
66
- This.log('info', 'Running action: supportRules');
67
- const req = new request_1.default(`system/training/${id}`, this);
68
- req.withService(servicePath);
69
- req.withMethod('get');
70
- const response = (yield req.execute());
71
- return response;
72
- });
39
+ export async function supportTrainingDetail(id) {
40
+ const This = this;
41
+ This.log('info', 'Running action: supportRules');
42
+ const req = new request(`system/training/${id}`, this);
43
+ req.withService(servicePath);
44
+ req.withMethod('get');
45
+ const response = (await req.execute());
46
+ return response;
73
47
  }
74
48
  //# sourceMappingURL=support.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"support.js","sourceRoot":"","sources":["../../../src/api/services/support.ts"],"names":[],"mappings":";;;;;;;;;;;AAKA,wDASC;AAED,kCASC;AAED,oCASC;AAED,sDAgBC;AAED,sDASC;AAhED,wCAAgC;AAEhC,MAAM,WAAW,GAAG,iBAAiB,CAAA;AAErC,SAAsB,sBAAsB;;QACxC,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,wCAAwC,CAAC,CAAA;QAC1D,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,yBAAyB,EAAE,IAAI,CAAC,CAAA;QACxD,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;QAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,EAAE,CAAiE,CAAA;QACtG,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA;AAED,SAAsB,WAAW;;QAC7B,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,6BAA6B,CAAC,CAAA;QAC/C,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,aAAa,EAAE,IAAI,CAAC,CAAA;QAC5C,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;QAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,EAAE,CAAiE,CAAA;QACtG,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA;AAED,SAAsB,YAAY;;QAC9B,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,8BAA8B,CAAC,CAAA;QAChD,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,cAAc,EAAE,IAAI,CAAC,CAAA;QAC7C,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;QAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,EAAE,CAAiE,CAAA;QACtG,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA;AAED,SAAsB,qBAAqB,CAAY,MAAe,EAAE,IAAa;;QACjF,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,uCAAuC,CAAC,CAAA;QACzD,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,wBAAwB,EAAE,IAAI,CAAC,CAAA;QACvD,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;QAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAOtC,CAAA;QACf,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA;AAED,SAAsB,qBAAqB,CAAY,EAAU;;QAC7D,MAAM,IAAI,GAAG,IAAW,CAAA;QACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,8BAA8B,CAAC,CAAA;QAChD,MAAM,GAAG,GAAG,IAAI,iBAAO,CAAC,mBAAmB,EAAE,EAAE,EAAE,IAAI,CAAC,CAAA;QACtD,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;QAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;QAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,EAAE,CAAmH,CAAA;QACxJ,OAAO,QAAQ,CAAA;IACnB,CAAC;CAAA"}
1
+ {"version":3,"file":"support.js","sourceRoot":"","sources":["../../../src/api/services/support.ts"],"names":[],"mappings":"AACA,OAAO,OAAO,MAAM,YAAY,CAAA;AAEhC,MAAM,WAAW,GAAG,iBAAiB,CAAA;AAErC,MAAM,CAAC,KAAK,UAAU,sBAAsB;IACxC,MAAM,IAAI,GAAG,IAAW,CAAA;IACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,wCAAwC,CAAC,CAAA;IAC1D,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,yBAAyB,EAAE,IAAI,CAAC,CAAA;IACxD,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;IAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;IAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,EAAE,CAAiE,CAAA;IACtG,OAAO,QAAQ,CAAA;AACnB,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,WAAW;IAC7B,MAAM,IAAI,GAAG,IAAW,CAAA;IACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,6BAA6B,CAAC,CAAA;IAC/C,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,aAAa,EAAE,IAAI,CAAC,CAAA;IAC5C,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;IAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;IAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,EAAE,CAAiE,CAAA;IACtG,OAAO,QAAQ,CAAA;AACnB,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,YAAY;IAC9B,MAAM,IAAI,GAAG,IAAW,CAAA;IACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,8BAA8B,CAAC,CAAA;IAChD,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,cAAc,EAAE,IAAI,CAAC,CAAA;IAC7C,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;IAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;IAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,EAAE,CAAiE,CAAA;IACtG,OAAO,QAAQ,CAAA;AACnB,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,qBAAqB,CAAY,MAAe,EAAE,IAAa;IACjF,MAAM,IAAI,GAAG,IAAW,CAAA;IACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,uCAAuC,CAAC,CAAA;IACzD,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,wBAAwB,EAAE,IAAI,CAAC,CAAA;IACvD,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;IAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;IAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAOtC,CAAA;IACf,OAAO,QAAQ,CAAA;AACnB,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,qBAAqB,CAAY,EAAU;IAC7D,MAAM,IAAI,GAAG,IAAW,CAAA;IACxB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,8BAA8B,CAAC,CAAA;IAChD,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,mBAAmB,EAAE,EAAE,EAAE,IAAI,CAAC,CAAA;IACtD,GAAG,CAAC,WAAW,CAAC,WAAW,CAAC,CAAA;IAC5B,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;IAErB,MAAM,QAAQ,GAAG,CAAC,MAAM,GAAG,CAAC,OAAO,EAAE,CAAmH,CAAA;IACxJ,OAAO,QAAQ,CAAA;AACnB,CAAC"}