-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathtest.ts
638 lines (540 loc) · 25.4 KB
/
test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
/**
* Source:
* https://github.com/diasks2/pragmatic_segmenter
*/
export const source = [
// Golden Rules (English)
{
name: "Simple period to end sentence",
input: "Hello World. My name is Jonas.",
output: ["Hello World.", "My name is Jonas."]
},
{
name: "Question mark to end sentence",
input: "What is your name? My name is Jonas.",
output: ["What is your name?", "My name is Jonas."]
},
{
name: "Exclamation point to end sentence",
input: "There it is! I found it.",
output: ["There it is!", "I found it."]
},
{
name: "One letter upper case abbreviations",
input: "My name is Jonas E. Smith.",
output: ["My name is Jonas E. Smith."],
skip: true
},
{
name: "One letter lower case abbreviations",
input: "Please turn to p. 55.",
output: ["Please turn to p. 55."]
},
{
name: "Two letter lower case abbreviations in the middle of a sentence",
input: "Were Jane and co. at the party?",
output: ["Were Jane and co. at the party?"]
},
{
name: "Two letter upper case abbreviations in the middle of a sentence",
input: "They closed the deal with Pitt, Briggs & Co. at noon.",
output: ["They closed the deal with Pitt, Briggs & Co. at noon."]
},
{
name: "Two letter lower case abbreviations at the end of a sentence",
input: "Let's ask Jane and co. They should know.",
output: ["Let's ask Jane and co.", "They should know."],
skip: true
},
{
name: "Two letter upper case abbreviations at the end of a sentence",
input: "They closed the deal with Pitt, Briggs & Co. It closed yesterday.",
output: ["They closed the deal with Pitt, Briggs & Co.", "It closed yesterday."]
},
{
name: "Two letter (prepositive) abbreviations",
input: "I can see Mt. Fuji from here.",
output: ["I can see Mt. Fuji from here."]
},
{
name: "Two letter (prepositive & postpositive) abbreviations",
input: "St. Michael's Church is on 5th st. near the light.",
output: ["St. Michael's Church is on 5th st. near the light."]
},
{
name: "Possesive two letter abbreviations",
input: "That is JFK Jr.'s book.",
output: ["That is JFK Jr.'s book."]
},
{
name: "Multi-period abbreviations in the middle of a sentence",
input: "I visited the U.S.A. last year.",
output: ["I visited the U.S.A. last year."]
},
{
name: "Multi-period abbreviations at the end of a sentence",
input: "I live in the E.U. How about you?",
output: ["I live in the E.U.", "How about you?"]
},
{
name: "U.S. as sentence boundary",
input: "I live in the U.S. How about you?",
output: ["I live in the U.S.", "How about you?"]
},
{
name: "U.S. as non sentence boundary with next word capitalized",
input: "I work for the U.S. Government in Virginia.",
output: ["I work for the U.S. Government in Virginia."],
skip: true // prefer to next
},
{
name: "U.S. as non sentence boundary",
input: "I have lived in the U.S. for 20 years.",
output: ["I have lived in the U.S. for 20 years."]
},
{
name: "A.M. / P.M. as non sentence boundary and sentence boundary",
input: "At 5 a.m. Mr. Smith went to the bank. He left the bank at 6 P.M. Mr. Smith then went to the store.",
output: [
"At 5 a.m. Mr. Smith went to the bank.",
"He left the bank at 6 P.M.",
"Mr. Smith then went to the store."
],
skip: true
},
{
name: "Number as non sentence boundary",
input: "She has $100.00 in her bag.",
output: ["She has $100.00 in her bag."]
},
{
name: "Number as sentence boundary",
input: "She has $100.00. It is in her bag.",
output: ["She has $100.00.", "It is in her bag."]
},
{
name: "Parenthetical inside sentence",
input: "He teaches science (He previously worked for 5 years as an engineer.) at the local University.",
output: ["He teaches science (He previously worked for 5 years as an engineer.) at the local University."]
},
{
name: "Email addresses",
input: "Her email is [email protected]. I sent her an email.",
output: ["Her email is [email protected].", "I sent her an email."]
},
{
name: "Web addresses",
input: "The site is: https://www.example.50.com/new-site/awesome_content.html. Please check it out.",
output: ["The site is: https://www.example.50.com/new-site/awesome_content.html.", "Please check it out."]
},
{
name: "Single quotations inside sentence",
input: "She turned to him, 'This is great.' she said.",
output: ["She turned to him, 'This is great.' she said."]
},
{
name: "Double quotations inside sentence",
input: 'She turned to him, "This is great." she said.',
output: ['She turned to him, "This is great." she said.']
},
{
name: "Double quotations at the end of a sentence",
input: 'She turned to him, "This is great." She held the book out to show him.',
output: ['She turned to him, "This is great."', "She held the book out to show him."],
skip: true
},
{
name: "Double punctuation (exclamation point)",
input: "Hello!! Long time no see.",
output: ["Hello!!", "Long time no see."]
},
{
name: "Double punctuation (question mark)",
input: "Hello?? Who is there?",
output: ["Hello??", "Who is there?"]
},
{
name: "Double punctuation (exclamation point / question mark)",
input: "Hello!? Is that you?",
output: ["Hello!?", "Is that you?"]
},
{
name: "Double punctuation (question mark / exclamation point)",
input: "Hello?! Is that you?",
output: ["Hello?!", "Is that you?"]
},
{
name: "List (period followed by parens and no period to end item)",
input: "1.) The first item 2.) The second item",
output: ["1.) The first item", "2.) The second item"],
skip: true
},
{
name: "List (period followed by parens and period to end item)",
input: "1.) The first item. 2.) The second item.",
output: ["1.) The first item.", "2.) The second item."],
skip: true
},
{
name: "List (parens and no period to end item)",
input: "1) The first item 2) The second item",
output: ["1) The first item", "2) The second item"],
skip: true
},
{
name: "List (parens and period to end item)",
input: "1) The first item. 2) The second item.",
output: ["1) The first item.", "2) The second item."],
skip: true
},
{
name: "List (period to mark list and no period to end item)",
input: "1. The first item 2. The second item",
output: ["1. The first item", "2. The second item"],
skip: true
},
{
name: "List (period to mark list and period to end item)",
input: "1. The first item. 2. The second item.",
output: ["1. The first item.", "2. The second item."],
skip: true
},
{
name: "List with bullet",
input: "• 9. The first item • 10. The second item",
output: ["• 9. The first item", "• 10. The second item"],
skip: true
},
{
name: "List with hypthen",
input: "⁃9. The first item ⁃10. The second item",
output: ["⁃9. The first item", "⁃10. The second item"],
skip: true
},
{
name: "Alphabetical list",
input: "a. The first item b. The second item c. The third list item",
output: ["a. The first item", "b. The second item", "c. The third list item"],
skip: true
},
{
name: "Errant newlines in the middle of sentences (PDF)",
input: "This is a sentence\ncut off in the middle because pdf.",
output: ["This is a sentence cut off in the middle because pdf."],
skip: true
},
{
name: "Errant newlines in the middle of sentences",
input: "It was a cold \nnight in the city.",
output: ["It was a cold night in the city."],
skip: true
},
{
name: "Lower case list separated by newline",
input: "features\ncontact manager\nevents, activities\n",
output: ["features", "contact manager", "events, activities"],
skip: true
},
{
name: "Geo Coordinates",
input: "You can find it at N°. 1026.253.553. That is where the treasure is.",
output: ["You can find it at N°. 1026.253.553.", "That is where the treasure is."],
skip: true
},
{
name: "Named entities with an exclamation point",
input: "She works at Yahoo! in the accounting department.",
output: ["She works at Yahoo! in the accounting department."]
},
{
name: "I as a sentence boundary and I as an abbreviation",
input: "We make a good team, you and I. Did you see Albert I. Jones yesterday?",
output: ["We make a good team, you and I.", "Did you see Albert I. Jones yesterday?"]
},
{
name: "Ellipsis at end of quotation",
input: "Thoreau argues that by simplifying one’s life, “the laws of the universe will appear less complex. . . .”",
output: [
"Thoreau argues that by simplifying one’s life, “the laws of the universe will appear less complex. . . .”"
],
skip: true
},
{
name: "Ellipsis with square brackets",
input: '"Bohr [...] used the analogy of parallel stairways [...]" (Smith 55).',
output: ['"Bohr [...] used the analogy of parallel stairways [...]" (Smith 55).']
},
{
name: "Ellipsis as sentence boundary (standard ellipsis rules)",
input: "If words are left off at the end of a sentence, and that is all that is omitted, indicate the omission with ellipsis marks (preceded and followed by a space) and then indicate the end of the sentence with a period . . . . Next sentence.",
output: [
"If words are left off at the end of a sentence, and that is all that is omitted, indicate the omission with ellipsis marks (preceded and followed by a space) and then indicate the end of the sentence with a period . . . .",
"Next sentence."
],
skip: true
},
{
name: "Ellipsis as sentence boundary (non-standard ellipsis rules)",
input: "I never meant that.... She left the store.",
output: ["I never meant that....", "She left the store."]
},
{
name: "Ellipsis as non sentence boundary",
input: "I wasn’t really ... well, what I mean...see . . . what I'm saying, the thing is . . . I didn’t mean it.",
output: [
"I wasn’t really ... well, what I mean...see . . . what I'm saying, the thing is . . . I didn’t mean it."
],
skip: true
},
{
name: "4-dot ellipsis",
input: "One further habit which was somewhat weakened . . . was that of combining words into self-interpreting compounds. . . . The practice was not abandoned. . . .",
output: [
"One further habit which was somewhat weakened . . . was that of combining words into self-interpreting compounds.",
". . . The practice was not abandoned. . . ."
],
skip: true
},
// Golden Rules (German)
{
name: "Quotation at end of sentence",
input: "„Ich habe heute keine Zeit“, sagte die Frau und flüsterte leise: „Und auch keine Lust.“ Wir haben 1.000.000 Euro.",
output: [
"„Ich habe heute keine Zeit“, sagte die Frau und flüsterte leise: „Und auch keine Lust.“",
"Wir haben 1.000.000 Euro."
],
skip: true
},
{
name: "Abbreviations",
input: "Es gibt jedoch einige Vorsichtsmaßnahmen, die Du ergreifen kannst, z. B. ist es sehr empfehlenswert, dass Du Dein Zuhause von allem Junkfood befreist.",
output: [
"Es gibt jedoch einige Vorsichtsmaßnahmen, die Du ergreifen kannst, z. B. ist es sehr empfehlenswert, dass Du Dein Zuhause von allem Junkfood befreist."
],
skip: true
},
{
name: "Numbers",
input: "Was sind die Konsequenzen der Abstimmung vom 12. Juni?",
output: ["Was sind die Konsequenzen der Abstimmung vom 12. Juni?"],
skip: true
},
// Golden Rules (Japanese)
{
name: "Simple period to end sentence",
input: "これはペンです。それはマーカーです。",
output: ["これはペンです。", "それはマーカーです。"]
},
{
name: "Question mark to end sentence",
input: "それは何ですか?ペンですか?",
output: ["それは何ですか?", "ペンですか?"]
},
{
name: "Exclamation point to end sentence",
input: "良かったね!すごい!",
output: ["良かったね!", "すごい!"]
},
{
name: "Quotation",
input: "自民党税制調査会の幹部は、「引き下げ幅は3.29%以上を目指すことになる」と指摘していて、今後、公明党と合意したうえで、30日に決定する与党税制改正大綱に盛り込むことにしています。2%台後半を目指すとする方向で最終調整に入りました。",
output: [
"自民党税制調査会の幹部は、「引き下げ幅は3.29%以上を目指すことになる」と指摘していて、今後、公明党と合意したうえで、30日に決定する与党税制改正大綱に盛り込むことにしています。",
"2%台後半を目指すとする方向で最終調整に入りました。"
]
},
{
name: "Guillemet",
input: "《響け!ユーフォニアム》は京都アニメーションの有名作品です。",
output: ["《響け!ユーフォニアム》は京都アニメーションの有名作品です。"]
},
{
name: "Errant newlines in the middle of sentences",
input: "これは父の\n家です。",
output: ["これは父の家です。"],
skip: true
},
// Golden Rules (Arabic)
{
name: "Regular punctuation",
input: "سؤال وجواب: ماذا حدث بعد الانتخابات الايرانية؟ طرح الكثير من التساؤلات غداة ظهور نتائج الانتخابات الرئاسية الايرانية التي أججت مظاهرات واسعة واعمال عنف بين المحتجين على النتائج ورجال الامن. يقول معارضو الرئيس الإيراني إن الطريقة التي اعلنت بها النتائج كانت مثيرة للاستغراب.",
output: [
"سؤال وجواب:",
"ماذا حدث بعد الانتخابات الايرانية؟",
"طرح الكثير من التساؤلات غداة ظهور نتائج الانتخابات الرئاسية الايرانية التي أججت مظاهرات واسعة واعمال عنف بين المحتجين على النتائج ورجال الامن.",
"يقول معارضو الرئيس الإيراني إن الطريقة التي اعلنت بها النتائج كانت مثيرة للاستغراب."
],
skip: true
},
{
name: "Abbreviations",
input: "وقال د. ديفيد ريدي و الأطباء الذين كانوا يعالجونها في مستشفى برمنجهام إنها كانت تعاني من أمراض أخرى. وليس معروفا ما اذا كانت قد توفيت بسبب اصابتها بأنفلونزا الخنازير.",
output: [
"وقال د. ديفيد ريدي و الأطباء الذين كانوا يعالجونها في مستشفى برمنجهام إنها كانت تعاني من أمراض أخرى.",
"وليس معروفا ما اذا كانت قد توفيت بسبب اصابتها بأنفلونزا الخنازير."
]
},
{
name: "Numbers and Dates",
input: "ومن المنتظر أن يكتمل مشروع خط أنابيب نابوكو البالغ طوله 3300 كليومترا في 12/08/2014 بتكلفة تُقدر بـ 7.9 مليارات يورو أي نحو 10.9 مليارات دولار. ومن المقرر أن تصل طاقة ضخ الغاز في المشروع 31 مليار متر مكعب انطلاقا من بحر قزوين مرورا بالنمسا وتركيا ودول البلقان دون المرور على الأراضي الروسية.",
output: [
"ومن المنتظر أن يكتمل مشروع خط أنابيب نابوكو البالغ طوله 3300 كليومترا في 12/08/2014 بتكلفة تُقدر بـ 7.9 مليارات يورو أي نحو 10.9 مليارات دولار.",
"ومن المقرر أن تصل طاقة ضخ الغاز في المشروع 31 مليار متر مكعب انطلاقا من بحر قزوين مرورا بالنمسا وتركيا ودول البلقان دون المرور على الأراضي الروسية."
]
},
{
name: "Time",
input: "الاحد, 21 فبراير/ شباط, 2010, 05:01 GMT الصنداي تايمز: رئيس الموساد قد يصبح ضحية الحرب السرية التي شتنها بنفسه. العقل المنظم هو مئير داجان رئيس الموساد الإسرائيلي الذي يشتبه بقيامه باغتيال القائد الفلسطيني في حركة حماس محمود المبحوح في دبي.",
output: [
"الاحد, 21 فبراير/ شباط, 2010, 05:01 GMT الصنداي تايمز:",
"رئيس الموساد قد يصبح ضحية الحرب السرية التي شتنها بنفسه.",
"العقل المنظم هو مئير داجان رئيس الموساد الإسرائيلي الذي يشتبه بقيامه باغتيال القائد الفلسطيني في حركة حماس محمود المبحوح في دبي."
],
skip: true
},
{
name: "Comma",
input: "عثر في الغرفة على بعض أدوية علاج ارتفاع ضغط الدم، والقلب، زرعها عملاء الموساد كما تقول مصادر إسرائيلية، وقرر الطبيب أن الفلسطيني قد توفي وفاة طبيعية ربما إثر نوبة قلبية، وبدأت مراسم الحداد عليه",
output: [
"عثر في الغرفة على بعض أدوية علاج ارتفاع ضغط الدم، والقلب،",
"زرعها عملاء الموساد كما تقول مصادر إسرائيلية،",
"وقرر الطبيب أن الفلسطيني قد توفي وفاة طبيعية ربما إثر نوبة قلبية،",
"وبدأت مراسم الحداد عليه"
],
skip: true
},
// Golden Rules (Italian)
{
name: "Abbreviations",
input: "Salve Sig.ra Mengoni! Come sta oggi?",
output: ["Salve Sig.ra Mengoni!", "Come sta oggi?"]
},
{
name: "Quotations",
input: "Una lettera si può iniziare in questo modo «Il/la sottoscritto/a.».",
output: ["Una lettera si può iniziare in questo modo «Il/la sottoscritto/a.»."]
},
{
name: "Numbers",
input: "La casa costa 170.500.000,00€!",
output: ["La casa costa 170.500.000,00€!"]
},
// Golden Rules (Russian)
{
name: "Abbreviations",
input: "Объем составляет 5 куб.м.",
output: ["Объем составляет 5 куб.м."]
},
{
name: "Quotations",
input: "Маленькая девочка бежала и кричала: «Не видали маму?».",
output: ["Маленькая девочка бежала и кричала: «Не видали маму?»."],
skip: true
},
{
name: "Numbers",
input: "Сегодня 27.10.14",
output: ["Сегодня 27.10.14"]
},
// Golden Rules (Spanish)
{
name: "Question mark to end sentence",
input: "¿Cómo está hoy? Espero que muy bien.",
output: ["¿Cómo está hoy?", "Espero que muy bien."]
},
{
name: "Exclamation point to end sentence",
input: "¡Hola señorita! Espero que muy bien.",
output: ["¡Hola señorita!", "Espero que muy bien."]
},
{
name: "Abbreviations",
input: "Hola Srta. Ledesma. Buenos días, soy el Lic. Naser Pastoriza, y él es mi padre, el Dr. Naser.",
output: ["Hola Srta. Ledesma.", "Buenos días, soy el Lic. Naser Pastoriza, y él es mi padre, el Dr. Naser."],
skip: true
},
{
name: "Numbers",
input: "¡La casa cuesta $170.500.000,00! ¡Muy costosa! Se prevé una disminución del 12.5% para el próximo año.",
output: [
"¡La casa cuesta $170.500.000,00!",
"¡Muy costosa!",
"Se prevé una disminución del 12.5% para el próximo año."
],
skip: true
},
{
name: "Quotations",
input: "«Ninguna mente extraordinaria está exenta de un toque de demencia.», dijo Aristóteles.",
output: ["«Ninguna mente extraordinaria está exenta de un toque de demencia.», dijo Aristóteles."],
skip: true
},
// Golden Rules (Greek)
{
name: "Question mark to end sentence",
input: "Με συγχωρείτε· πού είναι οι τουαλέτες; Τις Κυριακές δε δούλευε κανένας. το κόστος του σπιτιού ήταν £260.950,00.",
output: [
"Με συγχωρείτε· πού είναι οι τουαλέτες;",
"Τις Κυριακές δε δούλευε κανένας.",
"το κόστος του σπιτιού ήταν £260.950,00."
],
skip: true
},
// Golden Rules (Hindi)
{
name: "Full stop",
input: "सच्चाई यह है कि इसे कोई नहीं जानता। हो सकता है यह फ़्रेन्को के खिलाफ़ कोई विद्रोह रहा हो, या फिर बेकाबू हो गया कोई आनंदोत्सव।",
output: [
"सच्चाई यह है कि इसे कोई नहीं जानता।",
"हो सकता है यह फ़्रेन्को के खिलाफ़ कोई विद्रोह रहा हो, या फिर बेकाबू हो गया कोई आनंदोत्सव।"
],
skip: true
},
// Golden Rules (Armenian)
{
name: "Sentence ending punctuation",
input: "Ի՞նչ ես մտածում: Ոչինչ:",
output: ["Ի՞նչ ես մտածում:", "Ոչինչ:"],
skip: true
},
{
name: "Ellipsis",
input: "Ապրիլի 24-ին սկսեց անձրևել...Այդպես էի գիտեի:",
output: ["Ապրիլի 24-ին սկսեց անձրևել...Այդպես էի գիտեի:"],
skip: true
},
{
name: "Period is not a sentence boundary",
input: "Այսպիսով` մոտենում ենք ավարտին: Տրամաբանությյունը հետևյալն է. պարզություն և աշխատանք:",
output: ["Այսպիսով` մոտենում ենք ավարտին:", "Տրամաբանությյունը հետևյալն է. պարզություն և աշխատանք:"],
skip: true
},
// Golden Rules (Burmese)
{
name: "Sentence ending punctuation",
input: "ခင္ဗ်ားနာမည္ဘယ္လိုေခၚလဲ။၇ွင္ေနေကာင္းလား။",
output: ["ခင္ဗ်ားနာမည္ဘယ္လိုေခၚလဲ။", "၇ွင္ေနေကာင္းလား။"],
skip: true
},
// Golden Rules (Amharic)
{
name: "Sentence ending punctuation",
input: "እንደምን አለህ፧መልካም ቀን ይሁንልህ።እባክሽ ያልሽዉን ድገሚልኝ።",
output: ["እንደምን አለህ፧", "መልካም ቀን ይሁንልህ።", "እባክሽ ያልሽዉን ድገሚልኝ።"],
skip: true
},
// Golden Rules (Persian)
{
name: "Sentence ending punctuation",
input: "خوشبختم، آقای رضا. شما کجایی هستید؟ من از تهران هستم.",
output: ["خوشبختم، آقای رضا.", "شما کجایی هستید؟", "من از تهران هستم."],
skip: true
},
// Golden Rules (Urdu)
{
name: "Sentence ending punctuation",
input: "کیا حال ہے؟ ميرا نام ___ ەے۔ میں حالا تاوان دےدوں؟",
output: ["کیا حال ہے؟", "ميرا نام ___ ەے۔", "میں حالا تاوان دےدوں؟"],
skip: true
}
];