@sharpee/parser-en-us 0.9.62-beta → 0.9.66-beta

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 (67) hide show
  1. package/README.md +0 -0
  2. package/package.json +14 -28
  3. package/LICENSE +0 -21
  4. package/dist-npm/direction-mappings.d.ts +0 -24
  5. package/dist-npm/direction-mappings.d.ts.map +0 -1
  6. package/dist-npm/direction-mappings.js +0 -82
  7. package/dist-npm/direction-mappings.js.map +0 -1
  8. package/dist-npm/english-grammar-engine.d.ts +0 -85
  9. package/dist-npm/english-grammar-engine.d.ts.map +0 -1
  10. package/dist-npm/english-grammar-engine.js +0 -562
  11. package/dist-npm/english-grammar-engine.js.map +0 -1
  12. package/dist-npm/english-parser.d.ts +0 -184
  13. package/dist-npm/english-parser.d.ts.map +0 -1
  14. package/dist-npm/english-parser.js +0 -1268
  15. package/dist-npm/english-parser.js.map +0 -1
  16. package/dist-npm/english-pattern-compiler.d.ts +0 -29
  17. package/dist-npm/english-pattern-compiler.d.ts.map +0 -1
  18. package/dist-npm/english-pattern-compiler.js +0 -211
  19. package/dist-npm/english-pattern-compiler.js.map +0 -1
  20. package/dist-npm/grammar.d.ts +0 -19
  21. package/dist-npm/grammar.d.ts.map +0 -1
  22. package/dist-npm/grammar.js +0 -620
  23. package/dist-npm/grammar.js.map +0 -1
  24. package/dist-npm/index.d.ts +0 -24
  25. package/dist-npm/index.d.ts.map +0 -1
  26. package/dist-npm/index.js +0 -44
  27. package/dist-npm/index.js.map +0 -1
  28. package/dist-npm/parse-failure.d.ts +0 -59
  29. package/dist-npm/parse-failure.d.ts.map +0 -1
  30. package/dist-npm/parse-failure.js +0 -132
  31. package/dist-npm/parse-failure.js.map +0 -1
  32. package/dist-npm/parser-types.d.ts +0 -185
  33. package/dist-npm/parser-types.d.ts.map +0 -1
  34. package/dist-npm/parser-types.js +0 -134
  35. package/dist-npm/parser-types.js.map +0 -1
  36. package/dist-npm/pronoun-context.d.ts +0 -119
  37. package/dist-npm/pronoun-context.d.ts.map +0 -1
  38. package/dist-npm/pronoun-context.js +0 -249
  39. package/dist-npm/pronoun-context.js.map +0 -1
  40. package/dist-npm/scope-evaluator.d.ts +0 -58
  41. package/dist-npm/scope-evaluator.d.ts.map +0 -1
  42. package/dist-npm/scope-evaluator.js +0 -205
  43. package/dist-npm/scope-evaluator.js.map +0 -1
  44. package/dist-npm/slot-consumers/entity-slot-consumer.d.ts +0 -36
  45. package/dist-npm/slot-consumers/entity-slot-consumer.d.ts.map +0 -1
  46. package/dist-npm/slot-consumers/entity-slot-consumer.js +0 -413
  47. package/dist-npm/slot-consumers/entity-slot-consumer.js.map +0 -1
  48. package/dist-npm/slot-consumers/index.d.ts +0 -43
  49. package/dist-npm/slot-consumers/index.d.ts.map +0 -1
  50. package/dist-npm/slot-consumers/index.js +0 -78
  51. package/dist-npm/slot-consumers/index.js.map +0 -1
  52. package/dist-npm/slot-consumers/slot-consumer.d.ts +0 -61
  53. package/dist-npm/slot-consumers/slot-consumer.d.ts.map +0 -1
  54. package/dist-npm/slot-consumers/slot-consumer.js +0 -31
  55. package/dist-npm/slot-consumers/slot-consumer.js.map +0 -1
  56. package/dist-npm/slot-consumers/text-slot-consumer.d.ts +0 -33
  57. package/dist-npm/slot-consumers/text-slot-consumer.d.ts.map +0 -1
  58. package/dist-npm/slot-consumers/text-slot-consumer.js +0 -157
  59. package/dist-npm/slot-consumers/text-slot-consumer.js.map +0 -1
  60. package/dist-npm/slot-consumers/typed-slot-consumer.d.ts +0 -35
  61. package/dist-npm/slot-consumers/typed-slot-consumer.d.ts.map +0 -1
  62. package/dist-npm/slot-consumers/typed-slot-consumer.js +0 -151
  63. package/dist-npm/slot-consumers/typed-slot-consumer.js.map +0 -1
  64. package/dist-npm/slot-consumers/vocabulary-slot-consumer.d.ts +0 -42
  65. package/dist-npm/slot-consumers/vocabulary-slot-consumer.d.ts.map +0 -1
  66. package/dist-npm/slot-consumers/vocabulary-slot-consumer.js +0 -186
  67. package/dist-npm/slot-consumers/vocabulary-slot-consumer.js.map +0 -1
