gedcom-ts 2.0.1 → 2.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.
- package/CHANGELOG.md +222 -0
- package/README.md +373 -92
- package/dist/commons/Act.d.ts +43 -6
- package/dist/commons/DateAct.d.ts +75 -0
- package/dist/commons/Identificator.enum.d.ts +5 -131
- package/dist/commons/Identifier.enum.d.ts +134 -0
- package/dist/commons/IndiAttribute.d.ts +11 -0
- package/dist/commons/IndiGedcomSubLine.d.ts +6 -0
- package/dist/commons/MultimediaFile.d.ts +13 -2
- package/dist/commons/Note.d.ts +2 -2
- package/dist/commons/Person.d.ts +21 -3
- package/dist/commons/PersonNameVariant.d.ts +21 -0
- package/dist/commons/Place.d.ts +19 -0
- package/dist/commons/gedcomEventTags.d.ts +10 -0
- package/dist/edit/ActEdit.d.ts +29 -0
- package/dist/edit/ActsEdit.d.ts +17 -0
- package/dist/edit/DateActEdit.d.ts +37 -0
- package/dist/edit/NotesEdit.d.ts +14 -0
- package/dist/edit/PersonEdit.d.ts +27 -0
- package/dist/edit/PlaceEdit.d.ts +23 -0
- package/dist/edit/index.d.ts +19 -0
- package/dist/export/GEDCOM.d.ts +33 -7
- package/dist/import/LoadFile.d.ts +14 -0
- package/dist/import/ReadGed.d.ts +48 -0
- package/dist/import/SplitedInformations.d.ts +29 -3
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +25 -9
- package/dist/index.mjs +1 -1
- package/dist/utils/gedcom/actExtraction.d.ts +8 -0
- package/dist/utils/gedcom/datasetVersion.d.ts +7 -0
- package/dist/utils/gedcom/extractIndiNamesAndAttributes.d.ts +4 -0
- package/dist/utils/gedcom/labelKeyedRecords.d.ts +13 -0
- package/dist/utils/gedcom/mediaFormFromUri.d.ts +2 -0
- package/dist/utils/gedcom/parseStandaloneObje.d.ts +9 -0
- package/dist/utils/gedcom/personName.d.ts +13 -0
- package/dist/utils/gedcom/pointers.d.ts +19 -0
- package/dist/utils/multimedia/collectRelativeMediaPaths.d.ts +2 -0
- package/dist/version.d.ts +6 -0
- package/package.json +4 -3
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { DateAct, type Day, type Month, type TypeDateActSimpleQualifier } from "../commons/DateAct";
|
|
2
|
+
/**
|
|
3
|
+
* API d’édition cohérente autour d’un {@link DateAct} existant (mutation in-place).
|
|
4
|
+
*/
|
|
5
|
+
export declare class DateActEdit {
|
|
6
|
+
private readonly target;
|
|
7
|
+
constructor(target: DateAct);
|
|
8
|
+
get value(): DateAct;
|
|
9
|
+
clear(): this;
|
|
10
|
+
/** Parse GEDCOM `DATE` / `SDATE` (même règles que `new DateAct(line)`). */
|
|
11
|
+
applyGedcomPayload(line: string): this;
|
|
12
|
+
setExactDate(year?: number, month?: Month, day?: Day): this;
|
|
13
|
+
setQualified(typeDateAct: TypeDateActSimpleQualifier, year?: number, month?: Month, day?: Day): this;
|
|
14
|
+
setBetween(start: {
|
|
15
|
+
year: number;
|
|
16
|
+
month?: Month;
|
|
17
|
+
day?: Day;
|
|
18
|
+
}, end: {
|
|
19
|
+
year: number;
|
|
20
|
+
month?: Month;
|
|
21
|
+
day?: Day;
|
|
22
|
+
}): this;
|
|
23
|
+
setFromTo(start: {
|
|
24
|
+
year: number;
|
|
25
|
+
month?: Month;
|
|
26
|
+
day?: Day;
|
|
27
|
+
}, end: {
|
|
28
|
+
year: number;
|
|
29
|
+
month?: Month;
|
|
30
|
+
day?: Day;
|
|
31
|
+
}): this;
|
|
32
|
+
setTime(value: string | null): this;
|
|
33
|
+
setDatePhrase(value: string | null): this;
|
|
34
|
+
appendDatePhrase(fragment: string): this;
|
|
35
|
+
setVerbatimPayload(value: string | null): this;
|
|
36
|
+
}
|
|
37
|
+
export declare function editDateAct(date: DateAct): DateActEdit;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Note, Notes } from "../commons/Note";
|
|
2
|
+
/**
|
|
3
|
+
* API d’édition cohérente autour d'un {@link Notes}.
|
|
4
|
+
*/
|
|
5
|
+
export declare class NotesEdit {
|
|
6
|
+
private readonly target;
|
|
7
|
+
constructor(target: Notes);
|
|
8
|
+
get value(): Notes;
|
|
9
|
+
add(note: Note): this;
|
|
10
|
+
replaceAt(index: number, note: Note): this;
|
|
11
|
+
removeAt(index: number): this;
|
|
12
|
+
clear(): this;
|
|
13
|
+
}
|
|
14
|
+
export declare function editNotes(notes: Notes): NotesEdit;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { IndiAttribute } from "../commons/IndiAttribute";
|
|
2
|
+
import { Person, Sex } from "../commons/Person";
|
|
3
|
+
import type { PersonNameVariant } from "../commons/PersonNameVariant";
|
|
4
|
+
import { ActsEdit } from "./ActsEdit";
|
|
5
|
+
import { NotesEdit } from "./NotesEdit";
|
|
6
|
+
/**
|
|
7
|
+
* API d’édition cohérente autour d'un {@link Person} existant (identité, unions, actes, notes).
|
|
8
|
+
*/
|
|
9
|
+
export declare class PersonEdit {
|
|
10
|
+
private readonly target;
|
|
11
|
+
constructor(target: Person);
|
|
12
|
+
get value(): Person;
|
|
13
|
+
setSex(sex: Sex | undefined): this;
|
|
14
|
+
setLastname(lastname: string): this;
|
|
15
|
+
setFirstnames(firstnames: readonly string[]): this;
|
|
16
|
+
setSosa(sosa: number | undefined): this;
|
|
17
|
+
setFamc(famc: number | undefined): this;
|
|
18
|
+
/** Remplace la liste des unions (`FAMS`). */
|
|
19
|
+
setFams(fams: readonly number[]): this;
|
|
20
|
+
clearFams(): this;
|
|
21
|
+
appendFams(famId: number): this;
|
|
22
|
+
setNameVariants(variants: readonly PersonNameVariant[]): this;
|
|
23
|
+
setAttributes(attrs: readonly IndiAttribute[]): this;
|
|
24
|
+
acts(): ActsEdit;
|
|
25
|
+
notes(): NotesEdit;
|
|
26
|
+
}
|
|
27
|
+
export declare function editPerson(person: Person): PersonEdit;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { CoordinateGPS, Place } from "../commons/Place";
|
|
2
|
+
/**
|
|
3
|
+
* API d’édition cohérente autour d’un {@link Place} existant.
|
|
4
|
+
*/
|
|
5
|
+
export declare class PlaceEdit {
|
|
6
|
+
private readonly target;
|
|
7
|
+
constructor(target: Place);
|
|
8
|
+
get value(): Place;
|
|
9
|
+
setFromGedcom7Payload(payload: string): this;
|
|
10
|
+
setCity(city: string | null): this;
|
|
11
|
+
setCounty(county: string | null): this;
|
|
12
|
+
setState(state: string | null): this;
|
|
13
|
+
setCountry(country: string | null): this;
|
|
14
|
+
setPlacPhrase(phrase: string | null): this;
|
|
15
|
+
appendPlacPhrase(fragment: string): this;
|
|
16
|
+
clearPlacPhrase(): this;
|
|
17
|
+
setCoordinates(latitude: number, longitude: number): this;
|
|
18
|
+
clearCoordinates(): this;
|
|
19
|
+
/** Remplace le bloc coordonnées (ex. nouveau `CoordinateGPS`). */
|
|
20
|
+
replaceCoordinateModel(coordinate: CoordinateGPS): this;
|
|
21
|
+
clearStructured(): this;
|
|
22
|
+
}
|
|
23
|
+
export declare function editPlace(place: Place): PlaceEdit;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Couche d’édition cohérente (chaînage `this`, noms `set*` / `clear*` / `append*`) sur le modèle existant.
|
|
3
|
+
*
|
|
4
|
+
* @example
|
|
5
|
+
* ```ts
|
|
6
|
+
* import { editPerson, editDateAct } from "gedcom-ts";
|
|
7
|
+
* editPerson(person)
|
|
8
|
+
* .setLastname("Dupont")
|
|
9
|
+
* .acts()
|
|
10
|
+
* .at(0)
|
|
11
|
+
* .setDateAct(new DateAct("1 JAN 1900"));
|
|
12
|
+
* ```
|
|
13
|
+
*/
|
|
14
|
+
export { ActEdit, editAct } from "./ActEdit";
|
|
15
|
+
export { ActsEdit, editActs } from "./ActsEdit";
|
|
16
|
+
export { DateActEdit, editDateAct } from "./DateActEdit";
|
|
17
|
+
export { NotesEdit, editNotes } from "./NotesEdit";
|
|
18
|
+
export { PersonEdit, editPerson } from "./PersonEdit";
|
|
19
|
+
export { PlaceEdit, editPlace } from "./PlaceEdit";
|
package/dist/export/GEDCOM.d.ts
CHANGED
|
@@ -1,26 +1,50 @@
|
|
|
1
1
|
import { Person } from '../commons/Person';
|
|
2
|
+
/** Options d’export `.ged` / `.zip` (round-trip partiel avec {@link ReadGed.preservedTopLevelRecords}). */
|
|
3
|
+
export type GedcomExportOptions = {
|
|
4
|
+
/** Blocs `0 …` à recoller avant `SUBM` / `TRLR` (ex. `readGed.preservedTopLevelRecords`). */
|
|
5
|
+
extraTopLevelRecords?: readonly string[] | null;
|
|
6
|
+
/** Balise BCP 47 pour `1 LANG` sous `HEAD` (défaut `en-US`). */
|
|
7
|
+
headLanguageTag?: string | null;
|
|
8
|
+
/** Texte `1 COPR` sous `HEAD` (copyright / mention légale), une ligne logique. */
|
|
9
|
+
headCopyright?: string | null;
|
|
10
|
+
/**
|
|
11
|
+
* Définitions d’extensions `HEAD`.`SCHMA` (`2 TAG …`), ex. `{ tag: "_FOO", uri: "https://…" }`.
|
|
12
|
+
* Les tags sont émis tels quels (GEDCOM 7 : souvent préfixe `_`).
|
|
13
|
+
*/
|
|
14
|
+
headSchemaTagDefs?: readonly {
|
|
15
|
+
readonly tag: string;
|
|
16
|
+
readonly uri: string;
|
|
17
|
+
}[] | null;
|
|
18
|
+
/**
|
|
19
|
+
* Valeur `1 DEST` sous `HEAD` (URI ou identifiant d’application cible, ex. `https://gedcom.io/`).
|
|
20
|
+
*/
|
|
21
|
+
headDestination?: string | null;
|
|
22
|
+
};
|
|
2
23
|
declare class GEDCOM {
|
|
3
24
|
protected title: string;
|
|
4
25
|
protected persons: Array<Person>;
|
|
5
26
|
protected onCreate: number;
|
|
6
27
|
private haveFiles;
|
|
7
|
-
|
|
28
|
+
private readonly exportOptions;
|
|
29
|
+
constructor(title: string | undefined, persons: Array<Person>, haveFiles: boolean, exportOptions?: GedcomExportOptions | null);
|
|
8
30
|
private get beginGedcom();
|
|
31
|
+
private get defaultSubmitterRecord();
|
|
32
|
+
/** Enregistrements `OBJE` pour les médias avec {@link MultimediaFile.objeXrefId} et {@link MultimediaFile.sourceUri}. */
|
|
33
|
+
private collectObjeRecords;
|
|
34
|
+
private joinExtraTopLevelRecords;
|
|
9
35
|
private get contentGedcom();
|
|
10
36
|
gedcomBlob(): Blob;
|
|
11
37
|
}
|
|
12
38
|
export declare class ExportGedzipFile extends GEDCOM {
|
|
13
|
-
|
|
14
|
-
constructor(...args: [persons: Array<Person>] | [title: string, persons: Array<Person>]);
|
|
39
|
+
constructor(...args: [Person[]] | [string, Person[]] | [Person[], GedcomExportOptions] | [string, Person[], GedcomExportOptions]);
|
|
15
40
|
download(): Promise<void>;
|
|
16
|
-
private collectMediaFiles;
|
|
17
41
|
private resolvePersonIndi;
|
|
18
42
|
private resolveActIndis;
|
|
19
43
|
private resolveZipPath;
|
|
20
44
|
private zipFile;
|
|
21
45
|
}
|
|
22
46
|
export declare class ExportGedcomFile extends GEDCOM {
|
|
23
|
-
constructor(...args: [
|
|
47
|
+
constructor(...args: [Person[]] | [string, Person[]] | [Person[], GedcomExportOptions] | [string, Person[], GedcomExportOptions]);
|
|
24
48
|
download(): void;
|
|
25
49
|
}
|
|
26
50
|
export declare class FamilyLine {
|
|
@@ -33,18 +57,20 @@ export declare class PersonLine {
|
|
|
33
57
|
private readonly INDI;
|
|
34
58
|
private readonly NAME;
|
|
35
59
|
private readonly SEX;
|
|
60
|
+
private readonly ATTRS;
|
|
36
61
|
private readonly FAMS;
|
|
37
62
|
private readonly FAMC;
|
|
38
63
|
private readonly FILES;
|
|
39
64
|
private readonly ACTS;
|
|
40
65
|
private readonly NOTES;
|
|
66
|
+
private readonly haveFiles;
|
|
41
67
|
constructor(person: Person, haveFiles: boolean);
|
|
42
68
|
line(): string;
|
|
43
|
-
private getFileLines;
|
|
44
69
|
private getIndi;
|
|
45
70
|
private getName;
|
|
71
|
+
private getIndiAttributes;
|
|
46
72
|
private getSex;
|
|
47
|
-
private
|
|
73
|
+
private buildPersonMultimediaLines;
|
|
48
74
|
private getFams;
|
|
49
75
|
private getFamc;
|
|
50
76
|
}
|
|
@@ -1,2 +1,16 @@
|
|
|
1
1
|
import { ReadGed } from './ReadGed';
|
|
2
|
+
import type { Place } from '../commons/Place';
|
|
3
|
+
/**
|
|
4
|
+
* Erreur levée quand une entrée `.ged` dans un ZIP ne se décode pas comme du GEDCOM valide
|
|
5
|
+
* (en-tête `0 HEAD` absent au début). Cause la plus fréquente : **ZIP chiffré** (mot de passe),
|
|
6
|
+
* non pris en charge par le décompresseur utilisé ici.
|
|
7
|
+
*
|
|
8
|
+
* Les applications peuvent comparer `error.message === IMPORT_ERR_ZIP_GED_UNREADABLE`.
|
|
9
|
+
*/
|
|
10
|
+
export declare const IMPORT_ERR_ZIP_GED_UNREADABLE = "ZIP chiffr\u00E9 (mot de passe) ou .ged illisible dans l\u2019archive : extrayez le fichier .ged avec votre explorateur ou utilitaire ZIP, puis importez uniquement ce .ged. L\u2019import direct des archives prot\u00E9g\u00E9es par mot de passe n\u2019est pas pris en charge.";
|
|
11
|
+
/** Same as {@link ReadGed.empty}; use when starting a tree without a `.ged` / `.zip` import. */
|
|
12
|
+
export declare const createEmptyReadGed: (options?: {
|
|
13
|
+
mapFiles?: Map<string, File>;
|
|
14
|
+
placesMap?: Map<string, Place>;
|
|
15
|
+
}) => ReadGed;
|
|
2
16
|
export declare const importGedFile: (file: File) => Promise<ReadGed>;
|
package/dist/import/ReadGed.d.ts
CHANGED
|
@@ -1,19 +1,67 @@
|
|
|
1
1
|
import { Person } from '../commons/Person';
|
|
2
2
|
import { SplitGedcom } from "./SplitedInformations";
|
|
3
3
|
import { Place } from "../commons/Place";
|
|
4
|
+
import { type GedcomDatasetVersion } from "../utils/gedcom/datasetVersion";
|
|
5
|
+
/**
|
|
6
|
+
* Graphe importé depuis un fichier GEDCOM. Les enregistrements de niveau `0` non intégrés au modèle
|
|
7
|
+
* typé (OBJE, REPO, SOUR, etc.) restent accessibles via {@link preservedTopLevelRecords}.
|
|
8
|
+
*/
|
|
4
9
|
export declare class ReadGed extends SplitGedcom {
|
|
10
|
+
private resolvedInformationFamilies;
|
|
11
|
+
private resolvedInformationNotes;
|
|
12
|
+
private famPointerToId;
|
|
13
|
+
private notePointerToId;
|
|
14
|
+
private objePayloadById;
|
|
15
|
+
/** Déduit du bloc `HEAD` (`GEDC`.`VERS`). */
|
|
16
|
+
datasetVersion: GedcomDatasetVersion;
|
|
5
17
|
persons: Person[];
|
|
6
18
|
mapPersons: Map<number, Person>;
|
|
7
19
|
partnersMap: Map<number, Person[]>;
|
|
8
20
|
childsMap: Map<number, Person[]>;
|
|
9
21
|
mapFiles: Map<string, File>;
|
|
10
22
|
placesMap: Map<string, Place>;
|
|
23
|
+
/**
|
|
24
|
+
* Index des pointeurs d’individu GEDCOM vers {@link Person.INDI} interne.
|
|
25
|
+
* Clés typiques : `Homer_Simpson` (xref textuelle), `I12` (xref `@I12@`).
|
|
26
|
+
*/
|
|
27
|
+
private individualPointerToIndiNumber;
|
|
11
28
|
constructor(gedcomContent?: string, mapFiles?: Map<string, File>, placesMap?: Map<string, Place>, mapPersons?: Map<number, Person>);
|
|
29
|
+
/**
|
|
30
|
+
* Empty genealogy (no INDI/FAM), same runtime shape as after {@link importGedFile}:
|
|
31
|
+
* `persons`, `partnersMap`, `childsMap`, `mapPersons`, `placesMap`, `mapFiles` are initialized.
|
|
32
|
+
*/
|
|
33
|
+
static empty(options?: {
|
|
34
|
+
mapFiles?: Map<string, File>;
|
|
35
|
+
placesMap?: Map<string, Place>;
|
|
36
|
+
}): ReadGed;
|
|
12
37
|
static fromGedcomFile(gedcomFile: File, mapFiles?: Map<string, File>, placesMap?: Map<string, Place>, mapPersons?: Map<number, Person>): Promise<ReadGed>;
|
|
13
38
|
private finalizeAfterParse;
|
|
39
|
+
/**
|
|
40
|
+
* Reconstruit {@link partnersMap} et {@link childsMap} à partir des pointeurs `FAMS` / `FAMC`
|
|
41
|
+
* de chaque personne. Peut être rappelé après édition des liens ; chaque appel remplace les
|
|
42
|
+
* cartes (pas d’accumulation).
|
|
43
|
+
*/
|
|
14
44
|
groupPartners(): void;
|
|
15
45
|
createDirectAncestries(person: Person): Person[];
|
|
16
46
|
generateUniqueIndi(): number;
|
|
47
|
+
/**
|
|
48
|
+
* Résout un pointeur GEDCOM d’individu (`@Homer_Simpson@`, `Homer_Simpson`, `@I5@`, `I5`) vers la personne importée.
|
|
49
|
+
* Utile pour interpréter `1 CHIL @…@` ou `1 HUSB @…@` dans des fichiers à xref textuelle.
|
|
50
|
+
*/
|
|
51
|
+
resolveIndividualPointer(raw: string): Person | undefined;
|
|
52
|
+
/** Enfants rattachés aux unions listées dans `parent.FAMS` (même logique que {@link childsMap}). */
|
|
53
|
+
getChildrenForParent(parent: Person): Person[];
|
|
54
|
+
/** Enfants d’une famille donnée (identifiant interne `F`, ex. `0` pour `@F0000@`). */
|
|
55
|
+
getChildrenOfFamily(familyId: number): Person[];
|
|
17
56
|
private haveParentsOfPerson;
|
|
18
57
|
private createPersons;
|
|
58
|
+
/**
|
|
59
|
+
* Xrefs textuelles `0 @Homer_Simpson@ INDI` → entiers uniques (après le max des `@I{n}@` du fichier).
|
|
60
|
+
*/
|
|
61
|
+
private buildTextualIndiXrefToSyntheticIdMap;
|
|
62
|
+
private buildPerson;
|
|
63
|
+
private hydratePlacesFromActs;
|
|
64
|
+
private upsertPlace;
|
|
65
|
+
private linkPersonAsPartner;
|
|
66
|
+
private linkPersonAsChild;
|
|
19
67
|
}
|
|
@@ -1,13 +1,39 @@
|
|
|
1
1
|
export declare class SplitGedcom {
|
|
2
|
+
/** Lignes du premier enregistrement `0 HEAD` (y compris la ligne `0 HEAD`), si présent. */
|
|
3
|
+
protected informationHeaderLines: string[] | null;
|
|
2
4
|
protected informationPersons: string[][];
|
|
3
|
-
|
|
4
|
-
protected
|
|
5
|
+
/** Lignes sous `0 @F…@ FAM` indexées par libellé xref canonique (`1`, `famA`, …). */
|
|
6
|
+
protected informationFamiliesByLabel: Map<string, string[]>;
|
|
7
|
+
/** Lignes sous `0 @N…@ NOTE|SNOTE` indexées par libellé xref canonique. */
|
|
8
|
+
protected informationNotesByLabel: Map<string, string[]>;
|
|
9
|
+
/**
|
|
10
|
+
* Enregistrements `0 …` non intégrés au modèle typé (OBJE, REPO, SOUR, SUBM, FAM/NOTE à xref non
|
|
11
|
+
* numérique, etc.). Conservés dans l’ordre du fichier pour diagnostic ou futur re‑export.
|
|
12
|
+
* `0 TRLR` n’est pas conservé (terminaison standard).
|
|
13
|
+
*/
|
|
14
|
+
private readonly _preservedTopLevelRecords;
|
|
15
|
+
get preservedTopLevelRecords(): readonly string[];
|
|
5
16
|
constructor(gedcomContent?: string);
|
|
6
17
|
protected ingestGedcomText(gedcomContent: string): void;
|
|
7
18
|
protected ingestGedcomFileStream(file: File): Promise<void>;
|
|
8
19
|
private ingestRecordBlock;
|
|
20
|
+
/** N’ajoute pas `0 TRLR` (terminaison du fichier). */
|
|
21
|
+
private preserveTopLevelRecord;
|
|
22
|
+
/** Tout enregistrement `0 @xref@ INDI` (xref numérique `@I1@` ou textuelle `@Homer_Simpson@`). */
|
|
23
|
+
private isIndiRecordFirstLine;
|
|
24
|
+
/**
|
|
25
|
+
* Retire de {@link preservedTopLevelRecords} les blocs `0 @O…@ OBJE` décodables et renvoie leurs
|
|
26
|
+
* charges utiles pour l’hydratation des pointeurs `OBJE` sous `INDI` / actes.
|
|
27
|
+
*/
|
|
28
|
+
protected absorbStandaloneObjeBlocksInto(): Map<number, {
|
|
29
|
+
sourceUri: string;
|
|
30
|
+
}>;
|
|
31
|
+
private splitInformationHeader;
|
|
9
32
|
private splitInformationPersons;
|
|
33
|
+
/** @returns `true` si le bloc a été stocké dans {@link informationFamiliesByLabel}. */
|
|
10
34
|
private splitInformationFamilies;
|
|
35
|
+
/** @returns `true` si le bloc a été stocké dans {@link informationNotesByLabel}. */
|
|
11
36
|
private splitInformationNotes;
|
|
12
|
-
private
|
|
37
|
+
private extractFamRecordLabel;
|
|
38
|
+
private extractNoteRecordLabel;
|
|
13
39
|
}
|