-
Notifications
You must be signed in to change notification settings - Fork 1
/
pictionary.txt
1714 lines (1713 loc) · 154 KB
/
pictionary.txt
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
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
if you love him|ksalaj|conditional conjunction opener could be used|prayers\22penance\65.png|00_conjunction|1
and;also;indeed;so;still;too|aqq;aq;elp|Use this with "Also" to make "And Also". prayers\18thesacraments\30.png|prayers\19baptism\116.png|00_coordinating_conjunction|141
in the future|elmi'knik|none|prayers\27thepassionofourlord\542.png|00_coordinating_conjunction|1
for|i'n pa|none|prayers\07anactoffaith\14.png|00_coordinating_conjunction|1
or|kisna|none|prayers\20confirmation\65.png|00_coordinating_conjunction|1
or;or else|kisna;gisna|Use with "Else" to specify if needed. prayers\26matrimony\120.png|prayers\18thesacraments\10.png|00_coordinating_conjunction|1
but|na sik|none|prayers\22penance\611.png|00_coordinating_conjunction|1
so|net|so|prayers\27thepassionofourlord\271.png|00_coordinating_conjunction|1
so|net|so|prayers\27thepassionofourlord\292.png|00_coordinating_conjunction|1
but;however;though;furthermore|sqatu|but|prayers\19baptism\174.png|00_coordinating_conjunction|1
how did he say it|talapukwes|none|prayers\19baptism\303.png|00_how|1
how does he act|tala'sit|none|prayers\20confirmation\45.png|00_how|1
how does he act';how does he react|tala'sit|none|prayers\20confirmation\92.png|00_how|1
how will he prepare them|talikiskaja'nutal|none|prayers\19baptism\314.png|00_how|1
how did they turn from|talikiwaska'tikl|none|prayers\21theblessedeucharist\64.png|00_how|1
how does one revive|taliminua'lit|none|prayers\21theblessedeucharist\223.png|00_how|1
how do we want|talipewatmik|none|prayers\21theblessedeucharist\158.png|00_how|1
how is it;when|talisip;tali'sip|"How then"|prayers\20confirmation\2.png|00_how|1
how great is it|talki'k|none|prayers\21theblessedeucharist\45.png|00_how|1
how is it written|talkitasik to'q|none|prayers\22penance\172.png|00_how|1
how many are there|ta'sikl|none|prayers\18thesacraments\2.png|00_how|1
how you do things|tela'tikemk|none|prayers\19baptism\97.png|00_how|1
is it not|mu to'q|none|prayers\19baptism\315.png|00_Is|1
because|i'n|none|prayers\06thepreceptsofthechurch\57.png|00_subordinating_conjunction|1
because|l'n ta na|none|prayers\20confirmation\163.png|00_subordinating_conjunction|1
those things;all things;the things;things;what things|koqoe'l|none|prayers\19baptism\103.png|00_what|1
what things|koqoe'l|none|prayers\19baptism\62.png|00_what|1
what things|koqoe'l|none|prayers\23purgatory\16.png|00_what|1
what are|koqoe'l to'q|none|prayers\22penance\323.png|00_what|1
what;is it like;that;thing;what are;what else;what is it;what kind|koqoey|none|prayers\19baptism\125.png|00_what|1
what;what are;what is it;what kind;what else;that;thing|koqoey|none|prayers\25holyorders\2.png|00_what|1
what is it;what is|koqoey to'q|none|prayers\23purgatory\2.png|00_what|1
what is it;what is|koqoey to'q|none|prayers\19baptism\293.png|00_what|1
what is;what is it|koqoey to'q;koqoey'to'q|none|prayers\22penance\14.png|00_what|1
why;how is|koqoey wjit|none|prayers\21theblessedeucharist\91.png|00_what|1
what to do with them|tala'luek|none|prayers\19baptism\242.png|00_what|1
what kinds|talamukl to'q|none|prayers\22penance\455.png|00_what|1
when;then;if;indeed;so;than|toqo;to'q|none|prayers\13alongeractofcontrition\10.png|00_when|1
where;somewhere;everywhere;over|tami|none|prayers\22penance\470.png|00_where|1
where|tami to'q|"Where is it"|prayers\19baptism\266.png|00_where|1
near|kijka'j|none|prayers\22penance\72.png|01_preposition|1
for;as;because;indeed;it is true;so|l'n|none|prayers\21theblessedeucharist\120.png|01_preposition|1
in the same way|nkutay|none|prayers\27thepassionofourlord\82.png|01_preposition|1
like|staqa|none|prayers\25holyorders\85.png|01_preposition|1
they belong;from there|tle'l|from|prayers\25holyorders\69.png|01_preposition|1
in;on;from;at;into;through;inside;your;their;my|unknown|possessive|prayers\custom\1.png|01_preposition|1
from before;behind;from behind|wtejk|none|prayers\22penance\368.png|01_preposition|1
it is from|tley|none|prayers\20confirmation\111.png|01_preposition_from|1
if|istaqej||prayers\22penance\103.png|02_conjunction|1
although|kenuk|none|prayers\22penance\142.png|02_conjunction|1
although|kenuk|none|prayers\22penance\227.png|02_conjunction;adverb|1
but;furthermore;however;though|sqatu|but;furthermore;however;though|prayers\27thepassionofourlord\320.png|02_conjunction;adverb;conjunctive adverb;subordinating conjunction|1
as;because;for;indeed;it is true;so|l'n|as|prayers\22penance\102.png|02_conjunction;preposition;adverb|1
the eucharist|apji'timk|none|prayers\18thesacraments\12.png|03_noun_eucharist|1
in the blessed eucharist|pejiliapji'timkeweyiktuk|none|prayers\21theblessedeucharist\117.png|03_noun_eucharist|1
his apostles|apa'salewitkik|none|prayers\25holyorders\81.png|03_noun_person|1
the apostles|apa'stalewitki'k;apa'stalewitkik;apa'stale'wilitka|none|prayers\06thepreceptsofthechurch\49.png|03_noun_person|1
kings|eleke'witki'k|none|prayers\17litanyoftheholyname\92.png|03_noun_person|1
his side|epmepikaj|none|prayers\27thepassionofourlord\766.png|03_noun_person|1
and the son|et peli|none|prayers\19baptism\122.png|03_noun_person|1
and the holy spirit|et pelitoi|none|prayers\19baptism\123.png|03_noun_person|1
their relations|ewo'kmawa|none|prayers\26matrimony\179.png|03_noun_person|1
who has a father|ewujjin|none|prayers\17litanyoftheholyname\24.png|03_noun_person|1
they|ika'tisni'k|none|prayers\27thepassionofourlord\274.png|03_noun_person|1
who is an elder|kisikuit|none|prayers\19baptism\178.png|03_noun_person|1
he is a great angel|kjiansale'wit|none|prayers\12theconfiteor\61.png|03_noun_person|1
your presence|kpisin|none|prayers\17litanyoftheholyname\231.png|03_noun_person|1
the flesh|ma'qil|none|prayers\04theapostlescreed\70.png|03_noun_person|1
my flesh|na'qi|flesh|prayers\16morningprayer\61.png|03_noun_person|1
my flesh|na'qi|flesh|prayers\27thepassionofourlord\76.png|03_noun_person|1
in the name of the father|nomini patli|none|prayers\19baptism\121.png|03_noun_person|1
our king|nteleke'minen|none|prayers\17litanyoftheholyname\222.png|03_noun_person|1
the shaman's|puo'winue'l|none|prayers\16morningprayer\44.png|03_noun_person|1
first;once;one;number one;to the only one;the only one;there is one;he is one;he has one form|tmk;newt;newte';newtikit;newte'jit;newtikilijl|none|prayers\19baptism\327.png|03_noun_person|1
them|wekla|none|prayers\23purgatory\55.png|03_noun_person|1
their lineage|wetapa'qamititij|none|prayers\25holyorders\98.png|03_noun_person|1
in their souls|wjijaqamijua|none|prayers\21theblessedeucharist\136.png|03_noun_person|1
his godparents|wkekuniji|godparents|prayers\19baptism\317.png|03_noun_person|1
their relatives|wo'kmawa|relatives|prayers\19baptism\239.png|03_noun_person|1
his lap|wplaqnek|none|prayers\27thepassionofourlord\405.png|03_noun_person|1
their laps|wplaqnuaqi'l|none|prayers\27thepassionofourlord\799.png|03_noun_person|1
the host|wskwijipenekiktuk|"great one inside" or "inside the great one"|prayers\21theblessedeucharist\10.png|03_noun_person|1
his guardian angels|wtapa'salemka|none|prayers\25holyorders\79.png|03_noun_person|1
his apostles|wtapa'stalemka|apostles|prayers\22penance\176.png|03_noun_person|1
his shoulder|wtlmaqnek|none|prayers\27thepassionofourlord\556.png|03_noun_person|1
on their foreheads|wtukwejanual|none|prayers\20confirmation\114.png|03_noun_person|1
your bodies;in your bodies;your beings;in their bodies;their beings;our bodies;our beings|ktininewow;ktininuaq;ktintinewaq;wtinineow;wtininewaq;wtininuaq;wtininuow;ntininaq|none|prayers\20confirmation\134.png|03_noun_person_body|1
their beings|wtininek|none|prayers\27thepassionofourlord\273.png|03_noun_person_body|1
my body;in my body;my being;your body;in your body|ntinin;ktinink|none|prayers\08anactofhope\29.png|03_noun_person_body_being|1
my body;my being;in my body;your body;your being;your beings;his/her being;his/her body;inside his/her body;in body;in his body;in his being;our bodies|ntinink;ntinin;ntininen;ktinin;ktinink;wtinin;wtinink;wtininkl;wktininuaq|none|prayers\21theblessedeucharist\113.png|03_noun_person_body_being|1
great chief;the great chief|kjisaqmaw|none|prayers\12theconfiteor\101.png|03_noun_person_chief|1
our chief|ksaqmaminu|none|prayers\27thepassionofourlord\5.png|03_noun_person_chief|1
my chief;our chief|nsaqmam;nsaqmaminen|none|prayers\16morningprayer\210.png|03_noun_person_chief|1
when he was chief|saqmawitek|none|prayers\04theapostlescreed\33.png|03_noun_person_chief|1
perfect chief|welisaqmawin|none|prayers\16morningprayer\131.png|03_noun_person_chief|1
is our lord|wesaqmawulti'kip|none|prayers\04theapostlescreed\23.png|03_noun_person_chief|1
their chief|wsaqmamual|none|prayers\27thepassionofourlord\30.png|03_noun_person_chief|1
child;a child;an infant;the child;you were a child|mijua'ji'j;mijua'ji'juinek|none|prayers\19baptism\253.png|03_noun_person_child|1
children|mijua'ji'jk;mijua'jk|none|prayers\20confirmation\25.png|03_noun_person_child|1
our children|nijanaq|none|prayers\27thepassionofourlord\541.png|03_noun_person_child|1
children|wnijanua|none|prayers\26matrimony\15.png|03_noun_person_child|1
their children|wnijanua|none|prayers\19baptism\219.png|03_noun_person_child|1
their children|wnijanua|Refers to parent's children|prayers\26matrimony\78.png|03_noun_person_child|1
his children|wnijinka|none|prayers\19baptism\275.png|03_noun_person_child|1
the devil|mntu|none|prayers\19baptism\297.png|03_noun_person_devil|1
the devil|mntu|none|prayers\27thepassionofourlord\297.png|03_noun_person_devil|1
the devil's|mntue'l|none|prayers\16morningprayer\43.png|03_noun_person_devil|1
of the devil|mntu'l|none|prayers\19baptism\300.png|03_noun_person_devil|1
his face|wsiskuk|none|prayers\27thepassionofourlord\366.png|03_noun_person_face|1
in his face|wsiskuk|none|prayers\27thepassionofourlord\493.png|03_noun_person_face|1
our friends|ni'kmaninaq|none|prayers\21theblessedeucharist\203.png|03_noun_person_friend|1
my friends;his friend|ni'kmaq;wi'kmajl|none|prayers\09anactofcharity\20.png|03_noun_person_friend|1
my friends|ni'kmatut|none|prayers\05thedecalogue\68.png|03_noun_person_friend|1
his people|wi'kmaqa|none|prayers\27thepassionofourlord\150.png|03_noun_person_friend|1
your relatives|wi'kmawimk|none|prayers\27thepassionofourlord\39.png|03_noun_person_friend|1
your companion|knaqapm|none|prayers\22penance\587.png|03_noun_person_friends|1
your friendship|kunaqapewimk|none|prayers\27thepassionofourlord\179.png|03_noun_person_friends|1
the shepherds|nujo'taqatitki'k|none|prayers\17litanyoftheholyname\77.png|03_noun_person_friends|1
who are my friends|wenaqapemi|none|prayers\25holyorders\142.png|03_noun_person_friends|1
your apostles|wenaqapemk|none|prayers\22penance\423.png|03_noun_person_friends|1
is friends with them|wnaqapemiji|none|prayers\25holyorders\129.png|03_noun_person_friends|1
his companions;his friends;their friends|wnaqapemk;wnaqapemka;wnaqapemuaqa|none|prayers\06thepreceptsofthechurch\61.png|03_noun_person_friends|1
the companions;their friends|wnaqapemuaqa|none|prayers\06thepreceptsofthechurch\50.png|03_noun_person_friends|1
of all women|e'pijik|none|prayers\03theangelicalsalutation\8.png|03_noun_person_gender_female|1
a woman;for a woman;the woman;woman|e'pit|none|prayers\26matrimony\69.png|03_noun_person_gender_female|1
for a woman;a woman;the woman;woman|e'pit|none|prayers\19baptism\45.png|03_noun_person_gender_female|1
young woman;unmarried woman;the bride|e'pites|none|prayers\26matrimony\185.png|03_noun_person_gender_female|1
another girl|wejie'pite'sl|none|prayers\26matrimony\186.png|03_noun_person_gender_female|1
a man;man;the man|ji'nm|none|prayers\26matrimony\67.png|03_noun_person_gender_male|1
man|ji'nm|none|prayers\27thepassionofourlord\430.png|03_noun_person_gender_male|1
the man|ji'nm|none|prayers\26matrimony\176.png|03_noun_person_gender_male|1
the groom|l'pa'tu|none|prayers\26matrimony\181.png|03_noun_person_gender_male|1
with a male friend|wejil'pa'tu'l|none|prayers\26matrimony\182.png|03_noun_person_gender_male|1
if you put me there|ika'lin|none|prayers\16morningprayer\216.png|03_noun_person_hand|1
put me there|ika'liw|verb|prayers\16morningprayer\215.png|03_noun_person_hand|1
take them away from me|jikla'tui|none|prayers\16morningprayer\232.png|03_noun_person_hand|1
break them apart|mita'tui|none|prayers\16morningprayer\190.png|03_noun_person_hand|1
with his hand;my hands;their feet|wpitnl;npitnn;wkatual|none|prayers\20confirmation\98.png|03_noun_person_hand|1
his hands;their feet|wpitnn;wkatual|none|prayers\22penance\319.png|03_noun_person_hand|1
his head|wunjek|none|prayers\19baptism\87.png|03_noun_person_head|1
his head|wunjek|none|prayers\27thepassionofourlord\480.png|03_noun_person_head|1
on his head|wunjek|none|prayers\19baptism\53.png|03_noun_person_head|1
brought it forward|kisila'toq|"After jews commanded"?|prayers\26matrimony\31.png|03_noun_person_jew|1
the jew's|lesui'paqa|none|prayers\27thepassionofourlord\410.png|03_noun_person_jew|1
the jews|lesui'paqik|none|prayers\27thepassionofourlord\511.png|03_noun_person_jew|1
in the land of the jews|lesui'pewiktuk|none|prayers\27thepassionofourlord\385.png|03_noun_person_jew|1
in the land of the jews|lesui'pewiktuk|none|prayers\27thepassionofourlord\488.png|03_noun_person_jew|1
the jews|l'sui'paqi'kw|none|prayers\27thepassionofourlord\534.png|03_noun_person_jew|1
leaders|alsusultitki'k|none|prayers\27thepassionofourlord\821.png|03_noun_person_leader|1
were the leaders|alsusultitki'k|none|prayers\27thepassionofourlord\670.png|03_noun_person_leader|1
after you were born|kisiwskwijinuinek|none|prayers\17litanyoftheholyname\90.png|03_noun_person_life|1
after you were born|kisiwskwijinuinek|none|prayers\17litanyoftheholyname\98.png|03_noun_person_life|1
he was still alive|mimajilitek|none|prayers\27thepassionofourlord\829.png|03_noun_person_life|1
to have a long life|pekijiwskwijinuin|none|prayers\05thedecalogue\23.png|03_noun_person_life|1
there were people|poqjiwskwijinua'ltimkek|none|prayers\26matrimony\28.png|03_noun_person_life|1
since my birth|teliskjijiwa'qijinui|none|prayers\22penance\562.png|03_noun_person_life|1
for as long as we live|telujipemawsi'kw|none|prayers\05thedecalogue\74.png|03_noun_person_life|1
from whom you got your humanity|wejiwskwijinuilisen|none|prayers\04theapostlescreed\30.png|03_noun_person_life|1
by which he was born|wejiwskwijinuit|none|prayers\19baptism\265.png|03_noun_person_life|1
you were born|weskwijinui'sip|none|prayers\17litanyoftheholyname\74.png|03_noun_person_life|1
those still living|weskwijinulteliji|none|prayers\04theapostlescreed\54.png|03_noun_person_life|1
he is born|weskwijjinuit|none|prayers\19baptism\255.png|03_noun_person_life|1
get angry|wkwaiw|none|prayers\05thedecalogue\59.png|03_noun_person_life|1
who get angry|wkwayuaw|none|prayers\05thedecalogue\56.png|03_noun_person_life|1
in eternal life|wskwijinewiktuk|none|prayers\12theconfiteor\98.png|03_noun_person_life|1
eternal life;human things|wskwijinuitew|none|prayers\16morningprayer\248.png|03_noun_person_life|1
human things|wskwijinuitew|none|prayers\04theapostlescreed\74.png|03_noun_person_life|1
from adam|ataek|none|prayers\19baptism\270.png|03_noun_person_literal|1
herod|elo't|none|prayers\17litanyoftheholyname\106.png|03_noun_person_literal|1
caifus|kayapo'q|none|prayers\27thepassionofourlord\280.png|03_noun_person_literal|1
mary|ma'li|none|prayers\13alongeractofcontrition\60.png|03_noun_person_literal|1
michael|mise'l|none|prayers\12theconfiteor\60.png|03_noun_person_literal|1
barrabas|pala'pas|none|prayers\27thepassionofourlord\433.png|03_noun_person_literal|1
peter|pie'l|none|prayers\12theconfiteor\71.png|03_noun_person_literal|1
peter|pie'l|none|prayers\27thepassionofourlord\138.png|03_noun_person_literal|1
to peter|pielal|none|prayers\27thepassionofourlord\129.png|03_noun_person_literal|1
pilate|pila't|none|prayers\27thepassionofourlord\517.png|03_noun_person_literal|1
pilate|pila't|none|prayers\27thepassionofourlord\544.png|03_noun_person_literal|1
at pilate's|pila'tal|possessive|prayers\27thepassionofourlord\404.png|03_noun_person_literal|1
to pilate|pila'tewiktuk|none|prayers\27thepassionofourlord\380.png|03_noun_person_literal|1
paul|po'l|none|prayers\12theconfiteor\75.png|03_noun_person_literal|1
pontius pilate|ponspila'toq|none|prayers\04theapostlescreed\32.png|03_noun_person_literal|1
jesus christ;to jesus christ;in jesus christ|se'sukulial;se'sukuli|none|prayers\04theapostlescreed\18.png|03_noun_person_literal|1
jesus|se'su's;se'su'sl;se'susl;se'susal|none|prayers\04theapostlescreed\64.png|03_noun_person_literal|1
judas|su'ta|none|prayers\27thepassionofourlord\252.png|03_noun_person_literal|1
god the son|ewujjitniskam|none|prayers\01thesignofthecross\5.png|03_noun_person_lord|1
great lord;the great lord;you great lord|kjiniskam;ki'l kjiniskam|none|prayers\07anactoffaith\15.png|03_noun_person_lord|1
'the holy spirit'|'kjiniskamewi'|none|prayers\27thepassionofourlord\424.png|03_noun_person_lord|1
lord;god;in the lord;the lord;our lord|niskam;niskaml;niskaminal;kniskaminu|none|prayers\02thelordsprayer\37.png|03_noun_person_lord|1
the holy spirit;god the holy spirit;holy spirit|wejiwliniskam;wejiwliniskaml|none|prayers\01thesignofthecross\7.png|03_noun_person_lord|1
god the father|wekwisitniskam;wkwisitniskam|"Father Lord"|prayers\20confirmation\128.png|03_noun_person_lord|1
who governs there|etlikeplno'lewis|none|prayers\27thepassionofourlord\383.png|03_noun_person_mouth|1
he counts all|kaqkitkl|none|prayers\22penance\390.png|03_noun_person_mouth|1
you recognize his voice|nenustat|none|prayers\22penance\377.png|03_noun_person_mouth|1
you direct me|telsumin|none|prayers\22penance\441.png|03_noun_person_mouth|1
from his mouth|wetuna'tek|none|prayers\07anactoffaith\49.png|03_noun_person_mouth|1
approval|wlite'taqn|none|prayers\22penance\601.png|03_noun_person_mouth|1
he was a native|i'nua'sis|none|prayers\07anactoffaith\24.png|03_noun_person_native|1
i have revealed all to you|kaqipa'qanutmakul|"If Native Good"? "They Native Good" They are good Natives.|prayers\22penance\583.png|03_noun_person_native|1
your possessions|kaynl|none|prayers\16morningprayer\241.png|03_noun_person_native|1
let it be lost|keska'nuj|verb let go|prayers\10thanksgiving\36.png|03_noun_person_native|1
you were lost|keska'sip|none|prayers\17litanyoftheholyname\115.png|03_noun_person_native|1
they are removed|keska'toqol|none|prayers\19baptism\250.png|03_noun_person_native|1
after you were native|kisil'nuasinek|He after will be native|prayers\17litanyoftheholyname\43.png|03_noun_person_native|1
he couldn't wipe away|kiskeska'tuaq|He after native went|prayers\22penance\491.png|03_noun_person_native|1
latin|la'tin|none|prayers\22penance\475.png|03_noun_person_native|1
you can speak latin|latinewi'simk|none|prayers\19baptism\119.png|03_noun_person_native|1
native;natives;as a native;mi'kmaq|l'nu;l'nui;l'nu'k;l'nualasnl|native|prayers\16morningprayer\120.png|03_noun_person_native|1
he looked like a native|l'nuamuksit|Native reflection?|prayers\21theblessedeucharist\107.png|03_noun_person_native|1
lord of the mi'kmaq|l'nuiniskamewin|"mi'kmaq Lord" Seems to refer to Latin glyph form in the translation of "you can speak latin".|prayers\17litanyoftheholyname\282.png|03_noun_person_native|1
natives|l'nu'k|"native they will be"|prayers\17litanyoftheholyname\142.png|03_noun_person_native|1
natives|l'nu'k;l'nu'ka|"they native" "they are native"|prayers\05thedecalogue\50.png|03_noun_person_native|1
you will go with me|l'wije'witesk|none|prayers\27thepassionofourlord\629.png|03_noun_person_native|1
all natives|mawil'nu'k|"All Natives"|prayers\22penance\609.png|03_noun_person_native|1
i am a wayward native|nsekewil'nui|"Today Native"|prayers\22penance\404.png|03_noun_person_native|1
you earned for us|pekwatuiek|none|prayers\17litanyoftheholyname\87.png|03_noun_person_native|1
takes away right then|tetpikeska'tuatl|"he like native ?"|prayers\22penance\503.png|03_noun_person_native|1
my provisions|wayn|none|prayers\16morningprayer\65.png|03_noun_person_native|1
became a native;you became a native|wejil'nua'sisip;weji lnua'si'sip|"Reason native" The reason why one is native.|prayers\17litanyoftheholyname\225.png|03_noun_person_native|1
why i lost it|wejintu|none|prayers\13alongeractofcontrition\12.png|03_noun_person_native|1
for a father|ewujjin|none|prayers\26matrimony\112.png|03_noun_person_parent|1
your son;who had a son|kkwis;wkwisien|none|prayers\22penance\593.png|03_noun_person_parent|1
your parents|knki'kuk|none|prayers\05thedecalogue\24.png|03_noun_person_parent|1
our fathers|kujjinaqi'k|none|prayers\06thepreceptsofthechurch\48.png|03_noun_person_parent|1
our father|kujjinu|none|prayers\25holyorders\29.png|03_noun_person_parent|1
father;my father|nujj|none|prayers\27thepassionofourlord\655.png|03_noun_person_parent|1
his mother|wkwijl|none|prayers\17litanyoftheholyname\67.png|03_noun_person_parent|1
she had a son|wkwisisen|none|prayers\16morningprayer\178.png|03_noun_person_parent|1
his son|wkwisl|none|prayers\27thepassionofourlord\329.png|03_noun_person_parent|1
his son|wkwisl|none|prayers\27thepassionofourlord\682.png|03_noun_person_parent|1
his son;your son;has a son;she was your mother;his father;to his father;who has a son;our father;your father|wkwisl;wkwisin;wkwiji'sip;wujjl;wekwisin;nujjinen;kujj|none|prayers\04theapostlescreed\19.png|03_noun_person_parent|1
their parents|wnki'ku|none|prayers\26matrimony\91.png|03_noun_person_parent|1
their parents|wnki'kua|none|prayers\20confirmation\16.png|03_noun_person_parent|1
his father|wujjl|none|prayers\27thepassionofourlord\60.png|03_noun_person_parent|1
are already priests|kisipa'tlia'sewa'lujik|none|prayers\25holyorders\43.png|03_noun_person_priest|1
he becomes a priest|kisipa'tlia'sewit|none|prayers\25holyorders\110.png|03_noun_person_priest|1
once you are a priest|kisipa'tlia'sewit|none|prayers\25holyorders\118.png|03_noun_person_priest|1
the bishop;the bishops;the high priest|kjipa'tlia's;kjipa'tli'ask;kjipa'tlia's|none|prayers\25holyorders\34.png|03_noun_person_priest|1
to the high priest|kjipa'tlia'sewiktuk|none|prayers\27thepassionofourlord\279.png|03_noun_person_priest|1
bishops|kjipa'tlia'ski'k|none|prayers\06thepreceptsofthechurch\47.png|03_noun_person_priest|1
the high priests|kjipa'tlia'ski'k|none|prayers\27thepassionofourlord\666.png|03_noun_person_priest|1
the high priests|kjipa'tlia'ski'k|none|prayers\27thepassionofourlord\818.png|03_noun_person_priest|1
the pope|pape'wit|none|prayers\25holyorders\30.png|03_noun_person_priest|1
priest;the priest;a priest;the priests;holy orders;if you have a priest|pa'tlia's;pa'tlia'sk;pa'tlia'sewaltimk;pa'tlia'sewa'ltimk;pa'tlia'sewltimk;wpa'tlia'smimk|none|prayers\18thesacraments\15.png|03_noun_person_priest|1
who are becoming priests|pa'tlia'sewa'lujik|none|prayers\25holyorders\73.png|03_noun_person_priest|1
priests|pa'tlia'sk|none|prayers\19baptism\173.png|03_noun_person_priest|1
priests|pa'tlia'sk;pa'tlia'ski'k|none|prayers\25holyorders\46.png|03_noun_person_priest|1
to become priests|wpa'tlia'sewultinew|none|prayers\25holyorders\92.png|03_noun_person_priest|1
to be priests;they will become priests|wpa'tlia'sultinew;wpa'tlia'sultinen|none|prayers\25holyorders\95.png|03_noun_person_priest|1
the savior;is the savior|westau'lkw|none|prayers\06thepreceptsofthechurch\60.png|03_noun_person_savior|1
her stomach;in her stomach|wtlamiluk|none|prayers\17litanyoftheholyname\54.png|03_noun_person_stomach|1
in her stomach|wtlamiluk|none|prayers\17litanyoftheholyname\68.png|03_noun_person_stomach|1
to steal|kemutenemk|none|prayers\16morningprayer\200.png|04_verb_steal|1
thieves|nujiemutneskik|none|prayers\27thepassionofourlord\584.png|03_noun_person_thief|1
thief;the thieves|nujikmutnetaq|none|prayers\27thepassionofourlord\610.png|03_noun_person_thief|1
to get angry|wekwaimk|none|prayers\16morningprayer\198.png|04_verb_steal|1
no one's|mawen|none|prayers\22penance\476.png|03_noun_person_who|1
no one's;no one|mawen|none|prayers\05thedecalogue\42.png|03_noun_person_who|1
who;who can;who is it;who then|wen to'q|none|prayers\26matrimony\18.png|03_noun_person_who|1
someone;who then|wen;wenik|none|prayers\20confirmation\10.png|03_noun_person_who|1
who;who does;whoever;someone;anyone;one;one's;the one;anyone's;who are they;no one|wen;wenl;wenik;mawen|none|prayers\19baptism\193.png|03_noun_person_who|1
those who;no one|wenik;mawenl|none|prayers\17litanyoftheholyname\290.png|03_noun_person_who|1
who|wenik|none|prayers\25holyorders\8.png|03_noun_person_who|1
who are they|wenik to'q|none|prayers\25holyorders\23.png|03_noun_person_who|1
who then|wenik to'q|none|prayers\25holyorders\93.png|03_noun_person_who|1
that remained;those remaining;those which remain|weskwiaql|none|prayers\27thepassionofourlord\46.png|03_noun_person_who|1
in the middle|aqtapoqek|middle|prayers\17litanyoftheholyname\72.png|03_noun_place|1
each side|etui|side|prayers\27thepassionofourlord\580.png|03_noun_place|1
there|ke'j|none|prayers\23purgatory\38.png|03_noun_place|1
you put it nearby;it is made nearby|kikja'tuj;kikja'tuj|none|prayers\19baptism\88.png|03_noun_place|1
they looked everywhere|kisialikwilaskik|everywhere|prayers\17litanyoftheholyname\120.png|03_noun_place|1
on your throne|kteleke'wa'kim|none|prayers\27thepassionofourlord\621.png|03_noun_place|1
inside the house|lamikuomk|none|prayers\27thepassionofourlord\455.png|03_noun_place|1
to be among us|nujeyakunen|none|prayers\14gracebeforemeals\21.png|03_noun_place|1
mount olive|osalipie|none|prayers\27thepassionofourlord\196.png|03_noun_place|1
the place of jesus|se'suewiktuk|none|prayers\13alongeractofcontrition\18.png|03_noun_place|1
purgatory;in purgatory|sispasue'kati;sispasu'katik;sispasue'katik|none|prayers\23purgatory\4.png|03_noun_place|1
in the place of honor|skwayike'l|none|prayers\27thepassionofourlord\482.png|03_noun_place|1
the place of honor|skwayike'l|none|prayers\27thepassionofourlord\581.png|03_noun_place|1
you are with him|tekweat|none|prayers\03theangelicalsalutation\7.png|03_noun_place|1
you were with them|tekweyasipnik|none|prayers\17litanyoftheholyname\130.png|03_noun_place|1
here|tetp|none|prayers\27thepassionofourlord\18.png|03_noun_place|1
from there|tle'l|none|prayers\26matrimony\210.png|03_noun_place|1
heaven;in heaven;to heaven|wa'so'q|none|prayers\04theapostlescreed\49.png|03_noun_place|1
property|waym|none|prayers\05thedecalogue\40.png|03_noun_place|1
property|waym|none|prayers\05thedecalogue\43.png|03_noun_place|1
in his house|wi'k|none|prayers\25holyorders\68.png|03_noun_place|1
inside;situated|wteten|none|prayers\19baptism\51.png|03_noun_place|1
at his right hand|wtinakanq|none|prayers\04theapostlescreed\45.png|03_noun_place|1
earth;on earth;over the earth;ground;the ground|maqamikew;maqamikek;maqmikewek;wmaqmikem|none|prayers\02thelordsprayer\23.png|03_noun_place_earth|1
he is buried|etliwtkuta'sij|none|prayers\27thepassionofourlord\844.png|03_noun_place_earth_burried|1
grave tombs;burried;grave;he was buried|wtkutaqnek;wtkutalutaq|none|prayers\27thepassionofourlord\814.png|03_noun_place_earth_burried|1
tombs|wtkutaqnki'l|none|prayers\27thepassionofourlord\779.png|03_noun_place_earth_burried|1
you were burried|wtqutalneksip|none|prayers\17litanyoftheholyname\182.png|03_noun_place_earth_burried|1
underground|lamqamu'k|none|prayers\04theapostlescreed\37.png|03_noun_place_earth_underground|1
underground|lamqamu'k|none|prayers\17litanyoftheholyname\185.png|03_noun_place_earth_underground|1
on earth;in this world;to earth;over the earth|wskitqamu'k;maqamikek|none|prayers\23purgatory\14.png|03_noun_place_earth_underground|1
you went|elie'sip|none|prayers\17litanyoftheholyname\186.png|03_noun_place_earth_went|1
you went|elie'sip|none|prayers\17litanyoftheholyname\197.png|03_noun_place_earth_went|1
i go there;i will go there|ntlien|none|prayers\16morningprayer\80.png|03_noun_place_earth_went|1
you came|pekisinenek|none|prayers\17litanyoftheholyname\151.png|03_noun_place_earth_went|1
in the garden;to a garden|ika'taqniktuk|none|prayers\27thepassionofourlord\204.png|03_noun_place_garden|1
to a garden|ika'taqniktuk|none|prayers\27thepassionofourlord\195.png|03_noun_place_garden|1
from the town|kjikanek|none|prayers\27thepassionofourlord\192.png|03_noun_place_garden|1
to take great care|wlikso'tmnen|"Remember well"" "to take great care" "on feast days"|prayers\06thepreceptsofthechurch\3.png|03_noun_place_garden|1
it is there;is there;there he is;it is unavailable|eyk;i'knuk|none|prayers\19baptism\133.png|03_noun_place_location|1
they are here;they are there|eykik|none|prayers\02thelordsprayer\17.png|03_noun_place_location|1
it is there|eykl|none|prayers\21theblessedeucharist\63.png|03_noun_place_location|1
i am|eym|none|prayers\08anactofhope\13.png|03_noun_place_location|1
we are there;we were here|eymek|none|prayers\02thelordsprayer\24.png|03_noun_place_location|1
we were here;he was there;is there;it is there;there he is;you were in;you have been there;he was there|eymekeykek;eyk;eymenek;eymusip;eymelitek|none|prayers\23purgatory\15.png|03_noun_place_location|1
who are there|eymeliji|none|prayers\23purgatory\51.png|03_noun_place_location|1
he was there;there he is;is there;it is there;you will be there;they are there|eymelitek;eyk;eymn;eymoq|none|prayers\12theconfiteor\20.png|03_noun_place_location|1
here;there|unknown|none|prayers\custom\4.png|03_noun_place_location|1
mass|alame's|none|prayers\21theblessedeucharist\48.png|03_noun_place_mass|1
the mass|alame's|none|prayers\23purgatory\37.png|03_noun_place_mass|1
he leads mass|alame'sikej|none|prayers\21theblessedeucharist\31.png|03_noun_place_mass|1
they lead mass|alame'sikejik|none|prayers\25holyorders\55.png|03_noun_place_mass|1
in church|alastumo'kuomk|none|prayers\26matrimony\173.png|03_noun_place_mass|1
the church|alasutmo'kuomk|none|prayers\26matrimony\190.png|03_noun_place_mass|1
receive the last oiling|kespimima'lajik|none|prayers\24extremeunction\36.png|03_noun_place_mass|1
the last oiling;extreme unction|kespimima'litimk;kespimima'ltimk|none|prayers\18thesacraments\14.png|03_noun_place_mass|1
the last oiling|kespimima'ltimk;kespimima'ltitimk|none|prayers\24extremeunction\3.png|03_noun_place_mass|1
oiled|kespimima'lut|none|prayers\24extremeunction\65.png|03_noun_place_mass|1
the last oiling|kespimima'tekejik|none|prayers\25holyorders\58.png|03_noun_place_mass|1
to give the last oiling|kespimima'tikej|none|prayers\24extremeunction\78.png|03_noun_place_mass|1
in the great temple|kjialasutmo'kuomk|none|prayers\27thepassionofourlord\787.png|03_noun_place_mass|1
in the huge church|kjialasutmo'kuomk|none|prayers\17litanyoftheholyname\116.png|03_noun_place_mass|1
the last oiling|nujikespimima'teket|none|prayers\24extremeunction\30.png|03_noun_place_mass|1
on the altar|patkwialasutmaqniktuk|"thought church in"?|prayers\21theblessedeucharist\62.png|03_noun_place_mass|1
why do you kiss me|koqoey wjit weska'qlmn|none|prayers\27thepassionofourlord\268.png|03_noun_place_origin|1
that's why|na wjit|none|prayers\19baptism\41.png|03_noun_place_origin|1
that reason;so;why;for;then;because;that is why|na;wjit|Often appears at the beginning of a phrase of glyphs.|prayers\22penance\268.png|03_noun_place_origin|1
it comes from there|wejiaq|none|prayers\20confirmation\81.png|03_noun_place_origin|1
by which they will go away|wejijikla'tikl|none|prayers\22penance\537.png|03_noun_place_origin|1
it flowed out|wejijuiksipnek|none|prayers\27thepassionofourlord\770.png|03_noun_place_origin|1
wipes away|wejikasa'ql|none|prayers\22penance\158.png|03_noun_place_origin|1
he tried to wipe away|wejikasa'taqwi'tisn|none|prayers\27thepassionofourlord\42.png|03_noun_place_origin|1
they will wipe away|wejikasui'kmuaten|none|prayers\27thepassionofourlord\101.png|03_noun_place_origin|1
he got them;did he get them|wejikekunkl|none|prayers\19baptism\272.png|03_noun_place_origin|1
through this we believe|wejiketlamsitmu'k|"reason he believes"|prayers\21theblessedeucharist\118.png|03_noun_place_origin|1
he tried to prepare them|wejikinua'taqwi'tisn|none|prayers\27thepassionofourlord\36.png|03_noun_place_origin|1
from which he made it|wejikisitoqsipnek|none|prayers\26matrimony\38.png|03_noun_place_origin|1
for which you were crucified|wejiklujjiewkto'lkis|none|prayers\17litanyoftheholyname\175.png|03_noun_place_origin|1
came to be so|wejikutisnika|none|prayers\19baptism\276.png|03_noun_place_origin|1
he came out of|wejimanit|none|prayers\03theangelicalsalutation\15.png|03_noun_place_origin|1
after he raised himself|wejiminunsis|none|prayers\04theapostlescreed\40.png|03_noun_place_origin|1
by which they die|wejinpo'titaq|none|prayers\21theblessedeucharist\184.png|03_noun_place_origin|1
one becomes a priest|wejipa'tlia'sewalujik|none|prayers\25holyorders\7.png|03_noun_place_origin|1
he wanted;by which he wanted|wejipewatkis|none|prayers\18thesacraments\24.png|03_noun_place_origin|1
you have bought me|wejipkuatelu'sip|none|prayers\10thanksgiving\16.png|03_noun_place_origin|1
they went out|wejituita'sni'kw|none|prayers\27thepassionofourlord\191.png|03_noun_place_origin|1
will stay with|wejiwkaywapn|none|prayers\24extremeunction\72.png|03_noun_place_origin|1
you do great deeds|wejiwla'tekemk|none|prayers\22penance\546.png|03_noun_place_origin|1
are joined together|wejiwlitoqopukua'lujik|none|prayers\26matrimony\57.png|03_noun_place_origin|1
they are sent|wetkitasikl|none|prayers\19baptism\288.png|03_noun_place_origin|1
by which forever|wjiapji|none|prayers\20confirmation\147.png|03_noun_place_origin|1
it will come|wjiatew|none|prayers\27thepassionofourlord\108.png|03_noun_place_origin|1
you returned|wjietek|none|prayers\17litanyoftheholyname\216.png|03_noun_place_origin|1
he will come from|wjietew|none|prayers\04theapostlescreed\50.png|03_noun_place_origin|1
it will pour|wjikuta'tuten|none|prayers\27thepassionofourlord\94.png|03_noun_place_origin|1
to have great strength|wjimelkikinewita'nen|none|prayers\18thesacraments\33.png|03_noun_place_origin|1
to remove them|wjimenian|none|prayers\18thesacraments\25.png|03_noun_place_origin|1
for it i will be crucified|wkujiklujjiewe'ten|none|prayers\27thepassionofourlord\79.png|03_noun_place_origin|1
to be nourished by it|wtatawultinew|none|prayers\21theblessedeucharist\22.png|03_noun_place_origin|1
there|na'tel'l|none|prayers\26matrimony\37.png|03_noun_place_there|1
was there;those;that;at that time;at the time;like this;those ones|nekla|none|prayers\27thepassionofourlord\754.png|03_noun_place_there|1
those others|ektikl|none|prayers\24extremeunction\14.png|03_noun_pronoun|1
i want water|ketuisamqway|none|prayers\27thepassionofourlord\694.png|03_noun_pronoun|1
i want to|ketuisaqtul|none|prayers\16morningprayer\250.png|03_noun_pronoun|1
you;you all;your|ki'l;kilow;gi'l|Translates to "I" when used in a group of glyphs as a phrase. Unless it is used with "us" at the end of the phrase, ie "our beings"|prayers\17litanyoftheholyname\88.png|03_noun_pronoun|1
you all;you|kilow|addressing an entire group|prayers\16morningprayer\156.png|03_noun_pronoun|1
we two|kinu|none|prayers\27thepassionofourlord\600.png|03_noun_pronoun|1
someone|ktik|none|prayers\19baptism\177.png|03_noun_pronoun|1
the other one|ktikaq|none|prayers\27thepassionofourlord\592.png|03_noun_pronoun|1
others|ktikik|none|prayers\25holyorders\33.png|03_noun_pronoun|1
others|ktikik|none|prayers\27thepassionofourlord\99.png|03_noun_pronoun|1
others|ktikik|none|prayers\27thepassionofourlord\305.png|03_noun_pronoun|1
the others;other|ktiki'k|none|prayers\25holyorders\83.png|03_noun_pronoun|1
other;others|ktiki'k;ktikik|none|prayers\27thepassionofourlord\820.png|03_noun_pronoun|1
other|ktikl|none|prayers\26matrimony\137.png|03_noun_pronoun|1
into our bodies|ktininaq|our possessive|prayers\20confirmation\146.png|03_noun_pronoun|1
i am deeply sorry|melkimeskey|none|prayers\13alongeractofcontrition\4.png|03_noun_pronoun|1
i have great grief|melkineskeyanl|none|prayers\22penance\566.png|03_noun_pronoun|1
i honor you|meselmul|none|prayers\22penance\420.png|03_noun_pronoun|1
he|nekm|none|prayers\27thepassionofourlord\382.png|03_noun_pronoun|1
he;him;she;her;your|nekm;negm|none|prayers\18thesacraments\20.png|03_noun_pronoun|1
them;to them;they;those;others;these ones;those ones;these;at that time;at the time;like this;that;was there;others|nekmow;negmow;wekla;nekat;nekla;ktikik|none|prayers\04theapostlescreed\90.png|03_noun_pronoun|1
it is they|netna|none|prayers\19baptism\318.png|03_noun_pronoun|1
i;i am|ni'n|none|prayers\27thepassionofourlord\525.png|03_noun_pronoun|1
i;me|ni'n|none|prayers\16morningprayer\211.png|03_noun_pronoun|1
we|ni'nen|none|prayers\17litanyoftheholyname\38.png|03_noun_pronoun|1
we;us;he/she;i|ni'nen|none|prayers\17litanyoftheholyname\173.png|03_noun_pronoun|1
i have often strayed|npuksio'pley|none|prayers\22penance\411.png|03_noun_pronoun|1
i will be able to go|ntelein|none|prayers\08anactofhope\22.png|03_noun_pronoun|1
i am beyond great sorrow|piamimelkimeskey|none|prayers\13alongeractofcontrition\21.png|03_noun_pronoun|1
i am full of things|telimestawajuianl|none|prayers\22penance\563.png|03_noun_pronoun|1
i am neutral|telinewiljey|none|prayers\27thepassionofourlord\527.png|03_noun_pronoun|1
he;i|unknown|none|prayers\custom\12.png|03_noun_pronoun|1
they;them|unknown|none|prayers\custom\10.png|03_noun_pronoun|1
they;them;he|unknown|none|prayers\custom\9.png|03_noun_pronoun|1
us;they;them|unknown|none|prayers\custom\8.png|03_noun_pronoun|1
the curtains|elaqpite'k|none|prayers\27thepassionofourlord\789.png|03_noun_thing|1
spruce beer|kawatkupil|similar to the glyph for the word continuous.|prayers\19baptism\152.png|03_noun_thing|1
oil|mimey|none|prayers\24extremeunction\79.png|03_noun_thing|1
the oil;oil|mimey|none|prayers\20confirmation\109.png|03_noun_thing|1
into your wisdom|msituo'qnmiktuk|none|prayers\08anactofhope\9.png|03_noun_thing|1
the sun|na'ku'setaq;na'ku'set|none|prayers\27thepassionofourlord\775.png|03_noun_thing|1
those;this;like this;of those;there;these;things;are the;here;it is;so;that;that reason;that's;thus;what;what is it|nala;na|none|prayers\19baptism\64.png|03_noun_thing|1
things;that;like this;of those;there;these;this;those|nala;nat|none|prayers\23purgatory\48.png|03_noun_thing|1
some things|na't koqoe'l|none|prayers\05thedecalogue\11.png|03_noun_thing|1
those things;some things|na't koqoe'l|none|prayers\14gracebeforemeals\12.png|03_noun_thing|1
that;those;at that time;at the time;like this;those ones;was there|nekla;negla|none|prayers\21theblessedeucharist\154.png|03_noun_thing|1
containing medicine|nepisuna'tasik|none|prayers\19baptism\148.png|03_noun_thing|1
this;it is;so;that;that one;this one|net|none|prayers\21theblessedeucharist\35.png|03_noun_thing|1
a container|nqani'psemun|none|prayers\27thepassionofourlord\84.png|03_noun_thing|1
a new one|pilueyek|none|prayers\27thepassionofourlord\470.png|03_noun_thing|1
a boulder|skmaqn|none|prayers\27thepassionofourlord\841.png|03_noun_thing|1
thus;those;that;this;who;what;where;there;why;when;how;for;like;by;by which;for how;no matter;so that;that person;the one;whatever;which;whoever;any;for those;for whom;on those;they;those there;those things;all things;all those things;those which;those who|ta'n;ta'nek;ta'nik;ta'nkik;ta'nkl;ta'nl|none|prayers\01thesignofthecross\1.png|03_noun_thing|1
those;any;for those;for whom;on those;that;which;they;those there;those things;all things;all those things;those which;those who;whom|ta'nek;ta'nik;ta'nkik;ta'nkl;ta'nl;ta'nka|none|prayers\19baptism\202.png|03_noun_thing|1
the kinds of things;be the kinds of things|telamukapnikl;telamuktej|none|prayers\02thelordsprayer\30.png|03_noun_thing|1
it will be; will be;things|unknown|Time tensor, plural, things|prayers\custom\5.png|03_noun_thing|1
belongings|way|none|prayers\22penance\477.png|03_noun_thing|1
these|wekla|none|prayers\06thepreceptsofthechurch\46.png|03_noun_thing|1
his plate|wlaqnmkl|plate|prayers\22penance\123.png|03_noun_thing|1
his clothing|wtapsun|none|prayers\27thepassionofourlord\644.png|03_noun_thing|1
his clothing|wtapsunek|none|prayers\27thepassionofourlord\468.png|03_noun_thing|1
things|wtoqonek|none|prayers\27thepassionofourlord\636.png|03_noun_thing|1
a lamb|jijklue'wja|none|prayers\27thepassionofourlord\19.png|03_noun_thing_animal|1
a small lamb|jijklue'wji'j|none|prayers\27thepassionofourlord\24.png|03_noun_thing_animal|1
chicken|ki'klikwe'j|none|prayers\27thepassionofourlord\136.png|03_noun_thing_animal|1
he is covered in blood|kaqimaltewa'sik|"he blood in covered" or "he blood inside cover"|prayers\27thepassionofourlord\460.png|03_noun_thing_blood|1
in your blood|kmaltemiktuk|"blood inside"|prayers\17litanyoftheholyname\240.png|03_noun_thing_blood|1
blood;his blood;with his blood;my blood|wmaltem;wmalten;maltewek;maltew;wmaltemek;nmaltem|none|prayers\21theblessedeucharist\89.png|03_noun_thing_blood|1
who neglect communion often|awisikmie'wultijik|none|prayers\21theblessedeucharist\133.png|03_noun_thing_communion|1
communion|kemnie''uti|none|prayers\06thepreceptsofthechurch\15.png|03_noun_thing_communion|1
you want a good communion|ketuiwlikmnie'wimk|none|prayers\21theblessedeucharist\197.png|03_noun_thing_communion|1
communion|kmnie'wimk|none|prayers\21theblessedeucharist\124.png|03_noun_thing_communion|1
in communion;communion|kmnie'wimk|none|prayers\21theblessedeucharist\157.png|03_noun_thing_communion|1
to take communion;if you want a good communion|kmnie'wimk;ketuiwlikmnie'wimk|none|prayers\21theblessedeucharist\162.png|03_noun_thing_communion|1
the communion|kmnie'wuti|none|prayers\25holyorders\62.png|03_noun_thing_communion|1
when you take communion|nespikmnie'wimk|none|prayers\21theblessedeucharist\212.png|03_noun_thing_communion|1
along with communion|nespikmnuie'win|none|prayers\21theblessedeucharist\179.png|03_noun_thing_communion|1
a good communion|wlikmnie'win|none|prayers\21theblessedeucharist\228.png|03_noun_thing_communion|1
death|npuaqn|none|prayers\27thepassionofourlord\345.png|03_noun_thing_death|1
death;at death|npuaqn|none|prayers\24extremeunction\27.png|03_noun_thing_death|1
of going to death;approaching death|npuaqniktuk|none|prayers\24extremeunction\46.png|03_noun_thing_death|1
vinegar|wisqnek|none|prayers\27thepassionofourlord\697.png|03_noun_thing_drink|1
all wrongdoings|kisipata'tmk|none|prayers\22penance\22.png|03_noun_thing_evil|1
the things of hell|mntua'kie'l|evil things|prayers\13alongeractofcontrition\19.png|03_noun_thing_evil|1
guide to evil|wina'lukui'tijl|none|prayers\18thesacraments\28.png|04_verb_hate|1
to do evil|winiemk|none|prayers\16morningprayer\196.png|03_noun_thing_evil|1
evil things|winjikl|group evil|prayers\05thedecalogue\33.png|04_verb_hate|1
evil things|winjikl|none|prayers\14gracebeforemeals\11.png|03_noun_thing_evil|1
evil things|winjikl|none|prayers\16morningprayer\40.png|03_noun_thing_evil|1
evil things|winjikl|none|prayers\16morningprayer\47.png|03_noun_thing_evil|1
evil things|winjikl|none|prayers\16morningprayer\203.png|03_noun_thing_evil|1
evil things|winjikl|none|prayers\19baptism\301.png|03_noun_thing_evil|1
evil;evil things|winjikl|none|prayers\02thelordsprayer\46.png|03_noun_thing_evil|1
evil things|winsuti'l|none|prayers\02thelordsprayer\42.png|03_noun_thing_evil|1
evil things|winsuti'l|none|prayers\16morningprayer\21.png|03_noun_thing_evil|1
evils;evil things|winsuti'l|none|prayers\16morningprayer\84.png|03_noun_thing_evil|1
you are afraid|nesuttut|none|prayers\19baptism\179.png|03_noun_thing_fear|1
you are afraid|nesutujik|none|prayers\24extremeunction\40.png|03_noun_thing_fear|1
fear|we'kwata'suaqn|Used as a noun, "fear and grief"|prayers\27thepassionofourlord\213.png|03_noun_thing_fear|1
is fearful;he is fearful|wisqusit|none|prayers\24extremeunction\57.png|03_noun_thing_fear|1
they fear|wisqusultijik|none|prayers\24extremeunction\39.png|03_noun_thing_fear|1
our food|nilunal|none|prayers\02thelordsprayer\32.png|03_noun_thing_food|1
bread;the bread|pipnaqn;pipnaqnek|none|prayers\21theblessedeucharist\81.png|03_noun_thing_food|1
you seek nourishment|weliwetapsi'tik|none|prayers\21theblessedeucharist\190.png|03_noun_thing_food|1
as nourishment|weliwetapsiti'tij|none|prayers\21theblessedeucharist\146.png|03_noun_thing_food|1
as nourishment|weliwetapsiti'tij|none|prayers\21theblessedeucharist\156.png|03_noun_thing_food|1
meat|wius|none|prayers\06thepreceptsofthechurch\38.png|03_noun_thing_food|1
griefs|wlmajo'ti'l|none|prayers\27thepassionofourlord\239.png|03_noun_thing_grief|1
grief|wnmajita'suaqn|none|prayers\27thepassionofourlord\215.png|03_noun_thing_grief|1
six|asukom|none|prayers\27thepassionofourlord\746.png|03_noun_thing_number|1
from your stomach|ktelamiluk|none|prayers\03theangelicalsalutation\14.png|03_noun_thing_number|1
seven|l'uiknek|none|prayers\18thesacraments\4.png|03_noun_thing_number|1
seven|l'uiknekewe'l|none|prayers\17litanyoftheholyname\159.png|03_noun_thing_number|1
they are three|ne'sinew|none|prayers\07anactoffaith\9.png|03_noun_thing_number|1
three|ne'sisni'k;ne'sioq|none|prayers\17litanyoftheholyname\91.png|03_noun_thing_number|1
four things|ne'wkl|none|prayers\22penance\325.png|03_noun_thing_number|1
one;there is one|newkte'jit;newkte'jitaq;newte'jit|none|prayers\07anactoffaith\6.png|03_noun_thing_number|1
one;as one;one of them|newkte'jitaq;newkte';newkte'jit|none|prayers\27thepassionofourlord\586.png|03_noun_thing_number|1
one;he is one;there is one;the one|newte'jit;newte'jin|none|prayers\17litanyoftheholyname\31.png|03_noun_thing_number|1
ten of them|newtiska'ql|none|prayers\04theapostlescreed\95.png|03_noun_thing_number|1
nine|pesqunatek|none|prayers\17litanyoftheholyname\55.png|03_noun_thing_number|1
three times|si'st|none|prayers\27thepassionofourlord\132.png|03_noun_thing_number|1
third|si'stewey|none|prayers\27thepassionofourlord\833.png|03_noun_thing_number|1
two of them|tapusilisnika|none|prayers\27thepassionofourlord\804.png|03_noun_thing_number|1
two|tapusisni'k|none|prayers\27thepassionofourlord\583.png|03_noun_thing_number|1
eight|ukumuljin|none|prayers\17litanyoftheholyname\84.png|03_noun_thing_number|1
have mercy on us|eulite'lemin|none|prayers\17litanyoftheholyname\7.png|04_verb_thought_pity|1
they finished their supper|kisiwuloqatawu'lti'titek|none|prayers\27thepassionofourlord\111.png|03_noun_thing_supper|1
he went to supper with|najiwloqatalulti'tisnika|none|prayers\27thepassionofourlord\11.png|03_noun_thing_supper|1
how they will eat supper|teli wuloqatalultinew|none|prayers\27thepassionofourlord\16.png|03_noun_thing_supper|1
things|koqoel|none|prayers\19baptism\313.png|03_noun_thing_things|1
all things|koqoe'l|none|prayers\27thepassionofourlord\736.png|03_noun_thing_things|1
things;all things;the things;those things;what things|koqoe'l|none|prayers\02thelordsprayer\47.png|03_noun_thing_things|1
so many things|pikwelkl|none|prayers\25holyorders\115.png|03_noun_thing_things|1
this|wla|none|prayers\10thanksgiving\24.png|03_noun_thing_this|1
this|wla|none|prayers\20confirmation\121.png|03_noun_thing_this|1
this|wla|none|prayers\27thepassionofourlord\444.png|03_noun_thing_this|1
this;here;is;these;this is;this one|wla|none|prayers\04theapostlescreed\91.png|03_noun_thing_this|1
a staff|aptu'nek|none|prayers\27thepassionofourlord\475.png|03_noun_thing_war|1
his sword|espo'qasiknmek|none|prayers\27thepassionofourlord\763.png|03_noun_thing_war|1
a soldier|sma'knisaq|none|prayers\27thepassionofourlord\751.png|03_noun_thing_war|1
soldiers|sma'kniski'k|none|prayers\27thepassionofourlord\631.png|03_noun_thing_war|1
spring water|lampo'q|none|prayers\19baptism\159.png|03_noun_thing_water|1
water|samqwan|Four waves|prayers\27thepassionofourlord\518.png|03_noun_thing_water|1
water;for water;with water|samqwan;samqwanek|Four waves|prayers\19baptism\137.png|03_noun_thing_water|1
water|samqwanek|Four waves|prayers\27thepassionofourlord\773.png|03_noun_thing_water|1
old water|sitelewey|none|prayers\19baptism\154.png|03_noun_thing_water|1
wine|moqopa'q|none|prayers\19baptism\150.png|03_noun_thing_wine|1
wine;the wine|moqopa'q;moqopa'qinuk|none|prayers\21theblessedeucharist\84.png|03_noun_thing_wine|1
wine|moqopa'qek|none|prayers\27thepassionofourlord\85.png|03_noun_thing_wine|1
in the wine|moqopa'qiktuk|none|prayers\21theblessedeucharist\12.png|03_noun_thing_wine|1
he answered|asitikelulaqsipn|none|prayers\27thepassionofourlord\319.png|03_noun_thing_words|1
he responded to them|asitikelulaqsipnika|none|prayers\27thepassionofourlord\312.png|03_noun_thing_words|1
he answered him|asitiklulasn|none|prayers\27thepassionofourlord\267.png|03_noun_thing_words|1
in the words of our creator|kisu'lkw klusuaqnml|none|prayers\19baptism\309.png|03_noun_thing_words|1
the words|klusuaqnn|none|prayers\19baptism\61.png|03_noun_thing_words|1
words;new;a new one|klusuaqnn;pilueyek|none|prayers\19baptism\106.png|03_noun_thing_words|1
speaking for him|klutemelsewji|none|prayers\19baptism\319.png|03_noun_thing_words|1
he said sternly|melkapukwes|none|prayers\27thepassionofourlord\733.png|03_noun_thing_words|1
make me strong|melkinan|none|prayers\16morningprayer\82.png|03_noun_thing_words|1
make me strong|melknin|none|prayers\16morningprayer\19.png|03_noun_thing_words|1
they preach|pestnmititij|none|prayers\25holyorders\60.png|03_noun_thing_words|1
should lie about others|pilsimaw|none|prayers\05thedecalogue\46.png|03_noun_thing_words|1
they mocked him in this way|telimalikima'tisn|none|prayers\27thepassionofourlord\485.png|03_noun_thing_words|1
be still|wanpi|none|prayers\27thepassionofourlord\596.png|03_noun_thing_words|1
take charge of me|wsualin|none|prayers\16morningprayer\77.png|03_noun_thing_words|1
he covers them|anquna'jik|none|prayers\20confirmation\96.png|04_verb_cover|1
can you cover yourself|anquna'ltimk|none|prayers\22penance\471.png|00_question_polar|1
help me|apoqnewmui|none|prayers\22penance\617.png|03_verb_help|1
you will help me|apoqnmui|none|prayers\22penance\435.png|03_verb_help|1
he was helped|apoqnumutek|none|prayers\27thepassionofourlord\568.png|03_verb_help|1
thorns|kawi'skaql|"help needed"?|prayers\27thepassionofourlord\478.png|03_verb_help|1
they can be helped|kisiapoqnmujik|none|prayers\23purgatory\30.png|03_verb_help|1
they can be helped|kisiapoqnmujik|none|prayers\23purgatory\36.png|03_verb_help|1
they tend to|nujo'tmitij|none|prayers\25holyorders\63.png|03_verb_help|1
they are tended to|nujo'tmitijl|none|prayers\25holyorders\70.png|03_verb_help|1
that is how you help|teliapoqnmujik|none|prayers\23purgatory\54.png|03_verb_help|1
you were taken from danger|wesui'mulukis|none|prayers\17litanyoftheholyname\108.png|03_noun_thing_fear|1
work for|wtlukaqtemuanew|none|prayers\25holyorders\10.png|03_verb_help|1
redeemed;were paid for|apankituamekl|none|prayers\23purgatory\12.png|03_verb_paid|1
were paid for|apankituamekl|none|prayers\23purgatory\20.png|03_verb_paid|1
from our souls;in their souls;our souls|kjijaqamijinaq|none|prayers\18thesacraments\27.png|04_noun_person_soul|1
my soul|njijaqamij|none|prayers\09anactofcharity\6.png|04_noun_person_soul|1
so;this;that;there;here;for;what;are the;it is;that reason;that's;these;those;thus;what is it;because;that is why;then;why|na;wjit|none|prayers\05thedecalogue\60.png|04_noun_thing|1
it was;that's it;as;it is they;that is right;there;when;he's the one|netna;nekem|none|prayers\04theapostlescreed\9.png|04_noun_thing|1
truly;also;and so;for;indeed;next;so;then;when;while|toq;toqo|none|prayers\06thepreceptsofthechurch\44.png|04_noun_thing|1
great mystery|kjipa'qalayuti|none|prayers\21theblessedeucharist\26.png|04_noun_thing_mystery|1
the mystery|pa'qalayuti|none|prayers\21theblessedeucharist\46.png|04_noun_thing_mystery|1
it moved|ajiej|moved|prayers\27thepassionofourlord\748.png|04_verb|1
he abused him|almima'sn|abused|prayers\27thepassionofourlord\589.png|04_verb|1
he suffered under|amaskwiplnutaq|none|prayers\04theapostlescreed\31.png|04_verb|1
they realized|apajipetij|realized|prayers\17litanyoftheholyname\219.png|04_verb|1
forgive them|apiksiktu|forgive|prayers\27thepassionofourlord\656.png|04_verb|1
he allowed|asiste'stkis|allowed|prayers\27thepassionofourlord\212.png|04_verb|1
that he allows|asitelema'j|allows|prayers\26matrimony\136.png|04_verb|1
they divided|atkenasitisnek|divided|prayers\27thepassionofourlord\634.png|04_verb|1
we read|ekitemu'kul|read|prayers\04theapostlescreed\93.png|04_verb|1
you deliver it to us|elatuin|deliver|prayers\14gracebeforemeals\8.png|04_verb|1
she gave you up|eli iknmatimkis|gave up|prayers\17litanyoftheholyname\100.png|04_verb|1
it is coming|eliaq|coming|prayers\27thepassionofourlord\346.png|04_verb|1
he floated up|eliwnaqietaq|floated|prayers\04theapostlescreed\43.png|04_verb|1
i will send|elkimas|send|prayers\27thepassionofourlord\160.png|04_verb|1
he is sent forward|elkwita'j|sent forward|prayers\19baptism\195.png|04_verb|1
they punctured|elnmte'mua'tisn|punctured|prayers\27thepassionofourlord\479.png|04_verb|1
they honored him|emitkulpukweta'sni'kw|honored|prayers\27thepassionofourlord\483.png|04_verb|1
we shall strive for it|ensultinin|strive|prayers\17litanyoftheholyname\155.png|04_verb|1
tap on their heads|epme'tkweta'ji|tap|prayers\20confirmation\119.png|04_verb|1
to baptize|eqotu paptiste|baptize|prayers\19baptism\120.png|04_verb|1
when he was slaughtered|etlanutek|slaughtered|prayers\07anactoffaith\30.png|04_verb|1
fast|eulite'tekej|fast|prayers\23purgatory\42.png|04_verb|1
better us|iliela'timkl|better|prayers\22penance\293.png|04_verb|1
repeatedly spit|i'luskomatisn|spit|prayers\27thepassionofourlord\492.png|04_verb|1
when they gather|i'mawiemkek|gather|prayers\22penance\296.png|04_verb|1
placed on him|kekwa'tupnek|placed|prayers\27thepassionofourlord\563.png|04_verb|1
it was placed on|ke'kwa'tu'tek|placed|prayers\27thepassionofourlord\554.png|04_verb|1
they are removed|ke'qikasa'toq|"he them wiped" "he wiped them away" "he they prepared" "he prepared them"|prayers\12theconfiteor\105.png|04_verb|1
it approaches|ketui-ika'q|approaches|prayers\27thepassionofourlord\7.png|04_verb|1
they are transformed|kewaska'tikl|transformed|prayers\21theblessedeucharist\53.png|04_verb|1
i won't abandon|kisiwsimkwaw|abandon|prayers\27thepassionofourlord\145.png|04_verb|1
it calls|ktuk|calls|prayers\27thepassionofourlord\137.png|04_verb|1
you fasted|kultami'sip|fasted|prayers\17litanyoftheholyname\139.png|04_verb|1
it poured|kuta'siksipnek|poured|prayers\27thepassionofourlord\701.png|04_verb|1
he pours it|kuta'toq|none|prayers\22penance\607.png|04_verb|1
let's wager|leknej|wager|prayers\27thepassionofourlord\640.png|04_verb|1
it moved|maja'siksipnek|moved|prayers\27thepassionofourlord\778.png|04_verb|1
comes together|mawiaj|none|prayers\04theapostlescreed\66.png|04_verb|1
strengthen us|melkinin|strengthen|prayers\02thelordsprayer\40.png|04_verb|1
he swallowed|mesa'toqsip|swallowed|prayers\27thepassionofourlord\707.png|04_verb|1
when you swallow|mesa'tumk|swallow|prayers\21theblessedeucharist\217.png|04_verb|1
must;how it must;we must;you must|miamuj;iamuj|must|prayers\15graceaftermeals\23.png|04_verb|1
they copy him|napkua'jl|copy|prayers\04theapostlescreed\63.png|04_verb|1
it went fast|naqsa'qsip|went fast|prayers\27thepassionofourlord\118.png|04_verb|1
left behind for us|naqtmulkis|left behind|prayers\21theblessedeucharist\13.png|04_verb|1
it was torn apart|naskoqa'siksipnek|torn|prayers\27thepassionofourlord\786.png|04_verb|1
they will bring me|neetuklikl|bring me|prayers\08anactofhope\8.png|04_verb|1
he recognized|nenkis|recognized|prayers\27thepassionofourlord\394.png|04_verb|1
he divided into three|ne'sikqana'muasnika|divided|prayers\27thepassionofourlord\87.png|04_verb|1
divided it in three|ne'sitkna'snika|divided|prayers\27thepassionofourlord\66.png|04_verb|1
when he preaches to them|nestuimkuitij|preaches|prayers\26matrimony\163.png|04_verb|1
come down|nisa'si|come|prayers\27thepassionofourlord\675.png|04_verb|1
it fell away|nisiaqsip|fell|prayers\27thepassionofourlord\229.png|04_verb|1
you work with|nujieluktimkl|work|prayers\22penance\301.png|04_verb|1
will exhume him|panqamikwa'lukukl|exhume|prayers\27thepassionofourlord\848.png|04_verb|1
they opened|panta'tiksipnikl|opened|prayers\27thepassionofourlord\780.png|04_verb|1
he lists them all|pa'qikitkl|lists|prayers\22penance\371.png|04_verb|1
he brought them|pekisulasnika|brought|prayers\27thepassionofourlord\253.png|04_verb|1
you will give us|penekenmuin|give|prayers\02thelordsprayer\31.png|04_verb|1
formed him;molded him;a little|peptoqoksalasn;piptoqoskaleskis;kijka'|formed;molded|prayers\04theapostlescreed\25.png|04_verb|1
i dreamt of|pewayapn|dreamt|prayers\16morningprayer\42.png|04_verb|1
disappear|pilianukul|none|prayers\08anactofhope\32.png|04_verb|1
he will come|pkisintew|will come|prayers\04theapostlescreed\48.png|04_verb|1
they began;they led him away|poqtamka'la'tisna|began|prayers\27thepassionofourlord\378.png|04_verb|1
he pierced|sa'pasn|pierced|prayers\27thepassionofourlord\767.png|04_verb|1
they had gone in many directions|sesetatikek|none|prayers\04theapostlescreed\78.png|04_verb|1
it was eclipsed|soqqwesnaq|eclipsed|prayers\27thepassionofourlord\776.png|04_verb|1
do for them;what to do with them|tala'luek|do|prayers\19baptism\246.png|04_verb|1
that you do|tela'timkl|do|prayers\19baptism\82.png|04_verb|1
how we forgave those|teliapiksiktaqajik|forgave|prayers\02thelordsprayer\33.png|04_verb|1
they will be released|teliapkua'tasital|released|prayers\22penance\191.png|04_verb|1
so he will come|teli'kaj|come|prayers\20confirmation\145.png|04_verb|1
he revealed|teline'iatoqsip|revealed|prayers\21theblessedeucharist\38.png|04_verb|1
he sweat|telitknies|sweat|prayers\27thepassionofourlord\225.png|04_verb|1
how you behaved|telmetemkipn|behaved|prayers\22penance\255.png|04_verb|1
they had decreed|teplutmi'tisnek|none|prayers\04theapostlescreed\81.png|04_verb|1
you carried him|te'soqola'lasip|carried|prayers\17litanyoftheholyname\56.png|04_verb|1
takes away|tetpikeska'tuajl|takes|prayers\22penance\481.png|04_verb|1
you forgive us|tliapiksiktuin|forgive|prayers\02thelordsprayer\38.png|04_verb|1
will be humbled|tlpenoqite'lsitew|humbled|prayers\27thepassionofourlord\188.png|04_verb|1
they found you|weji'skesnik|found|prayers\17litanyoftheholyname\122.png|04_verb|1
when they arise|wenaqatijik|arise|prayers\26matrimony\201.png|04_verb|1
those remaining|weskiaql|none|prayers\24extremeunction\15.png|04_verb|1
they will be formed well|wlinikitanew|formed|prayers\26matrimony\12.png|04_verb|1
he has invaded|wmestaqa'tmn|invaded|prayers\27thepassionofourlord\298.png|04_verb|1
to behave|wtele'in|behave|prayers\22penance\136.png|04_verb|1
they falsely accused him|najipilsimtika|none|prayers\27thepassionofourlord\309.png|04_verb_accuse|1
he is falsely accused|pilsimut|none|prayers\27thepassionofourlord\606.png|04_verb_accuse|1
he was falsely accused|tetlipilsimuss|none|prayers\27thepassionofourlord\261.png|04_verb_accuse|1
he was falsely accused|tetlipilsimuss|none|prayers\27thepassionofourlord\390.png|04_verb_accuse|1
he was falsely accused|wpilsimuksin|none|prayers\27thepassionofourlord\395.png|04_verb_accuse|1
they allow him|asite'lemkuk|allow|prayers\26matrimony\92.png|04_verb_allow|1
they allow him|asite'lemkuk|allow|prayers\26matrimony\97.png|04_verb_allow|1
he asks|etamajl|none|prayers\22penance\329.png|04_verb_ask|1
he implores him|etamatl|none|prayers\22penance\393.png|04_verb_ask|1
i ask of you;i beg of you|etamul|none|prayers\13alongeractofcontrition\43.png|04_verb_ask|1
i beg of you|etamul|none|prayers\22penance\632.png|04_verb_ask|1
i ask you all|etamulek|none|prayers\13alongeractofcontrition\62.png|04_verb_ask|1
it is ask of|etamut|none|prayers\22penance\262.png|04_verb_ask|1
they ask him|ipatama'tl|none|prayers\26matrimony\195.png|04_verb_ask|1
he asked for|kwilutkisnek|none|prayers\27thepassionofourlord\520.png|04_verb_ask|1
he asked him|pipanimasmn|none|prayers\27thepassionofourlord\317.png|04_verb_ask|1
when he asks|tamaj|none|prayers\22penance\229.png|04_verb_ask|1
all must ask|tamulk|none|prayers\17litanyoftheholyname\266.png|04_verb_ask|1
question;ask|unknown|inverse of today?|prayers\custom\11.png|04_verb_ask|1
i have asked repeatedly|weji i'patamk|none|prayers\22penance\581.png|04_verb_ask|1
what does he ask for|wikutk|none|prayers\24extremeunction\50.png|04_verb_ask|1
to ask of him|wpipanimkun|none|prayers\22penance\395.png|04_verb_ask|1
he had attended|teko'tka|none|prayers\27thepassionofourlord\755.png|04_verb_attend|1
who were in attendance|teko'tmu'titki'k|none|prayers\27thepassionofourlord\633.png|04_verb_attend|1
attend it;you attend it|tko'ten|attend|prayers\06thepreceptsofthechurch\21.png|04_verb_attend|1
i baptize you;by which we are baptized|elisikntul;elisikntuemk|none|prayers\19baptism\70.png|04_verb_baptize|1
one is confirmed|kisiminuisikntasimk|none|prayers\20confirmation\157.png|04_verb_baptize|1
he is baptized|kisisikntasimk|none|prayers\19baptism\328.png|04_verb_baptize|1
after their baptism|kisisikntasimkek|none|prayers\22penance\13.png|04_verb_baptize|1
afte you were baptized|kisisikntasinek|none|prayers\17litanyoftheholyname\137.png|04_verb_baptize|1
to baptize;when he is baptized|kisiskntuenes;kisisikntasimk|none|prayers\19baptism\145.png|04_verb_baptize|1
baptize him;after baptism|kisiskntuet;kisisikntasi'tij|none|prayers\19baptism\185.png|04_verb_baptize|1
second baptism|minuisikntasimk|none|prayers\18thesacraments\11.png|04_verb_baptize|1
second baptism|minuisikntasimk|none|prayers\20confirmation\66.png|04_verb_baptize|1
who are being confirmed|minuisikntuaji|none|prayers\20confirmation\116.png|04_verb_baptize|1
whom he confirms|minuisikntuaji|none|prayers\20confirmation\101.png|04_verb_baptize|1
when he give confirmation|minuisikntuej|none|prayers\20confirmation\95.png|04_verb_baptize|1
he is baptized|sikntasik|none|prayers\19baptism\29.png|04_verb_baptize|1
he is baptized;about baptism|sikntasik;sikntuj|none|prayers\19baptism\35.png|04_verb_baptize|1
when we were baptized|sikntasi'kek|none|prayers\20confirmation\78.png|04_verb_baptize|1
baptism;he baptized;he baptized him|sikntasimk;sikntuasen;sikntuasen|none|prayers\19baptism\4.png|04_verb_baptize|1
after he is baptized|sikntasimkek|none|prayers\22penance\24.png|04_verb_baptize|1
if we are not baptized|sikntasiwk|none|prayers\19baptism\12.png|04_verb_baptize|1
at our baptism;in their baptism|sikntasuti;wsikntasultimuow|none|prayers\19baptism\228.png|04_verb_baptize|1
when they baptize|sikntuejik|none|prayers\25holyorders\54.png|04_verb_baptize|1
when he baptizes|sikntuemk|none|prayers\19baptism\128.png|04_verb_baptize|1
baptize;they will be baptized;do you baptize|sikntuj;sikntujik|none|prayers\19baptism\215.png|04_verb_baptize|1
is he baptized;he is baptized|sikntut;sikntasik|none|prayers\19baptism\18.png|04_verb_baptize|1
he will be baptized;he is baptized;when you baptize;to be baptized|sikntut;sikntuj;sikntuemk;wsikntuen|none|prayers\19baptism\58.png|04_verb_baptize|1
how is he baptized|talisikntut|none|prayers\19baptism\52.png|04_verb_baptize|1
i beg forgiveness|aniapsi|none|prayers\16morningprayer\170.png|04_verb_beg|1
they feared|naqeltelma'tipnn|none|prayers\21theblessedeucharist\109.png|04_verb_behave|1
when he preaches to them|nestuimkwitij|none|prayers\26matrimony\206.png|04_verb_behave|1
they are unafraid of being open|nqatkelemanenew|none|prayers\21theblessedeucharist\106.png|04_verb_behave|1
how does he act|tala'sit|none|prayers\22penance\381.png|04_verb_behave|1
how does he act;what does he do|tala'sit|none|prayers\22penance\25.png|04_verb_behave|1
how do they act|tala'tijik|none|prayers\26matrimony\156.png|04_verb_behave|1
how do you act|tala'timk|none|prayers\21theblessedeucharist\195.png|04_verb_behave|1
how do you act|tala'timk|none|prayers\22penance\245.png|04_verb_behave|1
how does he act|tala'timk|none|prayers\22penance\76.png|04_verb_behave|1
how he acts|tela'sij|none|prayers\22penance\101.png|04_verb_behave|1
he acts|tela'timk|none|prayers\22penance\79.png|04_verb_behave|1
the way i am|tele'i|none|prayers\22penance\557.png|04_verb_behave|1
he does|teta'sijl|none|prayers\22penance\322.png|04_verb_behave|1
may do this|wtla'tikelin|none|prayers\26matrimony\140.png|04_verb_behave|1
greatly benefits|pejilinuteno'tk|benefits|prayers\22penance\6.png|04_verb|1
to bother him|wtemeiakun|none|prayers\20confirmation\51.png|04_verb_bother|1
will not bother them|wtemeiakunew|none|prayers\20confirmation\44.png|04_verb_bother|1
they bound him|kejitpilatisna|native|prayers\27thepassionofourlord\275.png|04_verb_bound|1
he brought it|pekisito'q|none|prayers\27thepassionofourlord\575.png|04_verb_brought|1
he listens;they listen to|ankistujik;ankistua'titl|listen carefully|prayers\26matrimony\161.png|04_verb_care|1
let us take care;take care of me;you cared for me|anko'temenej;ankweyui;ankweyuin;ankweyui'sip|none|prayers\16morningprayer\218.png|04_verb_care|1
we take care|anko'tmek|none|prayers\19baptism\100.png|04_verb_care|1
they will take care of|anko'tmnew|none|prayers\20confirmation\30.png|04_verb_care|1
who are their guardians|ankweiaji|none|prayers\26matrimony\95.png|04_verb_care|1
take care of them|ankweyajik|none|prayers\17litanyoftheholyname\295.png|04_verb_care|1
you care for us|ankweyuin|none|prayers\15graceaftermeals\17.png|04_verb_care|1
care for them|pekajo'tmul|none|prayers\27thepassionofourlord\723.png|04_verb_care|1
he will be careful|pjilianko'tk|none|prayers\22penance\221.png|04_verb_care|1
he takes care of|welianiaptmuatew|none|prayers\22penance\498.png|04_verb_care|1
to take care of herself|weliankweyasik|none|prayers\19baptism\47.png|04_verb_care|1
are chosen|mekenujik|none|prayers\25holyorders\94.png|04_verb_chosen|1
chosen|mekenujik|used as a verb|prayers\25holyorders\91.png|04_verb_chosen|1
i want to confess|ketuipa'qapukwey|none|prayers\22penance\341.png|04_verb_confess|1
i want to confess fully|ketuipa'qapukwey|none|prayers\12theconfiteor\3.png|04_verb_confess|1
he wants to confess well|ketuiwlipa'qapukwemk|none|prayers\22penance\78.png|04_verb_confess|1
after he has confessed;i have confessed|kisipa'qapukwej;kisipa'qapukwatm|none|prayers\22penance\448.png|04_verb_confess|1
when one confesses well|kisiwlipa'qapukwej|none|prayers\22penance\550.png|04_verb_confess|1
confession;the confess;you make confession|pa'qapukoti;pa'qapukwejik;pa'qapukwemk|none|prayers\25holyorders\56.png|04_verb_confess|1
confess them;he confesses|pa'qapukwaten;pa'qapukwet|none|prayers\06thepreceptsofthechurch\10.png|04_verb_confess|1
they have confessed to;who are going to confession|pa'qapukw'atililji;pa'qapukwatiliji|none|prayers\22penance\484.png|04_verb_confess|1
he makes the confession;we go to confession;when he confesses;to go to confession|pa'qapukwek;pa'qapukwatmi'kw;pa'qapukwetek;wpa'qapukwen|none|prayers\22penance\363.png|04_verb_confess|1
when we confessed|pa'qapukwemkek|none|prayers\23purgatory\27.png|04_verb_confess|1
when i confessed|pa'qapukweyanek|none|prayers\12theconfiteor\35.png|04_verb_confess|1
in confession|pa'qapukwo'tiktuk|none|prayers\22penance\157.png|04_verb_confess|1
while he is confessing|pemipa'qapukwej|none|prayers\22penance\376.png|04_verb_confess|1
you are married|toqopukwa'tasioq|none|prayers\05thedecalogue\54.png|04_verb_confess|1
a good confession|welipa'qapukwemk|none|prayers\21theblessedeucharist\165.png|04_verb_confess|1
he confesses well|welipa'qapukwet|none|prayers\20confirmation\62.png|04_verb_confess|1
doesn't confess all|weskwipa'qapukwatk|none|prayers\22penance\95.png|04_verb_confess|1
will be left to confess|weskwipa'qapukwatmn|none|prayers\22penance\224.png|04_verb_confess|1
he will be able to confess to all|wkaqipa'qapukwatk|"If he confess to it"|prayers\22penance\209.png|04_verb_confess|1
to confess about|wpa'qapukwatmn|none|prayers\22penance\513.png|04_verb_confess|1
you created me;made for me;who created|kisi i'sip;kisitoqsip|none|prayers\16morningprayer\224.png|04_verb_create|1
you created it|kisieksip|none|prayers\14gracebeforemeals\6.png|04_verb_create|1
you created|kisitoqsip|none|prayers\17litanyoftheholyname\169.png|04_verb_create|1
created;created it;did he create;he created;who created;you created;he made for us;you have created me|kisitoqsip;kisitoqsik;kisi i'sip|none|prayers\26matrimony\19.png|04_verb_create|1
created|kisitoqsipn|none|prayers\17litanyoftheholyname\158.png|04_verb_create|1
created|kisitoqsipn|none|prayers\18thesacraments\18.png|04_verb_create|1
you created perfectly|natawitu'nl|none|prayers\16morningprayer\134.png|04_verb_create|1
he was crucified;he was to be crucified|etliklujjiewto'sni'k;etliklujjiewto's|none|prayers\27thepassionofourlord\582.png|04_verb_crucify|1
he made the sign of the cross over|kisiklujjiewktek|none|prayers\24extremeunction\83.png|04_verb_crucify|1
after you were crucified;he crosses himself|kisiklujjiewkto'tek;kisklujjiewto'sij|none|prayers\22penance\326.png|04_verb_crucify|1
from the creator;in the creator;of the creator|kisu'lkwiktuk;kisu'lkwiktuk;kisu'lkiktuk|none|prayers\20confirmation\110.png|03_noun_person_creator|1
in the creator;the creator;god;to the savior|kisu'lkwiktuk;kisu'lkwl;kisu'lkw|none|prayers\26matrimony\254.png|03_noun_person_creator|1
the cross;this cross;his cross;you were crucified|klujjieweyek;wklujjieweymek;wklujjieweymek;klujjiewkto'lk|none|prayers\17litanyoftheholyname\247.png|04_verb_crucify|1
on the cross;on his cross;off the cross|klujjieweyiktuk;wklujjieweymiktuk;wklujjieweyimk|none|prayers\21theblessedeucharist\42.png|04_verb_crucify|1
he was crucified|klujjiewikto's|none|prayers\27thepassionofourlord\741.png|04_verb_crucify|1
crucify him|klujjiewkte'kit|none|prayers\27thepassionofourlord\516.png|04_verb_crucify|1
he was nailed to the cross;are cruified|klujjiewkto'taq;klujjiewto'lk|none|prayers\04theapostlescreed\34.png|04_verb_crucify|1
he was crucified|telipkijiklujjiewta'sis|none|prayers\27thepassionofourlord\750.png|04_verb_crucify|1
from your cross|wklujjiewmiktuk|none|prayers\27thepassionofourlord\676.png|04_verb_crucify|1
you will deny knowing me|l'sika'tune'toqsip|none|prayers\27thepassionofourlord\133.png|04_verb_deny|1
who wants to die|ketuipik|none|prayers\21theblessedeucharist\225.png|04_verb_die|1
after you had fallen|kisiwikwienek|none|prayers\17litanyoftheholyname\192.png|04_verb_die|1
you had fallen|kisiwikwienek|none|prayers\17litanyoftheholyname\181.png|04_verb_die|1
he dies;for death;from the dead;if i am dead|nepk;kisinpman;npman|none|prayers\19baptism\33.png|04_verb_die|1
they died|nepki'k|none|prayers\27thepassionofourlord\783.png|04_verb_die|1
i die;i will die;if i am dead;when i die|npman|none|prayers\11anactofcontrition\27.png|04_verb_die|1
when i die;i die;i will die;if i am dead|npman|none|prayers\08anactofhope\19.png|04_verb_die|1
die;i will die;he died|npman;nepkaq|none|prayers\04theapostlescreed\35.png|04_verb_die|1
he will die|npmn|none|prayers\19baptism\180.png|04_verb_die|1
you can die properly|wlinpmenenu|none|prayers\24extremeunction\6.png|04_verb_die|1
they will die|wnputinew|none|prayers\24extremeunction\41.png|04_verb_die|1
he ordered|elkitkis|ordered|prayers\27thepassionofourlord\457.png|04_verb_direct|1
who will not obey|i'alsumkwi'tik|none|prayers\19baptism\238.png|04_verb_obey|1
virgin;she is a virgin|naskwet|none|prayers\16morningprayer\177.png|03_noun_person_virgin|1
she is a virgin;she was a virgin|naskwet;naskwetek|none|prayers\04theapostlescreed\29.png|03_noun_person_virgin|1
purest of virgins|pejilinaskwet|none|prayers\17litanyoftheholyname\62.png|03_noun_person_virgin|1
have instructed me|telkimin|none|prayers\09anactofcharity\27.png|04_verb_direct|1
he directs him|telkimjl|none|prayers\22penance\452.png|04_verb_direct|1
asked them to do|telkimkwitij|none|prayers\25holyorders\22.png|04_verb_direct|1
you direct me|telkimn|The fist glyph is often read as "I", but in this rare case it signifies "you", as if it was used by itself as a single glyph.|prayers\22penance\444.png|04_verb_direct|1
he ordered us|telkimulkis|none|prayers\05thedecalogue\62.png|04_verb_direct|1
had told us;had directed us;you are directed;you are directed to;what he said|telkimulkl;telkimulkul;telkimulk;telapukwelis|none|prayers\04theapostlescreed\109.png|04_verb_direct|1
it is written|telkitasik|none|prayers\27thepassionofourlord\23.png|04_verb_direct|1
do it|tla'likw|do|prayers\27thepassionofourlord\293.png|04_verb_do|1
you do evil to me|ketui winipkwatuin|none|prayers\27thepassionofourlord\270.png|04_verb_earn|1
you want to torture him|ketuitlimetuiplnoq|none|prayers\27thepassionofourlord\356.png|04_verb_earn|1
he would be tortured|ntlimtuiplnaten|none|prayers\27thepassionofourlord\209.png|04_verb_earn|1
it is very hard|pejilimtue'k|hard|prayers\06thepreceptsofthechurch\59.png|04_verb_earn|1
you earned for us|pekwaltalasipni'k|none|prayers\17litanyoftheholyname\238.png|04_verb_earn|1
i earned for myself|pekwatasi|none|prayers\13alongeractofcontrition\16.png|04_verb_earn|1
that you had earned;to earn for us|pekwatemkipn;pekwatuieksip|none|prayers\22penance\261.png|04_verb_earn|1
that we earned|pekwatmkipn|none|prayers\22penance\273.png|04_verb_earn|1
how hard is it|talimtua'lit|none|prayers\22penance\500.png|04_verb_earn|1
the chaos|telimtunamu'k|?? or know??|prayers\27thepassionofourlord\793.png|04_verb_earn|1
how i acquired|telipkuatuan|none|prayers\22penance\558.png|04_verb_earn|1
we have earned it|telipkwatasi'kw|none|prayers\27thepassionofourlord\602.png|04_verb_earn|1
by which he earns himself;we will earn|wejipkuatasitew;wejipkwatasiten|none|prayers\22penance\242.png|04_verb_earn|1
he earned for him|wejipkwatlmuksip|none|prayers\07anactoffaith\28.png|04_verb_earn|1
it earns for us|wejipkwatulk|none|prayers\20confirmation\70.png|04_verb_earn|1
what we will eat|ketuimalqotmek|none|prayers\14gracebeforemeals\3.png|04_verb_eat|1
eat it|kmalqotmu|none|prayers\06thepreceptsofthechurch\40.png|04_verb_eat|1
eat it|malqutmuk|none|prayers\27thepassionofourlord\73.png|04_verb_eat|1
is to be eaten;they ate|tlmalqumuksin;tetlimalquma'tisna|none|prayers\27thepassionofourlord\25.png|04_verb_eat|1
you gave us to eat|esemiekl|none|prayers\02thelordsprayer\26.png|04_verb_eat_given|1
nourishment|ntapsinen|none|prayers\14gracebeforemeals\16.png|04_verb_eat_given|1
you give it to us daily|peneknmuin|give|prayers\14gracebeforemeals\7.png|04_verb_eat_given|1
they are nourished|wejsmujik|none|prayers\21theblessedeucharist\130.png|04_verb_eat_given|1
eat meat|pelikultamiw|none|prayers\06thepreceptsofthechurch\27.png|04_verb_eat_meat|1
they were eating|pematalulti'titek|none|prayers\27thepassionofourlord\29.png|04_verb_eating|1
be afraid of them|jipa'l|none|prayers\05thedecalogue\25.png|04_verb_fear|1
we fear you|jipa'lninen|none|prayers\17litanyoftheholyname\286.png|04_verb_fear|1
can fix things|ika'tuj|none|prayers\23purgatory\40.png|04_verb_fix|1
has given them;he gives to them;he give it away;have give us|iknmakuititij;iknmuaj;iknmue'tij;iknmulk|none|prayers\26matrimony\80.png|04_verb_give|1
has given them|iknmakwi'tijl|none|prayers\26matrimony\17.png|04_verb_give|1
give me|iknmuin|none|prayers\13alongeractofcontrition\45.png|04_verb_give|1
had given to me;he has given to you;you give me;give to us;they gave him;you will give me;you give him|iknmuip;iknmaskis;iknmuin;iknmuin;iknmusnek;ktikenmuin;lknmuj|none|prayers\07anactoffaith\20.png|04_verb_give|1
what was given him';give to me;give me;give to us;he is given;he will give;i give to you|iknmuj;iknmuini;knmutew;iknmul|none|prayers\20confirmation\168.png|04_verb_give|1
have been given|iknmujik|none|prayers\25holyorders\37.png|04_verb_give|1
give to me;if you give it to us;you will give me|iknmul;iknmuiek;ktiknmuin|none|prayers\16morningprayer\58.png|04_verb_give|1
usually gives confirmation|nujiminuisikntuet|none|prayers\20confirmation\89.png|04_verb_baptize|1
how he had given us|teli iknmulk|none|prayers\20confirmation\75.png|04_verb_give|1
have been given|wejikenemuj|reason given|prayers\26matrimony\255.png|04_verb_give|1
you glorified her|emtoqoa'lsip|none|prayers\17litanyoftheholyname\64.png|04_verb_glorify|1
we glorify you|emtoqwa'lnek|none|prayers\17litanyoftheholyname\236.png|04_verb_glorify|1
we glorify you|emtoqwa'lnek|none|prayers\17litanyoftheholyname\262.png|04_verb_glorify|1
we glorify you|emtoqwa'lninen|none|prayers\17litanyoftheholyname\280.png|04_verb_glorify|1
to get drunk|ketkiemk|"offend drunk in anger"? The first glyph appears to be in the oppostive direction to the glyph for glorify, with the center stave oddly forked. Offend is the proper antonym for the word glorify. The second glyph could be used to mean "otherwise".|prayers\16morningprayer\197.png|04_verb_glorify|1
he folds together|toqoanqa'toql|none|prayers\22penance\318.png|04_verb_glorify|1
i already hate|kisimaskeltm|none|prayers\22penance\68.png|04_verb_hate|1
you hate them|maskeltmn|none|prayers\16morningprayer\195.png|04_verb_hate|1
you hate them|maskeltmn|none|prayers\16morningprayer\204.png|04_verb_hate|1
you hate them|maskite'tmn|none|prayers\13alongeractofcontrition\34.png|04_verb_hate|1
i hate them|masklteman|none|prayers\16morningprayer\48.png|04_verb_hate|1
how he was tortured|teliamaskwiplnuss|none|prayers\27thepassionofourlord\2.png|04_verb_slap|1
we did not take care|teliwino'tmek|none|prayers\19baptism\225.png|04_verb_hate|1
i spoke sinfully|winapukweyap|none|prayers\12theconfiteor\38.png|04_verb_hate|1
i had bad thoughts|winita'sias|none|prayers\12theconfiteor\37.png|04_verb_hate|1
at their table|wpata'lutimk|none|prayers\27thepassionofourlord\51.png|04_verb_hate|1
we will worship you;devotion to you|ntelisqatulek;nsaqtulin|none|prayers\02thelordsprayer\22.png|04_verb_honor|1
we obey you|saqtalinen|obey|prayers\17litanyoftheholyname\278.png|04_verb_honor|1
follow them;let us heed them;they honor him|saqtu;saqtuanej;saqtuatijl|none|prayers\05thedecalogue\26.png|04_verb_honor|1
he honors them|saqtujik|none|prayers\26matrimony\101.png|04_verb_honor|1
you honor him|saqtujik|none|prayers\25holyorders\132.png|04_verb_honor|1
devoted to you|saqtulan|none|prayers\16morningprayer\237.png|04_verb_honor|1
they worship you|telisqataskik|none|prayers\02thelordsprayer\18.png|04_verb_honor|1
when he's immersed|ekwitaj|none|prayers\24extremeunction\47.png|04_verb_immerse|1
is he immersed|ekwitkl|none|prayers\19baptism\259.png|04_verb_immerse|1
they are immersed|ekwitkl|none|prayers\21theblessedeucharist\193.png|04_verb_immerse|1
he wanted to kill you|ketuine'pa'skis|none|prayers\17litanyoftheholyname\107.png|04_verb_kill|1
when they wanted to kill you|ketuine'po'lkek|none|prayers\17litanyoftheholyname\168.png|04_verb_kill|1
kill him|ne'pa'qit|none|prayers\27thepassionofourlord\514.png|04_verb_kill|1
planning his death|ne'pateketki'k|none|prayers\27thepassionofourlord\350.png|04_verb_kill|1
killing him|ne'pa'tki'kw|none|prayers\27thepassionofourlord\652.png|04_verb_kill|1
kill them|ne'pa'w|none|prayers\05thedecalogue\29.png|04_verb_kill|1
he had died;kill him;we kill him|ne'po'j;ne'pa'qit;nekm ne'po'q;ne'pa'nen|none|prayers\27thepassionofourlord\795.png|04_verb_kill|1
do you kill him|ne'po'q|none|prayers\27thepassionofourlord\416.png|04_verb_kill|1
his death|ne'po'q|none|prayers\27thepassionofourlord\531.png|04_verb_kill|1
they desired the death|teliketuine'pa'tij|none|prayers\27thepassionofourlord\450.png|04_verb_kill|1
kneel down together|emutkulpukua'tijik|kneel|prayers\26matrimony\192.png|04_verb_kneel|1
he kneels before him|emutkulpukwa'sijl|kneels|prayers\22penance\317.png|04_verb_kneel|1
i know|kejitu|none|prayers\12theconfiteor\50.png|04_verb_know|1
i know|kejitu|none|prayers\22penance\349.png|04_verb_know|1
i know|kejitu|none|prayers\22penance\403.png|04_verb_know|1
you know|kejitun|none|prayers\16morningprayer\150.png|04_verb_know|1
they know|kejituoq|none|prayers\16morningprayer\160.png|04_verb_know|1
you know|kejituoq|none|prayers\16morningprayer\185.png|04_verb_know|1
they don't know|kejitu'tikw|none|prayers\27thepassionofourlord\660.png|04_verb_know|1
we known them|pa'qinenmumk|none|prayers\04theapostlescreed\101.png|04_verb_know|1
because he knew so much about them|telikjijikwi'tij|none|prayers\21theblessedeucharist\110.png|04_verb_know|1
lie to himself|kisiewsimsik|none|prayers\07anactoffaith\53.png|04_verb_lie|1
he cannot be lied to|kisiewsimulukw|Pilate|prayers\07anactoffaith\57.png|04_verb_lie|1
tell lies|kteksuew|none|prayers\05thedecalogue\49.png|04_verb_lie|1
he wants to lie|ktuiksipukwa'laxjl|a compulsive liar, "each time".|prayers\22penance\104.png|04_verb_lie|1
they listen well|ankistau'titl|none|prayers\26matrimony\204.png|04_verb_listen|1
to hear him with pity|eulistakun|none|prayers\22penance\331.png|04_verb_listen|1
hear our plea|eulistemuin|none|prayers\15graceaftermeals\19.png|04_verb_listen|1
to hear you with pity|eulistuin|none|prayers\22penance\265.png|04_verb_listen|1
listens to me|jiksetuit|none|prayers\25holyorders\146.png|04_verb_listen|1
listens to you|jiksetuloq|none|prayers\25holyorders\145.png|04_verb_listen|1
listen to us|jiksituin|none|prayers\17litanyoftheholyname\12.png|04_verb_listen|1
do not ignore us|listulinen|none|prayers\17litanyoftheholyname\16.png|04_verb_listen|1
he had called together|wikmasni'k|none|prayers\27thepassionofourlord\70.png|04_verb_listen|1
he listens with pity|wtankitemuan|none|prayers\22penance\526.png|04_verb_listen|1
i will repeat my thanks|askwimuiwa'jites|glorify|prayers\16morningprayer\54.png|04_verb_love|1
you love me|kesalin|none|prayers\16morningprayer\226.png|04_verb_love|1
they love you|kesaliskik|none|prayers\17litanyoftheholyname\292.png|04_verb_love|1
while i love him|ksalan|none|prayers\22penance\75.png|04_verb_love|1
within my heart|laminkamlamunk|none|prayers\13alongeractofcontrition\5.png|04_verb_love|1
whom you loved dearly|melkiksalt|none|prayers\22penance\594.png|04_verb_love|1
love each other truly|melkiksaltultik|none|prayers\27thepassionofourlord\172.png|04_verb_love|1
get assistance|meseltemek|none|prayers\22penance\474.png|04_verb_love|1
i give thanks|muiwaj|none|prayers\16morningprayer\51.png|04_verb_love|1
is my heart;my heart|nkamlamun|none|prayers\09anactofcharity\4.png|04_verb_love|1
my heart|nkamlamun|none|prayers\16morningprayer\57.png|04_verb_love|1
we love you|nksalninen|"You loved by us" or "you are loved by us"|prayers\17litanyoftheholyname\277.png|04_verb_love|1
we love you|nksalninen|"You loved by us" or "you are loved by us"|prayers\17litanyoftheholyname\288.png|04_verb_love|1
to love you|nksaluin|none|prayers\16morningprayer\30.png|04_verb_love|1
i love you for them|pajijiksalulan|none|prayers\09anactofcharity\17.png|04_verb_love|1
let us deeply love him|pejiliksalanej|none|prayers\05thedecalogue\5.png|04_verb_love|1
you are most loved;greatly you love|pejiliksaluen|none|prayers\11anactofcontrition\12.png|04_verb_love|1
how i love them|teliksalkik|none|prayers\09anactofcharity\21.png|04_verb_love|1
how i love you;how i love it|teliksalul;teliksatm|none|prayers\09anactofcharity\12.png|04_verb_love|1
how he loves;how you love it;how you love them|teliksatk;teliksatmek;teliksalajik|none|prayers\26matrimony\50.png|04_verb_love|1
how deeply they love each other|telimelkiksaltilin|none|prayers\26matrimony\53.png|04_verb_love|1
you have great love|telipjiliksaluen|none|prayers\22penance\577.png|04_verb_love|1
they are usually married|i'telitoqopukua'ltimk|none|prayers\26matrimony\111.png|04_verb_marry|1
who are about to marry|ketuitoqopukua'lujik|none|prayers\26matrimony\143.png|04_verb_marry|1
can he marry them;who has never been married|kisitoqopukua'teket;kisitoqopukua'tasik|none|prayers\26matrimony\126.png|04_verb_marry|1
in the state of matrimony|toqopukua'letenewiktuk|none|prayers\26matrimony\209.png|04_verb_marry|1
matrimony|toqopukua'ltimk|none|prayers\18thesacraments\16.png|04_verb_marry|1
matrimony;about marriage;one is married;they are married;who will be married|toqopukua'ltimk;toqopukua'timk;toqopukua'luj;toqopukua'laj;toqopukua'letnewliktuk|none|prayers\26matrimony\1.png|04_verb_marry|1
married|toqopukua'tasimk|none|prayers\26matrimony\236.png|04_verb_marry|1
they unite in matrimony|toqopukua'tekejik|none|prayers\25holyorders\59.png|04_verb_marry|1
there he was nailed to it|etli oqotkutto's|none|prayers\27thepassionofourlord\578.png|04_verb_nailed|1
he was nailed to|oqotkweta'sitek|nailed|prayers\27thepassionofourlord\810.png|04_verb_nailed|1
he was nailed to it|oqotkweta'sitek|nailed|prayers\27thepassionofourlord\649.png|04_verb_nailed|1
was crucified|oqotoqoto'tek|crucified|prayers\21theblessedeucharist\41.png|04_verb_nailed|1
your name|ktwisun|none|prayers\17litanyoftheholyname\272.png|04_verb_name|1
what are they named|taluisultikl|none|prayers\18thesacraments\7.png|04_verb_name|1
he is named|teluisij|none|prayers\05thedecalogue\7.png|04_verb_name|1
how you are named|teluisin|none|prayers\02thelordsprayer\6.png|04_verb_name|1
he was called|teluisisnaq|none|prayers\27thepassionofourlord\281.png|04_verb_name|1
he is named|teluisit|none|prayers\01thesignofthecross\2.png|04_verb_name|1
in the name of;he is named;he says;he who is named;it was called;we call it|teluisit;teluisiksipnek;telui'tmek|none|prayers\19baptism\112.png|04_verb_name|1
that which we call|teluitemek|none|prayers\23purgatory\3.png|04_verb_name|1
identity;name|unknown|none|prayers\custom\6.png|04_verb_name|1
your name|wisun|none|prayers\17litanyoftheholyname\255.png|04_verb_name|1
they named you|wisunkewkisni'k|none|prayers\17litanyoftheholyname\82.png|04_verb_name|1
name|wi't;ewi'tatl;ewi't'g|none|prayers\27thepassionofourlord\373.png|04_verb_name|1
say his name to yourself|wi'temasiw|none|prayers\05thedecalogue\10.png|04_verb_name|1
say to yourself|wi'temasiw|none|prayers\05thedecalogue\14.png|04_verb_name|1
you name|wi'ten|none|prayers\19baptism\80.png|04_verb_name|1
before he observed|weliankatmuaq|none|prayers\22penance\523.png|04_verb_observe|1
it is written|telkitasik|written|prayers\22penance\171.png|04_verb_passive_written|1
they have entered|kisipiskwa'tij|none|prayers\26matrimony\189.png|04_verb_permit|1
we cannot enter|kisipiskweta'wk|none|prayers\19baptism\9.png|04_verb_permit|1
it cannot go to the end|kiskespianuk|none|prayers\22penance\576.png|04_verb_permit|1
he begs|meselimsit|none|prayers\19baptism\167.png|04_verb_permit|1
he honors|meselmatl|none|prayers\20confirmation\104.png|04_verb_permit|1
he called him in|piskwakimasn|none|prayers\27thepassionofourlord\453.png|04_verb_permit|1
he can enter|wpiskwa'n|none|prayers\19baptism\26.png|04_verb_permit|1
the trinity|pestunewejik|none|prayers\07anactoffaith\10.png|04_verb_phrasal|1
combined into|pestunewioq|phrasal verb? Verb-Preposition or Verb-Adverb.|prayers\17litanyoftheholyname\30.png|04_verb_phrasal|1
will return|apujepetal|none|prayers\04theapostlescreed\71.png|04_verb_possess|1
take them away;take them from me;take them from us|jikla'tuin|none|prayers\14gracebeforemeals\13.png|04_verb_possess|1
he took it|ketaqma'sis|none|prayers\27thepassionofourlord\704.png|04_verb_possess|1
you couldn't take me|kisiwksua'likoqpn|none|prayers\27thepassionofourlord\287.png|04_verb_possess|1
i will hold it for him|klnmuates|none|prayers\19baptism\308.png|04_verb_possess|1
they removed|mena'tu'tisnek|none|prayers\27thepassionofourlord\469.png|04_verb_possess|1
they came for you|meniskasipnik|none|prayers\17litanyoftheholyname\187.png|04_verb_possess|1
take from me|mita'tui|take|prayers\27thepassionofourlord\237.png|04_verb_possess|1
don't covet it|nsaptmuaw|none|prayers\05thedecalogue\41.png|04_verb_possess|1
he took it|teliwsua'lasn|none|prayers\27thepassionofourlord\83.png|04_verb_possess|1
he took it out;he broke in half|waqa'toqsipnek;tema'toqsipnek|none|prayers\27thepassionofourlord\762.png|04_verb_possess|1
he takes|westa'toq|none|prayers\20confirmation\107.png|04_verb_possess|1
he took it|wesuatoqsipnek|took|prayers\27thepassionofourlord\63.png|04_verb_possess|1
take this|wksua'tuk|none|prayers\27thepassionofourlord\72.png|04_verb_possess|1
when praying|alasutmamk|none|prayers\22penance\458.png|04_verb_pray|1
how we will pray|alasutmanenu|none|prayers\20confirmation\76.png|04_verb_pray|1
they don't pray|alasutma'q|none|prayers\19baptism\218.png|04_verb_pray|1
the prayer;to pray;the prayers;pray for me;they prayed to you;i honor you;they had faith|alasutmaqn;alasutmamk;alasutmaqnn;alasutmelsewi;alasutmelsewijik;elasumul;elasumeski'k|none|prayers\12theconfiteor\86.png|04_verb_pray|1
in prayer;through prayer|alasutmaqniktuk|none|prayers\26matrimony\75.png|04_verb_pray|1
from prayer;we honor you|alasutmaqniktuk;elasumulek|none|prayers\19baptism\287.png|04_verb_pray|1
they don't pray|alasutma'ti'kw|none|prayers\19baptism\241.png|04_verb_pray|1
he prayed to them|alasutmelsewasnika|none|prayers\27thepassionofourlord\650.png|04_verb_pray|1
pray for us|alasutmelsewin|none|prayers\03theangelicalsalutation\22.png|04_verb_pray|1
pray for us|alasutmelsewin|none|prayers\03theangelicalsalutation\27.png|04_verb_pray|1
penance|aniapsimik|moment?|prayers\22penance\15.png|04_verb_pray|1
penance|aniapsimk|none|prayers\18thesacraments\13.png|04_verb_pray|1
to make penance|aniapsin|none|prayers\10thanksgiving\32.png|04_verb_pray|1
the holy people|aniapsultitki'kw|none|prayers\27thepassionofourlord\796.png|04_verb_pray|1
penance|aniapsuti|none|prayers\22penance\1.png|04_verb_pray|1
penance|aniapsuti|none|prayers\22penance\5.png|04_verb_pray|1
penances|aniapsuti'l|none|prayers\22penance\457.png|04_verb_pray|1
he prayed to him|elasumasn|none|prayers\27thepassionofourlord\234.png|04_verb_pray|1
they had faith;we honor you;now they pray to you;who pray;the prayer|elasumeski'k;elasumulek;etlielasumeski'k;alasutmaliji;alasutmajik;alasutmaqn|none|prayers\07anactoffaith\37.png|04_verb_pray|1
i honor you|elasumul|none|prayers\16morningprayer\187.png|04_verb_pray|1
i honor you;you will pray for me;pray for me;you can pray|elasumul;alasutmelsewi;alasutmaj|none|prayers\16morningprayer\122.png|04_verb_pray|1
we have faith in you;when you pray;i honor you|elasumulek;ktalasutman;elasumul|none|prayers\05thedecalogue\20.png|04_verb_pray|1
there he prayed|etlialasutmas|none|prayers\27thepassionofourlord\201.png|04_verb_pray|1
before the sacrament|ketuikjialasutmamkl|none|prayers\06thepreceptsofthechurch\31.png|04_verb_pray|1
wants a good penance|ketuiwlianiapsit|none|prayers\22penance\29.png|04_verb_pray|1
they want to make a good confession|ketuiwlianiapsultijik|none|prayers\19baptism\206.png|04_verb_pray|1
who in this sacrament|kjalasutmaqniktuk|none|prayers\26matrimony\56.png|04_verb_pray|1
great prayer;a great prayer;the great prayer;the sacrement|kjialasutmaqn;kjalasutmaqn;kjialiasutmaqn|none|prayers\25holyorders\14.png|04_verb_pray|1
great prayers|kjialasutmaqnn|none|prayers\17litanyoftheholyname\160.png|04_verb_pray|1
the great prayers;the sacraments|kjialasutmaqnn|none|prayers\18thesacraments\3.png|04_verb_pray|1
the great prayer|kjialautmaqn|none|prayers\22penance\4.png|04_verb_pray|1
a great prayer|kjialiasutmaqn|none|prayers\26matrimony\4.png|04_verb_pray|1
he makes a strong penance|malkianiapsit|none|prayers\20confirmation\60.png|04_verb_pray|1
he will do great penance|melkianiapsij|none|prayers\22penance\228.png|04_verb_pray|1
if he does great penance|melkianiapsij|none|prayers\22penance\130.png|04_verb_pray|1
great penance|melkianiapsimk|none|prayers\21theblessedeucharist\174.png|04_verb_pray|1
they came before you adoringly|najielasumsikisni'k|none|prayers\17litanyoftheholyname\78.png|04_verb_pray|1
to make penance|ntaniapsin|none|prayers\10thanksgiving\29.png|04_verb_pray|1
blessed penance|pejilianiaptik|none|prayers\22penance\33.png|04_verb_pray|1
let us pray in great reverence|pejilikepmielasumanej|none|prayers\05thedecalogue\4.png|04_verb_pray|1