forked from bbloomf/jgabc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgregorian-saints.js
5931 lines (5931 loc) · 169 KB
/
gregorian-saints.js
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
// from http://www.gregorianbooks.com/saints.html
gregorianPropers = {
"mass_vigil_apostle": {
"title": "Mass Vigil of an Apostle",
"href": "http://www.introibo.fr/Vigile-des-Apotres",
"in": "Ego autem sicut",
"inID": 163,
"inRef": "Ps 51: 10, 11, 3",
"gr": "Justus ut palma",
"grID": 34,
"grRef": "Ps 91: 13, 14, 3",
"of": "Gloria et honore",
"ofID": 407,
"ofRef": "Ps 8: 6-7",
"co": "Magna est",
"coID": 365,
"coRef": "Ps 20: 6"
},
"mass_holy_pope": {
"title": "Mass of a Holy Pope",
"href": "http://www.introibo.fr/Commun-des-Souverains-Pontifes",
"in": "Si diligis me",
"inID": 674,
"inRef": "Joann 21: 15, 16, 17; Ps 29: 2",
"inVerses": "Ps 29: 4, 5",
"gr": "Exaltent eum",
"grID": 1119,
"grRef": "Ps 106: 32, 31",
"al": "Tu es Petrus",
"alID": 228,
"alRef": "Matth 16: 18",
"trSept": "Annuntiavi",
"trSeptID": 1085,
"trSeptRef": "Ps 39: 10-11",
"trSeptRubric": "After Septuagesima the previous Alleluia is omitted and this Tract is sung.",
"alPasch": "Constitues eos",
"alPaschID": 548,
"alPaschRef": "Ps 44: 17, 18",
"alPaschRubric": "In Paschal Time the previous Alleluia is sung, then this one.",
"of": "Ecce (dedi)",
"ofID": 358,
"ofRef": "Jerem 1: 9-10",
"co": "Tu es Petrus",
"coID": 509,
"coRef": "Matth 16: 18",
"coVerses": "Ps 39: 2-4, 6, 10-11, 14, 17, 18"
},
"mass_i_martyr_bishop": {
"title": "Mass I of a Martyr-Bishop",
"href": "http://www.introibo.fr/Commun-d-un-Martyr-hors-du-Temps",
"in": "Statuit",
"inID": 456,
"inRef": "Eccli 45: 30; Ps 131: 1",
"inVerses": "Ps 131: 9, 16",
"gr": "Inveni David",
"grID": 827,
"grRef": "Ps 88: 21-23",
"al": "Tu es sacerdos",
"alID": 477,
"alRef": "Ps 109: 4",
"trSept": "Desiderium",
"trSeptID": 176,
"trSeptRef": "Ps 20: 3-4",
"trSeptRubric": "Sung after Septuagesima instead of the previous Alleluia.",
"of": "Veritas mea",
"ofID": 630,
"ofRef": "Ps 88: 25",
"co": "Semel juravi",
"coID": 317,
"coRef": "Ps 88: 36, 37-38"
},
"mass_ii_martyr_bishop": {
"title": "Mass II of a Martyr-Bishop",
"href": "http://www.introibo.fr/Commun-d-un-Martyr-hors-du-Temps,322",
"in": "Sacerdotes Dei",
"inID": 227,
"inRef": "Dan 3: 84, 87, 57",
"inVerses": "Dan 3: 58-61",
"gr": "Gloria et honore",
"grID": 1206,
"grRef": "Ps 8: 6-7",
"al": "Hic est sacerdos",
"alID": 1118,
"trSept": "Beatus vir",
"trSeptID": 7670,
"trSeptRef": "Ps 111: 1-3",
"trSeptRubric": "Sung after Septuagesima instead of the previous Alleluia.",
"of": "Inveni David",
"ofID": 779,
"ofRef": "Ps 88: 21-22",
"co": "Posuisti Domine",
"coID": 586,
"coRef": "Ps 20: 4",
"coVerses": "Ps 20: 2-3, 5-8, 14"
},
"mass_i_martyr_not_bishop": {
"title": "Mass I of a Martyr not a Bishop",
"href": "http://www.introibo.fr/Commun-d-un-Martyr-hors-du-Temps,323",
"in": "In virtute tua",
"inID": 316,
"inRef": "Ps 20: 2-3, 4",
"inVerses": "Ps 20: 6-7",
"gr": "Beatus vir (qui timet)",
"grID": 153,
"grRef": "Ps 111: 1-2",
"al": "Posuisti Domine",
"alID": 1249,
"alRef": "Ps 20: 4",
"trSept": "Desiderium",
"trSeptID": 176,
"trSeptRef": "Ps 20: 3-4",
"trSeptRubric": "Sung after Septuagesima instead of the previous Alleluia.",
"of": "Gloria et honore",
"ofID": 407,
"ofRef": "Ps 8: 6-7",
"co": "Qui vult venire",
"coID": 89,
"coRef": "Matth 16: 24",
"coVerses": "Ps 33: 1, 6-7, 15-22"
},
"mass_ii_martyr_not_bishop": {
"title": "Mass II of a Martyr not a Bishop",
"href": "http://www.introibo.fr/Commun-d-un-Martyr-hors-du-Temps,324",
"in": "Laetabitur (justus)",
"inID": 251,
"inRef": "Ps 63: 11, 2",
"inVerses": "Ps 63: 3, 10",
"gr": "Justus (cum ceciderit)",
"grID": 764,
"grRef": "Ps 36: 24, 26",
"al": "Qui sequitur me",
"alID": 1201,
"alRef": "Joann 8: 12",
"trSept": "Beatus vir",
"trSeptID": 7670,
"trSeptRef": "Ps 111: 1-3",
"trSeptRubric": "Sung after Septuagesima instead of the previous Alleluia.",
"of": "Posuisti",
"ofID": 487,
"ofRef": "Ps 20: 4-5",
"co": "Qui mihi ministrat",
"coID": 685,
"coRef": "Joann 12: 26"
},
"mass_one_martyr": {
"title": "Mass of one Martyr (in Paschal Time)",
"href": "http://www.introibo.fr/Commun-d-un-Martyr-au-Temps-Pascal",
"in": "Protexisti me",
"inID": 340,
"inRef": "Ps 63: 3, 2",
"inVerses": "Ps 63: 4, 11",
"al": [
"Confitebuntur",
"Posuisti Domine"
],
"alID": [
762,
1249
],
"alRef": [
"Ps 88: 6",
"Ps 20: 4"
],
"of": "Confitebuntur",
"ofID": 1382,
"ofRef": "Ps 88: 6",
"co": "Laetabitur justus",
"coID": 617,
"coRef": "Ps 63: 11",
"coVerses": "Ps 63: 2-7"
},
"mass_two_or_more_martyr": {
"title": "Mass of two or more Martyrs (in Paschal Time)",
"href": "http://www.introibo.fr/Commun-de-plusieurs-Martyrs-au",
"in": "Sancti tui",
"inID": 1231,
"inRef": "Ps 144: 10-11, 1",
"al": [
"Sancti tui... florebunt",
"Pretiosa"
],
"alID": [
800,
207
],
"alRef": [
"Ps 115: 15"
],
"of": "Laetamini",
"ofID": 870,
"ofRef": "Ps 31: 11",
"co": "Gaudete (justi)",
"coID": 772,
"coRef": "Ps 32: 1",
"coVerses": "Ps 32: 2-4, 12-15, 18"
},
"mass_i_two_or_more_martyr": {
"title": "Mass I of two or more Martyrs",
"href": "http://www.introibo.fr/Commun-de-plusieurs-Martyrs-hors",
"in": "Intret in conspectu",
"inID": 261,
"inRef": "Ps 78: 11, 12, 10, 1",
"inVerses": "Ps 78: 2-3",
"gr": "Gloriosus Deus",
"grID": 888,
"grRef": "Exodi 15: 11, 6",
"al": "Corpora sanctorum",
"alID": 1250,
"alRef": "Eccli 44: 14",
"trSept": "Qui seminant",
"trSeptID": 305,
"trSeptRef": "Ps 125: 5-6",
"trSeptRubric": "After Septuagesima the previous Alleluia is omitted and this Tract is sung.",
"of": "Mirabilis Deus",
"ofID": 919,
"ofRef": "Ps 67: 36",
"co": "Et si coram",
"coID": 658,
"coRef": "Sap 3: 4, 5, 6",
"coVerses": "Sap 3: 1-3, 5, 8-9"
},
"mass_ii_two_or_more_martyr": {
"title": "Mass II of two or more Martyrs",
"href": "http://www.introibo.fr/Commun-de-plusieurs-Martyrs-hors,326",
"in": "Sapientiam (sanctorum)",
"inID": 11,
"inRef": "Eccli 44: 15, 14; Ps 32: 1",
"gr": "Anima nostra",
"grID": 432,
"grRef": "Ps 123: 7-8",
"al": "Justi epulentur",
"alID": 896,
"alRef": "Ps 67: 4",
"trSept": "Qui seminant",
"trSeptID": 305,
"trSeptRef": "Ps 125: 5-6",
"trSeptRubric": "After Septuagesima the previous Alleluia is omitted and this Tract is sung.",
"of": "Exsultabunt (sancti)",
"ofID": 33,
"ofRef": "Ps 149: 5-6",
"co": "Dico autem vobis",
"coID": 699,
"coRef": "Luc 12: 4"
},
"mass_iii_two_or_more_martyr": {
"title": "Mass III of two or more Martyrs",
"href": "http://www.introibo.fr/Commun-de-plusieurs-Martyrs-hors,327",
"in": "Salus autem",
"inID": 737,
"inRef": "Ps 36: 39, 1",
"inVerses": "Ps 36: 29, 40",
"gr": "Clamaverunt",
"grID": 1009,
"grRef": "Ps 33: 18-19",
"al": "Te Martyrum",
"alID": 590,
"trSept": "Qui seminant",
"trSeptID": 305,
"trSeptRef": "Ps 125: 5-6",
"trSeptRubric": "After Septuagesima the previous Alleluia is omitted and this Tract is sung.",
"of": "Justorum (animae)",
"ofID": 835,
"ofRef": "Sap 3: 1, 2, 3",
"co": "Quod dico vobis",
"coID": 1002,
"coRef": "Matth 10: 27",
"coVerses": "Ps 125"
},
"mass_i_confessor_bishop": {
"title": "Mass I of a Confessor Bishop",
"href": "http://www.introibo.fr/Commun-d-un-Confesseur-Pontife-I",
"in": "Statuit",
"inID": 456,
"inRef": "Eccli 45: 30; Ps 131: 1",
"inVerses": "Ps 131: 9, 16",
"gr": "Ecce sacerdos",
"grID": 235,
"grRef": "Eccli 44: 16, 20",
"al": "Tu es sacerdos",
"alID": 477,
"alRef": "Ps 109: 4",
"trSept": "Beatus vir",
"trSeptID": 7670,
"trSeptRef": "Ps 111: 1-3",
"trSeptRubric": "Sung after Septuagesima instead of the previous Alleluia.",
"alPasch": "Hic est sacerdos",
"alPaschID": 1118,
"alPaschRubric": "In Paschal time the Gradual Ecce (sacerdos magnus)--> is omitted. Instead one sings the first Alleluia Tu es sacerdos then this second Alleluia.",
"of": "Inveni David",
"ofID": 779,
"ofRef": "Ps 88: 21-22",
"co": "Fidelis servus",
"coID": 1008,
"coRef": "Luc 12: 42",
"coVerses": "Ps 131: 1, 9-13, 16-18"
},
"mass_ii_confessor_bishop": {
"title": "Mass II of a Confessor Bishop",
"href": "http://www.introibo.fr/Commun-d-un-Confesseur-Pontife-II",
"in": "Sacerdotes tui",
"inID": 48,
"inRef": "Ps 131: 9-10, 1",
"inVerses": "Ps 131: 16-17",
"gr": "Sacerdotes (ejus)",
"grID": 415,
"grRef": "Ps 131: 16-17",
"al": "Juravit Dominus",
"alID": 1187,
"alRef": "Ps 109: 4",
"trSept": "Beatus vir",
"trSeptID": 7670,
"trSeptRef": "Ps 111: 1-3",
"trSeptRubric": "Sung after Septuagesima instead of the previous Alleluia.",
"alPasch": "Amavit eum",
"alPaschID": 14,
"alPaschRef": "Eccli 45: 9",
"alPaschRubric": "In Paschal time the Gradual is omitted. Instead one sings the first All. Juravit Dominus then this second Alleluia.",
"of": "Veritas mea",
"ofID": 630,
"ofRef": "Ps 88: 25",
"co": "Beatus servus",
"coID": 1154,
"coRef": "Matth 24: 46-47"
},
"mass_doctors": {
"title": "Mass of Doctors",
"href": "http://www.introibo.fr/Commun-des-Docteurs",
"in": "In medio",
"inID": 233,
"inRef": "Eccli 15: 5; Ps 91: 2",
"inVerses": "Ps 91: 13-14",
"gr": "Os justi",
"grID": 511,
"grRef": "Ps 36: 30-31",
"al": "Amavit eum",
"alID": 14,
"alRef": "Eccli 45: 9",
"trSept": "Beatus vir",
"trSeptID": 7670,
"trSeptRef": "Ps 111: 1-3",
"trSeptRubric": "Sung after Septuagesima instead of the previous Alleluia.",
"alPasch": "Justus germinabit",
"alPaschID": 1207,
"alPaschRef": "Osee 14: 6",
"alPaschRubric": "In Paschal time the Gradual Os justi--> is omitted. Instead one sings the first Alleluia Amavit eum Dominus then this second Alleluia.",
"of": "Justus (ut palma)",
"ofID": 777,
"ofRef": "Ps 91: 13",
"ofVerses": "Ps 91: 2",
"co": "Fidelis servus",
"coID": 1008,
"coRef": "Luc 12: 42",
"coVerses": "Ps 118: 1-2, 14, 24, 30, 48, 99-100, 129-130"
},
"mass_i_confessor_not_bishop": {
"title": "Mass I of a Confessor not a Bishop",
"href": "http://www.introibo.fr/Commun-d-un-Confesseur-non-Pontife",
"in": "Os justi",
"inID": 1374,
"inRef": "Ps 36: 30-31, 1",
"inVerses": "Ps 36: 3, 26",
"gr": "Justus ut palma",
"grID": 34,
"grRef": "Ps 91: 13, 14, 3",
"al": "Beatus vir qui suffert",
"alID": 724,
"alRef": "Jac 1: 12",
"trSept": "Beatus vir",
"trSeptID": 7670,
"trSeptRef": "Ps 111: 1-3",
"trSeptRubric": "Sung after Septuagesima instead of the previous Alleluia.",
"alPasch": "Amavit eum",
"alPaschID": 14,
"alPaschRef": "Eccli 45: 9",
"alPaschRubric": "In Paschal time the Gradual Justus (ut palma)--> is omitted. Instead one sings the first Alleluia Beatus vir then this second Alleluia.",
"of": "Veritas mea",
"ofID": 630,
"ofRef": "Ps 88: 25",
"co": "Beatus servus",
"coID": 1154,
"coRef": "Matth 24: 46-47"
},
"mass_ii_confessor_not_bishop": {
"title": "Mass II of a Confessor not a Bishop",
"href": "http://www.introibo.fr/Commun-d-un-Confesseur-non-Pontife,333",
"in": "Justus ut palma",
"inID": 108,
"inRef": "Ps 91: 13-14, 2",
"inVerses": "Ps 91: 3, 5",
"gr": "Os justi",
"grID": 511,
"grRef": "Ps 36: 30-31",
"al": "Beatus vir qui timet",
"alID": 765,
"alRef": "Ps 111: 1",
"trSept": "Beatus vir",
"trSeptID": 7670,
"trSeptRef": "Ps 111: 1-3",
"trSeptRubric": "Sung after Septuagesima instead of the previous Alleluia.",
"alPasch": "Justus germinabit",
"alPaschID": 1207,
"alPaschRef": "Osee 14: 6",
"alPaschRubric": "In Paschal time the Gradual Os justi--> is omitted. Instead one sings the first Alleluia Beatus vir then this second Alleluia.",
"of": "In virtute tua",
"ofID": 667,
"ofRef": "Ps 20: 2-3",
"co": "Amen dico vobis... quod vos",
"coID": 1337,
"coRef": "Matth 19: 28, 29",
"coVerses": "Ps 20: 2-7"
},
"mass_abbots": {
"title": "Mass of Abbots",
"href": "http://www.introibo.fr/Commun-des-Abbes",
"in": "Os justi",
"inID": 1374,
"inRef": "Ps 36: 30-31, 1",
"inVerses": "Ps 36: 3, 26",
"gr": "Domine (praevenisti)",
"grID": 600,
"grRef": "Ps 20: 4-5",
"al": "Justus ut palma",
"alID": 946,
"alRef": "Ps 91: 13",
"trSept": "Beatus vir",
"trSeptID": 7670,
"trSeptRef": "Ps 111: 1-3",
"trSeptRubric": "Sung after Septuagesima instead of the previous Alleluia.",
"alPasch": "Justus germinabit",
"alPaschID": 1207,
"alPaschRef": "Osee 14: 6",
"alPaschRubric": "In Paschal time the Gradual Domine (praevenisti)--> is omitted. Instead one sings the first Alleluia Justus ut palma then this second Alleluia.",
"of": "Desiderium",
"ofID": 722,
"ofRef": "Ps 20: 3, 4",
"co": "Fidelis servus",
"coID": 1008,
"coRef": "Luc 12: 42",
"coVerses": "Ps 111: 1-9"
},
"mass_i_virgin_martyr": {
"title": "Mass I of a Virgin Martyr",
"href": "http://www.introibo.fr/Commun-des-Vierges-I-pour-une",
"in": "Loquebar... Ps. Beati immaculati",
"inID": 510,
"inRef": "Ps 118: 46-47, 1",
"inVerses": "Ps 118: 2-3, 8-9, 26, 59-60, 134, 168",
"gr": "Dilexisti",
"grID": 394,
"grRef": "Ps 44: 8",
"al": "Adducentur regi virgines",
"alID": 208,
"alRef": "Ps 44: 15, 16",
"trSept": "Veni sponsa",
"trSeptID": 256,
"trSeptRef": "Ps 44: 8, 5",
"trSeptRubric": "After Septuagesima this Tract replaces the previous Alleluia.",
"alPasch": "Specie tua",
"alPaschID": 406,
"alPaschRef": "Ps 44: 5",
"of": "Afferentur... proximae",
"ofID": 1107,
"ofRef": "Ps 44: 15, 16",
"co": "Confundantur superbi",
"coID": 1032,
"coRef": "Ps 118: 78, 80",
"coVerses": "Ps 118: 1, 41, 85, 87, 113, 123, 157, 161, 166, 174"
},
"mass_ii_virgin_martyr": {
"title": "Mass II of a Virgin Martyr",
"href": "http://www.introibo.fr/Commun-des-Vierges-II-pour-une",
"in": "Me exspectaverunt",
"inID": 938,
"inRef": "Ps 118: 95-96, 1",
"inVerses": "Ps 118: 2, 39, 45, 77, 99-100, 143",
"gr": "Adjuvabit (eam Deus)",
"grID": 1373,
"grRef": "Ps 45: 6, 5",
"al": "Haec est virgo",
"alID": 500,
"of": "Diffusa est",
"ofID": 177,
"ofRef": "Ps 44: 3",
"ofVerses": "Ps 44: 5",
"co": "Feci judicium",
"coID": 844,
"coRef": "Ps 118: 121, 122, 128",
"coVerses": "Ps 118: 1, 78, 81, 113, 115, 120, 163, 166"
},
"mass_i_virgin_not_martyr": {
"title": "Mass I of a Virgin not a Martyr",
"href": "http://www.introibo.fr/Commun-des-Vierges-III-pour-une",
"in": "Dilexisti",
"inID": 629,
"inRef": "Ps 44: 8, 2",
"gr": "Specie tua",
"grID": 174,
"grRef": "Ps 44: 5",
"al": "Adducentur regi virgines",
"alID": 208,
"alRef": "Ps 44: 15, 16",
"trSept": "Audi filia",
"trSeptID": 738,
"trSeptRef": "Ps 44: 11, 12, 13, 10, 15, 16",
"trSeptRubric": "Replaces the Alleluia after Septuagesima.",
"alPasch": "Specie tua",
"alPaschID": 406,
"alPaschRef": "Ps 44: 5",
"alPaschRubric": "Paschal Time: Alleluia Adducentur regi virgines above, then this Alleluia.",
"of": "Filiae regum",
"ofID": 1333,
"ofRef": "Ps 44: 10",
"co": "Quinque prudentes",
"coID": 1301,
"coRef": "Matth 25: 4, 6"
},
"mass_ii_virgin_not_martyr": {
"title": "Mass II of a Virgin not a Martyr",
"href": "http://www.introibo.fr/Commun-des-Vierges-IV-pour-une",
"in": "Vultum tuum",
"inID": 124,
"inRef": "Ps 44: 13, 15, 16, 2",
"inVerses": "Ps 44: 5, 8",
"gr": "Concupivit rex",
"grID": 686,
"grRef": "Ps 44: 12, 11",
"al": "Haec est virgo",
"alID": 500,
"of": "Afferentur... proximae",
"ofID": 1107,
"ofRef": "Ps 44: 15, 16",
"co": "Simile est",
"coID": 673,
"coRef": "Matth 13: 45-46",
"coVerses": "Ps 44: 2, 5, 8, 11, 13-16"
},
"mass_holy_woman_martyr": {
"title": "Mass of a Holy Woman Martyr",
"href": "http://www.introibo.fr/Commun-des-Saintes-Femmes-I-pour",
"in": "Me exspectaverunt",
"inID": 938,
"inRef": "Ps 118: 95-96, 1",
"inVerses": "Ps 118: 2, 39, 45, 77, 99-100, 143",
"gr": "Dilexisti",
"grID": 394,
"grRef": "Ps 44: 8",
"al": "Specie tua",
"alID": 406,
"alRef": "Ps 44: 5",
"trSept": "Veni sponsa",
"trSeptID": 256,
"trSeptRef": "Ps 44: 8, 5",
"trSeptRubric": "After Septuagesima this Tract replaces the previous Alleluia.",
"alPasch": "Propter veritatem",
"alPaschID": 913,
"alPaschRubric": "In Paschal time the previous Alleluia is sung then this one.",
"of": "Diffusa est",
"ofID": 177,
"ofRef": "Ps 44: 3",
"co": "Principes",
"coID": 1292,
"coRef": "Ps 118: 161-162"
},
"mass_holy_woman_not_martyr": {
"title": "Mass of a Holy Woman not a Martyr",
"href": "http://www.introibo.fr/Commun-des-Saintes-Femmes-II-pour",
"in": "Cognovi",
"inID": 619,
"inRef": "Ps 118: 75, 120, 1",
"inVerses": "Ps 118: 2, 22",
"gr": "Diffusa est",
"grID": 947,
"grRef": "Ps 44: 3, 5",
"al": "Specie tua",
"alID": 406,
"alRef": "Ps 44: 5",
"trSept": "Veni sponsa",
"trSeptID": 256,
"trSeptRef": "Ps 44: 8, 5",
"trSeptRubric": "Important note: for a Holy Woman not a Martyr the ending words of the first verse are omitted: pro cujus amore sanguinem tuum fudisti = « for the love of whom thou didst shed thy blood ». Obviously.",
"alPasch": "Propter veritatem",
"alPaschID": 913,
"alPaschRubric": "In Paschal time the previous Alleluia is sung then this one.",
"of": "Diffusa est",
"ofID": 177,
"ofRef": "Ps 44: 3",
"co": "Dilexisti",
"coID": 799,
"coRef": "Ps 44: 8",
"coVerses": "Ps 44: 2, 5, 10-12"
},
"mass_dedication_church": {
"title": "Mass of the Dedication of a Church",
"href": "http://www.introibo.fr/Commun-de-la-Dedicace-d-une-eglise",
"in": "Terribilis est",
"inID": 923,
"inRef": "Gen 28: 17; Ps 83: 2-3",
"inVerses": "Ps 83: 4, 5",
"gr": "Locus iste",
"grID": 651,
"al": "Adorabo",
"alID": 242,
"alRef": "Ps 137: 2",
"trSept": "Qui confidunt",
"trSeptID": 1377,
"trSeptRef": "Ps 124: 1-2",
"trSeptRubric": "After Septuagesima this Tract replaces the previous Alleluia.",
"alPasch": "Bene fundata est",
"alPaschID": 1343,
"alPaschRubric": "In Paschal time the previous Alleluia is sung then this one.",
"of": "Domine Deus(Dedication)",
"ofID": 200,
"ofRef": "1 Paral 29: 17, 18",
"co": "Domus mea",
"coID": 43,
"coRef": "Matth 21: 13",
"coVerses": "Ps 83: 2-5, 9-11"
},
"mass_bvm": {
"title": "Mass of the Blessed Virgin Mary",
"href": "http://www.introibo.fr/Commun-des-fetes-de-la-Bse-Vierge",
"in": "Salve sancta Parens",
"inID": 1140,
"inRef": "Ps 44: 2",
"inVerses": "Ps 44: 5, 8",
"gr": "Benedicta et venerabilis",
"grID": 392,
"al": "Post partum Virgo",
"alID": 127,
"alExtra": "Ave Maria",
"alExtraID": 1209,
"alExtraRef": "Luc 1: 28",
"alExtraRubric": "In Advent the previous Alleluia is replaced by this one.",
"trSept": "Gaude Maria",
"trSeptID": 18,
"trSeptRubric": "After Septuagesima this Tract replaces the Alleluia.",
"alPasch": "Virga Jesse",
"alPaschID": 281,
"alPaschRef": "Num 17: 8",
"alPaschRubric": "During Paschal Time the Gradual is omitted, this Alleluia is sung then All. Ave Maria.",
"of": "Ave Maria... et benedictus",
"ofID": 843,
"ofRef": "Luc 1: 28, 42",
"ofVerses": "Luc 1: 34, 35",
"co": "Beata viscera",
"coID": 160,
"coVerses": "Ps 44: 2, 5, 8, 10-16"
},
"mass_i_bvm_saturday": {
"title": "Mass I of the Blessed Virgin Mary on Saturday (from Advent to Nativity)",
"href": "http://www.introibo.fr/Messes-de-la-Ste-Vierge-au-Samedi",
"in": "Rorate... Ps. Benedixisti",
"inID": 161,
"inRef": "Is 45: 8; Ps 84: 2",
"gr": "Tollite portas",
"grID": 756,
"grRef": "Ps 23: 7, 3, 4",
"al": "Ave Maria",
"alID": 1209,
"alRef": "Luc 1: 28",
"of": "Ave Maria... et benedictus",
"ofID": 843,
"ofRef": "Luc 1: 28, 42",
"ofVerses": "Luc 1: 34, 35",
"co": "Ecce virgo",
"coID": 1144,
"coRef": "Is 7: 14",
"coVerses": "Ps 18: 2-7"
},
"mass_ii_bvm_saturday": {
"title": "Mass II of the Blessed Virgin Mary on Saturday (from Nativity to Purification BVM)",
"href": "http://www.introibo.fr/Messes-de-la-Ste-Vierge-au-Samedi,347",
"in": "Vultum tuum",
"inID": 124,
"inRef": "Ps 44: 13, 15, 16, 2",
"gr": "Speciosus (forma)",
"grID": 1308,
"grRef": "Ps 44: 3, 2",
"al": "Post partum Virgo",
"alID": 127,
"trSept": "Gaude Maria",
"trSeptID": 18,
"trSeptRubric": "After Septuagesima this Tract replaces the Alleluia.",
"of": "Felix (namque es)",
"ofID": 280,
"co": "Beata viscera",
"coID": 160,
"coVerses": "Ps 44: 2, 5, 8, 10-16"
},
"mass_iii_bvm_saturday": {
"title": "Mass III of the Blessed Virgin Mary on Saturday (from Purification BVM to Easter)",
"href": "http://www.introibo.fr/Messes-de-la-Ste-Vierge-au-Samedi,348",
"in": "Salve sancta Parens",
"inID": 1140,
"inRef": "Ps 44: 2",
"gr": "Benedicta et venerabilis",
"grID": 392,
"al": "Virga Jesse",
"alID": 281,
"alRef": "Num 17: 8",
"trSept": "Gaude Maria",
"trSeptID": 18,
"trSeptRubric": "After Septuagesima this Tract replaces the Alleluia.",
"of": "Felix (namque es)",
"ofID": 280,
"co": "Beata viscera",
"coID": 160,
"coVerses": "Ps 44: 2, 5, 8, 10-16"
},
"mass_iv_bvm_saturday": {
"title": "Mass IV of the Blessed Virgin Mary on Saturday (from Easter to Pentecost)",
"href": "http://www.introibo.fr/Messes-de-la-Ste-Vierge-au-Samedi,349",
"in": "Salve sancta Parens",
"inID": 1140,
"inRef": "Ps 44: 2",
"al": [
"Virga Jesse",
"Ave Maria"
],
"alID": [
281,
1209
],
"alRef": [
"Num 17: 8",
"Luc 1: 28"
],
"of": "Beata es (Virgo)",
"ofID": 567,
"co": "Beata viscera",
"coID": 160,
"coVerses": "Ps 44: 2, 5, 8, 10-16"
},
"mass_v_bvm_saturday": {
"title": "Mass V of the Blessed Virgin Mary on Saturday (from Pentecost to Advent)",
"href": "http://www.introibo.fr/Messes-de-la-Ste-Vierge-au-Samedi,350",
"ref": "saints.html#mass_bvm"
},
"votive_mass_holy_angels": {
"title": "Tuesday - Votive Mass of the Holy Angels",
"in": "Benedicite Dominum",
"inID": 985,
"inRef": "Ps 102: 20, 1",
"inVerses": "Ps 102: 21-22",
"gr": "Laudate (Dominum)",
"grID": 348,
"al": "In conspectu... Domine Deus",
"alID": 550,
"alRef": "Ps 137: 1-2",
"trSept": "Benedicite (Dominum)",
"trSeptID": 949,
"trSeptRubric": "After Septuagesima.",
"alPasch": "Angelus... descendit",
"alPaschID": 377,
"alPaschRef": "Matth 28: 2",
"alPaschRubric": "In Paschal Time the previous Alleluia is sung, then this one.",
"of": "Stetit (Angelus)",
"ofID": 302,
"ofRef": "Apoc 8: 3, 4",
"ofVerses": "Ps 137: 1, 2",
"co": "Angeli (Archangeli)",
"coID": 599
},
"votive_mass_st_joseph": {
"title": "Wednesday - Votive Mass of St Joseph",
"href": "http://www.introibo.fr/Mercredi-de-la-2eme-semaine-apres",
"in": "Adjutor",
"inID": 385,
"inRef": "Ps 32: 20-21; Ps 79: 1",
"gr": "Domine (praevenisti)",
"grID": 600,
"grRef": "Ps 20: 4-5",
"al": "Fac nos innocuam",
"alID": 213,
"trSept": "Beatus vir",
"trSeptID": 7670,
"trSeptRef": "Ps 111: 1-3",
"trSeptRubric": "Sung after Septuagesima instead of the previous Alleluia.",
"alPasch": [
"De quacumque",
"Fac nos innocuam"
],
"alPaschID": [
1324,
213
],
"of": "Lauda (Jerusalem)",
"ofID": 845,
"ofRef": "Ps 147: 12, 13",
"co": "Jacob autem",
"coID": 534
},
"votive_mass_ss_peter_paul": {
"title": "Wednesday - Votive Mass of the Holy Apostles Peter and Paul",
"href": "http://www.introibo.fr/Messe-votive-des-Sts-Pierre-et",
"in": "Mihi autem nimis",
"inID": 475,
"inRef": "Ps 138: 17, 1-2",
"gr": "Constitues eos",
"grID": 307,
"grRef": "Ps 44: 17-18",
"al": "Nimis honorati",
"alID": 130,
"alRef": "Ps 138: 17",
"trSept": "Qui seminant",
"trSeptID": 305,
"trSeptRef": "Ps 125: 5-6",
"trSeptRubric": "After Septuagesima the previous Alleluia is omitted and this Tract is sung.",
"of": "In omnem terram",
"ofID": 570,
"ofRef": "Ps 18: 5",
"co": "Vos (qui secuti)",
"coID": 1028,
"coRef": "Matth 19: 28"
},
"votive_mass_ss_peter_paul_pt": {
"title": "Wednesday - Votive Mass of the Holy Apostles Peter and Paul (Paschal Time)",
"href": "http://www.introibo.fr/Messe-votive-des-Sts-Pierre-et",
"refPasch": "saints.html#mass_one_martyr"
},
"votive_mass_holy_apostles_pt": {
"title": "Wednesday - Votive Mass of all the Holy Apostles (Paschal Time)",
"in": "Protexisti me",
"inID": 340,
"inRef": "Ps 63: 3, 2",
"inVerses": "Ps 63: 4, 11",
"al": [
"Confitebuntur",
"Ego vos elegi"
],
"alID": [
762,
1030
],
"alRef": [
"Ps 88: 6",
"Joann 15: 16"
],
"of": "Constitues (eos)",
"ofID": 1319,
"ofRef": "Ps 44, 17-18",
"ofVerses": "Ps 44: 2",
"co": "In omnem terram",
"coID": 212
},
"votive_mass_holy_ghost": {
"title": "Thursday - Votive Mass of the Holy Ghost",
"in": "Spiritus... replevit",
"inID": 636,
"inRef": "Sap 1: 7; Ps 67: 2",
"gr": "Beata gens",
"grID": 1044,
"grRef": "Ps 32: 12, 6",
"al": "Veni Sancte Spiritus",
"alID": 181,
"trSept": "Emitte (Spiritum)",
"trSeptID": 925,
"trSeptRubric": "Sung after Septuagesima instead of the previous Alleluia.",
"ofSept": "Confirma (hoc)",
"ofSeptID": 83,
"ofSeptRef": "Ps 67: 29-30",
"ofSeptVerses": "Ps 67: 5",
"ofSeptRubric": "The alleluia is omitted and the ending is different on the word munera.",
"coSept": "Factus est repente",
"coSeptID": 972,
"coSeptRef": "Act 2: 2, 4",
"coSeptVerses": "Ps 67: 2-4, 12, 27, 29",
"coSeptRubric": "The three alleluia are omitted. The rest of the melody is the same.",
"of": "Confirma (hoc)",
"ofID": 361,
"ofRef": "Ps 67: 29-30",
"ofVerses": "Ps 67: 5",
"co": "Factus est repente... alleluia",
"coID": 1041,
"coRef": "Act 2: 2, 4",
"coVerses": "Ps 67: 2-4, 12, 27, 29"
},
"votive_mass_holy_ghost_pt": {
"title": "Thursday - Votive Mass of the Holy Ghost (Paschal Time)",
"in": "Spiritus... replevit... alleluia",
"inID": 861,
"inRef": "Sap 1: 7; Ps 67: 2",
"inVerses": "Ps 67: 29, 33",
"al": [
"Emitte Spiritum",
"Veni Sancte Spiritus"
],
"alID": [
99,
181
],
"alRef": [
"Ps 103: 30",
""
],
"of": "Confirma (hoc)",
"ofID": 361,
"ofRef": "Ps 67: 29-30",
"ofVerses": "Ps 67: 5",
"co": "Factus est repente... alleluia",
"coID": 1041,
"coRef": "Act 2: 2, 4",
"coVerses": "Ps 67: 2-4, 12, 27, 29"
},
"votive_mass_blessed_sacrament": {
"title": "Thursday - Votive Mass of the Blessed Sacrament",
"in": "Cibavit eos",
"inID": 62,
"inRef": "Ps 80: 17, 2",
"inVerses": "Ps 80: 3, 11",
"gr": "Oculi (omnium)",
"grID": 1230,
"grRef": "Ps 144: 15-16",
"al": "Caro mea",
"alID": 774,
"alRef": "Joann 6: 56-57",
"trSept": "Ab ortu solis",
"trSeptID": 644,
"trSeptRef": "Prov 9: 5",
"trSeptRubric": "Sung after Septuagesima instead of the previous Alleluia.",
"of": "Sacerdotes (Domini)",
"ofID": 645,
"ofRef": "Levit 21: 6",
"ofVerses": "Ps 67: 27",
"co": "Quotiescumque",
"coID": 577,
"coRef": "1 Cor 11: 26-27",
"coVerses": "Ps 22"
},
"votive_mass_blessed_sacrament_pt": {
"title": "Thursday - Votive Mass of the Blessed Sacrament (Paschal Time)",
"in": "Cibavit eos... alleluia",
"inID": 715,
"inRef": "Ps 80: 17, 2",
"inVerses": "Ps 80: 3, 11",
"al": [
"Cognoverunt",
"Caro mea"
],
"alID": [
912,
774
],
"alRef": [
"Luc 24: 35",
"Joann 6: 56-57"
],
"of": "Sacerdotes (Domini)",
"ofID": 645,
"ofRef": "Levit 21: 6",
"ofVerses": "Ps 67: 27",
"co": "Quotiescumque",
"coID": 577,
"coRef": "1 Cor 11: 26-27",
"coVerses": "Ps 22"
},
"votive_mass_christ_eternal_priest": {
"title": "Thursday - Votive Mass of Christ the Eternal High Priest",
"in": "Juravit (Dominus)",
"inID": 684,
"inRef": "Ps 109: 4, 1",
"gr": "Spiritus Domini",
"grID": 1016,
"grRef": "Luc 4: 18",
"al": "Jesus autem",
"alID": 1096,
"alRef": "Hebr 7: 24",
"trSept": "Exsurge (Domine)",
"trSeptID": 1370,
"trSeptRef": "Ps 9: 34-36",
"trSeptRubric": "Sung after Septuagesima instead of the previous Alleluia.",
"alPasch": "Spiritus Domini",
"alPaschID": 611,
"alPaschRef": "Luc 4: 18",
"alPaschRubric": "Sung in Paschal Time following the previous Alleluia.",
"of": "Christus unam",
"ofID": 1364,
"ofRef": "Hebr 10: 12, 14",
"co": "Hoc corpus",
"coID": 726,
"coRef": "1 Cor 11: 24, 25",
"coVerses": "Ps 115"
},
"votive_mass_sacred_heart": {
"title": "Friday - Votive Mass of the Most Sacred Heart of Jesus",
"href": "http://www.introibo.fr/Fete-du-Sacre-Coeur#inter2",
"in": "Cogitationes",
"inID": 1320,
"inRef": "Ps 32: 11, 19, 1",
"inVerses": "Ps 32: 2-3",
"gr": "Dulcis et rectus",
"grID": 1035,
"grRef": "Ps 24: 8-9",
"al": "Tollite",
"alID": 907,
"alRef": "Matth 11: 29",
"trSept": "Misericors",
"trSeptID": 1244,
"trSeptRef": "Ps 102: 8-10",
"trSeptRubric": "- Same advice as the Graduale above: little pause at the star after retribuit and good breath after that to sing the last word nobis in one go.",