package/README.md CHANGED
File without changes
package/package.json CHANGED
@@ -1,30 +1,24 @@
1
1
  {
2
2
  "name": "@sharpee/parser-en-us",
3
- "version": "0.9.62-beta",
3
+ "version": "0.9.66-beta",
4
4
  "description": "English (US) parser for Sharpee Interactive Fiction Platform",
5
- "main": "dist-npm/index.js",
5
+ "main": "./index.js",
6
6
  "module": "dist-npm/index.js",
7
- "types": "dist-npm/index.d.ts",
7
+ "types": "./index.d.ts",
8
8
  "exports": {
9
9
  ".": {
10
- "types": "./dist-npm/index.d.ts",
11
- "import": "./dist-npm/index.js",
12
- "require": "./dist-npm/index.js"
10
+ "types": "./index.d.ts",
11
+ "require": "./index.js",
12
+ "default": "./index.js"
13
13
  }
14
14
  },
15
- "dependencies": {
16
- "@sharpee/core": "0.9.62-beta",
17
- "@sharpee/world-model": "0.9.62-beta",
18
- "@sharpee/if-domain": "0.9.62-beta",
19
- "@sharpee/lang-en-us": "0.9.62-beta"
20
- },
21
- "devDependencies": {
22
- "@types/node": "^20.8.0",
23
- "@typescript-eslint/eslint-plugin": "^6.7.4",
24
- "@typescript-eslint/parser": "^6.7.4",
25
- "eslint": "^8.50.0",
26
- "rimraf": "^5.0.5",
27
- "typescript": "^5.2.2"
15
+ "scripts": {
16
+ "build": "tsc",
17
+ "clean": "rimraf dist",
18
+ "test": "vitest",
19
+ "test:ci": "vitest run",
20
+ "lint": "eslint src --ext .ts",
21
+ "build:npm": "tsc --outDir dist-npm"
28
22
  },
29
23
  "files": [
30
24
  "dist-npm"
@@ -54,13 +48,5 @@
54
48
  },
55
49
  "publishConfig": {
56
50
  "access": "public"
57
- },
58
- "scripts": {
59
- "build": "tsc",
60
- "clean": "rimraf dist",
61
- "test": "vitest",
62
- "test:ci": "vitest run",
63
- "lint": "eslint src --ext .ts",
64
- "build:npm": "tsc --outDir dist-npm"
65
51
  }
66
- }
52
+ }
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 David Cornelson
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
@@ -1,24 +0,0 @@
1
- /**
2
- * English-specific direction mappings for the parser
3
- * Maps English words and abbreviations to language-agnostic Direction constants
4
- */
5
- import { DirectionType } from '@sharpee/world-model';
6
- /**
7
- * Map English direction words to Direction constants
8
- */
9
- export declare const DirectionWords: Record<string, DirectionType>;
10
- /**
11
- * Map English abbreviations to Direction constants
12
- */
13
- export declare const DirectionAbbreviations: Record<string, DirectionType>;
14
- /**
15
- * Parse an English direction string to a Direction constant
16
- * Returns null if the string is not a recognized direction
17
- */
18
- export declare function parseDirection(input: string): DirectionType | null;
19
- /**
20
- * Get the English word for a Direction constant
21
- * Used for display/output
22
- */
23
- export declare function getDirectionWord(direction: DirectionType): string;
24
- //# sourceMappingURL=direction-mappings.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"direction-mappings.d.ts","sourceRoot":"","sources":["../src/direction-mappings.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAa,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAEhE;;GAEG;AACH,eAAO,MAAM,cAAc,EAAE,MAAM,CAAC,MAAM,EAAE,aAAa,CAexD,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,sBAAsB,EAAE,MAAM,CAAC,MAAM,EAAE,aAAa,CAWhE,CAAC;AAEF;;;GAGG;AACH,wBAAgB,cAAc,CAAC,KAAK,EAAE,MAAM,GAAG,aAAa,GAAG,IAAI,CAgBlE;AAED;;;GAGG;AACH,wBAAgB,gBAAgB,CAAC,SAAS,EAAE,aAAa,GAAG,MAAM,CAajE"}
@@ -1,82 +0,0 @@
1
- "use strict";
2
- /**
3
- * English-specific direction mappings for the parser
4
- * Maps English words and abbreviations to language-agnostic Direction constants
5
- */
6
- Object.defineProperty(exports, "__esModule", { value: true });
7
- exports.DirectionAbbreviations = exports.DirectionWords = void 0;
8
- exports.parseDirection = parseDirection;
9
- exports.getDirectionWord = getDirectionWord;
10
- const world_model_1 = require("@sharpee/world-model");
11
- /**
12
- * Map English direction words to Direction constants
13
- */
14
- exports.DirectionWords = {
15
- 'north': world_model_1.Direction.NORTH,
16
- 'south': world_model_1.Direction.SOUTH,
17
- 'east': world_model_1.Direction.EAST,
18
- 'west': world_model_1.Direction.WEST,
19
- 'northeast': world_model_1.Direction.NORTHEAST,
20
- 'northwest': world_model_1.Direction.NORTHWEST,
21
- 'southeast': world_model_1.Direction.SOUTHEAST,
22
- 'southwest': world_model_1.Direction.SOUTHWEST,
23
- 'up': world_model_1.Direction.UP,
24
- 'down': world_model_1.Direction.DOWN,
25
- 'in': world_model_1.Direction.IN,
26
- 'inside': world_model_1.Direction.IN,
27
- 'out': world_model_1.Direction.OUT,
28
- 'outside': world_model_1.Direction.OUT
29
- };
30
- /**
31
- * Map English abbreviations to Direction constants
32
- */
33
- exports.DirectionAbbreviations = {
34
- 'n': world_model_1.Direction.NORTH,
35
- 's': world_model_1.Direction.SOUTH,
36
- 'e': world_model_1.Direction.EAST,
37
- 'w': world_model_1.Direction.WEST,
38
- 'ne': world_model_1.Direction.NORTHEAST,
39
- 'nw': world_model_1.Direction.NORTHWEST,
40
- 'se': world_model_1.Direction.SOUTHEAST,
41
- 'sw': world_model_1.Direction.SOUTHWEST,
42
- 'u': world_model_1.Direction.UP,
43
- 'd': world_model_1.Direction.DOWN
44
- };
45
- /**
46
- * Parse an English direction string to a Direction constant
47
- * Returns null if the string is not a recognized direction
48
- */
49
- function parseDirection(input) {
50
- if (!input)
51
- return null;
52
- const normalized = input.toLowerCase().trim();
53
- // Check abbreviations first (more specific)
54
- if (exports.DirectionAbbreviations[normalized]) {
55
- return exports.DirectionAbbreviations[normalized];
56
- }
57
- // Then check full words
58
- if (exports.DirectionWords[normalized]) {
59
- return exports.DirectionWords[normalized];
60
- }
61
- return null;
62
- }
63
- /**
64
- * Get the English word for a Direction constant
65
- * Used for display/output
66
- */
67
- function getDirectionWord(direction) {
68
- // Find the first matching English word for this direction
69
- for (const [word, dir] of Object.entries(exports.DirectionWords)) {
70
- if (dir === direction) {
71
- // Prefer the primary forms (not 'inside'/'outside')
72
- if (direction === world_model_1.Direction.IN && word === 'inside')
73
- continue;
74
- if (direction === world_model_1.Direction.OUT && word === 'outside')
75
- continue;
76
- return word;
77
- }
78
- }
79
- // Fallback to lowercase version of constant
80
- return direction.toLowerCase();
81
- }
82
- //# sourceMappingURL=direction-mappings.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"direction-mappings.js","sourceRoot":"","sources":["../src/direction-mappings.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AA4CH,wCAgBC;AAMD,4CAaC;AA7ED,sDAAgE;AAEhE;;GAEG;AACU,QAAA,cAAc,GAAkC;IAC3D,OAAO,EAAE,uBAAS,CAAC,KAAK;IACxB,OAAO,EAAE,uBAAS,CAAC,KAAK;IACxB,MAAM,EAAE,uBAAS,CAAC,IAAI;IACtB,MAAM,EAAE,uBAAS,CAAC,IAAI;IACtB,WAAW,EAAE,uBAAS,CAAC,SAAS;IAChC,WAAW,EAAE,uBAAS,CAAC,SAAS;IAChC,WAAW,EAAE,uBAAS,CAAC,SAAS;IAChC,WAAW,EAAE,uBAAS,CAAC,SAAS;IAChC,IAAI,EAAE,uBAAS,CAAC,EAAE;IAClB,MAAM,EAAE,uBAAS,CAAC,IAAI;IACtB,IAAI,EAAE,uBAAS,CAAC,EAAE;IAClB,QAAQ,EAAE,uBAAS,CAAC,EAAE;IACtB,KAAK,EAAE,uBAAS,CAAC,GAAG;IACpB,SAAS,EAAE,uBAAS,CAAC,GAAG;CACzB,CAAC;AAEF;;GAEG;AACU,QAAA,sBAAsB,GAAkC;IACnE,GAAG,EAAE,uBAAS,CAAC,KAAK;IACpB,GAAG,EAAE,uBAAS,CAAC,KAAK;IACpB,GAAG,EAAE,uBAAS,CAAC,IAAI;IACnB,GAAG,EAAE,uBAAS,CAAC,IAAI;IACnB,IAAI,EAAE,uBAAS,CAAC,SAAS;IACzB,IAAI,EAAE,uBAAS,CAAC,SAAS;IACzB,IAAI,EAAE,uBAAS,CAAC,SAAS;IACzB,IAAI,EAAE,uBAAS,CAAC,SAAS;IACzB,GAAG,EAAE,uBAAS,CAAC,EAAE;IACjB,GAAG,EAAE,uBAAS,CAAC,IAAI;CACpB,CAAC;AAEF;;;GAGG;AACH,SAAgB,cAAc,CAAC,KAAa;IAC1C,IAAI,CAAC,KAAK;QAAE,OAAO,IAAI,CAAC;IAExB,MAAM,UAAU,GAAG,KAAK,CAAC,WAAW,EAAE,CAAC,IAAI,EAAE,CAAC;IAE9C,4CAA4C;IAC5C,IAAI,8BAAsB,CAAC,UAAU,CAAC,EAAE,CAAC;QACvC,OAAO,8BAAsB,CAAC,UAAU,CAAC,CAAC;IAC5C,CAAC;IAED,wBAAwB;IACxB,IAAI,sBAAc,CAAC,UAAU,CAAC,EAAE,CAAC;QAC/B,OAAO,sBAAc,CAAC,UAAU,CAAC,CAAC;IACpC,CAAC;IAED,OAAO,IAAI,CAAC;AACd,CAAC;AAED;;;GAGG;AACH,SAAgB,gBAAgB,CAAC,SAAwB;IACvD,0DAA0D;IAC1D,KAAK,MAAM,CAAC,IAAI,EAAE,GAAG,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,sBAAc,CAAC,EAAE,CAAC;QACzD,IAAI,GAAG,KAAK,SAAS,EAAE,CAAC;YACtB,oDAAoD;YACpD,IAAI,SAAS,KAAK,uBAAS,CAAC,EAAE,IAAI,IAAI,KAAK,QAAQ;gBAAE,SAAS;YAC9D,IAAI,SAAS,KAAK,uBAAS,CAAC,GAAG,IAAI,IAAI,KAAK,SAAS;gBAAE,SAAS;YAChE,OAAO,IAAI,CAAC;QACd,CAAC;IACH,CAAC;IAED,4CAA4C;IAC5C,OAAO,SAAS,CAAC,WAAW,EAAE,CAAC;AACjC,CAAC"}
@@ -1,85 +0,0 @@
1
- /**
2
- * @file English Grammar Engine
3
- * @description English-specific implementation of grammar matching
4
- */
5
- import { GrammarEngine, GrammarContext, PatternMatch, GrammarMatchOptions, SlotMatch } from '@sharpee/if-domain';
6
- import { Token } from '@sharpee/if-domain';
7
- import { SlotConsumerRegistry } from './slot-consumers';
8
- import type { PartialMatchFailure } from './parse-failure';
9
- /**
10
- * Result of attempting to match a rule - either success or failure with info
11
- */
12
- export type MatchAttemptResult = {
13
- success: true;
14
- match: PatternMatch;
15
- } | {
16
- success: false;
17
- failure: PartialMatchFailure;
18
- };
19
- /**
20
- * Extended match options with failure tracking
21
- */
22
- export interface ExtendedMatchOptions extends GrammarMatchOptions {
23
- /** If true, collect partial match failures for error reporting */
24
- trackFailures?: boolean;
25
- }
26
- /**
27
- * Result of findMatches with optional failure information
28
- */
29
- export interface MatchResult {
30
- matches: PatternMatch[];
31
- failures?: PartialMatchFailure[];
32
- }
33
- /**
34
- * English-specific grammar matching engine
35
- */
36
- export declare class EnglishGrammarEngine extends GrammarEngine {
37
- private slotConsumerRegistry;
38
- /** Last set of partial match failures (for error reporting) */
39
- private lastFailures;
40
- constructor(slotConsumerRegistry?: SlotConsumerRegistry);
41
- /**
42
- * Get the last set of partial match failures (for error reporting)
43
- */
44
- getLastFailures(): PartialMatchFailure[];
45
- /**
46
- * Find matching grammar rules for tokens
47
- */
48
- findMatches(tokens: Token[], context: GrammarContext, options?: GrammarMatchOptions): PatternMatch[];
49
- /**
50
- * Try to match a single rule against tokens
51
- */
52
- private tryMatchRule;
53
- /**
54
- * Try to match a single rule against tokens, returning failure info if no match
55
- */
56
- private tryMatchRuleWithFailure;
57
- /**
58
- * Build semantic properties from rule and matched tokens
59
- */
60
- private buildSemantics;
61
- /**
62
- * Consume tokens for a slot
63
- */
64
- private consumeSlot;
65
- /**
66
- * Extract typed value from a NUMBER slot match
67
- */
68
- static extractNumberValue(match: SlotMatch): number | null;
69
- /**
70
- * Extract typed value from an ORDINAL slot match
71
- */
72
- static extractOrdinalValue(match: SlotMatch): number | null;
73
- /**
74
- * Extract canonical direction from a DIRECTION slot match
75
- */
76
- static extractDirectionValue(match: SlotMatch): string | null;
77
- /**
78
- * Extract time components from a TIME slot match
79
- */
80
- static extractTimeValue(match: SlotMatch): {
81
- hours: number;
82
- minutes: number;
83
- } | null;
84
- }
85
- //# sourceMappingURL=english-grammar-engine.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"english-grammar-engine.d.ts","sourceRoot":"","sources":["../src/english-grammar-engine.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EACL,aAAa,EACb,cAAc,EACd,YAAY,EACZ,mBAAmB,EAInB,SAAS,EACV,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,KAAK,EAAE,MAAM,oBAAoB,CAAC;AAG3C,OAAO,EAAE,oBAAoB,EAA8C,MAAM,kBAAkB,CAAC;AACpG,OAAO,KAAK,EAAE,mBAAmB,EAAe,MAAM,iBAAiB,CAAC;AAExE;;GAEG;AACH,MAAM,MAAM,kBAAkB,GAC1B;IAAE,OAAO,EAAE,IAAI,CAAC;IAAC,KAAK,EAAE,YAAY,CAAA;CAAE,GACtC;IAAE,OAAO,EAAE,KAAK,CAAC;IAAC,OAAO,EAAE,mBAAmB,CAAA;CAAE,CAAC;AAErD;;GAEG;AACH,MAAM,WAAW,oBAAqB,SAAQ,mBAAmB;IAC/D,kEAAkE;IAClE,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,WAAW;IAC1B,OAAO,EAAE,YAAY,EAAE,CAAC;IACxB,QAAQ,CAAC,EAAE,mBAAmB,EAAE,CAAC;CAClC;AAED;;GAEG;AACH,qBAAa,oBAAqB,SAAQ,aAAa;IACrD,OAAO,CAAC,oBAAoB,CAAuB;IAEnD,+DAA+D;IAC/D,OAAO,CAAC,YAAY,CAA6B;gBAErC,oBAAoB,CAAC,EAAE,oBAAoB;IAMvD;;OAEG;IACH,eAAe,IAAI,mBAAmB,EAAE;IAIxC;;OAEG;IACH,WAAW,CACT,MAAM,EAAE,KAAK,EAAE,EACf,OAAO,EAAE,cAAc,EACvB,OAAO,GAAE,mBAAwB,GAChC,YAAY,EAAE;IAyCjB;;OAEG;IACH,OAAO,CAAC,YAAY;IAuKpB;;OAEG;IACH,OAAO,CAAC,uBAAuB;IAgN/B;;OAEG;IACH,OAAO,CAAC,cAAc;IAwDtB;;OAEG;IACH,OAAO,CAAC,WAAW;IA6DnB;;OAEG;IACH,MAAM,CAAC,kBAAkB,CAAC,KAAK,EAAE,SAAS,GAAG,MAAM,GAAG,IAAI;IAkB1D;;OAEG;IACH,MAAM,CAAC,mBAAmB,CAAC,KAAK,EAAE,SAAS,GAAG,MAAM,GAAG,IAAI;IAmB3D;;OAEG;IACH,MAAM,CAAC,qBAAqB,CAAC,KAAK,EAAE,SAAS,GAAG,MAAM,GAAG,IAAI;IAO7D;;OAEG;IACH,MAAM,CAAC,gBAAgB,CAAC,KAAK,EAAE,SAAS,GAAG;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI;CAarF"}