Skip to content

Instantly share code, notes, and snippets.

@Benitoite
Last active August 31, 2026 17:25
Show Gist options
  • Select an option

  • Save Benitoite/a14ddfd0a0a21a24dbc20e04a8fd9c25 to your computer and use it in GitHub Desktop.

Select an option

Save Benitoite/a14ddfd0a0a21a24dbc20e04a8fd9c25 to your computer and use it in GitHub Desktop.
Generate a complete GABC score containing random excerpts from a local GregoBase corpus.
#!/usr/bin/env zsh
# Generate a complete GABC score containing random excerpts from a local
# GregoBase corpus.
#
# Usage:
# ./random-gregobase-melody.zsh [path-to-gregobase-corpus] > excerpts.gabc
#
# If no corpus path is supplied, the script expects "gregobasecorpus-v0" next
# to this script. The path must contain a "gabc" directory of source scores.
#
# Output guarantees:
# - 48 excerpts are selected from 48 distinct source files.
# - Each excerpt contains 10–12 sung notes and ends at a lyric boundary.
# - The active clef, lyric text, and original GABC glyph notation accompany
# every excerpt.
# - Each excerpt is labeled with its sequence number, GregoBase ID, and note
# count; a forced GABC line break, (z), follows every fourth excerpt.
#
# Source notation is preserved except for layout that would conflict with the
# newly assembled score: inherited z/Z line breaks (and their associated manual
# custodes) are removed, and physical source newlines are normalized to spaces.
# Use a local, predictable zsh option set. Unhandled failures return from the
# script, unset variables are errors, and a failed pipeline component matters.
emulate -L zsh
setopt err_return no_unset pipe_fail
# Selection and retry limits. Some randomly chosen files have no excerpt that
# satisfies all boundary and note-count rules, so selection may require retries.
readonly MIN_NOTES=10
readonly MAX_NOTES=12
readonly EXCERPT_COUNT=48
readonly GROUPING=4
readonly MAX_ATTEMPTS=3000
# Resolve the default corpus relative to the script rather than the caller's
# current directory. An explicit first argument overrides that default.
readonly SCRIPT_DIR=${0:A:h}
readonly CORPUS_DIR=${1:-${SCRIPT_DIR}/gregobasecorpus-v0}
readonly GABC_DIR=${CORPUS_DIR:A}/gabc
# Fail early with a useful diagnostic if the corpus does not have the expected
# directory layout.
if [[ ! -d $GABC_DIR ]]; then
print -u2 -- "error: GABC directory not found: $GABC_DIR"
print -u2 -- "usage: ${0:t} [path-to-gregobase-corpus]"
exit 1
fi
# (N) is zsh's null-glob qualifier: an empty directory produces an empty array
# instead of leaving the literal "*.gabc" pattern in the array.
gabc_files=("$GABC_DIR"/*.gabc(N))
if (( ${#gabc_files} == 0 )); then
print -u2 -- "error: no .gabc files found in: $GABC_DIR"
exit 1
fi
# Locate all valid consecutive excerpts in one score, choose one at random, and
# write a small three-field protocol to stdout:
#
# line 1: clef active at the excerpt's first note
# line 2: number of sung notes
# rest: lyric and music source for the excerpt
#
# Perl reads the whole file because GABC syllables, control groups, and clef
# changes may span physical lines. A nonzero status means this file offers no
# valid excerpt and lets the outer selection loop try another score.
extract_excerpt() {
perl -0777 - "$1" "$MIN_NOTES" "$MAX_NOTES" <<'PERL'
use strict;
use warnings;
my ($path, $min_notes, $max_notes) = @ARGV;
# Remove source-score end-of-line instructions from one parenthesized music
# group. Those breaks were chosen for the source score's page geometry and must
# not control the layout of this newly assembled anthology.
sub without_source_linebreaks {
my ($music) = @_;
my $clean = '';
my $in_brackets = 0;
my $in_braces = 0;
for (my $i = 0; $i < length $music; $i++) {
my $char = substr($music, $i, 1);
# NABC data follows | and uses a separate alphabet. A z in that data is
# not a GABC line-break command, so copy the remainder without parsing.
if ($char eq '|' && !$in_brackets && !$in_braces) {
$clean .= substr($music, $i);
last;
}
$in_brackets++ if $char eq '[';
$in_brackets-- if $char eq ']' && $in_brackets;
$in_braces++ if $char eq '{';
$in_braces-- if $char eq '}' && $in_braces;
# z and Z are forced end-of-line controls; optional + or - changes the
# custos behavior at that break. Keep z0, which places a custos without
# ending the line and is commonly used immediately before a clef change.
if (!$in_brackets && !$in_braces
&& ($char eq 'z' || $char eq 'Z')
&& substr($music, $i + 1, 1) ne '0') {
# A pitch followed by + is a manually positioned custos. If it is
# immediately attached to the removed break, it belongs to that old
# layout too and should not survive on the reconstructed line.
$clean =~ s/[a-mA-M]\+\z//;
my $next = substr($music, $i + 1, 1);
$i++ if $next eq '+' || $next eq '-';
next;
}
$clean .= $char;
}
return $clean;
}
# Read bytes verbatim so accents, GABC punctuation, and TeX fragments are not
# transformed by an implicit text encoding layer.
open my $fh, '<:raw', $path or exit 1;
local $/;
my $document = <$fh>;
close $fh;
# A GABC file consists of semicolon-terminated headers, then %% and the score
# body. Only the body participates in musical extraction.
my (undef, $body) = split /^%%[\t ]*\r?\n/m, $document, 2;
exit 1 unless defined $body;
# Each (...) music/control group is recorded with source offsets, its primary-
# voice note count, and the clef active when its first note is encountered.
# $cursor is the end of the previous group; using it as prefix_start retains the
# lyric text that precedes the current music group.
my @groups;
my $cursor = 0;
my $active_clef = '';
while ($body =~ /\(([^()]*)\)/g) {
my ($start, $end) = ($-[0], $+[0]);
my $music = $1;
my $scan = $music;
# Count only the main GABC voice. NABC after |, bracketed music directives,
# an optional upper polyphonic voice in {...}, and inline tags do not add
# sung notes to the primary melody.
$scan =~ s/\|.*\z//s;
$scan =~ s/\[[^]]*\]//g;
$scan =~ s/\{[^}]*\}//g;
$scan =~ s/<[^>]*>//g;
my $note_count = 0;
my $first_note_clef = '';
for (my $i = 0; $i < length $scan; $i++) {
my $remaining = substr($scan, $i);
# A clef can occupy its own group or follow a custos/bar in a combined
# group such as (z0::c3). Scan left-to-right so every later group is
# interpreted under the clef actually active at that point in the score.
if ($remaining =~ /\A([cf]b?[1-4])/) {
$active_clef = $1;
$i += length($1) - 1;
next;
}
my $pitch = substr($scan, $i, 1);
next unless $pitch =~ /[a-mA-M]/;
my $after = substr($scan, $i + 1);
# A staff-position letter followed by x, y, or # encodes an accidental,
# not a sung pitch. The same kind of letter followed by + is a manual
# custos. Consume both characters without incrementing the note count.
if ($after =~ /\A[xy#\+]/) {
$i++;
next;
}
# Do not accept an excerpt until the source has established a clef.
next unless length $active_clef;
$first_note_clef ||= $active_clef;
# Compact virga/stropha repetitions use one carrier pitch letter and a
# run of v/s characters. Thus hvv represents two notes and hsss three;
# the carrier letter is not counted again separately.
if ($after =~ /\A([sv]+)/) {
my $repetitions = $1;
$note_count += length $repetitions;
$i += length $repetitions;
} else {
$note_count++;
}
}
# Non-note groups (clefs, bars, empty groups, directives) remain in the
# table because they establish safe boundaries and must remain in source
# spans, even though only note-bearing groups contribute to totals.
push @groups, {
start => $start,
end => $end,
prefix_start => $cursor,
count => $note_count,
first_note_clef => $first_note_clef,
word_end => 0,
};
$cursor = $end;
}
# Mark places where an excerpt may end without cutting through an attached lyric
# or a sequence of music groups belonging to the same syllable. Whitespace, end
# of score, or an immediately following non-note control group closes the unit;
# an adjacent note-bearing group with no intervening text does not.
for (my $i = 0; $i < @groups; $i++) {
my $next_start = $i + 1 < @groups ? $groups[$i + 1]{start} : length $body;
my $following = substr($body, $groups[$i]{end}, $next_start - $groups[$i]{end});
$groups[$i]{word_end} = 1 if $following =~ /\A\s/;
$groups[$i]{word_end} = 1 if $i == $#groups;
$groups[$i]{word_end} = 1
if $following eq '' && $i < $#groups && $groups[$i + 1]{count} == 0;
}
# Candidate construction is intentionally conservative at the beginning as
# well as the end. Starting only at the score's first note or after a bar/clef
# avoids inheriting an accidental whose declaration was omitted with earlier
# material.
my @candidates;
my $previous_note_end;
for (my $i = 0; $i < @groups; $i++) {
next unless $groups[$i]{count} > 0;
# Look between consecutive note-bearing groups for a bar or clef. The text
# between them may itself contain any number of lyric/control groups.
my $safe_start = !defined $previous_note_end;
if (defined $previous_note_end) {
my $between = substr(
$body,
$previous_note_end,
$groups[$i]{start} - $previous_note_end,
);
$safe_start = 1 if $between =~ /\([^()]*[,;:][^()]*\)/;
$safe_start = 1 if $between =~ /\([^()]*[cf]b?[1-4][^()]*\)/;
}
if ($safe_start && length $groups[$i]{first_note_clef}) {
# Grow a consecutive source span from this safe start. Non-note groups
# are retained in the eventual substring but contribute zero here.
my $total = 0;
for (my $j = $i; $j < @groups; $j++) {
next unless $groups[$j]{count} > 0;
$total += $groups[$j]{count};
last if $total > $max_notes;
# Reject musically valid but lyricless spans. Removing music groups
# and markup leaves only the candidate's visible lyric material for
# this lightweight test.
my $source_excerpt = substr(
$body,
$groups[$i]{prefix_start},
$groups[$j]{end} - $groups[$i]{prefix_start},
);
my $lyric = $source_excerpt;
$lyric =~ s/\([^()]*\)//g;
$lyric =~ s/<[^>]*>//g;
if ($total >= $min_notes
&& $groups[$j]{word_end}
&& $lyric =~ /[A-Za-z]/) {
push @candidates, {
first => $i,
last => $j,
count => $total,
clef => $groups[$i]{first_note_clef},
};
}
}
}
$previous_note_end = $groups[$i]{end};
}
# All valid candidates in this source file have equal selection probability.
# The outer zsh loop separately ensures that no source file is used twice.
exit 1 unless @candidates;
my $chosen = $candidates[int rand @candidates];
my $start = $groups[$chosen->{first}]{prefix_start};
my $end = $groups[$chosen->{last}]{end};
my $excerpt = substr($body, $start, $end - $start);
$excerpt =~ s/\A\s+//;
# Strip inherited layout controls from every music group. If a group contained
# only a removed z/Z command, omit the now-empty parentheses as well.
$excerpt =~ s{\(([^()]*)\)}{
my $original = $1;
my $clean = without_source_linebreaks($original);
(length($clean) || $original !~ /[zZ]/) ? "($clean)" : '';
}ge;
# A physical newline in GABC source is ordinary whitespace, not an engraved
# line break. Flatten it so every generated excerpt occupies one source line;
# only the explicit (z) commands added later control requested group breaks.
$excerpt =~ s/[\t ]*\r?\n[\t ]*/ /g;
# Preserve the source bytes on the way back to zsh. The first two newlines are
# delimiters for the clef/count protocol; all remaining bytes are the excerpt.
binmode STDOUT, ':raw';
print $chosen->{clef}, "\n", $chosen->{count}, "\n", $excerpt;
PERL
}
# Read one header value without examining the score body. GregoBase supplies its
# public chant identifier in the private-looking _gregobase_id field.
read_header() {
awk -v key="$1" '
$0 == "%%" { exit }
index($0, key ":") == 1 {
value = substr($0, length(key) + 2)
sub(/;$/, "", value)
print value
exit
}
' "$2"
}
# Parallel arrays hold the fields of accepted excerpts. zsh arrays are
# one-indexed, which lets the final loop use human-facing excerpt numbers
# directly. used_files is associative so duplicate source choices are cheap to
# detect even with thousands of corpus files.
selected_files=()
selected_clefs=()
selected_counts=()
selected_excerpts=()
selected_ids=()
typeset -A used_files
# Draw source files at random until 48 distinct usable excerpts are collected or
# the retry budget is exhausted. A file is marked used only after extraction
# succeeds, so an unsuitable file does not reduce the requested result count.
for (( attempt = 1;
attempt <= MAX_ATTEMPTS && ${#selected_files} < EXCERPT_COUNT;
attempt++ )); do
# RANDOM is zero-based while zsh arrays begin at one.
candidate=${gabc_files[$(( RANDOM % ${#gabc_files} + 1 ))]}
[[ -n ${used_files[$candidate]-} ]] && continue
if parsed=$(extract_excerpt "$candidate"); then
# Decode extract_excerpt's first-line clef, second-line count, and
# remainder-of-output excerpt without reinterpreting its GABC contents.
clef=${parsed%%$'\n'*}
remainder=${parsed#*$'\n'}
count=${remainder%%$'\n'*}
excerpt=${remainder#*$'\n'}
used_files[$candidate]=1
selected_files+=("$candidate")
selected_clefs+=("$clef")
selected_counts+=("$count")
selected_excerpts+=("$excerpt")
selected_ids+=("$(read_header _gregobase_id "$candidate")")
fi
done
# Never emit a partial score: failure is clearer than silently returning fewer
# exercises than the document header and grouping scheme promise.
if (( ${#selected_files} != EXCERPT_COUNT )); then
print -u2 -- \
"error: found only ${#selected_files} complete ${MIN_NOTES}${MAX_NOTES}-note excerpts"
exit 1
fi
# Emit a complete standalone GABC document. initial-style:0 requests an ordinary
# first syllable instead of treating this synthetic exercise sheet like a chant
# with one decorative initial.
print -r -- "name:${EXCERPT_COUNT} random GregoBase excerpts;"
print -r -- "initial-style:0;"
print -r -- "commentary:Complete lyric and glyph excerpts, labeled with GregoBase ID and sung-note count;"
print -r -- "%%"
# Each row resets the clef to the one active in the source, prints compact text
# above the staff using <alt>, then appends a final double bar that visibly
# separates excerpts. "n" in the label means sung notes.
for (( index = 1; index <= EXCERPT_COUNT; index++ )); do
chant_id=${selected_ids[$index]:-unknown}
print -nr -- "(${selected_clefs[$index]}) "
print -nr -- \
"<alt>$index · GB$chant_id · ${selected_counts[$index]}n</alt>"
print -nr -- "${selected_excerpts[$index]} (::)"
# Force a new staff after every complete group of four, including the final
# group (48 is divisible by 4). Other physical newlines printed by this script
# merely keep the GABC source readable and do not affect engraving.
if (( index % "${GROUPING}" == 0 )); then
print -r -- " (z)"
else
print
fi
done
title:Random Gregobase Excerpts #1
%%
(f3) <alt>Ex. 1 — GB 2407 — 10 notes</alt>Hac(hhg) di(f')e(e) l<sp>'æ</sp>(h)tus(h.) (,) mé(i')ru(j)it(i') (::)
(c4) <alt>Ex. 2 — GB 6725 — 12 notes</alt>do(e)mum(f) Pa(g)tris(h) me(gvFD)i(d) (;) do(fvED)mum(e) (::)
(c2) <alt>Ex. 3 — GB 7596 — 11 notes</alt>E(j)pu(g)lá(ivHGh)re(f) cum(fg//hg) (::)
(c3) <alt>Ex. 4 — GB 2101 — 12 notes</alt>ut(kj~) co(kl)gnó(lk/lk)vit(i'_) (,) quod(k) Je(j')sus(k) (::) (z)
(c3) <alt>Ex. 5 — GB 5105 — 12 notes</alt>In(ig)du(i)it(j) Dó(i)mi(hi)nus(i) (::) San(i)ctos(i) su(i)os(g) (::)
(c3) <alt>Ex. 6 — GB 6249 — 10 notes</alt>sic(ki//jkJI)ut(i) no(i)vél(i)læ(i) (::)
(c3) <alt>Ex. 7 — GB 7419 — 12 notes</alt>et(h) in(h) sae(h)cu(h)la(h) sae(h)cu(h)lo(h)rum.(h) A(gh)men.(h.) (::)
(c4) <alt>Ex. 8 — GB 2120 — 11 notes</alt>Ful(g)get(g') Crú(h)cis(fd) my(f)sté(ef)ri(d)um,(cd..) (::) (z)
(c4) <alt>Ex. 9 — GB 1535 — 10 notes</alt>quó(j)ni(h!iwj)am(i/jkhhg) (::)
(c3) <alt>Ex. 10 — GB 8124 — 11 notes</alt>(ei'jvIHhvGFE)bit(fe) (::)
(c4) <alt>Ex. 11 — GB 28 — 10 notes</alt><i>Extra T. P.</i> + d{í}(f)ci(d!ew!fvE'DCd)tur(dc..) (::)
(c4) <alt>Ex. 12 — GB 1183 — 11 notes</alt>di(gf)co(gh) e(h)go(h) ó(h)pe(h)ra(hjh) (::) (z)
(c4) <alt>Ex. 13 — GB 2345 — 11 notes</alt>qui(g)a(g) vé(gh)ni(g)et(g') Dó(f)mi(gh)nus:(h.) (;) et(j) (::)
(c4) <alt>Ex. 14 — GB 8959 — 11 notes</alt>be(c_d)ne(f') fun(f)dá(fg)ta(f) est(ff) (,) su(e')pra(f) (::)
(c4) <alt>Ex. 15 — GB 8597 — 11 notes</alt>et(g_h) ó(i>')mni(h)a(gf) red(gh)dam(h) ti(g.)bi.(g.) (::)
(c3) <alt>Ex. 16 — GB 8470 — 10 notes</alt>non(g) si(i')né(j)bat(i') e(h)a(hf) lo(hh)qui(g.) (::) (z)
(c4) <alt>Ex. 17 — GB 1315 — 11 notes</alt>Gló(g)ri(hg)a(gj) Pa(j)tri.(j) (::) E(j) u(jji) (::)
(c3) <alt>Ex. 18 — GB 1858 — 10 notes</alt>cor(g_h) ve(i_j)strum(i) in(ih~) le(ij)ge(i) (::)
(c4) <alt>Ex. 19 — GB 1068 — 10 notes</alt>os(fh)sa(g) hu(e_f)mi(g)li(fe)á(d.)ta.(d.) (::)
(c3) <alt>Ex. 20 — GB 2477 — 10 notes</alt>DUM(d) tran(f')sí(h)ret(gxg') Dó(f)mi(gxgh)nus(h.) *(,) per(i_h~) (::) (z)
(f3) <alt>Ex. 21 — GB 4964 — 11 notes</alt>et(g) non(i) me(i) te(j)nu(i)í(hg)stis:(f) (:) et(f) ec(g)ce(h) (::)
(c4) <alt>Ex. 22 — GB 3819 — 12 notes</alt>Chri(g)stus,(gf) qui(gh) vo(gf)cá(e)vit(e!fwgf) (::)
(c3) <alt>Ex. 23 — GB 4967 — 11 notes</alt>et(f) vi(hg)dé(h)bi(hfh)tur(hhvFE) (::)
(c4) <alt>Ex. 24 — GB 2087 — 12 notes</alt><i>All:</i> <sp>R/</sp>. V{e}(hvGF)ní(h!iwj)te,(gv.ff/ded.) (::) (z)
(c4) <alt>Ex. 25 — GB 7195 — 11 notes</alt>me(e)i,(f) De(gh)us,(g) (;) se(g)cún(f)dum(h) ma(ji)gnam(g) (::)
(c4) <alt>Ex. 26 — GB 1111 — 11 notes</alt>et(h) li(h)be(hjh)rá(g')tor(f) me(fff)us.(d.) (::)
(c4) <alt>Ex. 27 — GB 3538 — 12 notes</alt>ma(hg/h!iwj)net(ghGF) *() in(f!hj) (::)
(c4) <alt>Ex. 28 — GB 3163 — 11 notes</alt>vi(g)dé(i')rent(j) Dó(iih')mi(g)num(g.h!iwj) (::) (z)
(c3) <alt>Ex. 29 — GB 771 — 12 notes</alt>co(f)ró(hf/gh!ivFE')nam(feec) (::)
(c3) <alt>Ex. 30 — GB 8781 — 12 notes</alt>NON(e) e(eh)nim(fvED) vos(ef) es(f)tis(e) *() quid(gh) (::)
(c4) <alt>Ex. 31 — GB 5282 — 12 notes</alt>hó(h)di(ixj)e(jkJIH) (;3) ex(h)súl(hgi)tant(h) (::)
(f3) <alt>Ex. 32 — GB 8649 — 10 notes</alt>Pa(f)trí(e)que(f) com(h)par(g) U(f)ni(e)ce,(eh..) (;)
Cum(h) (::) (z)
(c4) <alt>Ex. 33 — GB 6833 — 12 notes</alt>(ed//ffd) <sp>V/</sp>.(::) Op(hgh)ti(fvED)me(d) (::)
(c3) <alt>Ex. 34 — GB 6635 — 11 notes</alt>lú(e)ci(fg)de(h) Gá(gvFE)bri(f)el,(e) (::) Quem(e) de(g) (::)
(c4) <alt>Ex. 35 — GB 661 — 10 notes</alt>Lau(h)dá(h)te(ixg'/ivHG'/hffe.) (::)
(c4) <alt>Ex. 36 — GB 5527 — 12 notes</alt>e(h)rí(j)pe(i)re(j) nos(h) de(g) ma(i)nu(g) mor(h)tis:(ghg) (::) (z)
(c4) <alt>Ex. 37 — GB 1051 — 11 notes</alt>Sal(e)va(dc)tó(d_e)rem(e') dó(e)mu(g_h)i(f_e) (::)
(c4) <alt>Ex. 38 — GB 5439 — 12 notes</alt>Gló(f)ri(gh)a(h) (::) E(h) u(hjh) o(g) u(f) a(fe) (::)
(f3) <alt>Ex. 39 — GB 7879 — 12 notes</alt>De(f) lu(f)ce(h) lu(h)cem(e) pró(f)fe(h)rens,(hiHG) (:)
Lux(f) (::)
(c4) <alt>Ex. 40 — GB 5853 — 12 notes</alt>Ex(g)sul(f)tá(gh)bit(gvFD) in(fg) Dó(g)mi(f)no.(f) (::) (z)
(c3) <alt>Ex. 41 — GB 3214 — 12 notes</alt>et(d_f) cir(hih)ca(hf) hó(hih)ram(hi) (::)
(f3) <alt>Ex. 42 — GB 403 — 10 notes</alt>in(fe~) ma(f!hhf/gf)nu(ef) (::)
(c3) <alt>Ex. 43 — GB 3448 — 10 notes</alt>prop(e)té(feh)re(h)a(h) be(h)ne(h)díx(h)it(h) (::)
(c4) <alt>Ex. 44 — GB 2110 — 10 notes</alt>VEr(g)bum(fd~) ca(e)ro(f) fá(gh)ctum(h) est,(g.) *(,) et(g) (::) (z)
(f3) <alt>Ex. 45 — GB 3705 — 12 notes</alt>in(f) pá(e)ce(f!gwh) se(h!ij)púl(ih)ta(gh) (::)
title:Random Gregobase Excerpts #2
%%
(c3) <alt>1 · GB8101 · 12n</alt><sp>R/</sp>. O-(g)<i>ra</i>(f) <i>pro</i>(g) <b>no-</b>(h)bis.(h.) (::)(c3) San(h)cte(h) <b>Mí</b>(i)cha-(gr)el,(g.) (::) <sp>R/</sp>. O-(g)<i>ra</i>(f) (::)
(c3) <alt>2 · GB8065 · 12n</alt>et(h) ex(i)sul(g)tá(h)te(g) e(g)i(f) cum(hg~) tre(f)mó(e)re.(e) (::)
(c4) <alt>3 · GB9104 · 12n</alt>et(g) Spi-(g)rí-(h)tu-(g)i(gf) San(g)cto(g.h.) ()(::) Do(f)mi-(f)nus(f') (::)
(c4) <alt>4 · GB3257 · 12n</alt>ut(ij) in(hg) a(hg)mo(fe)re(d) il(gv)lo(fe) (::) (z)
(c4) <alt>5 · GB5190 · 11n</alt>Con(f)stí(f)tu(f)es(f) e(f)os(f) prín(g)ci(f)pes(f) (;4) su(f)per(f) (::)
(c4) <alt>6 · GB2056 · 11n</alt>sur(jk)ge(ji) a(h)mí(i')ca(j) me(hv_GF)a,(f.) (::)
(c4) <alt>7 · GB8839 · 12n</alt>E(k)væ(kj) ma(i)tris(ji) op(h)pró(ih)bri(gh)um,(h.) (::)
(c3) <alt>8 · GB817 · 12n</alt>Ho(e)sán(ei~)na(ijHF') in(g) ex(fg~)cél(e.)sis.(e.) (::) (z)
(cb3) <alt>9 · GB7465 · 12n</alt>Et(f) te(h) il(g')li(f) sem(ed)per(d.) (,) dul(f)ce(d) sá(e')pe(d)re.(d.) (::)
(c4) <alt>10 · GB1087 · 12n</alt>et(f) me(f)mén(hj~)to(j) fi(jk)nis,(ji/jkj.) (::)
(f3) <alt>11 · GB6100 · 12n</alt>qui(ef) non(fh/ih) a(h)mó(fhe)vit(ce) (::)
(f3) <alt>12 · GB3898 · 10n</alt>AL(e)LE(f)LÚ(hi~)IA.(ih/iggf) (::) (z)
(c3) <alt>13 · GB2670 · 12n</alt>mi(f)sé(h)ri(hg)cors(f) et(g_h) mi(i)se(hf)rá(g)tor(f) (::)
(f3) <alt>14 · GB7877 · 10n</alt>Ae(f3f)tér(f)ne(c) re(e)rum(e) Cón(gf)di(ef)tor,(f) (::)
(c4) <alt>15 · GB6899 · 12n</alt>ex(g)al(g!hj)tá(jh)bis(hf/ghgh) (::)
(c4) <alt>16 · GB2317 · 10n</alt>in(d) ver(f')bo(d) au(e')tem(f) tu(g_h)o(ghg.) (::) (z)
(c4) <alt>17 · GB112 · 12n</alt>et(g) e(h)go(i) in(j) e(hg)o,(g.) (;) hic(h) fert(i.h!iwj) (::)
(c4) <alt>18 · GB3594 · 12n</alt>u(f)bi(f!gh) vo(hgg)lé(e)bas:(egff) (::)
(c4) <alt>19 · GB540 · 11n</alt><sp>V/</sp>. Hæc(dffeggvFE'fd) est(d.) (::)
(c4) <alt>20 · GB9006 · 12n</alt>pro(g)pter(gf) e(g)os(f'_) (,) qui(d) hæ(d')re(f)di(e')tá(f)tem(e_d~) (::) (z)
(c3) <alt>21 · GB702 · 12n</alt>tu(d!e'f) me(f) sé(fhGF')que(i)re.(hhf.) (::)
(c3) <alt>22 · GB4520 · 11n</alt>al(g/h<)le(i)lú(hg>)ia,(f) al(g>)le(fg)lú(e)ia.(e) (::)
(c3) <alt>23 · GB1017 · 10n</alt>Con(eh~)cús(h_g/fge)sum(fe) est(e.) (::)
(c3) <alt>24 · GB7934 · 12n</alt>in(i>) ju(h')bi(i)la(j)ti(ih)ó(i.)ne,(i.) (;) et(i) Dó(f')mi(i)nus(h') (::) (z)
(c4) <alt>25 · GB2610 · 12n</alt>MU(d')li(c)er(df) *() a(f')mí(f)cta(fd) so(fh)le(g'_) (,) et(h) (::)
(c4) <alt>26 · GB3024 · 12n</alt>ut(h') di(g)ví(g')na(f) vó(e')lu(d)it(e') cle(f)mén(d')ti(d)a.(c.) (:) In(c) (::)
(c3) <alt>27 · GB2786 · 10n</alt>NE(e)mo(fh) te(h') con(h)de(h)mná(hg)vit,(fe~) (::)
(c3) <alt>28 · GB4328 · 11n</alt>SIT(h) no(h)men(h) Dó(h)mi(h)ni(h) be(h)ne(h)díc(h)tum.(f.) (::) <sp>R/</sp>. Ex(h) (::) (z)
(c4) <alt>29 · GB5793 · 11n</alt>Qui(g) es(hj) fu(h)tú(gf)rus(g) pr<sp>'ae</sp>(g)mi(f)um:(ed) (::)
(c3) <alt>30 · GB1514 · 10n</alt>BE(e)NE(e)DÍC(gih)TUS(f!gwh) es,(hg) (::)
(f3) <alt>31 · GB5206 · 11n</alt>su(fe)mus.(fv//hhf//hhv/fgf) (::)
(c4) <alt>32 · GB6415 · 12n</alt>dæ(gh)mó(h/ijh)ni(gf)a:(g/hfg) (::) (z)
(c4) <alt>33 · GB4460 · 10n</alt>sic(c)ut(d) im(fg)ber(g!/gof~) su(h)per(iwj) (::)
(c4) <alt>34 · GB8314 · 10n</alt>Con(f)fí(h)de(g') fi(h)li,(g_h) (,) re(c)mit(d)tún(f')tur(f) (::)
(c2) <alt>35 · GB5276 · 12n</alt>qui(h)a(g) va(ef)do(gf) ad(d) Pa(c)trem:(c) (;) qui(fe)a(d) (::)
(c3) <alt>36 · GB2344 · 10n</alt>E(h)rat(h) au(hihh)tem(e'_) *(,) a(g)spé(i)ctus(h') (::) (z)
(c4) <alt>37 · GB6741 · 10n</alt>et(f) in(fh//jjk)tro(j)í(jk)te(j) (::)
(c4) <alt>38 · GB758 · 11n</alt>o(g)pé(gh)ru(gf)it(f) ma(dgF'E)re,(e.) (::)
(c4) <alt>39 · GB983 · 11n</alt>quó(c)ni(cd)am(d) oc(dh)cí(gf)sus(gh) es,(h.) (::)
(c4) <alt>40 · GB1315 · 10n</alt>al(gh~)le(hv.fhg)lú(ghg___)ia.(g.) (::) (z)
(c4) <alt>41 · GB4955 · 10n</alt>frán(hj)gi(ghGFEf)mus,(fe) (::)
(c3) <alt>42 · GB4940 · 10n</alt>et(g) ma(h)míl(ij)lam(i) me(hi)am(h) (;6) me(h)o(h) (::)
(c4) <alt>43 · GB1812 · 10n</alt>quae(f) ae(fd)di(fe)fi(f)cá(g)tur(f) ut(fd~) (::)
(c4) <alt>44 · GB8502 · 11n</alt>et(f') ju(g)stí(h')ti(g)am(fe) e(fg)jus :(d.) (:) et(g) hæc(g) (::) (z)
(c4) <alt>45 · GB2953 · 12n</alt>et(f) ju(h)stí(j')ti(j)a(i') de(g) c<sp>'æ</sp>(i_j)lo(h') pro(h)spé(g.)xit.(g.) (::)
(c3) <alt>46 · GB2339 · 12n</alt>po(h_0!i'k)nit(j') fi(i)nes(h') Ec(gxg)clé(hih')si(f)æ,(f.) (::)
(c4) <alt>47 · GB4901 · 12n</alt>fle(hj)vit(ixhih) su(h)per(g) il(ef)lam,(g) et(fe) (::)
(c4) <alt>48 · GB4274 · 10n</alt>al(df~)le(fefd)lú(ded)ia.(d) (::) (z)
title:Random Gregobase Excerpts #3
%%
(f3) <alt>1 · GB4434 · 10n</alt>con(f)so(e)lá(f)mi(gwh)ni,(h) pó(h)pu(e)le(fh~) (::)
(c4) <alt>2 · GB1129 · 10n</alt>lac(g_f/g_f/gdf) et(fg) mel,(g.) (::)
(c4) <alt>3 · GB7977 · 10n</alt>DUM(d) au(d)tem(dc~) i(f)rent(g) é(f)me(gh)re,(h) (::)
(c3) <alt>4 · GB1395 · 12n</alt>an(e)te(e) fá(fe/f!gwh)ci(efED)em(d) (::) (z)
(c4) <alt>5 · GB1676 · 11n</alt>be(f)ne(g)dí(gj)xi(j)mus(jjjvHGh) (::)
(c3) <alt>6 · GB7362 · 10n</alt>Fa(e)ctus(ei) est...(i) (::) <i>Flexa :</i>() vir(i)tú(i)tem †(h. i i i ::) (::)
(f3) <alt>7 · GB6334 · 10n</alt>su(f)per(cf) quem(f) (;3) con(f)ti(f)né(g)bunt(f) re(g)ges(f) (::)
(c4) <alt>8 · GB3327 · 11n</alt>et(f_g) con(e_f)-cé-(dewf)pit(f_c) (,) de(e_f) (::) (z)
(c4) <alt>9 · GB8884 · 10n</alt>Im(j)mó(i')tus(h) in(i) te(g) pér(hg)ma(fg)nens,(g.) (::)
(c3) <alt>10 · GB5005 · 12n</alt>Rex(d) me(f)us(h) (::) et(h) De(i)us(g) me(h)us.(fefED) (::)
(c4) <alt>11 · GB8165 · 11n</alt>quæ(h) con(j)tem(j')psé(j)runt(jg~) vi(h)tam(j) mun(i_j)di,(j.) (::)
(c4) <alt>12 · GB9153 · 11n</alt>ap(k)pá(j)ru(ij)it(h) pri(f)mo(h) Ma(ji)rí(g)æ(g) (::) (z)
(f3) <alt>13 · GB4811 · 11n</alt>Dó(ef/hgh)mi(gf)ne,(ghGE) (::)
(c3) <alt>14 · GB3228 · 10n</alt>et(g) pul(g)chri(gf)tú(hji)di(h)ne(gh) (::)
(c4) <alt>15 · GB798 · 12n</alt>di(ixiih/ivHG/h_g//hff)cit(f) (::)
(c3) <alt>16 · GB2637 · 12n</alt>SI(e) co(e)gno(ehg')vis(h)sé(i')tis(j) me,(i'_) *(,) et(i) Pa(h')trem(j) (::) (z)
(c4) <alt>17 · GB763 · 10n</alt>Quó(g)ni(g)am(gd~) ma(g)gnus(hj) es(iij) (::)
(c4) <alt>18 · GB1397 · 11n</alt>sed(g!jjj) vi(hig)vam,(egeg) (::)
(c4) <alt>19 · GB3060 · 11n</alt>E(f)go.(f) <sp>V/</sp>.(::) Sa(ixhi)na(h) á(h)ni(h)mam(h) mé(gh)am,(g'_) (::)
(c4) <alt>20 · GB6030 · 11n</alt>De(ixf)pó(f!gi)net(ih//ivHG/hg) (::) (z)
(c4) <alt>21 · GB3066 · 12n</alt>SAn(f)cti(f) et(f) jú(g)sti(f'_) (,) in(f) Dó(f)mi(f)no(f) gau(e')dé(g)te:(h.) (::)
(c4) <alt>22 · GB1484 · 10n</alt>in(ig~)tén(hj)de(j) mi(j)hi,(j) et(jji) (::)
(f3) <alt>23 · GB1350 · 10n</alt>AL(e)le(f)lú(hi~)ia.(i_h/iggf.) (::)
(c4) <alt>24 · GB5178 · 10n</alt>vos(ihj) e(hf)lé(gh)gi(g) (;3) de(fg) (::) (z)
(c2) <alt>25 · GB4721 · 12n</alt>ter(jk)ræ(k) cár(jij)di(ih)ne(h) (;) ut(j) sol(ih) (::)
(f3) <alt>26 · GB3338 · 11n</alt>2. U(g)ni(g') tri(f)nó(gf)que(e) Dó(f')mi(g)no(g.) (,) Sit(gh) (::)
(c4) <alt>27 · GB491 · 10n</alt>et(hg) quod(ge) in(fg~)fír(gf)mum(dc) (::)
(c3) <alt>28 · GB8032 · 10n</alt>hym(f)num(h) gló(h)ri(h)æ(h) tu(g)æ(f) cá(g)ni(g)mus,(g) (::) (z)
(c3) <alt>29 · GB5300 · 12n</alt>nún(ef)ti(e)et(e) ec(e)clé(e)si(fg)a.(gefe) (::)
(c3) <alt>30 · GB5358 · 12n</alt>A(e)ve,(e) grá(g)ti(h)a(i) ple(ji)na,(h) Dó(jk)mi(j)nus(i) (::)
(c3) <alt>31 · GB2079 · 12n</alt>COn(hg)for(h)tá(ih/i_j)tus(i) est(ijji'_) (::)
(c3) <alt>32 · GB6508 · 11n</alt>qua(fdeDCB;1ec/de)re(d) (::) (z)
(c4) <alt>33 · GB4050 · 11n</alt>EC(e)ce(ed) An(g)ge(hj)lus(j) Dó(ij)mi(j)ni(j.) (::)
(c4) <alt>34 · GB5016 · 12n</alt>Jú(h)di(h!ijIH)ces(g) sæ(fgf)cli,(ed) (::)
(c4) <alt>35 · GB1747 · 12n</alt>no(hk)tas(kj) fac(jlKJkjjh) (::)
(c3) <alt>36 · GB4265 · 11n</alt>Mi(i)se(ijHF)ré(g)re(f) no(e)bis.(e) (::) E(i) u(i) (::) (z)
(c4) <alt>37 · GB7509 · 12n</alt><v>{\ae}</v>(d/ff)tér(gV.fgwhgh)ni.(hhf.) (::)
(c3) <alt>38 · GB1601 · 10n</alt>es(gh!ij)to(i) re(i)fú(hi)gi(i)um(i) (::)
(c4) <alt>39 · GB4369 · 11n</alt>IE(d)rú(e)sa(f)lem,(g!/go~) gau(fe>)de(d) *() gáu(f)di(e)o(f) (::)
(c3) <alt>40 · GB7929 · 11n</alt>di(j)xit(i) ad(h) Ti(f)búr(hi>)ti(f)um :(e) (;) Hó(h)di(h)e(h) (::) (z)
(c4) <alt>41 · GB6741 · 11n</alt>a(h)do(j)rá(kl)te(k) Dó(jk)mi(kj)num(j) (;) in(h) (::)
(c4) <alt>42 · GB2281 · 11n</alt>HÆC(d) est(dc) Vir(f)go(g') sá(f)pi(gh)ens,(h.) *(;) et(h_g) (::)
(c4) <alt>43 · GB5388 · 10n</alt>in(hg)cli(gh)ná(h)te(h) au(h)rem(h) ve(h)stram(h) (::)
(c4) <alt>44 · GB3074 · 11n</alt>ad(hhg) cá(e!f'g)put(gf/gff) (::) (z)
(c4) <alt>45 · GB548 · 10n</alt>su(efef/efe)per(dec) (::)
(c4) <alt>46 · GB4136 · 11n</alt>BO(g)nó(i')rum(j>) me(h)ó(j)rum(i') non(g) ín(h')di(g)ges,(h.) (;)in(g>) (::)
(c3) <alt>47 · GB5198 · 10n</alt>cæ(hi)los(j) a(h)pér(i)tos,(i) (;) et(gi) Je(g)sum(h) (::)
(c4) <alt>48 · GB4279 · 11n</alt>óm(f!gh)ni(h)um,(h) Dó(hgh)mi(f)ne,(fd) (::) (z)
title:Random Gregobase Excerpts #4
%%
(c4) <alt>1 · GB3607 · 11n</alt>(cd!fv//ghGFE) <sp>V/</sp>.(::) O(c!de) (::)
(c3) <alt>2 · GB8693 · 11n</alt>za(i)wio(j')dą(i) cię(h') do(g) ra(hi)ju,(i.) (;) a(f') gdy(h) tam(h') (::)
(c4) <alt>3 · GB7617 · 10n</alt>Pneu(ghhj)ma(hg) di(hj)ví(h)num(g) (::)
(c4) <alt>4 · GB3126 · 11n</alt>Di(g')lé(f)ctus(gh) mé(gv_FD)us(fg) mí(g.)hi.(f.) (::) (z)
(c4) <alt>5 · GB1987 · 10n</alt>o(d_e)dí(g)sti(g') quæ(g) in(f') mun(g)do(fe) sunt,(d.) (::)
(c4) <alt>6 · GB2882 · 12n</alt>DE(c)us(d) au(f')tem(e) no(fg)ster(g) in(gh) c<sp>'æ</sp>(fe)lo(d.) (::)
(c3) <alt>7 · GB5162 · 10n</alt>Ex(d)sul(f)tá(h)te,(h) ju(h)sti,(h) in(h) Dó(i)mi(h)no:(h) (::)
(c3) <alt>8 · GB7652 · 10n</alt>9. Pa(i)tri(h) Pro(i)les(ij) est(l) æ(k)quá(j)lis,(i) (;) Nec(l) (::) (z)
(c4) <alt>9 · GB2993 · 10n</alt>Ký(ixfg!hi)ri(h)e(hv.//ghFD.) (::)
(c2) <alt>10 · GB1423 · 10n</alt>et(d) ap(d)pá(dge/gh)ru(ff)it(f) (::)
(c3) <alt>11 · GB7748 · 11n</alt>CRé(h)di(hg)di,(f) *(,) prop(f)ter(e) quod(f) lo(e)cú(f)tus(de) (::)
(c4) <alt>12 · GB8853 · 11n</alt>Il(hi)lús(g)trans(fvED) pá(fh)tri(g)am(fe) (::) (z)
(f3) <alt>13 · GB4551 · 11n</alt>quod(e) au(f<)dís(hi)tis(hg) per(f) os(hg) me(f)um,(f) (::)
(c4) <alt>14 · GB2820 · 11n</alt>Be(d')ne(e)dí(g!hj)ctus(h.) qui(h) vé(hg)nit(h_j) (::)
(c4) <alt>15 · GB4115 · 11n</alt>et(ih) íd(j')e(i)o(i'_) pu(h)él(j)la(i') ín(k)du(j)it(i') (::)
(c4) <alt>16 · GB3102 · 10n</alt>Mi(f)se(gh)ré(gv_FD)re(fg) nó(g.)bis.(f.) (::) (z)
(c4) <alt>17 · GB2340 · 10n</alt>cer(j)tá(ji)vit(h) us(ij)que(hg) ad(fg~) (::)
(c4) <alt>18 · GB4134 · 11n</alt>et(d) cu(fe)jús(d)vis(e_f) ma(g_h)nus(ghg) (::)
(c4) <alt>19 · GB509 · 11n</alt>ae(f)di(f!g'h)fi(h_g)cá(g)bo(fgFD.) (::)
(f3) <alt>20 · GB2539 · 12n</alt>fá(h')mu(i)li(j) tu(i)ó(hf)rum,(f.) (:) Sol(iji)ve(hg) (::) (z)
(c4) <alt>21 · GB2084 · 11n</alt>hú(f')mi(e)lis,(d') pu(e)dí(e)cus,(d.) (;) Só(ixdh'!iv)bri(h)am(h) (::)
(c3) <alt>22 · GB2240 · 10n</alt>LU(e)ci(g')a(h) Vir(i_j)go,(i) *(,) quid(ii) a(g) me(i) (::)
(c4) <alt>23 · GB1142 · 11n</alt><i>ij.</i>(fg!hv//ghggd/ffg.) (::)
(c4) <alt>24 · GB1344 · 11n</alt>BE(d)á(ff/ghG'E/fgf___)tus(f.) (::) (z)
(c3) <alt>25 · GB2311 · 10n</alt>al(ef~)le(f_e/fv_ED)lú(ef~)ia,(f.) (::)
(c3) <alt>26 · GB736 · 12n</alt>sci(h)es(h) au(i)tem(g) pós(h)te(f)a.(f.) (::) Dó(h)mi(hg)ne.(f_e) (::)
(c4) <alt>27 · GB5169 · 12n</alt>Dó(f)mi(fg)ni,(g) (;) Dó(h)mi(g)num(h) be(h)ne(g)dí(f)ci(e)te(d) (::)
(c4) <alt>28 · GB96 · 12n</alt>in(c!df) gló(fv.efd/ed)ri(cd)am(d.) (::) (z)
(c4) <alt>29 · GB621 · 12n</alt>et(h) in(g) vir(h)tú(hj/kj)te(jjjvHG) (::)
(c4) <alt>30 · GB3682 · 12n</alt>Ju(fhg)stus(ge//fgf/gddc) (::)
(c4) <alt>31 · GB4852 · 10n</alt>Post(h) trí(f)du(fg)um,(g) (::) in(g)ve(g)né(h)runt(gf) (::)
(c3) <alt>32 · GB5812 · 12n</alt>et(f) a(d) per(e)se(f)quén(hhv)ti(h)bus(hiHGh) (::) (z)
(c3) <alt>33 · GB749 · 11n</alt>lu(d)men(e') de(e) lú(f')mi(e)ne,(d.) (,) De(h)um(h') ve(i)rum(h.) de(k') (::)
(c4) <alt>34 · GB5277 · 12n</alt>De(g)us(i) e(h)nim(g) o(e)stén(fg)det(g) (;) splen(g)dó(h)rem(gf) (::)
(c4) <alt>35 · GB4843 · 12n</alt>et(h) Al(h)tís(ghgh)si(egffv)mus(fe) (::)
(c4) <alt>36 · GB2588 · 10n</alt>Non(d) Il(d')le(f) re(d)gna(c) clá(f')di(g)bus,(h.) (,) Non(hg) (::) (z)
(c4) <alt>37 · GB7736 · 11n</alt>Fa(f)ctus(g~hg) est(h)* ad(f)iú(g)tor(f) me(f)us,(ef) (::)
(c4) <alt>38 · GB2968 · 12n</alt>O(g'_) vi(h)rum(gf) in(h)ef(ih)fá(g)bi(fg)lem!(g.) *(;) nec(h) (::)
(c3) <alt>39 · GB8656 · 11n</alt>AD(h)spi(h)ce(g') in(h>) me,(f.) *(,) et(f) mi(h)se(e')ré(f)re(ed) (::)
(f3) <alt>40 · GB1538 · 10n</alt>ne(hf)quan(fh)do(h) tá(h)ce(h)as(h) a(h) me,(h) (::) (z)
(c4) <alt>41 · GB8959 · 11n</alt>† fir(g'>)mam(f) pe(fe)tram,(dc) al(d)le(fe)lú(d.)ia.(d.) (::)
(c3) <alt>42 · GB7074 · 12n</alt>quo(h) men(i)tes(j) no(kvJIH//ijii)stræ(h) (::)
(c4) <alt>43 · GB8947 · 11n</alt>Fu(f)it(f) ho(g_h)mo(hg..) *(;) Mis(f_h)sus(gf) a(g) (::)
(c4) <alt>44 · GB3885 · 12n</alt>cum(f) prin(f)cí(ef!gh)pi(g)bus,(ghghf) (::) (z)
(c4) <alt>45 · GB8648 · 11n</alt>4. Ad(dh) hoc(g') cru(h)én(ji)t<i>a</i>() ab(hh) ár(g')bo(h)re(h.) (::)
(c4) <alt>46 · GB3215 · 12n</alt>in(f)fér(fd~)num,(e!fw!gvFD'/ed'dc.) (::)
(c4) <alt>47 · GB6554 · 10n</alt>et(f) si(f) per(f)dí(ixfh!ivHG)de(h)rit(g) (::)
(c3) <alt>48 · GB7312 · 12n</alt>Sanc(g)tus,(fgFE) (::) Sanc(e!fg)tus,(fgFE) (::) (z)
title:Random Gregobase Excerpts #5
%%
(c4) <alt>1 · GB294 · 12n</alt>spe(hih)rá(jj//hj/kjk)bis:(ji..) (::)
(c3) <alt>2 · GB650 · 11n</alt>si(eg) non(gf~) po(h)test(f) hic(e) ca(dfe)lix(e.) (::)
(f3) <alt>3 · GB5981 · 10n</alt>cá(gh)pi(i)ta(hg) ve(f)stra:(fe) (;) ec(h)ce(j) (::)
(c4) <alt>4 · GB3376 · 11n</alt><i>ij.</i>(ijh/ig/hvGFghh) (::) (z)
(c4) <alt>5 · GB6171 · 11n</alt>lau(eg!hi)da,(h) (;) fí(hjjv)li(hg)a(g) (::)
(c4) <alt>6 · GB1414 · 11n</alt>Gló(hg)ri(gh)a(h) Pa(h)tri.(h) (::) E(h) u(h) o(gf) (::)
(c3) <alt>7 · GB5300 · 10n</alt>(fhg//hihhg) (;) et(eh) (::)
(c3) <alt>8 · GB258 · 11n</alt>in(h) á(hhg)tri(ef)a(hg) Dó(f)mi(f)ni.(e.) (::) (z)
(c3) <alt>9 · GB2843 · 11n</alt>sed(i) grá(f_i)ti(g')a(h) e(f_e~)jus(f_e) (,) sem(d')per(e) (::)
(c4) <alt>10 · GB3332 · 10n</alt>Nunc(g_g_g'FD) di(e_f)mí(gh)ttis,(g.) (::)
(c4) <alt>11 · GB1202 · 12n</alt>AL(c)le(d)lú(ixed/hi)ia.(hvvGE'/fd.) (::)
(c3) <alt>12 · GB6696 · 10n</alt>No(g)ster(i) de(i)pró(j)mat(i) hó(h)di(g)e(fge) (::) (z)
(c4) <alt>13 · GB4626 · 11n</alt>ho(ed)ris,(c) mo(e)mén(g)tis(h) óm(hi)ni(hg)bus(h) (::)
(c4) <alt>14 · GB1050 · 10n</alt>in(j) do(j)mo(i_h) tu(jkjk)a,(j_i) (::)
(c4) <alt>15 · GB6352 · 11n</alt>in(fe)vé(d)nit,(dc) al(d)le(efe)lú(d)ia.(d) (::)
(c4) <alt>16 · GB4905 · 12n</alt>In(f) hoc(f) co(f)gnó(g)vi(f) (;1) quó(f)ni(f)am(f) vo(f)lu(e)í(g)sti(g) (::) (z)
(c4) <alt>17 · GB4657 · 10n</alt>ve(h!iwji/jkj)nit(hih) (::)
(c4) <alt>18 · GB917 · 11n</alt>Gló(g)ri(hg)a(gj) Pa(j)tri.(j) (::) E(j) u(jji) (::)
(c4) <alt>19 · GB2962 · 11n</alt>do(f)lén(e.d!ewf)tes(d.) quæ(e')re(f)bá(gh)mus(g) (::)
(c4) <alt>20 · GB2256 · 10n</alt>cras(jji) e(h)gre(hk)di(j)á(i')mi(h)ni,(g.) (::) (z)
(c4) <alt>21 · GB7940 · 10n</alt>ut(fg) non(ef) con(e)fún(d)dar.(d) (::) E(h) u(h) o(g) (::)
(c4) <alt>22 · GB6238 · 10n</alt>grá(ghgh)ti(g)a(fgFD) (;) in(d) (::)
(c4) <alt>23 · GB2546 · 12n</alt>se(h)cún(h_j!kvJH'i)dum(h') ór(h)di(h)nem(hg) (::)
(c4) <alt>24 · GB5352 · 11n</alt>et(dc~) Dó(f)mi(ghg)nus(h) (;3) (ixivGEg) (::) (z)
(f3) <alt>25 · GB354 · 10n</alt>AL(e)le(f)lú(hi~)ia.(i_h/iggf.) (::)
(c4) <alt>26 · GB680 · 11n</alt>Al(fg)le(f)lú(fg!hvGF'g)ia.(gf..) (::)
(c4) <alt>27 · GB1948 · 12n</alt>fi(g_e)at(g.) mí(f_e)hi(f'_) (,) se(d)cún(e')dum(f) ver(gh)bum(h) (::)
(f3) <alt>28 · GB8268 · 10n</alt>mi(f)se(e)ri(fh)cór(hg)di(e)am(g) su(f.)am.(f.) (::) (z)
(c3) <alt>29 · GB6120 · 11n</alt>Gló(e)ri(f)a(eh) (::) E(h) u(hg) o(ef) u(hg) (::)
(c3) <alt>30 · GB5192 · 10n</alt>Ad(e) te(g) de(h) lu(i)ce(i) (::) ví(j)gi(i)lo,(h) De(h)us,(g) (::)
(c4) <alt>31 · GB1221 · 10n</alt>su(ge/ghGE'f)per(d!ewf) (::)
(f3) <alt>32 · GB8721 · 12n</alt>in(j>) me(ih)mó(i)ri(ij)am(j.) (,) su(fh)ó(ge)rum(c') (::) (z)
(c4) <alt>33 · GB1089 · 10n</alt>Be(klk)ne(jk)díc(klkk)tus(g.) (::)
(c4) <alt>34 · GB4174 · 12n</alt>Gló(f)ri(f)a(f) Pa(gh)tri,(f'_) (,)et(g) Fí(f_e)li(dc)o,(c.) (::)
(f3) <alt>35 · GB2169 · 12n</alt>ad(h) do(f)cén(gf~)dum(ef~) nos(fv_EC.) (,) ví(e_f)am(h) (::)
(c3) <alt>36 · GB2573 · 11n</alt>vi(fe)vit(f') ho(e)mo,(d.) (;) sed(d) in(ef) o(fe~)mni(d) (::) (z)
(c3) <alt>37 · GB4400 · 12n</alt>et(i) vi(i!/io<)de,(ef) al(g>)le(fg)lú(e)ia.(e) (::) E(i) u(i) (::)
(c3) <alt>38 · GB7848 · 12n</alt>et(i) nunc,(ik) et(j) sem(ji)per,(ij) (:) et(ig) in(hi) (::)
(c3) <alt>39 · GB4815 · 12n</alt>de(e)dit(f) il(h)li(g) Dó(f)mi(h)nus,(g) (;) et(g) te(i)sta(i)mén(h)tum(h) (::)
(f3) <alt>40 · GB3070 · 10n</alt>Et(e) sa(fh)lu(h)tá(h)re(h) tú(h')um(h) (,) da(hf) (::) (z)
(c4) <alt>41 · GB1493 · 10n</alt>al(g)le(g)lú(fe)ia,(d) al(f)le(gh)lú(g)ia.(g) (::)
(f3) <alt>42 · GB5181 · 12n</alt>Gló(ji)ri(ij)a(j) (::) E(j) u(j) o(jh) u(ij) a(i) (::)
(c3) <alt>43 · GB2585 · 12n</alt>pó(i)pu(i)lo(i') tu(i)o(i') sum(g) ne(hi)ces(f)sá(e')ri(e)us,(e.) (::)
(c4) <alt>44 · GB4086 · 11n</alt>A(g)ve,(ji) só(j')lem(k) ge(ji)nu(hg)ís(h)ti,(g.) (::) (z)
(c4) <alt>45 · GB213 · 11n</alt>pa(ef!gh)tro(g)cí(egf)ni(ed)o.(d.) (::)
(c4) <alt>46 · GB8744 · 11n</alt>a(f)scén(ghg)dit(h/iih.) cru(f_g)cis(h) (::)
(c3) <alt>47 · GB7651 · 11n</alt>pre(f)ti(i')ó(h)sa(gh) mú(f)ne(e)ra(fge___e>) (::)
(c4) <alt>48 · GB2776 · 11n</alt>o(c)mnes(d) mu(f')ri(e) tú(d!ewf)i,(fc..) (;) et(c_d) (::) (z)
title:Random Gregobase Excerpts #6
%%
(c4) <alt>1 · GB9010 · 10n</alt>lau(g)dá(gh)te(g) e(e!fwg)um(g.) (,) o(g)mnes(h) (::)
(c3) <alt>2 · GB1395 · 10n</alt>SIC(e)UT(e) cer(e/fgf)vus(e/ffe) (::)
(c4) <alt>3 · GB2156 · 10n</alt>O(c_d!ewf)mnes(f) au(ef~)tem(f) *() vos(ge) (::) (z)
(c3) <alt>4 · GB1214 · 10n</alt>Tran(d)sí(d)te(d) ad(df/hh/ijh) (::)
(c3) <alt>5 · GB5346 · 11n</alt>Di(h)xit(h) (::) An(h)ge(f)lus(h) ad(g) Pe(e)trum:(e) (;) Cir(e)cúm(g)da(h) (::)
(c2) <alt>6 · GB5027 · 11n</alt>Dó(f)mi(gh)ne,(hjh) (;6) Spí(i)ri(hg)tus(fe) (::) (z)
(f3) <alt>7 · GB4686 · 11n</alt>Chris(g)te,(g) qui,(fe) splen(f)dor(g) et(h) di(g)es(f'_) (,) Noc(f)tis(f) (::)
(c4) <alt>8 · GB3243 · 11n</alt>Al(h)le(h_g)lú(g>)ia,(f_') (::) <sp>V/</sp>. Gló(f)ri(f)a(e') Pa(g)tri,(h_') et(h) (::)
(c4) <alt>9 · GB2746 · 10n</alt>in(h) pa(hgh)ce(f) se(g)púl(gh)ta(fe) (::) (z)
(c3) <alt>10 · GB2301 · 12n</alt>tri(h')a(i) ta(j)ber(ih~)ná(i')cu(i)la:(i.) (;) ti(f')bi(i) u(g')num,(h) (::)
(c3) <alt>11 · GB852 · 10n</alt>quae(i)rén(ihi)ti(fhGF)um(f_e) (::)
(c3) <alt>12 · GB4375 · 10n</alt>Pro(hi)phé(j)ta(ih) ma(i)gnus(i) (;) et(i) i(f)pse(i) (::) (z)
(c4) <alt>13 · GB3910 · 10n</alt>et(d) ti(c)bi(df) da(efED)bo(cd) (::)
(c3) <alt>14 · GB1813 · 10n</alt>que(f)mád(hhi)mo(h)dum(h) vi(h)dís(g)tis(hi) (::)
(c4) <alt>15 · GB1174 · 12n</alt>e(jj/k_jlvKJ'jvIH)jus,(ih..) (::) (z)
(c4) <alt>16 · GB1818 · 10n</alt>QUI(g) con(g)fí(g/hih)dunt(g/hhg) (::)
(c4) <alt>17 · GB398 · 11n</alt>i(h/jjk)ta(j) de(j)sí(j)de(j)rat(jkh) (::)
(c3) <alt>18 · GB1890 · 12n</alt>Dó(f')mi(h)ne,(g'_) quem(f) ex(g')spe(f)ctá(e)mus,(e.) (;) ut(e) sal(e)vum(ec~) (::) (z)
(cb3) <alt>19 · GB8114 · 11n</alt>Ve(d)ne(e)ré(f)mur(e) cér(d)nu(c)u,(d) (:) Et(d) an(f)tí(h)quum(h) (::)
(c3) <alt>20 · GB2277 · 10n</alt>et(f_i) co(g')pi(h)ó(f_e)sa(f_e) (,) a(d')pud(e) (::)
(f3) <alt>21 · GB6005 · 12n</alt>Tu(hiHF) es(f) (;3) De(f!ghGF)us(ef) (::) (z)
(c3) <alt>22 · GB7794 · 12n</alt>T.P. + De(e)i,(ef) al(g>)le(fg)lú(e)ia.(e) (::) E(i) u(i) o(j) u(i) (::)
(c4) <alt>23 · GB3574 · 12n</alt>Con(gg/hg~)ver(gj)tí(jji)sti(g) plan(h)ctum(g) (::)
(f3) <alt>24 · GB6261 · 11n</alt>Re(f)di(hg)me(h) me,(i) (::) Dó(i)mi(h)ne,(ih) (;) et(ge~) (::) (z)
(c4) <alt>25 · GB8401 · 12n</alt>IN(gv_F~D~)ter(e)ro(f)gá(g_h)bat(g) *() Ma(hv_GF')gos(h) (::)
(c3) <alt>26 · GB5426 · 10n</alt>cla(ed)má(e)vi(f) ad(g) te,(fe) Dó(f)mi(e)ne.(e) (::)
(c4) <alt>27 · GB3752 · 11n</alt>fi(d)des(cd) tu(deed)a:(d) (:) et(cd) tu(d) (::) (z)
(c3) <alt>28 · GB3248 · 11n</alt>Sit(h) et(i) be(k)ne(j)dí(i)cti(k)o :(jvIHih.) (::)
(c4) <alt>29 · GB4422 · 10n</alt>Mi(g)se(e)ri(f)cór(dc~)di(d)am(f) tu(f)am.(e) (::) <sp>V/</sp>. Et(c) (::)
(c3) <alt>30 · GB4337 · 12n</alt>ve(i)ri(i) ho(g)nó(hi)ris(f) qu{<sp>'ae</sp>}(e)ri(e)tis,(e) (;) ad(e) il(h)lam(h) (::) (z)
title:Random Gregobase Excerpts #7
%%
%%
(c4) <alt>1 · GB495 · 12n</alt>má(d!ewf!gv.efd)ne(dc/ee)at.(d.) (::)
(c2) <alt>2 · GB5508 · 12n</alt>Gló(fg)ri(gf)a(gh) (::) E(f) u(g) o(fd) u(f) a(g) (::)
(c4) <alt>3 · GB179 · 11n</alt>(cd!fv.ghG'FE.) <sp>V/</sp>.(::) O(c!de) (::) (z)
(f3) <alt>4 · GB4811 · 11n</alt>i(e)ni(gf)mi(hih)có(gf)rum(ghg) (::)
(c4) <alt>5 · GB4213 · 12n</alt>A(ded)men.(cd) (::) Al(c)le(e)lú(feed~)ia.(d) (::)
(c2) <alt>6 · GB1927 · 12n</alt>et(ghg__) an(gf~)te(g)mu(gj)rá(jjg)le:(g.) (::) (z)
(c4) <alt>7 · GB2084 · 12n</alt>No(d!ewf_d)ster(dc) hinc(cd) il(d)li(d.) (,) cho(f')rus(e) (::)
(c4) <alt>8 · GB2649 · 12n</alt>SAn(d_h)cti(h_j) spí(h')ri(g)tus(h') *(,) et(f) á(g)ni(f)mæ(g_h) (::)
(c4) <alt>9 · GB1346 · 10n</alt>sa(ghg)lu(fg)tá(jj)re(hji') (::) (z)
(c3) <alt>10 · GB4518 · 12n</alt>gau(i)de(ih)ré(j)tis(k) ú(l)ti(kj)que(i) (,) qui(i)a(j) ad(i) (::)
(c3) <alt>11 · GB1316 · 12n</alt>AB(e) oc(e)cúl(gih)tis(g) me(ef)is(efED.) (::)
(c3) <alt>12 · GB2481 · 11n</alt>VOX(d) cla(e)mán(ee)tis(d') *() in(f) de(h)sér(hhi)to:(h.) (::) (z)
(c4) <alt>13 · GB4165 · 12n</alt><sp>R/</sp>. De(g!hj)o(jh/jkj/j>/ghf.) (::)
(c4) <alt>14 · GB3774 · 12n</alt>De(cd)us(d) Cre(dc)á(d)tor(fe) ó(de)mni(e)um,(e) (::)
(c3) <alt>15 · GB2691 · 12n</alt>de(i)si(h')de(i)rá(j)vi(i') hoc(h) Pa(i_)scha(i.) (;) man(f')du(i)cá(g')re(h) (::) (z)
(c4) <alt>16 · GB1897 · 10n</alt>MAr(j)ty(i')rum(j) cho(h_g)rus,(h.) *(;) lau(gf~)dá(g)te(h) (::)
(c4) <alt>17 · GB803 · 10n</alt>a(d) Spí(g)ri(f)tu(e) San(fg~)cto,(d!ewf.) (;) non(d) (::)
(c3) <alt>18 · GB1796 · 10n</alt>in(i) nó(ki!jw!kvJI)mi(i)ne(ij) (::) (z)
(c4) <alt>19 · GB8127 · 11n</alt>O[O](jjj//ghf'fd) dúl[sweet](ef)cis[/](g'_) (::)
(c4) <alt>20 · GB9109 · 12n</alt>Vi(gf)ta(e') dum(g) præ(fe)sens(dc) ve(c)ge(d)tá(e')vit(f) (::)
(c4) <alt>21 · GB6929 · 11n</alt>tor(f!ghg)ná(h)ti(g)les,(f) (;) ple(f)næ(e!fg) (::) (z)
(c4) <alt>22 · GB5961 · 12n</alt>In(gj)ter(j) na(hj)tos(ih) (::) mu(g)lí(h)e(ih)rum(g) (::)
(f3) <alt>23 · GB5540 · 10n</alt>al(h)le(g)lú(f)ia,(fe) al(f)le(gh)lú(f)ia.(f) (::)
(c4) <alt>24 · GB7043 · 10n</alt>Dó(fe)mi(d)ne,(e) quis(f) su(gh)sti(h)né(g)bit?(g) (::) (z)
(c4) <alt>25 · GB4530 · 11n</alt>E(j)go(j) *() vos(i) e(g)lé(ij)gi(h) de(g) mun(hg>)do,(f) (::)
(f3) <alt>26 · GB2407 · 10n</alt>Spí(h)ri(g')tus(h) ar(fe)tus.(f.) 3.(::) Cu(f)jus(e) ob(fh) (::)
(c2) <alt>27 · GB5378 · 12n</alt>Fe(c)lix(e!fg) (::) Ray(g)mún(gh)di(g) pá(fe)tri(f)a,(g) (::) (z)
(c4) <alt>28 · GB6253 · 11n</alt>et(hg) e(h)ris(g) vi(fg)ctor(f) (;1) mé(f)li(f)us(ef) (::)
(c4) <alt>29 · GB787 · 11n</alt>ut(f!hj) lo(ji)quá(gf)ris(f!gh) pro(f) (::)
(c4) <alt>30 · GB4678 · 11n</alt>ut(f) só(e)li(d)ta(e) cle(dc)mén(dewf)ti(d)a(d'_) (::) (z)
title:Random Gregobase Excerpts #8
%%
(c4) <alt>1 · GB6042 · 11n</alt>in(fe) hu(d)mi(efe)li(d)tá(e!fg)te(f) (::)
(c4) <alt>2 · GB2682 · 10n</alt>in(g_h) sán(g!hwi!jv_IH)gui(i')ne(h) (::)
(c4) <alt>3 · GB6312 · 12n</alt>O(d)le(dc)um(f) (::) ef(g)fú(f!gh)sum(h) (;3) no(ixih)men(g) (::) (z)
(c2) <alt>4 · GB2817 · 10n</alt>ga(f)ví(i')si(i) sunt(h') gáu(i)di(h)o(g') ma(h_)gno:(g.) (;) et(g) (::)
(c4) <alt>5 · GB6926 · 10n</alt>sub(d) pé(e)di(f)bus(gf) Hy(gh)a(h)cín(g)thi.(g) (::)
(c4) <alt>6 · GB8964 · 11n</alt>præ(f')cé(g)pit(h') am(g)pu(f)tá(gfg)ri(d.) (,) ca(f_)put(f_) (::) (z)
(c4) <alt>7 · GB4048 · 10n</alt>4. Sit(d!ewfd) sá(dc)lus(cd) Chrí(d.)sto(d.) (::)
(f3) <alt>8 · GB195 · 12n</alt>PRó(fffvEC//ef/gf)te(ef)ge,(f.) (::)
(c4) <alt>9 · GB3592 · 12n</alt>et(d) fru(d!fff)ctum(edevDCdc) (::) (z)
(c4) <alt>10 · GB3291 · 12n</alt>Gen(ji)tes(jk) red(i)ém(ji)ptae(h) pláu(ih)di(g)te.(h) (::)
(c4) <alt>11 · GB6127 · 10n</alt>ge(e)ni(f)t<sp>'ae</sp>(g)que(h) Pro(h)li,(g) (;) et(g) ti(g)bi(hi) (::)
(c4) <alt>12 · GB4157 · 12n</alt>et(g) quam(hgh) ju(fh)cún(jv_jv_)dum,(j_kJ__H.) (::) (z)
(f3) <alt>13 · GB607 · 11n</alt>Hu(fih)mi(hg)li(fg)á(gvFE)bam(e.) (::)
(c4) <alt>14 · GB2983 · 11n</alt>Et(e') in(f) u(g)num(g') Dó(g)mi(f)num(e.) Je(d)sum(e') Chri(g)stum,(h.) (::)
(c4) <alt>15 · GB8854 · 11n</alt>lá(f)te(e)bras(d') fo(e)vé(e.)res,(d.) (;) Di(dh!iv)gna(h') te(h) (::) (z)
(f3) <alt>16 · GB2501 · 12n</alt>Sis(e) pr<sp>'æ</sp>(f)sul(gh) et(g) cu(fe)stó(fg)di(gf)a.(f.) (::)
(c3) <alt>17 · GB3189 · 12n</alt>Gló(e.f!gwhhi)ri(h)a(h) Pá(hg)tri,(hi) (::)
(c3) <alt>18 · GB5533 · 12n</alt>Ma(ei)gnum(i) (::) my(i)sté(i)ri(h)um(hg) (;3) de(i)cla(i)rá(j)tur(h) (::) (z)
(c3) <alt>19 · GB7187 · 10n</alt>me(df)mó(gxhiHGF)ri(gh)a(h) (::)
(c4) <alt>20 · GB1844 · 11n</alt>pró(ef!gvgf)te(ed)ge(f) nos(efe) (::)
(c4) <alt>21 · GB1778 · 11n</alt>Dó(gjjk)mi(h)num(gf/ghhg) (::) (z)
(c4) <alt>22 · GB6033 · 10n</alt>pa(f!hj)rá(j)tum(ixjvIG) cor(gjjv) (::)
(c4) <alt>23 · GB615 · 11n</alt>spe(d)rán(fh)ti(g)um(hggf/ghg) (::)
(c3) <alt>24 · GB1816 · 11n</alt>POR(d)TAS(e) coe(f/hhf)li(e/gvFEf) (::) (z)
(c3) <alt>25 · GB1871 · 12n</alt>glo(g)ri(h)ó(ih)sa(i) Re(i)gí(ih)na(fh) mun(h)di,(h.) (::)
(c3) <alt>26 · GB916 · 12n</alt>Gló(ehg)ri(hi)a(i) Pa(i)tri.(i) (::) E(i) u(i!jwk) (::)
(c4) <alt>27 · GB704 · 10n</alt>et(f) pród(ixg!hwi)i(ih)it(g.) (,) li(g)gá(g)tis(f) (::) (z)
(c4) <alt>28 · GB3656 · 11n</alt>Per(e) sín(gh)gu(h)los(hg) di(h!iwj)es,(ih) (::)
(c4) <alt>29 · GB1553 · 10n</alt>Dó(g)mi(gf)ne,(ixf!gh/ihhg) (::)
(c4) <alt>30 · GB1022 · 12n</alt>VE(d)ní(ff)te(ghgh) fí(h_fg)li(g)i,(f.) (::) (z)
title:Random Gregobase Excerpts #9
%%
(c4) <alt>1 · GB2592 · 12n</alt>Dó(e_f)mi(g)ni(gf) tu(e.)i.(e.) <i>T. P.</i>(::) Al(g)le(gf)lú(e.)ia.(e.) (::)
(c4) <alt>2 · GB8539 · 11n</alt>il(g)lic(f) sit(ff) et(e') mi(f)ní(g)ster(fe) me(d.)us.(d.) (::)
(c4) <alt>3 · GB6790 · 10n</alt>quó(fg)mo(d)do(d) (;4) com(c)pu(e)tá(gh)ti(gf) (::) (z)
(c4) <alt>4 · GB6649 · 11n</alt>Dó(fg)mi(h)ne,(g) (::) non(h) est(gf) ex(e)al(f)tá(g)tum(e) (::)
(c3) <alt>5 · GB2279 · 11n</alt>re(f)us(ed) é(c_d)rit(ef) ju(f)dí(e')ci(e)o.(e.) (::)
(c4) <alt>6 · GB4952 · 11n</alt>spe(d)rán(f)tem(fe) in(dc~) te.(fg/hgh) (::) (z)
(c4) <alt>7 · GB3767 · 12n</alt>MI(d!ewf)RÁ(fg/hg)BI(ghg)LIS(gh~) (::)
(c4) <alt>8 · GB5528 · 10n</alt>Al(h)le(hg)lú(g>)ia,(f) (;1) al(d)le(fg)lú(g>)ia.(f) (::)
(c4) <alt>9 · GB3880 · 10n</alt>pul(cd)sán(fe!fwgfg)ti(gf) (::) (z)
(f3) <alt>10 · GB5451 · 11n</alt>ád(eg~)ju(g)va(fhGF) nos:(fg) (:) et(eg~) (::)
(f3) <alt>11 · GB759 · 12n</alt>qui(f) tól(fg)lis(f) pec(fe)cá(eg)ta(g) mún(ff)di:(e.) (::)
(c4) <alt>12 · GB4122 · 12n</alt>ne(fhg) stá(h')tu(g)as(fg) + il(g)lis(d!ewf_) hoc(g) (::) (z)
(c4) <alt>13 · GB5745 · 10n</alt>vos(gef//dgFE) (;) in(fge) (::)
(c4) <alt>14 · GB7920 · 11n</alt>fruc(d)ti(cd)fi(d)cá(d!efd)te:(d) (:) qua(c)si(d) (::)
(c4) <alt>15 · GB7598 · 11n</alt>Je(d)sum(f) mon(g)strant(h) ma(ixi)gi(h) Ma(ghg)gis.(f) (::) 5. Nos(d) (::) (z)
(c3) <alt>16 · GB3849 · 12n</alt>PRO(e)BA(ef)STI,(f) Dó(fdfe)mi(efe)ne,(e) (::)
(c4) <alt>17 · GB7127 · 10n</alt>(fhghggf) <sp>V/</sp>.(z0::c3) Ad(d)ju(d)va(f) (::)
(c4) <alt>18 · GB2152 · 10n</alt>A(gj)it(h) Dó(h)mi(g)nus(hj) De(ij)us(j.) (::) (z)
(c4) <alt>19 · GB9143 · 12n</alt>Mú(gi)li(i)er(i_h) ec(j)ce(hg) fí(hi)li(h)us(h) (::)
(c4) <alt>20 · GB3579 · 10n</alt>DI(f)XIT(h) Je(h/jjh!iwj)sus(gh) (::)
(c2) <alt>21 · GB395 · 11n</alt>con(c)fi(d)té(fgf)bi(dgf/gh)mur(g.) (::) (z)
(c4) <alt>22 · GB5330 · 12n</alt>tem(dv//c!df//ef//hvGE/fd)pli,(d) (::)
(c4) <alt>23 · GB8261 · 11n</alt>fac(f)ta(g) est(h) qua(h)si(h) ví(h)du(h)a(h) dó(ixi)mi(h)na(h) (::)
(c4) <alt>24 · GB3442 · 12n</alt>quam(d) plan(d)tá(ff)vit(f) déx(ef/ghg)te(f)ra(f) (::) (z)
(c4) <alt>25 · GB2457 · 10n</alt>JO(h')án(f)nes(fg) *() est(g'_) no(h)men(g) e(ji~)jus:(h.) (::)
(c4) <alt>26 · GB6289 · 10n</alt>Gló(dh)ri(gh)a(gvFE) (;1) Pa(d)tri,(fe) (::)
(f3) <alt>27 · GB2511 · 10n</alt>et(fe~) de(h) gén(ij)ti(i)bus(hh) (,) non(hi) (::) (z)
(c3) <alt>28 · GB7751 · 10n</alt>prop(f)ter(e) quod(f) lo(e)cú(f)tus(de) sum.(e) ()(::) ( ) E(h) u(h) (::)
(c4) <alt>29 · GB3362 · 11n</alt>su(fd)per(ef) mon(g)tes(ixg//hihhg) (::)
(c4) <alt>30 · GB999 · 12n</alt>vi(fd)rí(ef)li(g)ter,(ixg'/hihhg.) (;) et(h) (::) (z)
title:Random Gregobase Excerpts #10
%%
(c3) <alt>1 · GB1248 · 10n</alt>Gló(d)ri(f)a(h) Pa(h)tri.(h) (::) E(h) u(h) o(i) u(g) a(h) (::)
(c4) <alt>2 · GB515 · 10n</alt>pa(ce/gff)ter(fv.fff_c) (::)
(c4) <alt>3 · GB4140 · 11n</alt>Iu(f)bár(h')que(h) Sanc(g)ti(f) Spí(g')ri(g)tus(h'_) (,) In(g)fún(g')de(g) (::) (z)
(c4) <alt>4 · GB7184 · 11n</alt>E(h)runt(g) pri(h)mi(g) (::) no(f)vís(gh)si(fe)mi,(d) (;) et(f) (::)
(c4) <alt>5 · GB2431 · 10n</alt>su(h)per(gf) fa(h)mí(hj)li(j)am(i) su(g.)am.(g.) (::)
(c4) <alt>6 · GB3901 · 12n</alt>ád(h)ju(h)va(g)me,(g) Dó(h)mi(gf)ne(fgeed) (::) (z)
(c4) <alt>7 · GB6561 · 11n</alt>grá(f!ghg)ti(ed)as(efe) a(d)gens,(d) (::)
(c3) <alt>8 · GB3009 · 10n</alt>Qui(h) fa(h')ctus(f) es(h) pa(e)rén(f)ti(de)bus,(e.) (;) Cum(h) (::)
(c4) <alt>9 · GB2110 · 12n</alt>et(g) ha(hj)bi(j)tá(ji)vit(h) in(ji~) no(hg)bis,(g.) (::) (z)
(c4) <alt>10 · GB6859 · 12n</alt>re(g)ple(g) tu(g)ó(h)rum(g) cor(h)da(j) fi(g)dé(h)li(g)um,(f) (:) et(f) (::)
(c4) <alt>11 · GB8492 · 10n</alt>qui(h!iwj)a(hg/hiHG'go) (::)
(c4) <alt>12 · GB2358 · 10n</alt>dór(j)mi(j)am(ig~) et(i_j) re(h)qui(h)és(g.)cam.(g.) (::) (z)
(c4) <alt>13 · GB1982 · 10n</alt>et(gg) o(e)mnes(g) pó(h)pu(g)li,(f') tri(g)bus(f') et(f) (::)
(c4) <alt>14 · GB179 · 11n</alt>(cd!fv.ghG'FE.) <sp>V/</sp>.(::) O(c!de) (::)
(c4) <alt>15 · GB5627 · 12n</alt>re(f)gnum(e) De(g)i,(h) *(::) Al(h)le(hg)lú(g>)ia.(f) (::) Gló(f)ri(f)a.(e) (::) (z)
(c4) <alt>16 · GB3333 · 12n</alt>su(g)per(g') chó(h)ros(gf) An(g)ge(h)ló(jk)rum(jkj.) (::)
(c4) <alt>17 · GB2808 · 10n</alt>ser(e)ve(f) bo(g)ne(f) et(gh) fi(gf)dé(e)lis,(e.) (::)
(c4) <alt>18 · GB6619 · 11n</alt>e(fgf)jus.(fe//gfgffe) (::) (z)
(c4) <alt>19 · GB4612 · 12n</alt>Ve<alt>Omnes:</alt>(hvGF)ní(h!iwj)te,(gv.ff/ded.) (::)
(c4) <alt>20 · GB822 · 12n</alt>al(gj~)le(jv.jjj_h)lú(hjI'H)ia,(h.) (::)
(c4) <alt>21 · GB437 · 10n</alt>Pa(g)rá(g!hwi'!jv)sti(j) in(j) con(j)spé(j)ctu(j) (::) (z)
(c2) <alt>22 · GB1462 · 11n</alt>al(dfe)le(fv//dec)lú(cdc)ia,(c) (::)
(c3) <alt>23 · GB4555 · 11n</alt>et(gh) quæ(ig) ven(i>)tú(h)ra(g) sunt(efED) (::)
(c4) <alt>24 · GB8628 · 10n</alt>et(c) re(d')splen(f)du(fg)é(g)runt(g_hG'F) (::) (z)
(c4) <alt>25 · GB3232 · 10n</alt>SAL(fvffffc~)VOS(d!ewfe) (::)
(c4) <alt>26 · GB4066 · 10n</alt>E(ef!gv_FE)go,(d_c) tá(df)li(f') (::)
(c4) <alt>27 · GB3312 · 11n</alt>di(gf)co(gh) e(h)go(h) ó(h)pe(h)ra(hjh) (::) (z)
(c4) <alt>28 · GB2896 · 10n</alt>PO(c)su(d)é(ixdh'!iv)runt(h'_) *(,) su(h)per(h') ca(h)put(h') (::)
(f3) <alt>29 · GB3321 · 12n</alt>Je(f)su,(f') nó(f)stra(e) re(f)féc(h)ti(g)o,(f_') (,) Pá(h)nis,(i') pó(i)tus(i) (::)
(f3) <alt>30 · GB4179 · 12n</alt>HO(ehhvGF'g)di(ef)e(f.) *(,)sanc(fg~)tus(f') (::) (z)
title:Random Gregobase Excerpts #11
name:random_excerpts11
%%
(c3) <alt>1 · GB8187 · 12n</alt>et(e) ál(g')te(e)ra(f') Ma(g)rí(f.)a,(f.) (,) vi(f)dé(g_h)re(f_h) (::)
(c4) <alt>2 · GB713 · 12n</alt>BE(d)ne(ff)dí(fhgh)cta(h) es(gg) tu,(gf..) (::) (z)
(c4) <alt>3 · GB7916 · 10n</alt>(hvGFEfd/gf)mis(e.)sa(d) (::)
(f3) <alt>4 · GB4162 · 10n</alt>BE(f)ne(fe)di(ffvEC)cá(ef)mus(f.) (::) (z)
(c4) <alt>5 · GB533 · 12n</alt>dis(d)sí(f)mu(fg)lans(ghg) pec(gd)cá(fg)ta(h) (::)
(c3) <alt>6 · GB8031 · 12n</alt>Dó(g)mi(g)no,(g) De(e)o(f) no(g)stro.(f) (::) <sp>R/</sp>. Di(h)gnum(g) et(f) ju(g)stum(f) (::) (z)
(c4) <alt>7 · GB8503 · 11n</alt>sed(c) per(d) re(f)ve(f)la(f)ti(f)ó(fh)nem(g) Je(g)su(h) (::)
(c4) <alt>8 · GB4204 · 10n</alt>Lí(f)be(gh)ra.(h!iwj) (::)De(h) o(gh)re.(h) (::) (z)
(c3) <alt>9 · GB5572 · 10n</alt>Ser(df)ví(h)te(hg) (::) Dó(h)mi(f)no(fd) in(f) (::)
(c4) <alt>10 · GB239 · 10n</alt>in(g)clí(gh/ji)na(jijh) ad(h) (::) (z)
(c4) <alt>11 · GB3602 · 10n</alt>Dó(dhhg)mi(ed/ffd)ne,(d) (::)
(c4) <alt>12 · GB1781 · 12n</alt>mi(hf)se(g)ri(h)cór(hjj)di(gf)am(hfh) (::) (z)
title:Random Gregobase Excerpts #12
name:random_excerpts12
%%
(f3) <alt>1 · GB4380 · 10n</alt>PA(f)rá(f)tus(i) es(h)to,(g) Is(e)ra(ef)el,(f) *(,) in(g) (::)
(c3) <alt>2 · GB1498 · 11n</alt>ad(iv//hig) sal(fe~)ván(ghg)das(fg) (::) (z)
(c4) <alt>3 · GB5825 · 12n</alt>quem(h) e(hghGF//ghg//hi)go(h) (::)
(c4) <alt>4 · GB9032 · 10n</alt>4. Cho(ghggo)rus(f) sa(hj)crá(ji)tus(g) (::) (z)
(c3) <alt>5 · GB3472 · 11n</alt>lu(d!ewfef/hvGFge)cis(e) (::)
(c4) <alt>6 · GB5112 · 11n</alt>cum(i) vi(j)dís(kl)set(k) An(l)ge(k)lum(j) cæ(h)dén(j)tem(i) (::) (z)
(f3) <alt>7 · GB556 · 10n</alt>et(e) co(fg~)gnó(g)scunt(f) me(e!fggf) (::)
(c4) <alt>8 · GB4120 · 11n</alt>Et(f) in(f)clí(f)na(f) au(f)rem(e') tu(g)am.(h.) *(;)Al(h)le(h_g) (::) (z)
(c4) <alt>9 · GB614 · 11n</alt>EC(ixdh!ivHG/fhg/hi)ce(h.) (::)
(c4) <alt>10 · GB533 · 11n</alt>MI(f)se(ghg')ré(h)ris(g') *() óm(f!g'h)ni(h)um,(h) (::) (z)
(c4) <alt>11 · GB2283 · 11n</alt>né(f')mi(h)ni(g') dix(h)é(gf)ri(g)tis,(f.) (;) do(fd)nec(f') (::)
(c4) <alt>12 · GB4230 · 10n</alt>et(i) per(i)ve(j')né(k)runt(j') ad(i) præ(j')mi(i)a(hg) (::) (z)
title:Random Gregobase Excerpts #13
name:random_excerpts13
%%
(c3) <alt>1 · GB761 · 11n</alt>AL(e)le(e)lú(e!f'h fi//gi~)ia.(ii) (::)
(c4) <alt>2 · GB6510 · 10n</alt>oc(h)cí(ixi)dit(h) mul(g)tos(g) pú(f)e(gh)ros(g) (;) in(g) (::) (z)
(c4) <alt>3 · GB1366 · 12n</alt>Cæ(hg)li(gh) e(h)nár(h)rant(h) gló(hg)ri(gi)am(i) (::)
(c4) <alt>4 · GB1370 · 11n</alt>ór(hhgh)pha(f)no(fg!hvhg_') (,) tu(g) (::) (z)
(c4) <alt>5 · GB2084 · 11n</alt>a(fe)ni(fg)má(fe)vit(dc) au(de)ræ(e.) (::)
(c3) <alt>6 · GB139 · 12n</alt>JO(eh)SEPH(ggh.) *(,) fi(h)li(hf) Da(hih)vid,(i.) (::) (z)
(f3) <alt>7 · GB660 · 12n</alt>Sur(gh)ge,(f) et(f) ác(fg)ci(f)pe(f) pú(fg)e(f)rum,(f.) (::)
(c4) <alt>8 · GB3457 · 12n</alt>(eg/hg/efDC/dde) <sp>V/</sp>.(::) Post(f) (::) (z)
(c4) <alt>9 · GB3733 · 12n</alt>Di(h)lé(hg)xit(ge//fgf/gddc) (::)
(c3) <alt>10 · GB2461 · 12n</alt>et(f') re(i)gná(g')bit(h) su(f')per(e) nos(f_e) (,) Sal(d_e)vá(f')tor(h) (::) (z)
(c4) <alt>11 · GB1863 · 12n</alt>et(g) no(h')lí(j)te(i') fá(g)ce(hig)re(h_g) (,) do(e')mum(f) (::)
(c4) <alt>12 · GB1193 · 11n</alt>qui(gh)a(h) e(hjI'G/hvGF)go(f.) (::) (z)
title:Random Gregobase Excerpts #14
name:random_excerpts14
%%
(c4) <alt>1 · GB8588 · 11n</alt>et(j) quod(jh~)cúm(j_k)que(k) sól(kl)ve(ji)ris(g') (::)
(c4) <alt>2 · GB5795 · 10n</alt>Va(f)lé(hg)ri(fg)us(g) (;3) or(g)di(g)ná(h)tor(g) (::) (z)
(c2) <alt>3 · GB5118 · 11n</alt>fí(ef)li(g)is(fe) tu(c)is,(c) (;) et(b) á(d)di(f)pe(e) (::)
(c3) <alt>4 · GB3870 · 10n</alt>IN(e) vir(ef~)tú(f)te(f) tu(fdfe)a(e) (::) (z)
(c4) <alt>5 · GB2490 · 10n</alt>EX(d) ú(d)te(d)ro(dc) se(f)ne(g)ctú(f_h)tis(h.) (::)
(f3) <alt>6 · GB8242 · 11n</alt>O(ehhg) Vir(h')go(f) vír(gf~)gi(ef)num,(f.) (::) (z)
(c4) <alt>7 · GB783 · 10n</alt>et(f) Dó(e!f'h)mi(hjg)nus(g_fg) (::)
(c4) <alt>8 · GB4441 · 12n</alt>DI(g)cit(f) Dó(d)mi(d)nus:(fd!ewf!/g!/h!/hog) (::) (z)
(c3) <alt>9 · GB2233 · 11n</alt>be(e_g!hi)á(i)ta(e_f) Trí(h)ni(h)tas,(g_h) (::)
(c3) <alt>10 · GB931 · 11n</alt>ca(d)pti(gxeg)vi(g)tá(g)tem(fe~) ple(gxghg)bis(f) (::) (z)
(c4) <alt>11 · GB1934 · 10n</alt>ter(g)ram(h) pal(j_k)mo(ih) con(ji)clú(h.)dis:(h.) (::)
(f3) <alt>12 · GB5601 · 11n</alt>di(h)mí(kxjkj)te(i)re(hg) pec(f)cá(hg)ta(h) (::) (z)
title:Random Gregobase Excerpts #15
name:random_excerpts15
%%
(c3) <alt>1 · GB8585 · 12n</alt>æ(g)di(ghg)fi(f')cá(h)bo(g'_) (,) Ec(f)clé(e_f)si(g)am(f>) (::)
(c4) <alt>2 · GB2026 · 11n</alt>nó(h)xi(h')a(i) súb(g')tra(f)has:(gh..) (:) Des(gf) pa(g')cem(h) (::) (z)
(c2) <alt>3 · GB1732 · 10n</alt>fir(g)má(gi/kj)bi(i)tur(iii) in(i) (::)
(c3) <alt>4 · GB3504 · 12n</alt>Vir(e!fg)go(fh//giHGFge) (::) (z)
(c4) <alt>5 · GB2321 · 10n</alt>qui(cd)cúm(fe)que(fg) cé(gh)le(g)brant(g'_) (::)
(c4) <alt>6 · GB5381 · 10n</alt>ju(g)sti(g) an(g)te(gh) Dó(h)mi(gf)num,(f) (;) et(f) (::) (z)
(c3) <alt>7 · GB4662 · 11n</alt>lux(de) ma(e)gna,(e) al(f)le(ef)lú(d)ja.(d ) (::) E(h) u(h) (::)
(c4) <alt>8 · GB7024 · 10n</alt>se(ixih)dem(g) Da(ef)vid,(g) pa(g)tris(d) e(d)jus:(c) (::) (z)
(c4) <alt>9 · GB4502 · 11n</alt>Iam(h) pas(j)cha(hg) no(ji)strum(jk) Chri(j)stus(i) est,(h) (::)
(f3) <alt>10 · GB986 · 12n</alt>cla(e)má(e.f!gwh_f)vi(h_g) ad(hghf) (::) (z)
(c3) <alt>11 · GB608 · 10n</alt>ma(j)nus(i) im(ig~)pó(hihh)nent,(hg..) (::)
(c4) <alt>12 · GB2831 · 11n</alt>SAn(gf/gfd~)cti(e) et(f) ju(g_h)sti(g'_) *(,) in(g) (::) (z)
title:Random Gregobase Excerpts #16
name:random_excerpts16
%%
(c4) <alt>1 · GB8635 · 12n</alt>pro(d!ewf/g_f)pter(fd~) me,(fgf.) (;) in(fd~) (::) (z)
(c3) <alt>2 · GB1444 · 11n</alt>qui(g) ma(h)lí(j)gna(i) lo(g)quún(h)tur(f!gw!hvGE) (::) (z)
(c4) <alt>3 · GB4957 · 10n</alt>al(i)le(h)lú(g)ia,(h) al(ef)le(gf)lú(e)ia.(e) (::) (z)
(f3) <alt>4 · GB5605 · 11n</alt>et(hjij) pec(i)cá(hi)ta(h) no(hi)stra(h) (::) (z)
title:Random Gregobase Excerpts #17
name:random_excerpts17
%%
(c4) <alt>1 · GB3820 · 10n</alt>ter(c)rá(d)rum,(e) Pe(ef!gvFEe)tre,(c) (::) (z)
(c3) <alt>2 · GB2670 · 12n</alt>EX(e)ór(g!hi~)tum(i) est(i'_) *(,) in(j) té(l)ne(i)bris(i!j!i'_) (::) (z)
(f3) <alt>3 · GB639 · 12n</alt>ó(fg)mni(ed)a(c) mi(e)ra(f)bí(hh)li(fe)a(e) (::) (z)
(c3) <alt>4 · GB34 · 10n</alt>(ijijHFgwhf.) <sp>V/</sp>.(::) Ad(f) (::) (z)
title:Random Gregobase Excerpts #18
name:random_excerpts18
%%
(f3) <alt>1 · GB3167 · 11n</alt>Qui(e) ven(fh)tú(h)rus(h) es(h) in(hf) mún(gh)dum.(i.) (::) (z)
(c4) <alt>2 · GB6084 · 11n</alt>et(g) col(f!gh)les(h) (;3) can(hg~)tá(h)bunt(g) co(e)ram(f) (::) (z)
(c2) <alt>3 · GB1695 · 11n</alt>in(fg) his(gj) quae(j) di(jii)cta(g) sunt(gj~) (::) (z)
(f3) <alt>4 · GB401 · 10n</alt>po(kxh.i!jwk_j)nat(ijiih) (::) (z)
title:Random Gregobase Excerpts #19
name:random_excerpts19
%%
(c4) <alt>1 · GB3592 · 12n</alt>et(d) fru(d!fff)ctum(edevDCdc) (::) (z)
(c4) <alt>2 · GB1807 · 10n</alt>SI(egf)CUT(f) ó(e!fwg!hv)cu(g)li(g) (::) (z)
(c4) <alt>3 · GB2140 · 12n</alt>et(f') vir(g)tú(h)tum(g') ó(h)pi(gf)fex,(f.) (;) pa(h)stor(g') bo(h)ne(g') (::) (z)
(c4) <alt>4 · GB5709 · 12n</alt>o(g)mnis(g) im(h)ber(j) et(i) ros(h) Dó(j)mi(g)no,(g) (;) qui(g) Ro(g)sam(g) (::) (z)
title:Random Gregobase Excerpts #20
name:random_excerpts20
%%
(f3) <alt>1 · GB3838 · 10n</alt>E(h) u(i) o(hf) u(h) a(ge) e(fgf) (::) (z)
(c4) <alt>2 · GB6709 · 10n</alt>Al(h)le(hg)lú(g>)ia...(f) (::) Gló(f)ri(f)a.(e) (::) No(f)tum.(f) (::) (z)
(f3) <alt>3 · GB4618 · 10n</alt>4. Ie(f)sum(e) ci(f)á(h)mus(i) vó(h)ci(g)bus(f) (,) flen(i)tes,(i) (::) (z)
(c4) <alt>4 · GB6735 · 12n</alt>Gló(hg)ri(gh)a(h) (::) E(h) u(h) o(hf) u(gh) a(g) (::) (z)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment