Symfony Exception

ErrorException ViewException

HTTP 500 Internal Server Error

Undefined index: (View: /var/www/html/resources/views/breviarium/office.blade.php)

Exceptions 2

Illuminate\View\ ViewException

  1.             <?php break; ?>
  2.         <?php case ('ConcludingPrayer'): ?>
  3.             <?php echo $__env->make'breviarium/office/prayer', [ 
  4.                     'Type' => 'concluding',
  5.                     'Prayer' => $Texts['prayers'][$Vars['prayer']],
  6.                     'PrayerHTML' => $HTML['prayers'][$Vars['prayer']]
  7.                 ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  8.             <?php break; ?>
  9.         <?php case ('GospelCanticle'): ?>
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         }
  2.         // Once we have the path to the compiled file, we will evaluate the paths with
  3.         // typical PHP just like any other templates. We also keep a stack of views
  4.         // which have been rendered for right exception messages to be generated.
  5.         $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         array_pop($this->lastCompiled);
  7.         return $results;
  8.     }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each sections get flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         // If this content implements the "Renderable" interface then we will call the
  2.         // render method on the object so we will avoid any "__toString" exceptions
  3.         // that might be thrown and have their errors obscured by PHP's handling.
  4.         elseif ($content instanceof Renderable) {
  5.             $content $content->render();
  6.         }
  7.         parent::setContent($content);
  8.         return $this;
  1.      */
  2.     public function __construct($content ''$status 200, array $headers = [])
  3.     {
  4.         $this->headers = new ResponseHeaderBag($headers);
  5.         $this->setContent($content);
  6.         $this->setStatusCode($status);
  7.         $this->setProtocolVersion('1.0');
  8.     }
  9.     /**
  1.                     $response instanceof JsonSerializable ||
  2.                     $response instanceof \stdClass ||
  3.                     is_array($response))) {
  4.             $response = new JsonResponse($response);
  5.         } elseif (! $response instanceof SymfonyResponse) {
  6.             $response = new Response($response200, ['Content-Type' => 'text/html']);
  7.         }
  8.         if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) {
  9.             $response->setNotModified();
  10.         }
  1.      * @param  mixed  $response
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function prepareResponse($request$response)
  5.     {
  6.         return static::toResponse($request$response);
  7.     }
  8.     /**
  9.      * Static version of prepareResponse.
  10.      *
  1.         return (new Pipeline($this->container))
  2.                         ->send($request)
  3.                         ->through($middleware)
  4.                         ->then(function ($request) use ($route) {
  5.                             return $this->prepareResponse(
  6.                                 $request$route->run()
  7.                             );
  8.                         });
  9.     }
  10.     /**
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.         $viewPath resource_path('views/' $currentLocale);
  2.         
  3.         // Add current locale-code to view-paths
  4.         View::addLocation($viewPath);
  5.         return $next($request);
  6.     }
  7. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         $routeName $app['laravellocalization']->getRouteNameFromAPath($request->getUri());
  2.         $app['laravellocalization']->setRouteName($routeName);
  3.         return $next($request);
  4.     }
  5. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             }
  2.             throw $exception;
  3.         }
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             $this->isReading($request) ||
  2.             $this->runningUnitTests() ||
  3.             $this->inExceptArray($request) ||
  4.             $this->tokensMatch($request)
  5.         ) {
  6.             return tap($next($request), function ($response) use ($request) {
  7.                 if ($this->shouldAddXsrfTokenCookie()) {
  8.                     $this->addCookieToResponse($request$response);
  9.                 }
  10.             });
  11.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         // Putting the errors in the view for every view allows the developer to just
  2.         // assume that some errors are always available, which is convenient since
  3.         // they don't have to continually run checks for the presence of errors.
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             $this->startSession($request$session)
  2.         );
  3.         $this->collectGarbage($session);
  4.         $response $next($request);
  5.         $this->storeCurrentUrl($request$session);
  6.         $this->addCookieToResponse($response$session);
  1.         if ($this->manager->shouldBlock() ||
  2.             ($request->route() instanceof Route && $request->route()->locksFor())) {
  3.             return $this->handleRequestWhileBlocking($request$session$next);
  4.         }
  5.         return $this->handleStatefulRequest($request$session$next);
  6.     }
  7.     /**
  8.      * Handle the given request within session state.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @param  \Closure  $next
  2.      * @return mixed
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         $response $next($request);
  7.         foreach ($this->cookies->getQueuedCookies() as $cookie) {
  8.             $response->headers->setCookie($cookie);
  9.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @param  \Closure  $next
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         return $this->encrypt($next($this->decrypt($request)));
  7.     }
  8.     /**
  9.      * Decrypt the cookies on the request.
  10.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.                         ->through($middleware)
  2.                         ->then(function ($request) use ($route) {
  3.                             return $this->prepareResponse(
  4.                                 $request$route->run()
  5.                             );
  6.                         });
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  10.      *
  1.         });
  2.         $this->events->dispatch(new RouteMatched($route$request));
  3.         return $this->prepareResponse($request,
  4.             $this->runRouteWithinStack($route$request)
  5.         );
  6.     }
  7.     /**
  8.      * Run the given route within a Stack "onion" instance.
  1.      * @param  \Illuminate\Http\Request  $request
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function dispatchToRoute(Request $request)
  5.     {
  6.         return $this->runRoute($request$this->findRoute($request));
  7.     }
  8.     /**
  9.      * Find the route matching a given request.
  10.      *
  1.      */
  2.     public function dispatch(Request $request)
  3.     {
  4.         $this->currentRequest $request;
  5.         return $this->dispatchToRoute($request);
  6.     }
  7.     /**
  8.      * Dispatch the request to a route and return the response.
  9.      *
  1.     protected function dispatchToRouter()
  2.     {
  3.         return function ($request) {
  4.             $this->app->instance('request'$request);
  5.             return $this->router->dispatch($request);
  6.         };
  7.     }
  8.     /**
  9.      * Call the terminate method on any terminable middleware.
in /var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> Illuminate\Foundation\Http\{closure} (line 128)
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         if ($max && $request->server('CONTENT_LENGTH') > $max) {
  2.             throw new PostTooLargeException;
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine the server 'post_max_size' as bytes.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.                 null,
  2.                 $this->getHeaders($data)
  3.             );
  4.         }
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Determine if the incoming request has a maintenance mode bypass cookie.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
in /var/www/html/vendor/fideloper/proxy/src/TrustProxies.php -> Illuminate\Pipeline\{closure} (line 57)
  1.     public function handle(Request $requestClosure $next)
  2.     {
  3.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
  4.         $this->setTrustedProxyIpAddresses($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
in /var/www/html/vendor/fruitcake/laravel-cors/src/HandleCors.php -> Illuminate\Pipeline\{closure} (line 38)
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         // Check if we're dealing with CORS and if we should handle it
  5.         if (! $this->shouldRun($request)) {
  6.             return $next($request);
  7.         }
  8.         // For Preflight, return the Preflight response
  9.         if ($this->cors->isPreflightRequest($request)) {
  10.             $response $this->cors->handlePreflightRequest($request);
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
Kernel->handle(object(Request)) in /var/www/html/public/index.php (line 55)
  1. */
  2. $kernel $app->make(Illuminate\Contracts\Http\Kernel::class);
  3. $response $kernel->handle(
  4.     $request Illuminate\Http\Request::capture()
  5. );
  6. $response->send();
  7. $kernel->terminate($request$response);

ErrorException

Undefined index:

  1.             <?php break; ?>
  2.         <?php case ('ConcludingPrayer'): ?>
  3.             <?php echo $__env->make'breviarium/office/prayer', [ 
  4.                     'Type' => 'concluding',
  5.                     'Prayer' => $Texts['prayers'][$Vars['prayer']],
  6.                     'PrayerHTML' => $HTML['prayers'][$Vars['prayer']]
  7.                 ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  8.             <?php break; ?>
  9.         <?php case ('GospelCanticle'): ?>
HandleExceptions->handleError(8, 'Undefined index: ', '/var/www/html/storage/framework/views/b3dc6f3fe1a3331512a831eb5bfd3005139093d4.php', 143, array('__path' => '/var/www/html/storage/framework/views/b3dc6f3fe1a3331512a831eb5bfd3005139093d4.php', '__data' => array('__env' => object(Factory), 'app' => object(Application), 'Domain' => 'breviarium', 'errors' => object(ViewErrorBag), 'DateLong' => 'Sunday 18 June', 'Date' => array('Day' => '18', 'DayOfWeek' => 'Sunday', 'Month' => 'June', 'Year' => '2023', 'Season' => null, 'Week' => null, 'String' => '2023-06-18'), 'Year' => '2023', 'Liturgical' => array('calendarDate' => '2023-06-18', 'breviaryDate' => '2023-06-18', 'colors' => array('vigils' => 'Green', 'lauds' => 'Green', 'terce' => 'Green', 'sext' => 'Green', 'none' => 'Green', 'vespers' => 'Green', 'compline' => 'Green'), 'dayColor' => 'Green', 'dayOfWeek' => 0, 'dayType' => 'sunday', 'invocation' => array('antiphon' => 'invitatorium-day-sunday', 'psalm' => 95), 'marianEmphasis' => null, 'octave' => null, 'proper' => array('saints' => array(), 'optional' => array(), 'season' => 'ordinary-week-11-day-0'), 'psalterWeek' => 3, 'season' => 'ordinary', 'seasonWeek' => 11, 'startEarly' => array('proper' => null, 'abbreviation' => null), 'sundayCycle' => 'A', 'TitleSeason' => null, 'TitleProper' => null, 'Title' => '<span class="DayOfWeek">Sunday</span> the 11th Week in <span class="Season">Ordinary Time</span>', 'ProperOfSaints' => array()), 'Office' => array('Calendar' => array('calendarDate' => '2023-06-18', 'breviaryDate' => '2023-06-18', 'colors' => array('vigils' => 'Green', 'lauds' => 'Green', 'terce' => 'Green', 'sext' => 'Green', 'none' => 'Green', 'vespers' => 'Green', 'compline' => 'Green'), 'dayColor' => 'Green', 'dayOfWeek' => 0, 'dayType' => 'sunday', 'invocation' => array('antiphon' => 'invitatorium-day-sunday', 'psalm' => 95), 'marianEmphasis' => null, 'octave' => null, 'proper' => array('saints' => array(), 'optional' => array(), 'season' => 'ordinary-week-11-day-0'), 'psalterWeek' => 3, 'season' => 'ordinary', 'seasonWeek' => 11, 'startEarly' => array('proper' => null, 'abbreviation' => null), 'sundayCycle' => 'A', 'TitleSeason' => null, 'TitleProper' => null, 'Title' => '<span class="DayOfWeek">Sunday</span> the 11th Week in <span class="Season">Ordinary Time</span>', 'ProperOfSaints' => array()), 'Scheme' => array('Complete' => true, 'Hymn' => null, 'Psalmody-1' => array('Passage' => '110', 'Antiphon' => 'sunday-vespers-2-anti-1', 'Prayer' => null), 'Psalmody-2' => array('Passage' => '111', 'Antiphon' => 'week-3-sunday-vespers-2-anti-2', 'Prayer' => null), 'Canticle' => array('Passage' => 'salus-et-gloria', 'Antiphon' => 'alleluia-x-3'), 'Reading' => '1 Peter 1:3-5', 'Responsitory' => 'week-3-sunday-vespers-2', 'GospelCanticle' => array('Antiphon' => null), 'Prayers' => array('Petitions' => 'petitions-week-3-sunday-vespers-2', 'Concluding' => null), 'Blessing' => 'vespers'), 'Proper-Seasons' => array('Abbreviation' => 'ordinary-week-11-day-0', 'IntroductoryVerse' => null, 'Hymn' => null, 'Psalmody-1' => array('Passage' => null, 'Antiphon' => null, 'Prayer' => null), 'Psalmody-2' => array('Passage' => null, 'Antiphon' => null, 'Prayer' => null), 'Canticle' => array('Passage' => null, 'Antiphon' => null), 'Reading' => null, 'Responsitory' => null, 'GospelCanticle' => array('Antiphon' => array('A' => null, 'B' => null, 'C' => null)), 'Prayers' => array('Petitions' => null, 'Concluding' => null), 'Blessing' => null), 'Proper-Saints' => array(), 'Structure' => array('Invitatory' => array('other' => 'invitatorium-primis', 'psalm' => 95, 'antiphon' => 'invitatorium-day-sunday'), 'Introductory' => array('other' => 'invitatorium-postmodum'), 'Hymn' => array('Hymn' => null, 'hymn' => null), 'Psalmody-1' => array('psalm' => '110', 'antiphon' => 'sunday-vespers-2-anti-1', 'prayer' => null), 'Psalmody-2' => array('psalm' => '111', 'antiphon' => 'week-3-sunday-vespers-2-anti-2', 'prayer' => null), 'Canticle' => array('canticle' => 'salus-et-gloria', 'antiphon' => 'alleluia-x-3'), 'Reading' => array('reading' => '1 Peter 1:3-5'), 'Silence' => array('other' => null), 'ReadingResponse' => array('response' => 'week-3-sunday-vespers-2'), 'GospelCanticle' => array('canticle' => 'magnificat', 'antiphon' => null), 'Petitions' => array('prayer' => 'petitions-week-3-sunday-vespers-2'), 'LordsPrayer' => array('prayer' => 'pater-noster'), 'ConcludingPrayer' => array('prayer' => null), 'Blessing' => array('blessing' => 'vespers')), 'TextAbbreviations' => array('antiphons' => array('invitatorium-day-sunday', 'sunday-vespers-2-anti-1', 'week-3-sunday-vespers-2-anti-2', 'alleluia-x-3'), 'bible' => array(), 'blessings' => array('vespers'), 'canticles' => array('salus-et-gloria', 'magnificat'), 'hymns' => array(), 'other' => array('gloria', 'invitatorium-primis', 'invitatorium-postmodum'), 'prayers' => array('petitions-week-3-sunday-vespers-2', 'pater-noster'), 'psalms' => array('95', '110', '111'), 'readings' => array('1 Peter 1:3-5'), 'responses' => array('week-3-sunday-vespers-2')), 'General' => false, 'Office' => 'vespers', 'OfficeKey' => 'vespers', 'OfficeSVG' => '/assets/offices/office-vespers.svg'), 'Texts' => array('antiphons' => array('invitatorium-day-sunday' => array('TextAbbreviation' => 'invitatorium-day-sunday', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Come, together we\'ll exault the Lord.', 'Extra' => array('BreviaryInstructions' => 'Invitatory antiphon for Sundays in ordinary time. [Not Repeated inside the Psalm]', 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-12-05' => array('Peer-Review'), '2021-12-04' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-12-04 - Paul Prins: Added this antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Come, together we\'ll exault the Lord.</p>'), 'ReferenceParsed' => array('Chapter' => 'invitatorium-day-sunday', 'Verses' => null)), 'sunday-vespers-2-anti-1' => array('TextAbbreviation' => 'week-3-sunday-vespers-2-anti-1', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'The LORD says to my master: "Sit at My right hand"', 'Extra' => array('Reference' => array('Psalm 110'), 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-05-25' => array('Peer-Review'), '2021-05-24' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-05-24 - Paul Prins: Added this antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>The <span class="type-small-caps">LORD</span> says to my master: "Sit at My right hand"</p>'), 'ReferenceParsed' => array('Chapter' => 'sunday-vespers-2-anti-1', 'Verses' => null)), 'week-3-sunday-vespers-2-anti-2' => array('TextAbbreviation' => 'week-3-sunday-vespers-2-anti-2', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'All his commandments [*] are faithful, established for ever and ever!', 'Extra' => array('Reference' => array('Psalm 119:86'), 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-10-01' => array('Peer-Review'), '2021-09-30' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-09-30 - Paul Prins: Added this Antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>All his commandments <span class="symbol-star"> *</span> are faithful, established for ever and ever!</p>'), 'ReferenceParsed' => array('Chapter' => 'week-3-sunday-vespers-2-anti-2', 'Verses' => null)), 'alleluia-x-3' => array('TextAbbreviation' => 'alleluia-x-3', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Alleluia, Alleluia, Alleluia.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-01-01' => array('Verified', 'Guidelines', 'Peer-Review', 'Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-11' => 'Constance McIntosh Smith', '2023-12-09' => 'Sheila Whittenberg', '2023-10-19' => 'Jordan Prins'))), 'Changes' => array('2021-01-01 - Paul Prins: First translation of this Antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Alleluia, Alleluia, Alleluia.</p>'), 'ReferenceParsed' => array('Chapter' => 'alleluia-x-3', 'Verses' => null))), 'blessings' => array('vespers' => array('TextAbbreviation' => 'vespers', 'SourceAbbreviation' => 'breviary-blessings', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'May the Lord bless us, keep us from all evil, and bring us to everlasting life. *Amen*', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-03-22' => array('Peer-Review'), '2021-03-21' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-03-21 - Paul Prins: First translation of this blessing.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-blessings', 'Title' => array('default' => 'Breviary Blessings', 'UMB-EN' => 'Blessings from the Breviary', 'BMU-FR' => 'Bénédictions du Bréviaire', 'eng' => 'Blessings', 'fra' => 'Bénédictions'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the blessings used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>May the Lord bless us,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>keep us from all evil,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and bring us to everlasting life.<br /><em>Amen</em></p>'), 'ReferenceParsed' => array('Chapter' => 'vespers', 'Verses' => null))), 'canticles' => array('salus-et-gloria' => array('TextAbbreviation' => 'salus-et-gloria', 'SourceAbbreviation' => 'breviary-canticles', 'Title' => 'Salvation, Glory, and Power', 'Description' => 'From Revelation 19:1-2, 5-7', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH', 'SBLGNT'), 'People' => array('Paul Prins')), 'Verses' => array('Alleluia Salvation and glory and power belong to our God,[*] whose judgments are true and just. Alleluia ', 'Alleluia Praise our God, all servants of the Lord,[*] you who fear him, both small and great. Alleluia ', 'Alleluia The Lord our God, the Almighty, reigns:[*] let us rejoice and exult and give glory and homage. Alleluia ', 'Alleluia The marriage of the Lamb has come[*] and His bride has made herself ready. Alleluia ', 'Alleluia Happy are those who are invited[*] to the wedding banquet of the Lamb. Alleluia'), 'Extra' => array('Reference' => array('Revelation 19:1-2, 5-7'), 'LiturgiaeHorarum-Index' => 22, 'LiturgiaeHorarum-Cantica' => 'NT', 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-31' => array('Verified', 'Guidelines'), '2020-03-30' => array('Peer-Review'), '2020-03-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-31' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-31 - Constance McIntosh Smith: Implement her editorial feedback.', '2020-03-29 - Paul Prins : Added this Canticle.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-canticles', 'Title' => array('default' => 'Breviary Canticles', 'UMB-EN' => 'Canticles from the Breviary', 'BMU-FR' => 'Cantiques du Bréviaire', 'eng' => 'Canticles', 'fra' => 'Cantiques'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the canticles used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Alleluia<br />Salvation and glory and power belong to our God,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>whose judgments are true and just.<br />Alleluia</p><p>Alleluia<br />Praise our God, all servants of the Lord,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>you who fear him, both small and great.<br />Alleluia</p><p>Alleluia<br />The Lord our God, the Almighty, reigns:<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>let us rejoice and exult and give glory and homage.<br />Alleluia</p><p>Alleluia<br />The marriage of the Lamb has come<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His bride has made herself ready.<br />Alleluia</p><p>Alleluia<br />Happy are those who are invited<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to the wedding banquet of the Lamb.<br />Alleluia</p>'), 'ReferenceParsed' => array('Chapter' => 'salus-et-gloria', 'Verses' => null)), 'magnificat' => array('TextAbbreviation' => 'magnificat', 'SourceAbbreviation' => 'breviary-canticles', 'Title' => 'My Soul Magnifies', 'Description' => 'From Luke 1:46-55', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH', 'SBLGNT'), 'People' => array('Paul Prins')), 'Verses' => array('My soul [+] magnifies the greatness of the Lord; [*] ', 'my spirit bursts, rejoicing in God my Savior. ', 'For He knew the humility of His servant. [*] From today all generations will call me blessed. ', 'The Almighty has done great things for me, [*] and holy is His name. ', 'He has mercy for those who fear Him, [*] from generation to generation. ', 'He has shown the strength of His arm, [*] and scattered the proud for the thoughts of their hearts. ', 'He has torn the mighty from their thrones, [*] and lifted up the lowly. ', 'He has filled the hungry with good things, [*] and sent the rich away empty. ', 'He has given help to His servant Israel,[*] and remembered His promise of mercy. ', 'The promise made to our ancestors,[*] to Abraham and His children forever.'), 'Extra' => array('Reference' => array('Luke 1:46-55'), 'LiturgiaeHorarum-Index' => 1, 'LiturgiaeHorarum-Cantica' => 'NT', 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-31' => array('Verified', 'Guidelines'), '2020-03-30' => array('Peer-Review'), '2020-03-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-31' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-31 - Constance McIntosh Smith: Implement her editorial feedback.', '2020-03-29 - Paul Prins : Added this Canticle.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-canticles', 'Title' => array('default' => 'Breviary Canticles', 'UMB-EN' => 'Canticles from the Breviary', 'BMU-FR' => 'Cantiques du Bréviaire', 'eng' => 'Canticles', 'fra' => 'Cantiques'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the canticles used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>My soul <span class="symbol-cross">&#10011;</span> magnifies the greatness of the Lord; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>my spirit bursts, rejoicing in God my Savior.<br />For He knew the humility of His servant. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>From today all generations will call me blessed.</p><p>The Almighty has done great things for me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and holy is His name.</p><p>He has mercy for those who fear Him, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>from generation to generation.<br />He has shown the strength of His arm, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and scattered the proud for the thoughts of their hearts.</p><p>He has torn the mighty from their thrones, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and lifted up the lowly.<br />He has filled the hungry with good things, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and sent the rich away empty.</p><p>He has given help to His servant Israel,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and remembered His promise of mercy.<br />The promise made to our ancestors,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to Abraham and His children forever.</p>'), 'ReferenceParsed' => array('Chapter' => 'magnificat', 'Verses' => null))), 'other' => array('gloria' => array('TextAbbreviation' => 'gloria', 'SourceAbbreviation' => 'breviary-other', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Glory to the Father, to the Son, and to the Holy Spirit, As it was in the beginning, is now, and will be forever. *Amen* Alleluia', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-20' => array('Verified', 'Guidelines'), '2020-03-30' => array('Peer-Review'), '2020-03-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-19' => 'Constance McIntosh Smith', '2024-01-11' => 'Constance McIntosh Smith', '2023-12-09' => 'Sheila Whittenberg', '2023-10-19' => 'Jordan Prins'))), 'Changes' => array('2024-01-19 - Constance McIntosh Smith: Grammatical corrections', '2022-05-01 - Paul Prins: Update language.', '2020-03-29 - Paul Prins: First translation.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-other', 'Title' => array('default' => 'Breviary Additional Texts', 'UMB-EN' => 'Additional Texts for the Breviary', 'BMU-FR' => 'Texts Supplémentaires du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This book contains all of the additional texts which are neither psalms, antiphons, canticles, responses, nor prayers.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Glory to the Father, to the Son,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and to the Holy Spirit,<br />As it was in the beginning, is now,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and will be forever.<br /><em>Amen</em><br />Alleluia</p>'), 'ReferenceParsed' => array('Chapter' => 'gloria', 'Verses' => null)), 'invitatorium-primis' => array('TextAbbreviation' => 'invitatorium-primis', 'SourceAbbreviation' => 'breviary-other', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Lord, [+] open my lips, [*] and my mouth will proclaim Your praise.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-20' => array('Verified', 'Guidelines'), '2020-10-02' => array('Peer-Review'), '2020-10-01' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2023-10-20' => 'Jordan Prins'))), 'Changes' => array('2023-10-20 - Jordan Prins: Fix Divine pronoun casing.', '2023-10-14 - Paul Prins: Refined the text further.', '2023-04-06 - Paul Prins: Updated this text.', '2020-10-01 - Paul Prins: Added this text.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-other', 'Title' => array('default' => 'Breviary Additional Texts', 'UMB-EN' => 'Additional Texts for the Breviary', 'BMU-FR' => 'Texts Supplémentaires du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This book contains all of the additional texts which are neither psalms, antiphons, canticles, responses, nor prayers.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Lord, <span class="symbol-cross">&#10011;</span> open my lips, <span class="symbol-star"> *</span><br />and my mouth will proclaim Your praise.</p>'), 'ReferenceParsed' => array('Chapter' => 'invitatorium-primis', 'Verses' => null)), 'invitatorium-postmodum' => array('TextAbbreviation' => 'invitatorium-postmodum', 'SourceAbbreviation' => 'breviary-other', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'God, [+] come to my assistance;[*] Lord, make haste to help me.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-20' => array('Verified', 'Guidelines'), '2020-10-02' => array('Peer-Review'), '2020-10-01' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith', '2023-10-20' => 'Jordan Prins'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2020-10-01 - Paul Prins: Added this text.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-other', 'Title' => array('default' => 'Breviary Additional Texts', 'UMB-EN' => 'Additional Texts for the Breviary', 'BMU-FR' => 'Texts Supplémentaires du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This book contains all of the additional texts which are neither psalms, antiphons, canticles, responses, nor prayers.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>God, <span class="symbol-cross">&#10011;</span> come to my assistance;<span class="symbol-star"> *</span><br />Lord, make haste to help me.</p>'), 'ReferenceParsed' => array('Chapter' => 'invitatorium-postmodum', 'Verses' => null))), 'prayers' => array('petitions-week-3-sunday-vespers-2' => array('TextAbbreviation' => 'petitions-week-3-sunday-vespers-2', 'SourceAbbreviation' => 'breviary-prayers', 'FormatAs' => 'book', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => '[II] God has created the cosmos, He brought restoration through redemption, and continually renews creation through His love. Trusting in His eternal love we ask: [IR] Lord, renew the wondrous works of Your love. [I1] We thank You God for You reveal Your power in all of creation, [I2] You reveal Your providence within the course of history. [I1] Through Your Son, who preaches a gospel of peace, and was victorious on the cross, [I2] deliver us from baseless fear and despair. [I1] Provide to everyone that loves and practices justice, [I2] a faithful cooperation in the building of a world where true peace reigns. [I1] Be present with the oppressed, deliver the captives, comfort the poor, feed the hungry, grant strength to the weak, [I2] reveal in all things the victory of the cross. [I1] After his death and burial, You wonderfully raised Your Son to glory, [I2] grant that the deceased may join Him in eternal life.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-06-06' => array('Peer-Review'), '2021-06-05' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-09-30 - Paul Prins: First translation of these intensions.', '2021-08-04 - Paul Prins: Change abbreviation to use petitions.', '2021-06-05 - Paul Prins: Added placeholder for these intentions.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-prayers', 'Title' => array('default' => 'Breviary Prayer Texts', 'UMB-EN' => 'Prayers from the Breviary', 'BMU-FR' => 'Prières du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the prayers used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<section class="intercession"><div class="part-introduction">God has created the cosmos, He brought restoration through redemption, and continually renews creation through His love. Trusting in His eternal love we ask:</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">We thank You God for You reveal Your power in all of creation,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>You reveal Your providence within the course of history.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Through Your Son, who preaches a gospel of peace, and was victorious on the cross,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>deliver us from baseless fear and despair.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Provide to everyone that loves and practices justice,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>a faithful cooperation in the building of a world where true peace reigns.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Be present with the oppressed, deliver the captives, comfort the poor, feed the hungry, grant strength to the weak,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>reveal in all things the victory of the cross.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">After his death and burial, You wonderfully raised Your Son to glory,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>grant that the deceased may join Him in eternal life.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div></section>'), 'ReferenceParsed' => array('Chapter' => 'petitions-week-3-sunday-vespers-2', 'Verses' => null)), 'pater-noster' => array('TextAbbreviation' => 'pater-noster', 'SourceAbbreviation' => 'breviary-prayers', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'SBLGNT'), 'People' => array('Paul Prins')), 'Text' => 'Our Father, who is in heaven, hallowed be Your Name. Your kingdom come, Your will be done, on earth as it is in heaven. Give us today our daily bread. Forgive us our sins, as we forgive those who sin against us. Lead us not into temptation, but deliver us from evil; for the kingdom, the power, and the glory are Yours without end. Amen', 'Description' => 'The Lords Prayer.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-19' => array('Verified', 'Guidelines'), '2020-10-02' => array('Peer-Review'), '2020-10-01' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2023-10-19' => 'Jordan Prins'))), 'Changes' => array('2023-09-02 - Paul Prins: Update divine casing.', '2020-10-01 - Paul Prins: Added this prayer'), 'License' => '© 2023 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-prayers', 'Title' => array('default' => 'Breviary Prayer Texts', 'UMB-EN' => 'Prayers from the Breviary', 'BMU-FR' => 'Prières du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the prayers used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Our Father, who is in heaven,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>hallowed be Your Name.<br />Your kingdom come,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Your will be done,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>on earth as it is in heaven.<br />Give us today our daily bread.<br />Forgive us our sins,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as we forgive those who sin against us.<br />Lead us not into temptation,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>but deliver us from evil;<br />for the kingdom, the power,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the glory are Yours without end.<br />Amen</p>'), 'ReferenceParsed' => array('Chapter' => 'pater-noster', 'Verses' => null))), 'psalms' => array(array('TextAbbreviation' => 'chapter-0095', 'SourceAbbreviation' => 'breviary-psalms', 'Title' => 'An Invitation to Praise God', 'Chapter' => '95', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'WLC'), 'People' => array('Paul Prins')), 'Verses' => array('Come, let us sing praise to the LORD. [*] Shout with joy to the Rock of our salvation. ', 'Let us enter His presence with a song of thanksgiving, [*] singing joyful songs to Him. [ANT] ', 'For the LORD is a great God, [*] and the great king above all gods. ', 'In His hand are the depths of the earth, [*] and the mountain peaks are His also. ', 'The sea is His for He made it, [*] the dry land His hands formed. [ANT] ', 'Come, let us bow down and worship. [*] Let us kneel before the LORD our maker, ', 'for He is our God, and we are the people of his pasture, [*] and the flock of His hand. [ANT] Today, will you hear His voice? [t] ', ' "Do not harden your hearts, [*] as at Meribah and during the temptation in the wilderness, ', 'where your ancestors tested and provoked Me, [*] although they were witness to My work." [ANT] ', '"Forty years that generation disgusted me", [t] and I said, "They are a people whose hearts go astray, [*] and they do not know my ways." ', 'So I swore in my anger, [*] "Never shall they enter into My rest." [ANT]'), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-25' => array('Verified', 'Guidelines'), '2022-10-27' => array('Peer-Review'), '2022-10-26' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2022-10-26 - Paul Prins: First translation of psalm 95 based on Greek, Latin, and some Hebrew'), 'License' => '© 2022 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-psalms', 'Title' => array('default' => 'Breviary Psalms', 'UMB-EN' => 'Psalms from the Breviary', 'BMU-FR' => 'Psaumes du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'SecondaryType' => 'Poetry', 'Language' => 'hbo', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Chapters', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the psalms used during the divine office.', 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Come, let us sing praise to the <span class="type-small-caps">LORD</span>. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Shout with joy to the Rock of our salvation.<br />Let us enter His presence with a song of thanksgiving, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>singing joyful songs to Him.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>For the <span class="type-small-caps">LORD</span> is a great God, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the great king above all gods.<br />In His hand are the depths of the earth, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the mountain peaks are His also.<br />The sea is His for He made it, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the dry land His hands formed.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Come, let us bow down and worship. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="type-small-caps">LORD</span>us kneel before the <span class="type-small-caps">LORD</span> our maker,<br />for He is our God, and we are the people of his pasture, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the flock of His hand.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Today, will you hear His voice? <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Do not harden your hearts, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as at Meribah and during the temptation in the wilderness,<br />where your ancestors tested and provoked Me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>although they were witness to My work."</p><p>[<span class="type-small-caps">ANT</span>]</p><p>"Forty years that generation disgusted me", <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and I said, "They are a people whose hearts go astray, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and they do not know my ways."<br />So I swore in my anger, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Never shall they enter into My rest."</p><p>[<span class="type-small-caps">ANT</span>]</p>'), 'ReferenceParsed' => array('Chapter' => '95', 'Verses' => null)), array('TextAbbreviation' => 'chapter-0110', 'SourceAbbreviation' => 'breviary-psalms', 'Title' => 'Messiah, King, & Priest', 'Description' => 'A Psalm of David', 'Chapter' => '110', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'WLC'), 'People' => array('Paul Prins')), 'Verses' => array('The LORD says to my master, [*] "Sit at my right hand, and I will make your enemies [*] into a footstool for your feet." ', 'From Zion, the LORD will extend your mighty scepter\'s reach, saying, [*] "Rule in the midst of your enemies." ', 'On the day of your power, your people will follow you, [t] in your holy splendor, [*] "With the breaking of dawn, your youth comes to you like the dew." ', 'The LORD swore an irrevocable oath,[*] "You are a priest always, in the order of King Melchizedek." ', 'On your right is my master, [*] who will crush rulers on the day of his wrath. ', 'He will drink from the brook along his way; [*] therefore he will lift up his head.'), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-25' => array('Verified', 'Guidelines'), '2021-04-08' => array('Peer-Review'), '2021-04-07' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2023-09-30 - Paul Prins: Fixed casings on divine name.', '2021-04-07 - Paul Prins: First translation of psalm 110 based on Greek, Latin, and some Hebrew'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-psalms', 'Title' => array('default' => 'Breviary Psalms', 'UMB-EN' => 'Psalms from the Breviary', 'BMU-FR' => 'Psaumes du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'SecondaryType' => 'Poetry', 'Language' => 'hbo', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Chapters', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the psalms used during the divine office.', 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>The <span class="type-small-caps">LORD</span> says to my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Sit at my right hand,<br />and I will make your enemies <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>into a footstool for your feet."</p><p>From Zion, the <span class="type-small-caps">LORD</span> will extend your mighty scepter\'s reach, saying, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Rule in the midst of your enemies."</p><p>On the day of your power, your people will follow you, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in your holy splendor, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"With the breaking of dawn, your youth comes to you like the dew."</p><p>The <span class="type-small-caps">LORD</span> swore an irrevocable oath,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"You are a priest always, in the order of King Melchizedek."</p><p>On your right is my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>who will crush rulers on the day of his wrath.</p><p>He will drink from the brook along his way; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>therefore he will lift up his head.</p>'), 'ReferenceParsed' => array('Chapter' => '110', 'Verses' => null)), array('TextAbbreviation' => 'chapter-0111', 'SourceAbbreviation' => 'breviary-psalms', 'Title' => 'Great Works of the Lord', 'Description' => '', 'Chapter' => '111', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'WLC'), 'People' => array('Paul Prins')), 'Verses' => array('I will praise the LORD with my whole heart, [*] in the council of the upright and the assembly. ', 'Great are the works of the Lord, [*] sought out by all who delight in them. ', 'Glorious and majestic is His work, [*] and His justice endures forever. ', 'He has caused His wonders to be remembered; [*] the LORD is gracious and compassionate. ', 'He gives food to those who fear Him; [*] He remembers His covenant forever. ', 'He has shown His people the power of His works [t] by giving them the inheritance of nations. [*] ', ' The works of His hands are truth and justice. All His precepts are trustworthy, [t] ', ' standing firm forever and ever, [*] made with uprightness and truth. ', 'He has sent redemption to His people, [*] establishing His covenant forever. Holy and awe-inspiring is His name. [*] ', ' The fear of the LORD is the beginning of wisdom. All those who embody this have good understanding; [*] their praise endures forever.'), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-25' => array('Verified', 'Guidelines'), '2021-09-22' => array('Peer-Review'), '2021-09-21' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2021-09-21 - Paul Prins: First translation of psalm 111 based on Greek, Latin, and Hebrew'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-psalms', 'Title' => array('default' => 'Breviary Psalms', 'UMB-EN' => 'Psalms from the Breviary', 'BMU-FR' => 'Psaumes du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'SecondaryType' => 'Poetry', 'Language' => 'hbo', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Chapters', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the psalms used during the divine office.', 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>I will praise the <span class="type-small-caps">LORD</span> with my whole heart, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in the council of the upright and the assembly.<br />Great are the works of the Lord, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>sought out by all who delight in them.<br />Glorious and majestic is His work, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His justice endures forever.</p><p>He has caused His wonders to be remembered; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the <span class="type-small-caps">LORD</span> is gracious and compassionate.<br />He gives food to those who fear Him; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>He remembers His covenant forever.</p><p>He has shown His people the power of His works <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>by giving them the inheritance of nations. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The works of His hands are truth and justice.<br />All His precepts are trustworthy, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>standing firm forever and ever, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>made with uprightness and truth.<br />He has sent redemption to His people, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>establishing His covenant forever.</p><p>Holy and awe-inspiring is His name. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The fear of the <span class="type-small-caps">LORD</span> is the beginning of wisdom.<br />All those who embody this have good understanding; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>their praise endures forever.</p>'), 'ReferenceParsed' => array('Chapter' => '111', 'Verses' => null))), 'readings' => array('1 Peter 1:3-5' => array('TextAbbreviation' => 'chapter-0001', 'SourceAbbreviation' => 'bible-nt-peter-1', 'Chapter' => '1', 'FormatAs' => 'Letter', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('SBLGNT'), 'People' => array('Paul Prins')), 'Verses' => array(' Blessed be God, the Father of our Lord Jesus Christ. In His great mercy, he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead. ', 'So we will inherit what never perishes, spoils, or fades away. An inheritance that is being kept safe for you in heaven. ', 'You who are protected by the power of God, through faith, for a salvation ready to be revealed at the end of time. '), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-09-30' => array('Peer-Review'), '2021-09-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-09-29 - Paul Prins: First translation of verses 1-9 based on Greek.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'bible-nt-peter-1', 'Title' => array('default' => 'Α\' Πέτρου', 'UMB-EN' => 'The First Epistle of Peter', 'BMU-FR' => 'La Première Épître de Pierre', 'eng' => '1 Peter', 'fra' => '1 Pierre'), 'AlternativeTitles' => array('eng' => array('1 Peter', 'First Peter'), 'fra' => array('1 Pierre', 'Première Épître de Pierre')), 'Description' => '', 'Type' => 'Letter', 'Language' => 'grc-koi', 'Version' => 'Original', 'Segments' => 'Chapters', 'Verses' => true, 'Chapters' => true, 'SegmentTitles' => true, 'Notes' => '', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Date' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Blessed be God, the Father of our Lord Jesus Christ. In His great mercy, he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead. So we will inherit what never perishes, spoils, or fades away. An inheritance that is being kept safe for you in heaven. You who are protected by the power of God, through faith, for a salvation ready to be revealed at the end of time. </p>'), 'ReferenceParsed' => array('Chapter' => 1, 'Verses' => array(3, 4, 5)))), 'responses' => array('week-3-sunday-vespers-2' => array('TextAbbreviation' => 'week-3-sunday-vespers-2', 'SourceAbbreviation' => 'breviary-responses', 'FormatAs' => 'book', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => '[V] Blessed are You Lord, in the kingdom of Heaven. [R] Blessed are You Lord, [*] in the kingdom of Heaven. [V]All of creation gives You glory and praise forever. [V] Glory to the Father, to the Son, and to the Holy Spirit.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-05-05' => array('Peer-Review'), '2021-05-04' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-05-04 - Paul Prins: Translated this prayer.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-responses', 'Title' => 'Breviary Responsory Texts', 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the responsory texts used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<section class="response"><div class="response-versicle"><span class="symbol-versicle">&#8483;</span> Blessed are You Lord, in the kingdom of Heaven.</div><div class="response-response"><span class="symbol-response">&#8479;</span> Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span> All of creation gives You glory and praise forever.</div><div class="response-response"><span class="symbol-response">&#8479;</span> Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span> Glory to the Father, to the Son, and to the Holy Spirit.</div><div class="response-response"><span class="symbol-response">&#8479;</span> Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div></section>'), 'ReferenceParsed' => array('Chapter' => 'week-3-sunday-vespers-2', 'Verses' => null)))), 'HTML' => array('antiphons' => array('' => '<h3>BLANK</h3>', 'invitatorium-day-sunday' => '<p>Come, together we\'ll exault the Lord.</p>', 'sunday-vespers-2-anti-1' => '<p>The <span class="type-small-caps">LORD</span> says to my master: "Sit at My right hand"</p>', 'week-3-sunday-vespers-2-anti-2' => '<p>All his commandments <span class="symbol-star"> *</span> are faithful, established for ever and ever!</p>', 'alleluia-x-3' => '<p>Alleluia, Alleluia, Alleluia.</p>'), 'blessings' => array('' => '<h3>BLANK</h3>', 'vespers' => '<p>May the Lord bless us,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>keep us from all evil,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and bring us to everlasting life.<br /><em>Amen</em></p>'), 'canticles' => array('' => '<h3>BLANK</h3>', 'salus-et-gloria' => '<p>Alleluia<br />Salvation and glory and power belong to our God,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>whose judgments are true and just.<br />Alleluia</p><p>Alleluia<br />Praise our God, all servants of the Lord,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>you who fear him, both small and great.<br />Alleluia</p><p>Alleluia<br />The Lord our God, the Almighty, reigns:<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>let us rejoice and exult and give glory and homage.<br />Alleluia</p><p>Alleluia<br />The marriage of the Lamb has come<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His bride has made herself ready.<br />Alleluia</p><p>Alleluia<br />Happy are those who are invited<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to the wedding banquet of the Lamb.<br />Alleluia</p>', 'magnificat' => '<p>My soul <span class="symbol-cross">&#10011;</span> magnifies the greatness of the Lord; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>my spirit bursts, rejoicing in God my Savior.<br />For He knew the humility of His servant. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>From today all generations will call me blessed.</p><p>The Almighty has done great things for me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and holy is His name.</p><p>He has mercy for those who fear Him, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>from generation to generation.<br />He has shown the strength of His arm, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and scattered the proud for the thoughts of their hearts.</p><p>He has torn the mighty from their thrones, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and lifted up the lowly.<br />He has filled the hungry with good things, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and sent the rich away empty.</p><p>He has given help to His servant Israel,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and remembered His promise of mercy.<br />The promise made to our ancestors,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to Abraham and His children forever.</p>'), 'other' => array('' => '<h3>BLANK</h3>', 'gloria' => '<p>Glory to the Father, to the Son,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and to the Holy Spirit,<br />As it was in the beginning, is now,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and will be forever.<br /><em>Amen</em><br />Alleluia</p>', 'invitatorium-primis' => '<p>Lord, <span class="symbol-cross">&#10011;</span> open my lips, <span class="symbol-star"> *</span><br />and my mouth will proclaim Your praise.</p>', 'invitatorium-postmodum' => '<p>God, <span class="symbol-cross">&#10011;</span> come to my assistance;<span class="symbol-star"> *</span><br />Lord, make haste to help me.</p>'), 'prayers' => array('' => '<h3>BLANK</h3>', 'petitions-week-3-sunday-vespers-2' => '<section class="intercession"><div class="part-introduction">God has created the cosmos, He brought restoration through redemption, and continually renews creation through His love. Trusting in His eternal love we ask:</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">We thank You God for You reveal Your power in all of creation,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>You reveal Your providence within the course of history.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Through Your Son, who preaches a gospel of peace, and was victorious on the cross,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>deliver us from baseless fear and despair.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Provide to everyone that loves and practices justice,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>a faithful cooperation in the building of a world where true peace reigns.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Be present with the oppressed, deliver the captives, comfort the poor, feed the hungry, grant strength to the weak,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>reveal in all things the victory of the cross.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">After his death and burial, You wonderfully raised Your Son to glory,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>grant that the deceased may join Him in eternal life.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div></section>', 'pater-noster' => '<p>Our Father, who is in heaven,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>hallowed be Your Name.<br />Your kingdom come,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Your will be done,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>on earth as it is in heaven.<br />Give us today our daily bread.<br />Forgive us our sins,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as we forgive those who sin against us.<br />Lead us not into temptation,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>but deliver us from evil;<br />for the kingdom, the power,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the glory are Yours without end.<br />Amen</p>'), 'psalms' => array('' => '<h3>BLANK</h3>', '<p>Come, let us sing praise to the <span class="type-small-caps">LORD</span>. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Shout with joy to the Rock of our salvation.<br />Let us enter His presence with a song of thanksgiving, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>singing joyful songs to Him.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>For the <span class="type-small-caps">LORD</span> is a great God, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the great king above all gods.<br />In His hand are the depths of the earth, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the mountain peaks are His also.<br />The sea is His for He made it, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the dry land His hands formed.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Come, let us bow down and worship. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="type-small-caps">LORD</span>us kneel before the <span class="type-small-caps">LORD</span> our maker,<br />for He is our God, and we are the people of his pasture, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the flock of His hand.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Today, will you hear His voice? <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Do not harden your hearts, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as at Meribah and during the temptation in the wilderness,<br />where your ancestors tested and provoked Me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>although they were witness to My work."</p><p>[<span class="type-small-caps">ANT</span>]</p><p>"Forty years that generation disgusted me", <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and I said, "They are a people whose hearts go astray, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and they do not know my ways."<br />So I swore in my anger, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Never shall they enter into My rest."</p><p>[<span class="type-small-caps">ANT</span>]</p>', '<p>The <span class="type-small-caps">LORD</span> says to my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Sit at my right hand,<br />and I will make your enemies <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>into a footstool for your feet."</p><p>From Zion, the <span class="type-small-caps">LORD</span> will extend your mighty scepter\'s reach, saying, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Rule in the midst of your enemies."</p><p>On the day of your power, your people will follow you, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in your holy splendor, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"With the breaking of dawn, your youth comes to you like the dew."</p><p>The <span class="type-small-caps">LORD</span> swore an irrevocable oath,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"You are a priest always, in the order of King Melchizedek."</p><p>On your right is my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>who will crush rulers on the day of his wrath.</p><p>He will drink from the brook along his way; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>therefore he will lift up his head.</p>', '<p>I will praise the <span class="type-small-caps">LORD</span> with my whole heart, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in the council of the upright and the assembly.<br />Great are the works of the Lord, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>sought out by all who delight in them.<br />Glorious and majestic is His work, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His justice endures forever.</p><p>He has caused His wonders to be remembered; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the <span class="type-small-caps">LORD</span> is gracious and compassionate.<br />He gives food to those who fear Him; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>He remembers His covenant forever.</p><p>He has shown His people the power of His works <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>by giving them the inheritance of nations. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The works of His hands are truth and justice.<br />All His precepts are trustworthy, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>standing firm forever and ever, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>made with uprightness and truth.<br />He has sent redemption to His people, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>establishing His covenant forever.</p><p>Holy and awe-inspiring is His name. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The fear of the <span class="type-small-caps">LORD</span> is the beginning of wisdom.<br />All those who embody this have good understanding; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>their praise endures forever.</p>'), 'readings' => array('' => '<h3>BLANK</h3>', '1 Peter 1:3-5' => '<p><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Blessed be God, the Father of our Lord Jesus Christ. In His great mercy, he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead. So we will inherit what never perishes, spoils, or fades away. An inheritance that is being kept safe for you in heaven. You who are protected by the power of God, through faith, for a salvation ready to be revealed at the end of time. </p>'), 'responses' => array('' => '<h3>BLANK</h3>', 'week-3-sunday-vespers-2' => '<section class="response"><div class="response-versicle"><span class="symbol-versicle">&#8483;</span> Blessed are You Lord, in the kingdom of Heaven.</div><div class="response-response"><span class="symbol-response">&#8479;</span> Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span> All of creation gives You glory and praise forever.</div><div class="response-response"><span class="symbol-response">&#8479;</span> Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span> Glory to the Father, to the Son, and to the Holy Spirit.</div><div class="response-response"><span class="symbol-response">&#8479;</span> Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div></section>')), 'Versions' => array('UMB-EN' => array('Abbreviation' => 'UMB-EN', 'Title' => 'Urban Monastic Breviary', 'Description' => 'The english translation of the Psalter used by Urban Monasticism', 'License' => '© 2021 Urban Monastics, Paris', 'Language' => 'eng', 'Date' => '2021', 'Formatting' => array('SmallCaps' => true, 'Selah' => true))), 'thisCalendar' => 'urban-monastic', 'Navigation' => array('date' => '2023-06-18', 'today' => array('date' => '2023-06-18', 'day-month' => '18 June', 'month-day' => 'June 18', 'day-of-week' => 'Sunday'), 'yesterday' => array('date' => '2023-06-17', 'day-month' => '17 June', 'month-day' => 'June 17', 'day-of-week' => 'Saturday'), 'tomorrow' => array('date' => '2023-06-19', 'day-month' => '19 June', 'month-day' => 'June 19', 'day-of-week' => 'Monday'), 'offices' => array()), 'BodyCSS' => array('prayer', 'vespers')), '__env' => object(Factory), 'app' => object(Application), 'Domain' => 'breviarium', 'errors' => object(ViewErrorBag), 'DateLong' => 'Sunday 18 June', 'Date' => array('Day' => '18', 'DayOfWeek' => 'Sunday', 'Month' => 'June', 'Year' => '2023', 'Season' => null, 'Week' => null, 'String' => '2023-06-18'), 'Year' => '2023', 'Liturgical' => array('calendarDate' => '2023-06-18', 'breviaryDate' => '2023-06-18', 'colors' => array('vigils' => 'Green', 'lauds' => 'Green', 'terce' => 'Green', 'sext' => 'Green', 'none' => 'Green', 'vespers' => 'Green', 'compline' => 'Green'), 'dayColor' => 'Green', 'dayOfWeek' => 0, 'dayType' => 'sunday', 'invocation' => array('antiphon' => 'invitatorium-day-sunday', 'psalm' => 95), 'marianEmphasis' => null, 'octave' => null, 'proper' => array('saints' => array(), 'optional' => array(), 'season' => 'ordinary-week-11-day-0'), 'psalterWeek' => 3, 'season' => 'ordinary', 'seasonWeek' => 11, 'startEarly' => array('proper' => null, 'abbreviation' => null), 'sundayCycle' => 'A', 'TitleSeason' => null, 'TitleProper' => null, 'Title' => '<span class="DayOfWeek">Sunday</span> the 11th Week in <span class="Season">Ordinary Time</span>', 'ProperOfSaints' => array()), 'Office' => array('Calendar' => array('calendarDate' => '2023-06-18', 'breviaryDate' => '2023-06-18', 'colors' => array('vigils' => 'Green', 'lauds' => 'Green', 'terce' => 'Green', 'sext' => 'Green', 'none' => 'Green', 'vespers' => 'Green', 'compline' => 'Green'), 'dayColor' => 'Green', 'dayOfWeek' => 0, 'dayType' => 'sunday', 'invocation' => array('antiphon' => 'invitatorium-day-sunday', 'psalm' => 95), 'marianEmphasis' => null, 'octave' => null, 'proper' => array('saints' => array(), 'optional' => array(), 'season' => 'ordinary-week-11-day-0'), 'psalterWeek' => 3, 'season' => 'ordinary', 'seasonWeek' => 11, 'startEarly' => array('proper' => null, 'abbreviation' => null), 'sundayCycle' => 'A', 'TitleSeason' => null, 'TitleProper' => null, 'Title' => '<span class="DayOfWeek">Sunday</span> the 11th Week in <span class="Season">Ordinary Time</span>', 'ProperOfSaints' => array()), 'Scheme' => array('Complete' => true, 'Hymn' => null, 'Psalmody-1' => array('Passage' => '110', 'Antiphon' => 'sunday-vespers-2-anti-1', 'Prayer' => null), 'Psalmody-2' => array('Passage' => '111', 'Antiphon' => 'week-3-sunday-vespers-2-anti-2', 'Prayer' => null), 'Canticle' => array('Passage' => 'salus-et-gloria', 'Antiphon' => 'alleluia-x-3'), 'Reading' => '1 Peter 1:3-5', 'Responsitory' => 'week-3-sunday-vespers-2', 'GospelCanticle' => array('Antiphon' => null), 'Prayers' => array('Petitions' => 'petitions-week-3-sunday-vespers-2', 'Concluding' => null), 'Blessing' => 'vespers'), 'Proper-Seasons' => array('Abbreviation' => 'ordinary-week-11-day-0', 'IntroductoryVerse' => null, 'Hymn' => null, 'Psalmody-1' => array('Passage' => null, 'Antiphon' => null, 'Prayer' => null), 'Psalmody-2' => array('Passage' => null, 'Antiphon' => null, 'Prayer' => null), 'Canticle' => array('Passage' => null, 'Antiphon' => null), 'Reading' => null, 'Responsitory' => null, 'GospelCanticle' => array('Antiphon' => array('A' => null, 'B' => null, 'C' => null)), 'Prayers' => array('Petitions' => null, 'Concluding' => null), 'Blessing' => null), 'Proper-Saints' => array(), 'Structure' => array('Invitatory' => array('other' => 'invitatorium-primis', 'psalm' => 95, 'antiphon' => 'invitatorium-day-sunday'), 'Introductory' => array('other' => 'invitatorium-postmodum'), 'Hymn' => array('Hymn' => null, 'hymn' => null), 'Psalmody-1' => array('psalm' => '110', 'antiphon' => 'sunday-vespers-2-anti-1', 'prayer' => null), 'Psalmody-2' => array('psalm' => '111', 'antiphon' => 'week-3-sunday-vespers-2-anti-2', 'prayer' => null), 'Canticle' => array('canticle' => 'salus-et-gloria', 'antiphon' => 'alleluia-x-3'), 'Reading' => array('reading' => '1 Peter 1:3-5'), 'Silence' => array('other' => null), 'ReadingResponse' => array('response' => 'week-3-sunday-vespers-2'), 'GospelCanticle' => array('canticle' => 'magnificat', 'antiphon' => null), 'Petitions' => array('prayer' => 'petitions-week-3-sunday-vespers-2'), 'LordsPrayer' => array('prayer' => 'pater-noster'), 'ConcludingPrayer' => array('prayer' => null), 'Blessing' => array('blessing' => 'vespers')), 'TextAbbreviations' => array('antiphons' => array('invitatorium-day-sunday', 'sunday-vespers-2-anti-1', 'week-3-sunday-vespers-2-anti-2', 'alleluia-x-3'), 'bible' => array(), 'blessings' => array('vespers'), 'canticles' => array('salus-et-gloria', 'magnificat'), 'hymns' => array(), 'other' => array('gloria', 'invitatorium-primis', 'invitatorium-postmodum'), 'prayers' => array('petitions-week-3-sunday-vespers-2', 'pater-noster'), 'psalms' => array('95', '110', '111'), 'readings' => array('1 Peter 1:3-5'), 'responses' => array('week-3-sunday-vespers-2')), 'General' => false, 'Office' => 'vespers', 'OfficeKey' => 'vespers', 'OfficeSVG' => '/assets/offices/office-vespers.svg'), 'Texts' => array('antiphons' => array('invitatorium-day-sunday' => array('TextAbbreviation' => 'invitatorium-day-sunday', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Come, together we\'ll exault the Lord.', 'Extra' => array('BreviaryInstructions' => 'Invitatory antiphon for Sundays in ordinary time. [Not Repeated inside the Psalm]', 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-12-05' => array('Peer-Review'), '2021-12-04' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-12-04 - Paul Prins: Added this antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Come, together we\'ll exault the Lord.</p>'), 'ReferenceParsed' => array('Chapter' => 'invitatorium-day-sunday', 'Verses' => null)), 'sunday-vespers-2-anti-1' => array('TextAbbreviation' => 'week-3-sunday-vespers-2-anti-1', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'The LORD says to my master: "Sit at My right hand"', 'Extra' => array('Reference' => array('Psalm 110'), 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-05-25' => array('Peer-Review'), '2021-05-24' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-05-24 - Paul Prins: Added this antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>The <span class="type-small-caps">LORD</span> says to my master: "Sit at My right hand"</p>'), 'ReferenceParsed' => array('Chapter' => 'sunday-vespers-2-anti-1', 'Verses' => null)), 'week-3-sunday-vespers-2-anti-2' => array('TextAbbreviation' => 'week-3-sunday-vespers-2-anti-2', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'All his commandments [*] are faithful, established for ever and ever!', 'Extra' => array('Reference' => array('Psalm 119:86'), 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-10-01' => array('Peer-Review'), '2021-09-30' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-09-30 - Paul Prins: Added this Antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>All his commandments <span class="symbol-star"> *</span> are faithful, established for ever and ever!</p>'), 'ReferenceParsed' => array('Chapter' => 'week-3-sunday-vespers-2-anti-2', 'Verses' => null)), 'alleluia-x-3' => array('TextAbbreviation' => 'alleluia-x-3', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Alleluia, Alleluia, Alleluia.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-01-01' => array('Verified', 'Guidelines', 'Peer-Review', 'Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-11' => 'Constance McIntosh Smith', '2023-12-09' => 'Sheila Whittenberg', '2023-10-19' => 'Jordan Prins'))), 'Changes' => array('2021-01-01 - Paul Prins: First translation of this Antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Alleluia, Alleluia, Alleluia.</p>'), 'ReferenceParsed' => array('Chapter' => 'alleluia-x-3', 'Verses' => null))), 'blessings' => array('vespers' => array('TextAbbreviation' => 'vespers', 'SourceAbbreviation' => 'breviary-blessings', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'May the Lord bless us, keep us from all evil, and bring us to everlasting life. *Amen*', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-03-22' => array('Peer-Review'), '2021-03-21' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-03-21 - Paul Prins: First translation of this blessing.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-blessings', 'Title' => array('default' => 'Breviary Blessings', 'UMB-EN' => 'Blessings from the Breviary', 'BMU-FR' => 'Bénédictions du Bréviaire', 'eng' => 'Blessings', 'fra' => 'Bénédictions'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the blessings used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>May the Lord bless us,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>keep us from all evil,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and bring us to everlasting life.<br /><em>Amen</em></p>'), 'ReferenceParsed' => array('Chapter' => 'vespers', 'Verses' => null))), 'canticles' => array('salus-et-gloria' => array('TextAbbreviation' => 'salus-et-gloria', 'SourceAbbreviation' => 'breviary-canticles', 'Title' => 'Salvation, Glory, and Power', 'Description' => 'From Revelation 19:1-2, 5-7', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH', 'SBLGNT'), 'People' => array('Paul Prins')), 'Verses' => array('Alleluia Salvation and glory and power belong to our God,[*] whose judgments are true and just. Alleluia ', 'Alleluia Praise our God, all servants of the Lord,[*] you who fear him, both small and great. Alleluia ', 'Alleluia The Lord our God, the Almighty, reigns:[*] let us rejoice and exult and give glory and homage. Alleluia ', 'Alleluia The marriage of the Lamb has come[*] and His bride has made herself ready. Alleluia ', 'Alleluia Happy are those who are invited[*] to the wedding banquet of the Lamb. Alleluia'), 'Extra' => array('Reference' => array('Revelation 19:1-2, 5-7'), 'LiturgiaeHorarum-Index' => 22, 'LiturgiaeHorarum-Cantica' => 'NT', 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-31' => array('Verified', 'Guidelines'), '2020-03-30' => array('Peer-Review'), '2020-03-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-31' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-31 - Constance McIntosh Smith: Implement her editorial feedback.', '2020-03-29 - Paul Prins : Added this Canticle.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-canticles', 'Title' => array('default' => 'Breviary Canticles', 'UMB-EN' => 'Canticles from the Breviary', 'BMU-FR' => 'Cantiques du Bréviaire', 'eng' => 'Canticles', 'fra' => 'Cantiques'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the canticles used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Alleluia<br />Salvation and glory and power belong to our God,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>whose judgments are true and just.<br />Alleluia</p><p>Alleluia<br />Praise our God, all servants of the Lord,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>you who fear him, both small and great.<br />Alleluia</p><p>Alleluia<br />The Lord our God, the Almighty, reigns:<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>let us rejoice and exult and give glory and homage.<br />Alleluia</p><p>Alleluia<br />The marriage of the Lamb has come<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His bride has made herself ready.<br />Alleluia</p><p>Alleluia<br />Happy are those who are invited<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to the wedding banquet of the Lamb.<br />Alleluia</p>'), 'ReferenceParsed' => array('Chapter' => 'salus-et-gloria', 'Verses' => null)), 'magnificat' => array('TextAbbreviation' => 'magnificat', 'SourceAbbreviation' => 'breviary-canticles', 'Title' => 'My Soul Magnifies', 'Description' => 'From Luke 1:46-55', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH', 'SBLGNT'), 'People' => array('Paul Prins')), 'Verses' => array('My soul [+] magnifies the greatness of the Lord; [*] ', 'my spirit bursts, rejoicing in God my Savior. ', 'For He knew the humility of His servant. [*] From today all generations will call me blessed. ', 'The Almighty has done great things for me, [*] and holy is His name. ', 'He has mercy for those who fear Him, [*] from generation to generation. ', 'He has shown the strength of His arm, [*] and scattered the proud for the thoughts of their hearts. ', 'He has torn the mighty from their thrones, [*] and lifted up the lowly. ', 'He has filled the hungry with good things, [*] and sent the rich away empty. ', 'He has given help to His servant Israel,[*] and remembered His promise of mercy. ', 'The promise made to our ancestors,[*] to Abraham and His children forever.'), 'Extra' => array('Reference' => array('Luke 1:46-55'), 'LiturgiaeHorarum-Index' => 1, 'LiturgiaeHorarum-Cantica' => 'NT', 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-31' => array('Verified', 'Guidelines'), '2020-03-30' => array('Peer-Review'), '2020-03-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-31' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-31 - Constance McIntosh Smith: Implement her editorial feedback.', '2020-03-29 - Paul Prins : Added this Canticle.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-canticles', 'Title' => array('default' => 'Breviary Canticles', 'UMB-EN' => 'Canticles from the Breviary', 'BMU-FR' => 'Cantiques du Bréviaire', 'eng' => 'Canticles', 'fra' => 'Cantiques'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the canticles used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>My soul <span class="symbol-cross">&#10011;</span> magnifies the greatness of the Lord; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>my spirit bursts, rejoicing in God my Savior.<br />For He knew the humility of His servant. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>From today all generations will call me blessed.</p><p>The Almighty has done great things for me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and holy is His name.</p><p>He has mercy for those who fear Him, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>from generation to generation.<br />He has shown the strength of His arm, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and scattered the proud for the thoughts of their hearts.</p><p>He has torn the mighty from their thrones, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and lifted up the lowly.<br />He has filled the hungry with good things, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and sent the rich away empty.</p><p>He has given help to His servant Israel,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and remembered His promise of mercy.<br />The promise made to our ancestors,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to Abraham and His children forever.</p>'), 'ReferenceParsed' => array('Chapter' => 'magnificat', 'Verses' => null))), 'other' => array('gloria' => array('TextAbbreviation' => 'gloria', 'SourceAbbreviation' => 'breviary-other', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Glory to the Father, to the Son, and to the Holy Spirit, As it was in the beginning, is now, and will be forever. *Amen* Alleluia', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-20' => array('Verified', 'Guidelines'), '2020-03-30' => array('Peer-Review'), '2020-03-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-19' => 'Constance McIntosh Smith', '2024-01-11' => 'Constance McIntosh Smith', '2023-12-09' => 'Sheila Whittenberg', '2023-10-19' => 'Jordan Prins'))), 'Changes' => array('2024-01-19 - Constance McIntosh Smith: Grammatical corrections', '2022-05-01 - Paul Prins: Update language.', '2020-03-29 - Paul Prins: First translation.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-other', 'Title' => array('default' => 'Breviary Additional Texts', 'UMB-EN' => 'Additional Texts for the Breviary', 'BMU-FR' => 'Texts Supplémentaires du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This book contains all of the additional texts which are neither psalms, antiphons, canticles, responses, nor prayers.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Glory to the Father, to the Son,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and to the Holy Spirit,<br />As it was in the beginning, is now,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and will be forever.<br /><em>Amen</em><br />Alleluia</p>'), 'ReferenceParsed' => array('Chapter' => 'gloria', 'Verses' => null)), 'invitatorium-primis' => array('TextAbbreviation' => 'invitatorium-primis', 'SourceAbbreviation' => 'breviary-other', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Lord, [+] open my lips, [*] and my mouth will proclaim Your praise.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-20' => array('Verified', 'Guidelines'), '2020-10-02' => array('Peer-Review'), '2020-10-01' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2023-10-20' => 'Jordan Prins'))), 'Changes' => array('2023-10-20 - Jordan Prins: Fix Divine pronoun casing.', '2023-10-14 - Paul Prins: Refined the text further.', '2023-04-06 - Paul Prins: Updated this text.', '2020-10-01 - Paul Prins: Added this text.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-other', 'Title' => array('default' => 'Breviary Additional Texts', 'UMB-EN' => 'Additional Texts for the Breviary', 'BMU-FR' => 'Texts Supplémentaires du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This book contains all of the additional texts which are neither psalms, antiphons, canticles, responses, nor prayers.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Lord, <span class="symbol-cross">&#10011;</span> open my lips, <span class="symbol-star"> *</span><br />and my mouth will proclaim Your praise.</p>'), 'ReferenceParsed' => array('Chapter' => 'invitatorium-primis', 'Verses' => null)), 'invitatorium-postmodum' => array('TextAbbreviation' => 'invitatorium-postmodum', 'SourceAbbreviation' => 'breviary-other', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'God, [+] come to my assistance;[*] Lord, make haste to help me.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-20' => array('Verified', 'Guidelines'), '2020-10-02' => array('Peer-Review'), '2020-10-01' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith', '2023-10-20' => 'Jordan Prins'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2020-10-01 - Paul Prins: Added this text.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-other', 'Title' => array('default' => 'Breviary Additional Texts', 'UMB-EN' => 'Additional Texts for the Breviary', 'BMU-FR' => 'Texts Supplémentaires du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This book contains all of the additional texts which are neither psalms, antiphons, canticles, responses, nor prayers.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>God, <span class="symbol-cross">&#10011;</span> come to my assistance;<span class="symbol-star"> *</span><br />Lord, make haste to help me.</p>'), 'ReferenceParsed' => array('Chapter' => 'invitatorium-postmodum', 'Verses' => null))), 'prayers' => array('petitions-week-3-sunday-vespers-2' => array('TextAbbreviation' => 'petitions-week-3-sunday-vespers-2', 'SourceAbbreviation' => 'breviary-prayers', 'FormatAs' => 'book', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => '[II] God has created the cosmos, He brought restoration through redemption, and continually renews creation through His love. Trusting in His eternal love we ask: [IR] Lord, renew the wondrous works of Your love. [I1] We thank You God for You reveal Your power in all of creation, [I2] You reveal Your providence within the course of history. [I1] Through Your Son, who preaches a gospel of peace, and was victorious on the cross, [I2] deliver us from baseless fear and despair. [I1] Provide to everyone that loves and practices justice, [I2] a faithful cooperation in the building of a world where true peace reigns. [I1] Be present with the oppressed, deliver the captives, comfort the poor, feed the hungry, grant strength to the weak, [I2] reveal in all things the victory of the cross. [I1] After his death and burial, You wonderfully raised Your Son to glory, [I2] grant that the deceased may join Him in eternal life.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-06-06' => array('Peer-Review'), '2021-06-05' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-09-30 - Paul Prins: First translation of these intensions.', '2021-08-04 - Paul Prins: Change abbreviation to use petitions.', '2021-06-05 - Paul Prins: Added placeholder for these intentions.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-prayers', 'Title' => array('default' => 'Breviary Prayer Texts', 'UMB-EN' => 'Prayers from the Breviary', 'BMU-FR' => 'Prières du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the prayers used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<section class="intercession"><div class="part-introduction">God has created the cosmos, He brought restoration through redemption, and continually renews creation through His love. Trusting in His eternal love we ask:</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">We thank You God for You reveal Your power in all of creation,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>You reveal Your providence within the course of history.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Through Your Son, who preaches a gospel of peace, and was victorious on the cross,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>deliver us from baseless fear and despair.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Provide to everyone that loves and practices justice,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>a faithful cooperation in the building of a world where true peace reigns.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Be present with the oppressed, deliver the captives, comfort the poor, feed the hungry, grant strength to the weak,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>reveal in all things the victory of the cross.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">After his death and burial, You wonderfully raised Your Son to glory,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>grant that the deceased may join Him in eternal life.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div></section>'), 'ReferenceParsed' => array('Chapter' => 'petitions-week-3-sunday-vespers-2', 'Verses' => null)), 'pater-noster' => array('TextAbbreviation' => 'pater-noster', 'SourceAbbreviation' => 'breviary-prayers', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'SBLGNT'), 'People' => array('Paul Prins')), 'Text' => 'Our Father, who is in heaven, hallowed be Your Name. Your kingdom come, Your will be done, on earth as it is in heaven. Give us today our daily bread. Forgive us our sins, as we forgive those who sin against us. Lead us not into temptation, but deliver us from evil; for the kingdom, the power, and the glory are Yours without end. Amen', 'Description' => 'The Lords Prayer.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-19' => array('Verified', 'Guidelines'), '2020-10-02' => array('Peer-Review'), '2020-10-01' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2023-10-19' => 'Jordan Prins'))), 'Changes' => array('2023-09-02 - Paul Prins: Update divine casing.', '2020-10-01 - Paul Prins: Added this prayer'), 'License' => '© 2023 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-prayers', 'Title' => array('default' => 'Breviary Prayer Texts', 'UMB-EN' => 'Prayers from the Breviary', 'BMU-FR' => 'Prières du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the prayers used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Our Father, who is in heaven,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>hallowed be Your Name.<br />Your kingdom come,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Your will be done,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>on earth as it is in heaven.<br />Give us today our daily bread.<br />Forgive us our sins,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as we forgive those who sin against us.<br />Lead us not into temptation,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>but deliver us from evil;<br />for the kingdom, the power,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the glory are Yours without end.<br />Amen</p>'), 'ReferenceParsed' => array('Chapter' => 'pater-noster', 'Verses' => null))), 'psalms' => array(array('TextAbbreviation' => 'chapter-0095', 'SourceAbbreviation' => 'breviary-psalms', 'Title' => 'An Invitation to Praise God', 'Chapter' => '95', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'WLC'), 'People' => array('Paul Prins')), 'Verses' => array('Come, let us sing praise to the LORD. [*] Shout with joy to the Rock of our salvation. ', 'Let us enter His presence with a song of thanksgiving, [*] singing joyful songs to Him. [ANT] ', 'For the LORD is a great God, [*] and the great king above all gods. ', 'In His hand are the depths of the earth, [*] and the mountain peaks are His also. ', 'The sea is His for He made it, [*] the dry land His hands formed. [ANT] ', 'Come, let us bow down and worship. [*] Let us kneel before the LORD our maker, ', 'for He is our God, and we are the people of his pasture, [*] and the flock of His hand. [ANT] Today, will you hear His voice? [t] ', ' "Do not harden your hearts, [*] as at Meribah and during the temptation in the wilderness, ', 'where your ancestors tested and provoked Me, [*] although they were witness to My work." [ANT] ', '"Forty years that generation disgusted me", [t] and I said, "They are a people whose hearts go astray, [*] and they do not know my ways." ', 'So I swore in my anger, [*] "Never shall they enter into My rest." [ANT]'), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-25' => array('Verified', 'Guidelines'), '2022-10-27' => array('Peer-Review'), '2022-10-26' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2022-10-26 - Paul Prins: First translation of psalm 95 based on Greek, Latin, and some Hebrew'), 'License' => '© 2022 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-psalms', 'Title' => array('default' => 'Breviary Psalms', 'UMB-EN' => 'Psalms from the Breviary', 'BMU-FR' => 'Psaumes du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'SecondaryType' => 'Poetry', 'Language' => 'hbo', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Chapters', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the psalms used during the divine office.', 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Come, let us sing praise to the <span class="type-small-caps">LORD</span>. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Shout with joy to the Rock of our salvation.<br />Let us enter His presence with a song of thanksgiving, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>singing joyful songs to Him.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>For the <span class="type-small-caps">LORD</span> is a great God, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the great king above all gods.<br />In His hand are the depths of the earth, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the mountain peaks are His also.<br />The sea is His for He made it, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the dry land His hands formed.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Come, let us bow down and worship. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="type-small-caps">LORD</span>us kneel before the <span class="type-small-caps">LORD</span> our maker,<br />for He is our God, and we are the people of his pasture, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the flock of His hand.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Today, will you hear His voice? <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Do not harden your hearts, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as at Meribah and during the temptation in the wilderness,<br />where your ancestors tested and provoked Me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>although they were witness to My work."</p><p>[<span class="type-small-caps">ANT</span>]</p><p>"Forty years that generation disgusted me", <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and I said, "They are a people whose hearts go astray, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and they do not know my ways."<br />So I swore in my anger, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Never shall they enter into My rest."</p><p>[<span class="type-small-caps">ANT</span>]</p>'), 'ReferenceParsed' => array('Chapter' => '95', 'Verses' => null)), array('TextAbbreviation' => 'chapter-0110', 'SourceAbbreviation' => 'breviary-psalms', 'Title' => 'Messiah, King, & Priest', 'Description' => 'A Psalm of David', 'Chapter' => '110', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'WLC'), 'People' => array('Paul Prins')), 'Verses' => array('The LORD says to my master, [*] "Sit at my right hand, and I will make your enemies [*] into a footstool for your feet." ', 'From Zion, the LORD will extend your mighty scepter\'s reach, saying, [*] "Rule in the midst of your enemies." ', 'On the day of your power, your people will follow you, [t] in your holy splendor, [*] "With the breaking of dawn, your youth comes to you like the dew." ', 'The LORD swore an irrevocable oath,[*] "You are a priest always, in the order of King Melchizedek." ', 'On your right is my master, [*] who will crush rulers on the day of his wrath. ', 'He will drink from the brook along his way; [*] therefore he will lift up his head.'), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-25' => array('Verified', 'Guidelines'), '2021-04-08' => array('Peer-Review'), '2021-04-07' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2023-09-30 - Paul Prins: Fixed casings on divine name.', '2021-04-07 - Paul Prins: First translation of psalm 110 based on Greek, Latin, and some Hebrew'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-psalms', 'Title' => array('default' => 'Breviary Psalms', 'UMB-EN' => 'Psalms from the Breviary', 'BMU-FR' => 'Psaumes du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'SecondaryType' => 'Poetry', 'Language' => 'hbo', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Chapters', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the psalms used during the divine office.', 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>The <span class="type-small-caps">LORD</span> says to my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Sit at my right hand,<br />and I will make your enemies <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>into a footstool for your feet."</p><p>From Zion, the <span class="type-small-caps">LORD</span> will extend your mighty scepter\'s reach, saying, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Rule in the midst of your enemies."</p><p>On the day of your power, your people will follow you, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in your holy splendor, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"With the breaking of dawn, your youth comes to you like the dew."</p><p>The <span class="type-small-caps">LORD</span> swore an irrevocable oath,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"You are a priest always, in the order of King Melchizedek."</p><p>On your right is my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>who will crush rulers on the day of his wrath.</p><p>He will drink from the brook along his way; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>therefore he will lift up his head.</p>'), 'ReferenceParsed' => array('Chapter' => '110', 'Verses' => null)), array('TextAbbreviation' => 'chapter-0111', 'SourceAbbreviation' => 'breviary-psalms', 'Title' => 'Great Works of the Lord', 'Description' => '', 'Chapter' => '111', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'WLC'), 'People' => array('Paul Prins')), 'Verses' => array('I will praise the LORD with my whole heart, [*] in the council of the upright and the assembly. ', 'Great are the works of the Lord, [*] sought out by all who delight in them. ', 'Glorious and majestic is His work, [*] and His justice endures forever. ', 'He has caused His wonders to be remembered; [*] the LORD is gracious and compassionate. ', 'He gives food to those who fear Him; [*] He remembers His covenant forever. ', 'He has shown His people the power of His works [t] by giving them the inheritance of nations. [*] ', ' The works of His hands are truth and justice. All His precepts are trustworthy, [t] ', ' standing firm forever and ever, [*] made with uprightness and truth. ', 'He has sent redemption to His people, [*] establishing His covenant forever. Holy and awe-inspiring is His name. [*] ', ' The fear of the LORD is the beginning of wisdom. All those who embody this have good understanding; [*] their praise endures forever.'), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-25' => array('Verified', 'Guidelines'), '2021-09-22' => array('Peer-Review'), '2021-09-21' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2021-09-21 - Paul Prins: First translation of psalm 111 based on Greek, Latin, and Hebrew'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-psalms', 'Title' => array('default' => 'Breviary Psalms', 'UMB-EN' => 'Psalms from the Breviary', 'BMU-FR' => 'Psaumes du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'SecondaryType' => 'Poetry', 'Language' => 'hbo', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Chapters', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the psalms used during the divine office.', 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>I will praise the <span class="type-small-caps">LORD</span> with my whole heart, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in the council of the upright and the assembly.<br />Great are the works of the Lord, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>sought out by all who delight in them.<br />Glorious and majestic is His work, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His justice endures forever.</p><p>He has caused His wonders to be remembered; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the <span class="type-small-caps">LORD</span> is gracious and compassionate.<br />He gives food to those who fear Him; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>He remembers His covenant forever.</p><p>He has shown His people the power of His works <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>by giving them the inheritance of nations. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The works of His hands are truth and justice.<br />All His precepts are trustworthy, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>standing firm forever and ever, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>made with uprightness and truth.<br />He has sent redemption to His people, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>establishing His covenant forever.</p><p>Holy and awe-inspiring is His name. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The fear of the <span class="type-small-caps">LORD</span> is the beginning of wisdom.<br />All those who embody this have good understanding; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>their praise endures forever.</p>'), 'ReferenceParsed' => array('Chapter' => '111', 'Verses' => null))), 'readings' => array('1 Peter 1:3-5' => array('TextAbbreviation' => 'chapter-0001', 'SourceAbbreviation' => 'bible-nt-peter-1', 'Chapter' => '1', 'FormatAs' => 'Letter', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('SBLGNT'), 'People' => array('Paul Prins')), 'Verses' => array(' Blessed be God, the Father of our Lord Jesus Christ. In His great mercy, he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead. ', 'So we will inherit what never perishes, spoils, or fades away. An inheritance that is being kept safe for you in heaven. ', 'You who are protected by the power of God, through faith, for a salvation ready to be revealed at the end of time. '), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-09-30' => array('Peer-Review'), '2021-09-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-09-29 - Paul Prins: First translation of verses 1-9 based on Greek.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'bible-nt-peter-1', 'Title' => array('default' => 'Α\' Πέτρου', 'UMB-EN' => 'The First Epistle of Peter', 'BMU-FR' => 'La Première Épître de Pierre', 'eng' => '1 Peter', 'fra' => '1 Pierre'), 'AlternativeTitles' => array('eng' => array('1 Peter', 'First Peter'), 'fra' => array('1 Pierre', 'Première Épître de Pierre')), 'Description' => '', 'Type' => 'Letter', 'Language' => 'grc-koi', 'Version' => 'Original', 'Segments' => 'Chapters', 'Verses' => true, 'Chapters' => true, 'SegmentTitles' => true, 'Notes' => '', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Date' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Blessed be God, the Father of our Lord Jesus Christ. In His great mercy, he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead. So we will inherit what never perishes, spoils, or fades away. An inheritance that is being kept safe for you in heaven. You who are protected by the power of God, through faith, for a salvation ready to be revealed at the end of time. </p>'), 'ReferenceParsed' => array('Chapter' => 1, 'Verses' => array(3, 4, 5)))), 'responses' => array('week-3-sunday-vespers-2' => array('TextAbbreviation' => 'week-3-sunday-vespers-2', 'SourceAbbreviation' => 'breviary-responses', 'FormatAs' => 'book', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => '[V] Blessed are You Lord, in the kingdom of Heaven. [R] Blessed are You Lord, [*] in the kingdom of Heaven. [V]All of creation gives You glory and praise forever. [V] Glory to the Father, to the Son, and to the Holy Spirit.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-05-05' => array('Peer-Review'), '2021-05-04' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-05-04 - Paul Prins: Translated this prayer.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-responses', 'Title' => 'Breviary Responsory Texts', 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the responsory texts used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<section class="response"><div class="response-versicle"><span class="symbol-versicle">&#8483;</span> Blessed are You Lord, in the kingdom of Heaven.</div><div class="response-response"><span class="symbol-response">&#8479;</span> Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span> All of creation gives You glory and praise forever.</div><div class="response-response"><span class="symbol-response">&#8479;</span> Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span> Glory to the Father, to the Son, and to the Holy Spirit.</div><div class="response-response"><span class="symbol-response">&#8479;</span> Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div></section>'), 'ReferenceParsed' => array('Chapter' => 'week-3-sunday-vespers-2', 'Verses' => null)))), 'HTML' => array('antiphons' => array('' => '<h3>BLANK</h3>', 'invitatorium-day-sunday' => '<p>Come, together we\'ll exault the Lord.</p>', 'sunday-vespers-2-anti-1' => '<p>The <span class="type-small-caps">LORD</span> says to my master: "Sit at My right hand"</p>', 'week-3-sunday-vespers-2-anti-2' => '<p>All his commandments <span class="symbol-star"> *</span> are faithful, established for ever and ever!</p>', 'alleluia-x-3' => '<p>Alleluia, Alleluia, Alleluia.</p>'), 'blessings' => array('' => '<h3>BLANK</h3>', 'vespers' => '<p>May the Lord bless us,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>keep us from all evil,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and bring us to everlasting life.<br /><em>Amen</em></p>'), 'canticles' => array('' => '<h3>BLANK</h3>', 'salus-et-gloria' => '<p>Alleluia<br />Salvation and glory and power belong to our God,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>whose judgments are true and just.<br />Alleluia</p><p>Alleluia<br />Praise our God, all servants of the Lord,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>you who fear him, both small and great.<br />Alleluia</p><p>Alleluia<br />The Lord our God, the Almighty, reigns:<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>let us rejoice and exult and give glory and homage.<br />Alleluia</p><p>Alleluia<br />The marriage of the Lamb has come<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His bride has made herself ready.<br />Alleluia</p><p>Alleluia<br />Happy are those who are invited<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to the wedding banquet of the Lamb.<br />Alleluia</p>', 'magnificat' => '<p>My soul <span class="symbol-cross">&#10011;</span> magnifies the greatness of the Lord; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>my spirit bursts, rejoicing in God my Savior.<br />For He knew the humility of His servant. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>From today all generations will call me blessed.</p><p>The Almighty has done great things for me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and holy is His name.</p><p>He has mercy for those who fear Him, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>from generation to generation.<br />He has shown the strength of His arm, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and scattered the proud for the thoughts of their hearts.</p><p>He has torn the mighty from their thrones, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and lifted up the lowly.<br />He has filled the hungry with good things, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and sent the rich away empty.</p><p>He has given help to His servant Israel,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and remembered His promise of mercy.<br />The promise made to our ancestors,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to Abraham and His children forever.</p>'), 'other' => array('' => '<h3>BLANK</h3>', 'gloria' => '<p>Glory to the Father, to the Son,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and to the Holy Spirit,<br />As it was in the beginning, is now,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and will be forever.<br /><em>Amen</em><br />Alleluia</p>', 'invitatorium-primis' => '<p>Lord, <span class="symbol-cross">&#10011;</span> open my lips, <span class="symbol-star"> *</span><br />and my mouth will proclaim Your praise.</p>', 'invitatorium-postmodum' => '<p>God, <span class="symbol-cross">&#10011;</span> come to my assistance;<span class="symbol-star"> *</span><br />Lord, make haste to help me.</p>'), 'prayers' => array('' => '<h3>BLANK</h3>', 'petitions-week-3-sunday-vespers-2' => '<section class="intercession"><div class="part-introduction">God has created the cosmos, He brought restoration through redemption, and continually renews creation through His love. Trusting in His eternal love we ask:</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">We thank You God for You reveal Your power in all of creation,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>You reveal Your providence within the course of history.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Through Your Son, who preaches a gospel of peace, and was victorious on the cross,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>deliver us from baseless fear and despair.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Provide to everyone that loves and practices justice,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>a faithful cooperation in the building of a world where true peace reigns.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Be present with the oppressed, deliver the captives, comfort the poor, feed the hungry, grant strength to the weak,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>reveal in all things the victory of the cross.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">After his death and burial, You wonderfully raised Your Son to glory,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>grant that the deceased may join Him in eternal life.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div></section>', 'pater-noster' => '<p>Our Father, who is in heaven,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>hallowed be Your Name.<br />Your kingdom come,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Your will be done,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>on earth as it is in heaven.<br />Give us today our daily bread.<br />Forgive us our sins,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as we forgive those who sin against us.<br />Lead us not into temptation,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>but deliver us from evil;<br />for the kingdom, the power,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the glory are Yours without end.<br />Amen</p>'), 'psalms' => array('' => '<h3>BLANK</h3>', '<p>Come, let us sing praise to the <span class="type-small-caps">LORD</span>. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Shout with joy to the Rock of our salvation.<br />Let us enter His presence with a song of thanksgiving, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>singing joyful songs to Him.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>For the <span class="type-small-caps">LORD</span> is a great God, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the great king above all gods.<br />In His hand are the depths of the earth, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the mountain peaks are His also.<br />The sea is His for He made it, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the dry land His hands formed.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Come, let us bow down and worship. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="type-small-caps">LORD</span>us kneel before the <span class="type-small-caps">LORD</span> our maker,<br />for He is our God, and we are the people of his pasture, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the flock of His hand.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Today, will you hear His voice? <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Do not harden your hearts, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as at Meribah and during the temptation in the wilderness,<br />where your ancestors tested and provoked Me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>although they were witness to My work."</p><p>[<span class="type-small-caps">ANT</span>]</p><p>"Forty years that generation disgusted me", <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and I said, "They are a people whose hearts go astray, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and they do not know my ways."<br />So I swore in my anger, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Never shall they enter into My rest."</p><p>[<span class="type-small-caps">ANT</span>]</p>', '<p>The <span class="type-small-caps">LORD</span> says to my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Sit at my right hand,<br />and I will make your enemies <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>into a footstool for your feet."</p><p>From Zion, the <span class="type-small-caps">LORD</span> will extend your mighty scepter\'s reach, saying, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Rule in the midst of your enemies."</p><p>On the day of your power, your people will follow you, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in your holy splendor, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"With the breaking of dawn, your youth comes to you like the dew."</p><p>The <span class="type-small-caps">LORD</span> swore an irrevocable oath,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"You are a priest always, in the order of King Melchizedek."</p><p>On your right is my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>who will crush rulers on the day of his wrath.</p><p>He will drink from the brook along his way; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>therefore he will lift up his head.</p>', '<p>I will praise the <span class="type-small-caps">LORD</span> with my whole heart, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in the council of the upright and the assembly.<br />Great are the works of the Lord, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>sought out by all who delight in them.<br />Glorious and majestic is His work, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His justice endures forever.</p><p>He has caused His wonders to be remembered; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the <span class="type-small-caps">LORD</span> is gracious and compassionate.<br />He gives food to those who fear Him; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>He remembers His covenant forever.</p><p>He has shown His people the power of His works <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>by giving them the inheritance of nations. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The works of His hands are truth and justice.<br />All His precepts are trustworthy, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>standing firm forever and ever, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>made with uprightness and truth.<br />He has sent redemption to His people, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>establishing His covenant forever.</p><p>Holy and awe-inspiring is His name. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The fear of the <span class="type-small-caps">LORD</span> is the beginning of wisdom.<br />All those who embody this have good understanding; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>their praise endures forever.</p>'), 'readings' => array('' => '<h3>BLANK</h3>', '1 Peter 1:3-5' => '<p><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Blessed be God, the Father of our Lord Jesus Christ. In His great mercy, he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead. So we will inherit what never perishes, spoils, or fades away. An inheritance that is being kept safe for you in heaven. You who are protected by the power of God, through faith, for a salvation ready to be revealed at the end of time. </p>'), 'responses' => array('' => '<h3>BLANK</h3>', 'week-3-sunday-vespers-2' => '<section class="response"><div class="response-versicle"><span class="symbol-versicle">&#8483;</span> Blessed are You Lord, in the kingdom of Heaven.</div><div class="response-response"><span class="symbol-response">&#8479;</span> Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span> All of creation gives You glory and praise forever.</div><div class="response-response"><span class="symbol-response">&#8479;</span> Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span> Glory to the Father, to the Son, and to the Holy Spirit.</div><div class="response-response"><span class="symbol-response">&#8479;</span> Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div></section>')), 'Versions' => array('UMB-EN' => array('Abbreviation' => 'UMB-EN', 'Title' => 'Urban Monastic Breviary', 'Description' => 'The english translation of the Psalter used by Urban Monasticism', 'License' => '© 2021 Urban Monastics, Paris', 'Language' => 'eng', 'Date' => '2021', 'Formatting' => array('SmallCaps' => true, 'Selah' => true))), 'thisCalendar' => 'urban-monastic', 'Navigation' => array('date' => '2023-06-18', 'today' => array('date' => '2023-06-18', 'day-month' => '18 June', 'month-day' => 'June 18', 'day-of-week' => 'Sunday'), 'yesterday' => array('date' => '2023-06-17', 'day-month' => '17 June', 'month-day' => 'June 17', 'day-of-week' => 'Saturday'), 'tomorrow' => array('date' => '2023-06-19', 'day-month' => '19 June', 'month-day' => 'June 19', 'day-of-week' => 'Monday'), 'offices' => array()), 'BodyCSS' => array('prayer', 'vespers'), 'PsalmodyStarted' => null, 'svg' => object(DOMDocument), '__currentLoopData' => array('Invitatory' => array('other' => 'invitatorium-primis', 'psalm' => 95, 'antiphon' => 'invitatorium-day-sunday'), 'Introductory' => array('other' => 'invitatorium-postmodum'), 'Hymn' => array('Hymn' => null, 'hymn' => null), 'Psalmody-1' => array('psalm' => '110', 'antiphon' => 'sunday-vespers-2-anti-1', 'prayer' => null), 'Psalmody-2' => array('psalm' => '111', 'antiphon' => 'week-3-sunday-vespers-2-anti-2', 'prayer' => null), 'Canticle' => array('canticle' => 'salus-et-gloria', 'antiphon' => 'alleluia-x-3'), 'Reading' => array('reading' => '1 Peter 1:3-5'), 'Silence' => array('other' => null), 'ReadingResponse' => array('response' => 'week-3-sunday-vespers-2'), 'GospelCanticle' => array('canticle' => 'magnificat', 'antiphon' => null), 'Petitions' => array('prayer' => 'petitions-week-3-sunday-vespers-2'), 'LordsPrayer' => array('prayer' => 'pater-noster'), 'ConcludingPrayer' => array('prayer' => null), 'Blessing' => array('blessing' => 'vespers')), 'Vars' => array('prayer' => null), 'Segment' => 'ConcludingPrayer', 'loop' => object(stdClass))) in /var/www/html/storage/framework/views/b3dc6f3fe1a3331512a831eb5bfd3005139093d4.php (line 143)
  1.             <?php break; ?>
  2.         <?php case ('ConcludingPrayer'): ?>
  3.             <?php echo $__env->make'breviarium/office/prayer', [ 
  4.                     'Type' => 'concluding',
  5.                     'Prayer' => $Texts['prayers'][$Vars['prayer']],
  6.                     'PrayerHTML' => $HTML['prayers'][$Vars['prayer']]
  7.                 ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  8.             <?php break; ?>
  9.         <?php case ('GospelCanticle'): ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         }
  2.         // Once we have the path to the compiled file, we will evaluate the paths with
  3.         // typical PHP just like any other templates. We also keep a stack of views
  4.         // which have been rendered for right exception messages to be generated.
  5.         $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         array_pop($this->lastCompiled);
  7.         return $results;
  8.     }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each sections get flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         // If this content implements the "Renderable" interface then we will call the
  2.         // render method on the object so we will avoid any "__toString" exceptions
  3.         // that might be thrown and have their errors obscured by PHP's handling.
  4.         elseif ($content instanceof Renderable) {
  5.             $content $content->render();
  6.         }
  7.         parent::setContent($content);
  8.         return $this;
  1.      */
  2.     public function __construct($content ''$status 200, array $headers = [])
  3.     {
  4.         $this->headers = new ResponseHeaderBag($headers);
  5.         $this->setContent($content);
  6.         $this->setStatusCode($status);
  7.         $this->setProtocolVersion('1.0');
  8.     }
  9.     /**
  1.                     $response instanceof JsonSerializable ||
  2.                     $response instanceof \stdClass ||
  3.                     is_array($response))) {
  4.             $response = new JsonResponse($response);
  5.         } elseif (! $response instanceof SymfonyResponse) {
  6.             $response = new Response($response200, ['Content-Type' => 'text/html']);
  7.         }
  8.         if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) {
  9.             $response->setNotModified();
  10.         }
  1.      * @param  mixed  $response
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function prepareResponse($request$response)
  5.     {
  6.         return static::toResponse($request$response);
  7.     }
  8.     /**
  9.      * Static version of prepareResponse.
  10.      *
  1.         return (new Pipeline($this->container))
  2.                         ->send($request)
  3.                         ->through($middleware)
  4.                         ->then(function ($request) use ($route) {
  5.                             return $this->prepareResponse(
  6.                                 $request$route->run()
  7.                             );
  8.                         });
  9.     }
  10.     /**
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.         $viewPath resource_path('views/' $currentLocale);
  2.         
  3.         // Add current locale-code to view-paths
  4.         View::addLocation($viewPath);
  5.         return $next($request);
  6.     }
  7. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         $routeName $app['laravellocalization']->getRouteNameFromAPath($request->getUri());
  2.         $app['laravellocalization']->setRouteName($routeName);
  3.         return $next($request);
  4.     }
  5. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             }
  2.             throw $exception;
  3.         }
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             $this->isReading($request) ||
  2.             $this->runningUnitTests() ||
  3.             $this->inExceptArray($request) ||
  4.             $this->tokensMatch($request)
  5.         ) {
  6.             return tap($next($request), function ($response) use ($request) {
  7.                 if ($this->shouldAddXsrfTokenCookie()) {
  8.                     $this->addCookieToResponse($request$response);
  9.                 }
  10.             });
  11.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         // Putting the errors in the view for every view allows the developer to just
  2.         // assume that some errors are always available, which is convenient since
  3.         // they don't have to continually run checks for the presence of errors.
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             $this->startSession($request$session)
  2.         );
  3.         $this->collectGarbage($session);
  4.         $response $next($request);
  5.         $this->storeCurrentUrl($request$session);
  6.         $this->addCookieToResponse($response$session);
  1.         if ($this->manager->shouldBlock() ||
  2.             ($request->route() instanceof Route && $request->route()->locksFor())) {
  3.             return $this->handleRequestWhileBlocking($request$session$next);
  4.         }
  5.         return $this->handleStatefulRequest($request$session$next);
  6.     }
  7.     /**
  8.      * Handle the given request within session state.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @param  \Closure  $next
  2.      * @return mixed
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         $response $next($request);
  7.         foreach ($this->cookies->getQueuedCookies() as $cookie) {
  8.             $response->headers->setCookie($cookie);
  9.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @param  \Closure  $next
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         return $this->encrypt($next($this->decrypt($request)));
  7.     }
  8.     /**
  9.      * Decrypt the cookies on the request.
  10.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.                         ->through($middleware)
  2.                         ->then(function ($request) use ($route) {
  3.                             return $this->prepareResponse(
  4.                                 $request$route->run()
  5.                             );
  6.                         });
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  10.      *
  1.         });
  2.         $this->events->dispatch(new RouteMatched($route$request));
  3.         return $this->prepareResponse($request,
  4.             $this->runRouteWithinStack($route$request)
  5.         );
  6.     }
  7.     /**
  8.      * Run the given route within a Stack "onion" instance.
  1.      * @param  \Illuminate\Http\Request  $request
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function dispatchToRoute(Request $request)
  5.     {
  6.         return $this->runRoute($request$this->findRoute($request));
  7.     }
  8.     /**
  9.      * Find the route matching a given request.
  10.      *
  1.      */
  2.     public function dispatch(Request $request)
  3.     {
  4.         $this->currentRequest $request;
  5.         return $this->dispatchToRoute($request);
  6.     }
  7.     /**
  8.      * Dispatch the request to a route and return the response.
  9.      *
  1.     protected function dispatchToRouter()
  2.     {
  3.         return function ($request) {
  4.             $this->app->instance('request'$request);
  5.             return $this->router->dispatch($request);
  6.         };
  7.     }
  8.     /**
  9.      * Call the terminate method on any terminable middleware.
in /var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> Illuminate\Foundation\Http\{closure} (line 128)
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         if ($max && $request->server('CONTENT_LENGTH') > $max) {
  2.             throw new PostTooLargeException;
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine the server 'post_max_size' as bytes.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.                 null,
  2.                 $this->getHeaders($data)
  3.             );
  4.         }
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Determine if the incoming request has a maintenance mode bypass cookie.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
in /var/www/html/vendor/fideloper/proxy/src/TrustProxies.php -> Illuminate\Pipeline\{closure} (line 57)
  1.     public function handle(Request $requestClosure $next)
  2.     {
  3.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
  4.         $this->setTrustedProxyIpAddresses($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
in /var/www/html/vendor/fruitcake/laravel-cors/src/HandleCors.php -> Illuminate\Pipeline\{closure} (line 38)
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         // Check if we're dealing with CORS and if we should handle it
  5.         if (! $this->shouldRun($request)) {
  6.             return $next($request);
  7.         }
  8.         // For Preflight, return the Preflight response
  9.         if ($this->cors->isPreflightRequest($request)) {
  10.             $response $this->cors->handlePreflightRequest($request);
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
Kernel->handle(object(Request)) in /var/www/html/public/index.php (line 55)
  1. */
  2. $kernel $app->make(Illuminate\Contracts\Http\Kernel::class);
  3. $response $kernel->handle(
  4.     $request Illuminate\Http\Request::capture()
  5. );
  6. $response->send();
  7. $kernel->terminate($request$response);

Stack Traces 2

[2/2] ViewException
Illuminate\View\ViewException:
Undefined index:  (View: /var/www/html/resources/views/breviarium/office.blade.php)

  at /var/www/html/storage/framework/views/b3dc6f3fe1a3331512a831eb5bfd3005139093d4.php:143
  at Illuminate\View\Engines\CompilerEngine->handleViewException(object(ErrorException), 0)
     (/var/www/html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/var/www/html/storage/framework/views/b3dc6f3fe1a3331512a831eb5bfd3005139093d4.php', array('__env' => object(Factory), 'app' => object(Application), 'Domain' => 'breviarium', 'errors' => object(ViewErrorBag), 'DateLong' => 'Sunday 18 June', 'Date' => array('Day' => '18', 'DayOfWeek' => 'Sunday', 'Month' => 'June', 'Year' => '2023', 'Season' => null, 'Week' => null, 'String' => '2023-06-18'), 'Year' => '2023', 'Liturgical' => array('calendarDate' => '2023-06-18', 'breviaryDate' => '2023-06-18', 'colors' => array('vigils' => 'Green', 'lauds' => 'Green', 'terce' => 'Green', 'sext' => 'Green', 'none' => 'Green', 'vespers' => 'Green', 'compline' => 'Green'), 'dayColor' => 'Green', 'dayOfWeek' => 0, 'dayType' => 'sunday', 'invocation' => array('antiphon' => 'invitatorium-day-sunday', 'psalm' => 95), 'marianEmphasis' => null, 'octave' => null, 'proper' => array('saints' => array(), 'optional' => array(), 'season' => 'ordinary-week-11-day-0'), 'psalterWeek' => 3, 'season' => 'ordinary', 'seasonWeek' => 11, 'startEarly' => array('proper' => null, 'abbreviation' => null), 'sundayCycle' => 'A', 'TitleSeason' => null, 'TitleProper' => null, 'Title' => '<span class="DayOfWeek">Sunday</span> the 11th Week in <span class="Season">Ordinary Time</span>', 'ProperOfSaints' => array()), 'Office' => array('Calendar' => array('calendarDate' => '2023-06-18', 'breviaryDate' => '2023-06-18', 'colors' => array('vigils' => 'Green', 'lauds' => 'Green', 'terce' => 'Green', 'sext' => 'Green', 'none' => 'Green', 'vespers' => 'Green', 'compline' => 'Green'), 'dayColor' => 'Green', 'dayOfWeek' => 0, 'dayType' => 'sunday', 'invocation' => array('antiphon' => 'invitatorium-day-sunday', 'psalm' => 95), 'marianEmphasis' => null, 'octave' => null, 'proper' => array('saints' => array(), 'optional' => array(), 'season' => 'ordinary-week-11-day-0'), 'psalterWeek' => 3, 'season' => 'ordinary', 'seasonWeek' => 11, 'startEarly' => array('proper' => null, 'abbreviation' => null), 'sundayCycle' => 'A', 'TitleSeason' => null, 'TitleProper' => null, 'Title' => '<span class="DayOfWeek">Sunday</span> the 11th Week in <span class="Season">Ordinary Time</span>', 'ProperOfSaints' => array()), 'Scheme' => array('Complete' => true, 'Hymn' => null, 'Psalmody-1' => array('Passage' => '110', 'Antiphon' => 'sunday-vespers-2-anti-1', 'Prayer' => null), 'Psalmody-2' => array('Passage' => '111', 'Antiphon' => 'week-3-sunday-vespers-2-anti-2', 'Prayer' => null), 'Canticle' => array('Passage' => 'salus-et-gloria', 'Antiphon' => 'alleluia-x-3'), 'Reading' => '1 Peter 1:3-5', 'Responsitory' => 'week-3-sunday-vespers-2', 'GospelCanticle' => array('Antiphon' => null), 'Prayers' => array('Petitions' => 'petitions-week-3-sunday-vespers-2', 'Concluding' => null), 'Blessing' => 'vespers'), 'Proper-Seasons' => array('Abbreviation' => 'ordinary-week-11-day-0', 'IntroductoryVerse' => null, 'Hymn' => null, 'Psalmody-1' => array('Passage' => null, 'Antiphon' => null, 'Prayer' => null), 'Psalmody-2' => array('Passage' => null, 'Antiphon' => null, 'Prayer' => null), 'Canticle' => array('Passage' => null, 'Antiphon' => null), 'Reading' => null, 'Responsitory' => null, 'GospelCanticle' => array('Antiphon' => array('A' => null, 'B' => null, 'C' => null)), 'Prayers' => array('Petitions' => null, 'Concluding' => null), 'Blessing' => null), 'Proper-Saints' => array(), 'Structure' => array('Invitatory' => array('other' => 'invitatorium-primis', 'psalm' => 95, 'antiphon' => 'invitatorium-day-sunday'), 'Introductory' => array('other' => 'invitatorium-postmodum'), 'Hymn' => array('Hymn' => null, 'hymn' => null), 'Psalmody-1' => array('psalm' => '110', 'antiphon' => 'sunday-vespers-2-anti-1', 'prayer' => null), 'Psalmody-2' => array('psalm' => '111', 'antiphon' => 'week-3-sunday-vespers-2-anti-2', 'prayer' => null), 'Canticle' => array('canticle' => 'salus-et-gloria', 'antiphon' => 'alleluia-x-3'), 'Reading' => array('reading' => '1 Peter 1:3-5'), 'Silence' => array('other' => null), 'ReadingResponse' => array('response' => 'week-3-sunday-vespers-2'), 'GospelCanticle' => array('canticle' => 'magnificat', 'antiphon' => null), 'Petitions' => array('prayer' => 'petitions-week-3-sunday-vespers-2'), 'LordsPrayer' => array('prayer' => 'pater-noster'), 'ConcludingPrayer' => array('prayer' => null), 'Blessing' => array('blessing' => 'vespers')), 'TextAbbreviations' => array('antiphons' => array('invitatorium-day-sunday', 'sunday-vespers-2-anti-1', 'week-3-sunday-vespers-2-anti-2', 'alleluia-x-3'), 'bible' => array(), 'blessings' => array('vespers'), 'canticles' => array('salus-et-gloria', 'magnificat'), 'hymns' => array(), 'other' => array('gloria', 'invitatorium-primis', 'invitatorium-postmodum'), 'prayers' => array('petitions-week-3-sunday-vespers-2', 'pater-noster'), 'psalms' => array('95', '110', '111'), 'readings' => array('1 Peter 1:3-5'), 'responses' => array('week-3-sunday-vespers-2')), 'General' => false, 'Office' => 'vespers', 'OfficeKey' => 'vespers', 'OfficeSVG' => '/assets/offices/office-vespers.svg'), 'Texts' => array('antiphons' => array('invitatorium-day-sunday' => array('TextAbbreviation' => 'invitatorium-day-sunday', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Come, together we\'ll exault the Lord.', 'Extra' => array('BreviaryInstructions' => 'Invitatory antiphon for Sundays in ordinary time. [Not Repeated inside the Psalm]', 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-12-05' => array('Peer-Review'), '2021-12-04' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-12-04 - Paul Prins: Added this antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Come, together we\'ll exault the Lord.</p>'), 'ReferenceParsed' => array('Chapter' => 'invitatorium-day-sunday', 'Verses' => null)), 'sunday-vespers-2-anti-1' => array('TextAbbreviation' => 'week-3-sunday-vespers-2-anti-1', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'The LORD says to my master: "Sit at My right hand"', 'Extra' => array('Reference' => array('Psalm 110'), 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-05-25' => array('Peer-Review'), '2021-05-24' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-05-24 - Paul Prins: Added this antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>The <span class="type-small-caps">LORD</span> says to my master: "Sit at My right hand"</p>'), 'ReferenceParsed' => array('Chapter' => 'sunday-vespers-2-anti-1', 'Verses' => null)), 'week-3-sunday-vespers-2-anti-2' => array('TextAbbreviation' => 'week-3-sunday-vespers-2-anti-2', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'All his commandments [*] are faithful, established for ever and ever!', 'Extra' => array('Reference' => array('Psalm 119:86'), 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-10-01' => array('Peer-Review'), '2021-09-30' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-09-30 - Paul Prins: Added this Antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>All his commandments <span class="symbol-star"> *</span> are faithful, established for ever and ever!</p>'), 'ReferenceParsed' => array('Chapter' => 'week-3-sunday-vespers-2-anti-2', 'Verses' => null)), 'alleluia-x-3' => array('TextAbbreviation' => 'alleluia-x-3', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Alleluia, Alleluia, Alleluia.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-01-01' => array('Verified', 'Guidelines', 'Peer-Review', 'Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-11' => 'Constance McIntosh Smith', '2023-12-09' => 'Sheila Whittenberg', '2023-10-19' => 'Jordan Prins'))), 'Changes' => array('2021-01-01 - Paul Prins: First translation of this Antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Alleluia, Alleluia, Alleluia.</p>'), 'ReferenceParsed' => array('Chapter' => 'alleluia-x-3', 'Verses' => null))), 'blessings' => array('vespers' => array('TextAbbreviation' => 'vespers', 'SourceAbbreviation' => 'breviary-blessings', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'May the Lord bless us,
	keep us from all evil,
	and bring us to everlasting life.
*Amen*', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-03-22' => array('Peer-Review'), '2021-03-21' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-03-21 - Paul Prins: First translation of this blessing.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-blessings', 'Title' => array('default' => 'Breviary Blessings', 'UMB-EN' => 'Blessings from the Breviary', 'BMU-FR' => 'Bénédictions du Bréviaire', 'eng' => 'Blessings', 'fra' => 'Bénédictions'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the blessings used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>May the Lord bless us,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>keep us from all evil,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and bring us to everlasting life.<br /><em>Amen</em></p>'), 'ReferenceParsed' => array('Chapter' => 'vespers', 'Verses' => null))), 'canticles' => array('salus-et-gloria' => array('TextAbbreviation' => 'salus-et-gloria', 'SourceAbbreviation' => 'breviary-canticles', 'Title' => 'Salvation, Glory, and Power', 'Description' => 'From Revelation 19:1-2, 5-7', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH', 'SBLGNT'), 'People' => array('Paul Prins')), 'Verses' => array('Alleluia
Salvation and glory and power belong to our God,[*]
	whose judgments are true and just.
Alleluia

', 'Alleluia
Praise our God, all servants of the Lord,[*]
	you who fear him, both small and great.
Alleluia

', 'Alleluia
The Lord our God, the Almighty, reigns:[*]
	let us rejoice and exult and give glory and homage.
Alleluia

', 'Alleluia
The marriage of the Lamb has come[*]
	and His bride has made herself ready.
Alleluia

', 'Alleluia
Happy are those who are invited[*]
	to the wedding banquet of the Lamb.
Alleluia'), 'Extra' => array('Reference' => array('Revelation 19:1-2, 5-7'), 'LiturgiaeHorarum-Index' => 22, 'LiturgiaeHorarum-Cantica' => 'NT', 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-31' => array('Verified', 'Guidelines'), '2020-03-30' => array('Peer-Review'), '2020-03-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-31' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-31 - Constance McIntosh Smith: Implement her editorial feedback.', '2020-03-29 - Paul Prins : Added this Canticle.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-canticles', 'Title' => array('default' => 'Breviary Canticles', 'UMB-EN' => 'Canticles from the Breviary', 'BMU-FR' => 'Cantiques du Bréviaire', 'eng' => 'Canticles', 'fra' => 'Cantiques'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the canticles used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Alleluia<br />Salvation and glory and power belong to our God,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>whose judgments are true and just.<br />Alleluia</p><p>Alleluia<br />Praise our God, all servants of the Lord,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>you who fear him, both small and great.<br />Alleluia</p><p>Alleluia<br />The Lord our God, the Almighty, reigns:<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>let us rejoice and exult and give glory and homage.<br />Alleluia</p><p>Alleluia<br />The marriage of the Lamb has come<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His bride has made herself ready.<br />Alleluia</p><p>Alleluia<br />Happy are those who are invited<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to the wedding banquet of the Lamb.<br />Alleluia</p>'), 'ReferenceParsed' => array('Chapter' => 'salus-et-gloria', 'Verses' => null)), 'magnificat' => array('TextAbbreviation' => 'magnificat', 'SourceAbbreviation' => 'breviary-canticles', 'Title' => 'My Soul Magnifies', 'Description' => 'From Luke 1:46-55', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH', 'SBLGNT'), 'People' => array('Paul Prins')), 'Verses' => array('My soul [+] magnifies the greatness of the Lord; [*]
	', 'my spirit bursts, rejoicing in God my Savior.
', 'For He knew the humility of His servant. [*]
	From today all generations will call me blessed.

', 'The Almighty has done great things for me, [*]
	and holy is His name.

', 'He has mercy for those who fear Him, [*]
	from generation to generation.
', 'He has shown the strength of His arm, [*]
	and scattered the proud for the thoughts of their hearts.

', 'He has torn the mighty from their thrones, [*]
	and lifted up the lowly.
', 'He has filled the hungry with good things, [*]
	and sent the rich away empty.

', 'He has given help to His servant Israel,[*]
	and remembered His promise of mercy.
', 'The promise made to our ancestors,[*]
	to Abraham and His children forever.'), 'Extra' => array('Reference' => array('Luke 1:46-55'), 'LiturgiaeHorarum-Index' => 1, 'LiturgiaeHorarum-Cantica' => 'NT', 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-31' => array('Verified', 'Guidelines'), '2020-03-30' => array('Peer-Review'), '2020-03-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-31' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-31 - Constance McIntosh Smith: Implement her editorial feedback.', '2020-03-29 - Paul Prins : Added this Canticle.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-canticles', 'Title' => array('default' => 'Breviary Canticles', 'UMB-EN' => 'Canticles from the Breviary', 'BMU-FR' => 'Cantiques du Bréviaire', 'eng' => 'Canticles', 'fra' => 'Cantiques'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the canticles used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>My soul <span class="symbol-cross">&#10011;</span> magnifies the greatness of the Lord; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>my spirit bursts, rejoicing in God my Savior.<br />For He knew the humility of His servant. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>From today all generations will call me blessed.</p><p>The Almighty has done great things for me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and holy is His name.</p><p>He has mercy for those who fear Him, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>from generation to generation.<br />He has shown the strength of His arm, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and scattered the proud for the thoughts of their hearts.</p><p>He has torn the mighty from their thrones, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and lifted up the lowly.<br />He has filled the hungry with good things, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and sent the rich away empty.</p><p>He has given help to His servant Israel,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and remembered His promise of mercy.<br />The promise made to our ancestors,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to Abraham and His children forever.</p>'), 'ReferenceParsed' => array('Chapter' => 'magnificat', 'Verses' => null))), 'other' => array('gloria' => array('TextAbbreviation' => 'gloria', 'SourceAbbreviation' => 'breviary-other', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Glory to the Father, to the Son,
	and to the Holy Spirit,
As it was in the beginning, is now,
	and will be forever.
*Amen*
Alleluia', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-20' => array('Verified', 'Guidelines'), '2020-03-30' => array('Peer-Review'), '2020-03-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-19' => 'Constance McIntosh Smith', '2024-01-11' => 'Constance McIntosh Smith', '2023-12-09' => 'Sheila Whittenberg', '2023-10-19' => 'Jordan Prins'))), 'Changes' => array('2024-01-19 - Constance McIntosh Smith: Grammatical corrections', '2022-05-01 - Paul Prins: Update language.', '2020-03-29 - Paul Prins: First translation.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-other', 'Title' => array('default' => 'Breviary Additional Texts', 'UMB-EN' => 'Additional Texts for the Breviary', 'BMU-FR' => 'Texts Supplémentaires du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This book contains all of the additional texts which are neither psalms, antiphons, canticles, responses, nor prayers.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Glory to the Father, to the Son,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and to the Holy Spirit,<br />As it was in the beginning, is now,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and will be forever.<br /><em>Amen</em><br />Alleluia</p>'), 'ReferenceParsed' => array('Chapter' => 'gloria', 'Verses' => null)), 'invitatorium-primis' => array('TextAbbreviation' => 'invitatorium-primis', 'SourceAbbreviation' => 'breviary-other', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Lord, [+] open my lips, [*]
and my mouth will proclaim Your praise.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-20' => array('Verified', 'Guidelines'), '2020-10-02' => array('Peer-Review'), '2020-10-01' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2023-10-20' => 'Jordan Prins'))), 'Changes' => array('2023-10-20 - Jordan Prins: Fix Divine pronoun casing.', '2023-10-14 - Paul Prins: Refined the text further.', '2023-04-06 - Paul Prins: Updated this text.', '2020-10-01 - Paul Prins: Added this text.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-other', 'Title' => array('default' => 'Breviary Additional Texts', 'UMB-EN' => 'Additional Texts for the Breviary', 'BMU-FR' => 'Texts Supplémentaires du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This book contains all of the additional texts which are neither psalms, antiphons, canticles, responses, nor prayers.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Lord, <span class="symbol-cross">&#10011;</span> open my lips, <span class="symbol-star"> *</span><br />and my mouth will proclaim Your praise.</p>'), 'ReferenceParsed' => array('Chapter' => 'invitatorium-primis', 'Verses' => null)), 'invitatorium-postmodum' => array('TextAbbreviation' => 'invitatorium-postmodum', 'SourceAbbreviation' => 'breviary-other', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'God, [+] come to my assistance;[*]
Lord, make haste to help me.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-20' => array('Verified', 'Guidelines'), '2020-10-02' => array('Peer-Review'), '2020-10-01' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith', '2023-10-20' => 'Jordan Prins'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2020-10-01 - Paul Prins: Added this text.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-other', 'Title' => array('default' => 'Breviary Additional Texts', 'UMB-EN' => 'Additional Texts for the Breviary', 'BMU-FR' => 'Texts Supplémentaires du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This book contains all of the additional texts which are neither psalms, antiphons, canticles, responses, nor prayers.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>God, <span class="symbol-cross">&#10011;</span> come to my assistance;<span class="symbol-star"> *</span><br />Lord, make haste to help me.</p>'), 'ReferenceParsed' => array('Chapter' => 'invitatorium-postmodum', 'Verses' => null))), 'prayers' => array('petitions-week-3-sunday-vespers-2' => array('TextAbbreviation' => 'petitions-week-3-sunday-vespers-2', 'SourceAbbreviation' => 'breviary-prayers', 'FormatAs' => 'book', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => '[II] God has created the cosmos, He brought restoration through redemption, and continually renews creation through His love. Trusting in His eternal love we ask:
[IR] Lord, renew the wondrous works of Your love. 
[I1] We thank You God for You reveal Your power in all of creation,
[I2] You reveal Your providence within the course of history.
[I1] Through Your Son, who preaches a gospel of peace, and was victorious on the cross,
[I2] deliver us from baseless fear and despair.
[I1] Provide to everyone that loves and practices justice,
[I2] a faithful cooperation in the building of a world where true peace reigns.
[I1] Be present with the oppressed, deliver the captives, comfort the poor, feed the hungry, grant strength to the weak,
[I2] reveal in all things the victory of the cross.
[I1] After his death and burial, You wonderfully raised Your Son to glory,
[I2] grant that the deceased may join Him in eternal life.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-06-06' => array('Peer-Review'), '2021-06-05' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-09-30 - Paul Prins: First translation of these intensions.', '2021-08-04 - Paul Prins: Change abbreviation to use petitions.', '2021-06-05 - Paul Prins: Added placeholder for these intentions.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-prayers', 'Title' => array('default' => 'Breviary Prayer Texts', 'UMB-EN' => 'Prayers from the Breviary', 'BMU-FR' => 'Prières du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the prayers used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<section class="intercession"><div class="part-introduction">God has created the cosmos, He brought restoration through redemption, and continually renews creation through His love. Trusting in His eternal love we ask:</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">We thank You God for You reveal Your power in all of creation,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>You reveal Your providence within the course of history.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Through Your Son, who preaches a gospel of peace, and was victorious on the cross,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>deliver us from baseless fear and despair.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Provide to everyone that loves and practices justice,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>a faithful cooperation in the building of a world where true peace reigns.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Be present with the oppressed, deliver the captives, comfort the poor, feed the hungry, grant strength to the weak,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>reveal in all things the victory of the cross.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">After his death and burial, You wonderfully raised Your Son to glory,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>grant that the deceased may join Him in eternal life.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div></section>'), 'ReferenceParsed' => array('Chapter' => 'petitions-week-3-sunday-vespers-2', 'Verses' => null)), 'pater-noster' => array('TextAbbreviation' => 'pater-noster', 'SourceAbbreviation' => 'breviary-prayers', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'SBLGNT'), 'People' => array('Paul Prins')), 'Text' => 'Our Father, who is in heaven,
	hallowed be Your Name.
Your kingdom come,
	Your will be done,
	on earth as it is in heaven.
Give us today our daily bread.
Forgive us our sins,
	as we forgive those who sin against us.
Lead us not into temptation,
	but deliver us from evil;
for the kingdom, the power,
	and the glory are Yours without end.
Amen', 'Description' => 'The Lords Prayer.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-19' => array('Verified', 'Guidelines'), '2020-10-02' => array('Peer-Review'), '2020-10-01' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2023-10-19' => 'Jordan Prins'))), 'Changes' => array('2023-09-02 - Paul Prins: Update divine casing.', '2020-10-01 - Paul Prins: Added this prayer'), 'License' => '© 2023 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-prayers', 'Title' => array('default' => 'Breviary Prayer Texts', 'UMB-EN' => 'Prayers from the Breviary', 'BMU-FR' => 'Prières du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the prayers used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Our Father, who is in heaven,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>hallowed be Your Name.<br />Your kingdom come,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Your will be done,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>on earth as it is in heaven.<br />Give us today our daily bread.<br />Forgive us our sins,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as we forgive those who sin against us.<br />Lead us not into temptation,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>but deliver us from evil;<br />for the kingdom, the power,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the glory are Yours without end.<br />Amen</p>'), 'ReferenceParsed' => array('Chapter' => 'pater-noster', 'Verses' => null))), 'psalms' => array(array('TextAbbreviation' => 'chapter-0095', 'SourceAbbreviation' => 'breviary-psalms', 'Title' => 'An Invitation to Praise God', 'Chapter' => '95', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'WLC'), 'People' => array('Paul Prins')), 'Verses' => array('Come, let us sing praise to the LORD. [*]
	Shout with joy to the Rock of our salvation.
', 'Let us enter His presence with a song of thanksgiving, [*]
	singing joyful songs to Him.

[ANT]

', 'For the LORD is a great God, [*]
	and the great king above all gods.
', 'In His hand are the depths of the earth, [*]
	and the mountain peaks are His also.
', 'The sea is His for He made it, [*]
	the dry land His hands formed.

[ANT]

', 'Come, let us bow down and worship. [*]
	Let us kneel before the LORD our maker,
', 'for He is our God, and we are the people of his pasture, [*]
	and the flock of His hand.

[ANT]

Today, will you hear His voice? [t]
', '	"Do not harden your hearts, [*]
	as at Meribah and during the temptation in the wilderness,
', 'where your ancestors tested and provoked Me, [*]
	although they were witness to My work."

[ANT]

', '"Forty years that generation disgusted me", [t]
	and I said, "They are a people whose hearts go astray, [*]
	and they do not know my ways."
', 'So I swore in my anger, [*]
	"Never shall they enter into My rest."

[ANT]'), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-25' => array('Verified', 'Guidelines'), '2022-10-27' => array('Peer-Review'), '2022-10-26' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2022-10-26 - Paul Prins: First translation of psalm 95 based on Greek, Latin, and some Hebrew'), 'License' => '© 2022 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-psalms', 'Title' => array('default' => 'Breviary Psalms', 'UMB-EN' => 'Psalms from the Breviary', 'BMU-FR' => 'Psaumes du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'SecondaryType' => 'Poetry', 'Language' => 'hbo', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Chapters', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the psalms used during the divine office.', 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Come, let us sing praise to the <span class="type-small-caps">LORD</span>. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Shout with joy to the Rock of our salvation.<br />Let us enter His presence with a song of thanksgiving, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>singing joyful songs to Him.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>For the <span class="type-small-caps">LORD</span> is a great God, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the great king above all gods.<br />In His hand are the depths of the earth, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the mountain peaks are His also.<br />The sea is His for He made it, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the dry land His hands formed.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Come, let us bow down and worship. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="type-small-caps">LORD</span>us kneel before the <span class="type-small-caps">LORD</span> our maker,<br />for He is our God, and we are the people of his pasture, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the flock of His hand.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Today, will you hear His voice? <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Do not harden your hearts, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as at Meribah and during the temptation in the wilderness,<br />where your ancestors tested and provoked Me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>although they were witness to My work."</p><p>[<span class="type-small-caps">ANT</span>]</p><p>"Forty years that generation disgusted me", <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and I said, "They are a people whose hearts go astray, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and they do not know my ways."<br />So I swore in my anger, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Never shall they enter into My rest."</p><p>[<span class="type-small-caps">ANT</span>]</p>'), 'ReferenceParsed' => array('Chapter' => '95', 'Verses' => null)), array('TextAbbreviation' => 'chapter-0110', 'SourceAbbreviation' => 'breviary-psalms', 'Title' => 'Messiah, King, & Priest', 'Description' => 'A Psalm of David', 'Chapter' => '110', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'WLC'), 'People' => array('Paul Prins')), 'Verses' => array('The LORD says to my master, [*]
	"Sit at my right hand,
and I will make your enemies [*]
	into a footstool for your feet."

', 'From Zion, the LORD will extend your mighty scepter\'s reach, saying, [*]
	"Rule in the midst of your enemies."

', 'On the day of your power, your people will follow you, [t]
	in your holy splendor, [*]
	"With the breaking of dawn, your youth comes to you like the dew."

', 'The LORD swore an irrevocable oath,[*]
	"You are a priest always, in the order of King Melchizedek."

', 'On your right is my master, [*]
	who will crush rulers on the day of his wrath.

', 'He will drink from the brook along his way; [*]
	therefore he will lift up his head.'), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-25' => array('Verified', 'Guidelines'), '2021-04-08' => array('Peer-Review'), '2021-04-07' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2023-09-30 - Paul Prins: Fixed casings on divine name.', '2021-04-07 - Paul Prins: First translation of psalm 110 based on Greek, Latin, and some Hebrew'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-psalms', 'Title' => array('default' => 'Breviary Psalms', 'UMB-EN' => 'Psalms from the Breviary', 'BMU-FR' => 'Psaumes du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'SecondaryType' => 'Poetry', 'Language' => 'hbo', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Chapters', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the psalms used during the divine office.', 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>The <span class="type-small-caps">LORD</span> says to my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Sit at my right hand,<br />and I will make your enemies <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>into a footstool for your feet."</p><p>From Zion, the <span class="type-small-caps">LORD</span> will extend your mighty scepter\'s reach, saying, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Rule in the midst of your enemies."</p><p>On the day of your power, your people will follow you, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in your holy splendor, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"With the breaking of dawn, your youth comes to you like the dew."</p><p>The <span class="type-small-caps">LORD</span> swore an irrevocable oath,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"You are a priest always, in the order of King Melchizedek."</p><p>On your right is my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>who will crush rulers on the day of his wrath.</p><p>He will drink from the brook along his way; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>therefore he will lift up his head.</p>'), 'ReferenceParsed' => array('Chapter' => '110', 'Verses' => null)), array('TextAbbreviation' => 'chapter-0111', 'SourceAbbreviation' => 'breviary-psalms', 'Title' => 'Great Works of the Lord', 'Description' => '', 'Chapter' => '111', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'WLC'), 'People' => array('Paul Prins')), 'Verses' => array('I will praise the LORD with my whole heart, [*]
	in the council of the upright and the assembly.
', 'Great are the works of the Lord, [*]
	sought out by all who delight in them.
', 'Glorious and majestic is His work, [*]
	and His justice endures forever.

', 'He has caused His wonders to be remembered; [*]
	the LORD is gracious and compassionate.
', 'He gives food to those who fear Him; [*]
	He remembers His covenant forever.

', 'He has shown His people the power of His works [t]
	by giving them the inheritance of nations. [*]
', '	The works of His hands are truth and justice.
All His precepts are trustworthy, [t]
', '	standing firm forever and ever, [*]
	made with uprightness and truth.
', 'He has sent redemption to His people, [*]
	establishing His covenant forever.

Holy and awe-inspiring is His name. [*]
', '	The fear of the LORD is the beginning of wisdom.
All those who embody this have good understanding; [*]
	their praise endures forever.'), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-25' => array('Verified', 'Guidelines'), '2021-09-22' => array('Peer-Review'), '2021-09-21' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2021-09-21 - Paul Prins: First translation of psalm 111 based on Greek, Latin, and Hebrew'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-psalms', 'Title' => array('default' => 'Breviary Psalms', 'UMB-EN' => 'Psalms from the Breviary', 'BMU-FR' => 'Psaumes du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'SecondaryType' => 'Poetry', 'Language' => 'hbo', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Chapters', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the psalms used during the divine office.', 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>I will praise the <span class="type-small-caps">LORD</span> with my whole heart, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in the council of the upright and the assembly.<br />Great are the works of the Lord, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>sought out by all who delight in them.<br />Glorious and majestic is His work, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His justice endures forever.</p><p>He has caused His wonders to be remembered; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the <span class="type-small-caps">LORD</span> is gracious and compassionate.<br />He gives food to those who fear Him; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>He remembers His covenant forever.</p><p>He has shown His people the power of His works <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>by giving them the inheritance of nations. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The works of His hands are truth and justice.<br />All His precepts are trustworthy, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>standing firm forever and ever, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>made with uprightness and truth.<br />He has sent redemption to His people, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>establishing His covenant forever.</p><p>Holy and awe-inspiring is His name. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The fear of the <span class="type-small-caps">LORD</span> is the beginning of wisdom.<br />All those who embody this have good understanding; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>their praise endures forever.</p>'), 'ReferenceParsed' => array('Chapter' => '111', 'Verses' => null))), 'readings' => array('1 Peter 1:3-5' => array('TextAbbreviation' => 'chapter-0001', 'SourceAbbreviation' => 'bible-nt-peter-1', 'Chapter' => '1', 'FormatAs' => 'Letter', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('SBLGNT'), 'People' => array('Paul Prins')), 'Verses' => array('	Blessed be God, the Father of our Lord Jesus Christ. In His great mercy, he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead. ', 'So we will inherit what never perishes, spoils, or fades away. An inheritance that is being kept safe for you in heaven. ', 'You who are protected by the power of God, through faith, for a salvation ready to be revealed at the end of time. '), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-09-30' => array('Peer-Review'), '2021-09-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-09-29 - Paul Prins: First translation of verses 1-9 based on Greek.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'bible-nt-peter-1', 'Title' => array('default' => 'Α\' Πέτρου', 'UMB-EN' => 'The First Epistle of Peter', 'BMU-FR' => 'La Première Épître de Pierre', 'eng' => '1 Peter', 'fra' => '1 Pierre'), 'AlternativeTitles' => array('eng' => array('1 Peter', 'First Peter'), 'fra' => array('1 Pierre', 'Première Épître de Pierre')), 'Description' => '', 'Type' => 'Letter', 'Language' => 'grc-koi', 'Version' => 'Original', 'Segments' => 'Chapters', 'Verses' => true, 'Chapters' => true, 'SegmentTitles' => true, 'Notes' => '', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Date' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Blessed be God, the Father of our Lord Jesus Christ. In His great mercy, he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead. So we will inherit what never perishes, spoils, or fades away. An inheritance that is being kept safe for you in heaven. You who are protected by the power of God, through faith, for a salvation ready to be revealed at the end of time. </p>'), 'ReferenceParsed' => array('Chapter' => 1, 'Verses' => array(3, 4, 5)))), 'responses' => array('week-3-sunday-vespers-2' => array('TextAbbreviation' => 'week-3-sunday-vespers-2', 'SourceAbbreviation' => 'breviary-responses', 'FormatAs' => 'book', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => '[V] Blessed are You Lord, in the kingdom of Heaven.
[R] Blessed are You Lord, [*] in the kingdom of Heaven.
[V]All of creation gives You glory and praise forever.
[V] Glory to the Father, to the Son, and to the Holy Spirit.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-05-05' => array('Peer-Review'), '2021-05-04' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-05-04 - Paul Prins: Translated this prayer.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-responses', 'Title' => 'Breviary Responsory Texts', 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the responsory texts used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<section class="response"><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Blessed are You Lord, in the kingdom of Heaven.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span> All of creation gives You glory and praise forever.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Glory to the Father, to the Son, and to the Holy Spirit.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div></section>'), 'ReferenceParsed' => array('Chapter' => 'week-3-sunday-vespers-2', 'Verses' => null)))), 'HTML' => array('antiphons' => array('' => '<h3>BLANK</h3>', 'invitatorium-day-sunday' => '<p>Come, together we\'ll exault the Lord.</p>', 'sunday-vespers-2-anti-1' => '<p>The <span class="type-small-caps">LORD</span> says to my master: "Sit at My right hand"</p>', 'week-3-sunday-vespers-2-anti-2' => '<p>All his commandments <span class="symbol-star"> *</span> are faithful, established for ever and ever!</p>', 'alleluia-x-3' => '<p>Alleluia, Alleluia, Alleluia.</p>'), 'blessings' => array('' => '<h3>BLANK</h3>', 'vespers' => '<p>May the Lord bless us,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>keep us from all evil,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and bring us to everlasting life.<br /><em>Amen</em></p>'), 'canticles' => array('' => '<h3>BLANK</h3>', 'salus-et-gloria' => '<p>Alleluia<br />Salvation and glory and power belong to our God,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>whose judgments are true and just.<br />Alleluia</p><p>Alleluia<br />Praise our God, all servants of the Lord,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>you who fear him, both small and great.<br />Alleluia</p><p>Alleluia<br />The Lord our God, the Almighty, reigns:<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>let us rejoice and exult and give glory and homage.<br />Alleluia</p><p>Alleluia<br />The marriage of the Lamb has come<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His bride has made herself ready.<br />Alleluia</p><p>Alleluia<br />Happy are those who are invited<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to the wedding banquet of the Lamb.<br />Alleluia</p>', 'magnificat' => '<p>My soul <span class="symbol-cross">&#10011;</span> magnifies the greatness of the Lord; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>my spirit bursts, rejoicing in God my Savior.<br />For He knew the humility of His servant. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>From today all generations will call me blessed.</p><p>The Almighty has done great things for me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and holy is His name.</p><p>He has mercy for those who fear Him, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>from generation to generation.<br />He has shown the strength of His arm, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and scattered the proud for the thoughts of their hearts.</p><p>He has torn the mighty from their thrones, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and lifted up the lowly.<br />He has filled the hungry with good things, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and sent the rich away empty.</p><p>He has given help to His servant Israel,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and remembered His promise of mercy.<br />The promise made to our ancestors,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to Abraham and His children forever.</p>'), 'other' => array('' => '<h3>BLANK</h3>', 'gloria' => '<p>Glory to the Father, to the Son,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and to the Holy Spirit,<br />As it was in the beginning, is now,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and will be forever.<br /><em>Amen</em><br />Alleluia</p>', 'invitatorium-primis' => '<p>Lord, <span class="symbol-cross">&#10011;</span> open my lips, <span class="symbol-star"> *</span><br />and my mouth will proclaim Your praise.</p>', 'invitatorium-postmodum' => '<p>God, <span class="symbol-cross">&#10011;</span> come to my assistance;<span class="symbol-star"> *</span><br />Lord, make haste to help me.</p>'), 'prayers' => array('' => '<h3>BLANK</h3>', 'petitions-week-3-sunday-vespers-2' => '<section class="intercession"><div class="part-introduction">God has created the cosmos, He brought restoration through redemption, and continually renews creation through His love. Trusting in His eternal love we ask:</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">We thank You God for You reveal Your power in all of creation,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>You reveal Your providence within the course of history.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Through Your Son, who preaches a gospel of peace, and was victorious on the cross,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>deliver us from baseless fear and despair.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Provide to everyone that loves and practices justice,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>a faithful cooperation in the building of a world where true peace reigns.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Be present with the oppressed, deliver the captives, comfort the poor, feed the hungry, grant strength to the weak,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>reveal in all things the victory of the cross.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">After his death and burial, You wonderfully raised Your Son to glory,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>grant that the deceased may join Him in eternal life.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div></section>', 'pater-noster' => '<p>Our Father, who is in heaven,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>hallowed be Your Name.<br />Your kingdom come,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Your will be done,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>on earth as it is in heaven.<br />Give us today our daily bread.<br />Forgive us our sins,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as we forgive those who sin against us.<br />Lead us not into temptation,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>but deliver us from evil;<br />for the kingdom, the power,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the glory are Yours without end.<br />Amen</p>'), 'psalms' => array('' => '<h3>BLANK</h3>', '<p>Come, let us sing praise to the <span class="type-small-caps">LORD</span>. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Shout with joy to the Rock of our salvation.<br />Let us enter His presence with a song of thanksgiving, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>singing joyful songs to Him.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>For the <span class="type-small-caps">LORD</span> is a great God, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the great king above all gods.<br />In His hand are the depths of the earth, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the mountain peaks are His also.<br />The sea is His for He made it, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the dry land His hands formed.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Come, let us bow down and worship. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="type-small-caps">LORD</span>us kneel before the <span class="type-small-caps">LORD</span> our maker,<br />for He is our God, and we are the people of his pasture, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the flock of His hand.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Today, will you hear His voice? <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Do not harden your hearts, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as at Meribah and during the temptation in the wilderness,<br />where your ancestors tested and provoked Me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>although they were witness to My work."</p><p>[<span class="type-small-caps">ANT</span>]</p><p>"Forty years that generation disgusted me", <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and I said, "They are a people whose hearts go astray, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and they do not know my ways."<br />So I swore in my anger, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Never shall they enter into My rest."</p><p>[<span class="type-small-caps">ANT</span>]</p>', '<p>The <span class="type-small-caps">LORD</span> says to my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Sit at my right hand,<br />and I will make your enemies <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>into a footstool for your feet."</p><p>From Zion, the <span class="type-small-caps">LORD</span> will extend your mighty scepter\'s reach, saying, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Rule in the midst of your enemies."</p><p>On the day of your power, your people will follow you, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in your holy splendor, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"With the breaking of dawn, your youth comes to you like the dew."</p><p>The <span class="type-small-caps">LORD</span> swore an irrevocable oath,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"You are a priest always, in the order of King Melchizedek."</p><p>On your right is my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>who will crush rulers on the day of his wrath.</p><p>He will drink from the brook along his way; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>therefore he will lift up his head.</p>', '<p>I will praise the <span class="type-small-caps">LORD</span> with my whole heart, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in the council of the upright and the assembly.<br />Great are the works of the Lord, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>sought out by all who delight in them.<br />Glorious and majestic is His work, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His justice endures forever.</p><p>He has caused His wonders to be remembered; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the <span class="type-small-caps">LORD</span> is gracious and compassionate.<br />He gives food to those who fear Him; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>He remembers His covenant forever.</p><p>He has shown His people the power of His works <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>by giving them the inheritance of nations. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The works of His hands are truth and justice.<br />All His precepts are trustworthy, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>standing firm forever and ever, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>made with uprightness and truth.<br />He has sent redemption to His people, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>establishing His covenant forever.</p><p>Holy and awe-inspiring is His name. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The fear of the <span class="type-small-caps">LORD</span> is the beginning of wisdom.<br />All those who embody this have good understanding; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>their praise endures forever.</p>'), 'readings' => array('' => '<h3>BLANK</h3>', '1 Peter 1:3-5' => '<p><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Blessed be God, the Father of our Lord Jesus Christ. In His great mercy, he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead. So we will inherit what never perishes, spoils, or fades away. An inheritance that is being kept safe for you in heaven. You who are protected by the power of God, through faith, for a salvation ready to be revealed at the end of time. </p>'), 'responses' => array('' => '<h3>BLANK</h3>', 'week-3-sunday-vespers-2' => '<section class="response"><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Blessed are You Lord, in the kingdom of Heaven.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span> All of creation gives You glory and praise forever.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Glory to the Father, to the Son, and to the Holy Spirit.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div></section>')), 'Versions' => array('UMB-EN' => array('Abbreviation' => 'UMB-EN', 'Title' => 'Urban Monastic Breviary', 'Description' => 'The english translation of the Psalter used by Urban Monasticism', 'License' => '© 2021 Urban Monastics, Paris', 'Language' => 'eng', 'Date' => '2021', 'Formatting' => array('SmallCaps' => true, 'Selah' => true))), 'thisCalendar' => 'urban-monastic', 'Navigation' => array('date' => '2023-06-18', 'today' => array('date' => '2023-06-18', 'day-month' => '18 June', 'month-day' => 'June 18', 'day-of-week' => 'Sunday'), 'yesterday' => array('date' => '2023-06-17', 'day-month' => '17 June', 'month-day' => 'June 17', 'day-of-week' => 'Saturday'), 'tomorrow' => array('date' => '2023-06-19', 'day-month' => '19 June', 'month-day' => 'June 19', 'day-of-week' => 'Monday'), 'offices' => array()), 'BodyCSS' => array('prayer', 'vespers')))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:61)
  at Illuminate\View\Engines\CompilerEngine->get('/var/www/html/resources/views/breviarium/office.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'Domain' => 'breviarium', 'errors' => object(ViewErrorBag), 'DateLong' => 'Sunday 18 June', 'Date' => array('Day' => '18', 'DayOfWeek' => 'Sunday', 'Month' => 'June', 'Year' => '2023', 'Season' => null, 'Week' => null, 'String' => '2023-06-18'), 'Year' => '2023', 'Liturgical' => array('calendarDate' => '2023-06-18', 'breviaryDate' => '2023-06-18', 'colors' => array('vigils' => 'Green', 'lauds' => 'Green', 'terce' => 'Green', 'sext' => 'Green', 'none' => 'Green', 'vespers' => 'Green', 'compline' => 'Green'), 'dayColor' => 'Green', 'dayOfWeek' => 0, 'dayType' => 'sunday', 'invocation' => array('antiphon' => 'invitatorium-day-sunday', 'psalm' => 95), 'marianEmphasis' => null, 'octave' => null, 'proper' => array('saints' => array(), 'optional' => array(), 'season' => 'ordinary-week-11-day-0'), 'psalterWeek' => 3, 'season' => 'ordinary', 'seasonWeek' => 11, 'startEarly' => array('proper' => null, 'abbreviation' => null), 'sundayCycle' => 'A', 'TitleSeason' => null, 'TitleProper' => null, 'Title' => '<span class="DayOfWeek">Sunday</span> the 11th Week in <span class="Season">Ordinary Time</span>', 'ProperOfSaints' => array()), 'Office' => array('Calendar' => array('calendarDate' => '2023-06-18', 'breviaryDate' => '2023-06-18', 'colors' => array('vigils' => 'Green', 'lauds' => 'Green', 'terce' => 'Green', 'sext' => 'Green', 'none' => 'Green', 'vespers' => 'Green', 'compline' => 'Green'), 'dayColor' => 'Green', 'dayOfWeek' => 0, 'dayType' => 'sunday', 'invocation' => array('antiphon' => 'invitatorium-day-sunday', 'psalm' => 95), 'marianEmphasis' => null, 'octave' => null, 'proper' => array('saints' => array(), 'optional' => array(), 'season' => 'ordinary-week-11-day-0'), 'psalterWeek' => 3, 'season' => 'ordinary', 'seasonWeek' => 11, 'startEarly' => array('proper' => null, 'abbreviation' => null), 'sundayCycle' => 'A', 'TitleSeason' => null, 'TitleProper' => null, 'Title' => '<span class="DayOfWeek">Sunday</span> the 11th Week in <span class="Season">Ordinary Time</span>', 'ProperOfSaints' => array()), 'Scheme' => array('Complete' => true, 'Hymn' => null, 'Psalmody-1' => array('Passage' => '110', 'Antiphon' => 'sunday-vespers-2-anti-1', 'Prayer' => null), 'Psalmody-2' => array('Passage' => '111', 'Antiphon' => 'week-3-sunday-vespers-2-anti-2', 'Prayer' => null), 'Canticle' => array('Passage' => 'salus-et-gloria', 'Antiphon' => 'alleluia-x-3'), 'Reading' => '1 Peter 1:3-5', 'Responsitory' => 'week-3-sunday-vespers-2', 'GospelCanticle' => array('Antiphon' => null), 'Prayers' => array('Petitions' => 'petitions-week-3-sunday-vespers-2', 'Concluding' => null), 'Blessing' => 'vespers'), 'Proper-Seasons' => array('Abbreviation' => 'ordinary-week-11-day-0', 'IntroductoryVerse' => null, 'Hymn' => null, 'Psalmody-1' => array('Passage' => null, 'Antiphon' => null, 'Prayer' => null), 'Psalmody-2' => array('Passage' => null, 'Antiphon' => null, 'Prayer' => null), 'Canticle' => array('Passage' => null, 'Antiphon' => null), 'Reading' => null, 'Responsitory' => null, 'GospelCanticle' => array('Antiphon' => array('A' => null, 'B' => null, 'C' => null)), 'Prayers' => array('Petitions' => null, 'Concluding' => null), 'Blessing' => null), 'Proper-Saints' => array(), 'Structure' => array('Invitatory' => array('other' => 'invitatorium-primis', 'psalm' => 95, 'antiphon' => 'invitatorium-day-sunday'), 'Introductory' => array('other' => 'invitatorium-postmodum'), 'Hymn' => array('Hymn' => null, 'hymn' => null), 'Psalmody-1' => array('psalm' => '110', 'antiphon' => 'sunday-vespers-2-anti-1', 'prayer' => null), 'Psalmody-2' => array('psalm' => '111', 'antiphon' => 'week-3-sunday-vespers-2-anti-2', 'prayer' => null), 'Canticle' => array('canticle' => 'salus-et-gloria', 'antiphon' => 'alleluia-x-3'), 'Reading' => array('reading' => '1 Peter 1:3-5'), 'Silence' => array('other' => null), 'ReadingResponse' => array('response' => 'week-3-sunday-vespers-2'), 'GospelCanticle' => array('canticle' => 'magnificat', 'antiphon' => null), 'Petitions' => array('prayer' => 'petitions-week-3-sunday-vespers-2'), 'LordsPrayer' => array('prayer' => 'pater-noster'), 'ConcludingPrayer' => array('prayer' => null), 'Blessing' => array('blessing' => 'vespers')), 'TextAbbreviations' => array('antiphons' => array('invitatorium-day-sunday', 'sunday-vespers-2-anti-1', 'week-3-sunday-vespers-2-anti-2', 'alleluia-x-3'), 'bible' => array(), 'blessings' => array('vespers'), 'canticles' => array('salus-et-gloria', 'magnificat'), 'hymns' => array(), 'other' => array('gloria', 'invitatorium-primis', 'invitatorium-postmodum'), 'prayers' => array('petitions-week-3-sunday-vespers-2', 'pater-noster'), 'psalms' => array('95', '110', '111'), 'readings' => array('1 Peter 1:3-5'), 'responses' => array('week-3-sunday-vespers-2')), 'General' => false, 'Office' => 'vespers', 'OfficeKey' => 'vespers', 'OfficeSVG' => '/assets/offices/office-vespers.svg'), 'Texts' => array('antiphons' => array('invitatorium-day-sunday' => array('TextAbbreviation' => 'invitatorium-day-sunday', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Come, together we\'ll exault the Lord.', 'Extra' => array('BreviaryInstructions' => 'Invitatory antiphon for Sundays in ordinary time. [Not Repeated inside the Psalm]', 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-12-05' => array('Peer-Review'), '2021-12-04' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-12-04 - Paul Prins: Added this antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Come, together we\'ll exault the Lord.</p>'), 'ReferenceParsed' => array('Chapter' => 'invitatorium-day-sunday', 'Verses' => null)), 'sunday-vespers-2-anti-1' => array('TextAbbreviation' => 'week-3-sunday-vespers-2-anti-1', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'The LORD says to my master: "Sit at My right hand"', 'Extra' => array('Reference' => array('Psalm 110'), 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-05-25' => array('Peer-Review'), '2021-05-24' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-05-24 - Paul Prins: Added this antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>The <span class="type-small-caps">LORD</span> says to my master: "Sit at My right hand"</p>'), 'ReferenceParsed' => array('Chapter' => 'sunday-vespers-2-anti-1', 'Verses' => null)), 'week-3-sunday-vespers-2-anti-2' => array('TextAbbreviation' => 'week-3-sunday-vespers-2-anti-2', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'All his commandments [*] are faithful, established for ever and ever!', 'Extra' => array('Reference' => array('Psalm 119:86'), 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-10-01' => array('Peer-Review'), '2021-09-30' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-09-30 - Paul Prins: Added this Antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>All his commandments <span class="symbol-star"> *</span> are faithful, established for ever and ever!</p>'), 'ReferenceParsed' => array('Chapter' => 'week-3-sunday-vespers-2-anti-2', 'Verses' => null)), 'alleluia-x-3' => array('TextAbbreviation' => 'alleluia-x-3', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Alleluia, Alleluia, Alleluia.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-01-01' => array('Verified', 'Guidelines', 'Peer-Review', 'Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-11' => 'Constance McIntosh Smith', '2023-12-09' => 'Sheila Whittenberg', '2023-10-19' => 'Jordan Prins'))), 'Changes' => array('2021-01-01 - Paul Prins: First translation of this Antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Alleluia, Alleluia, Alleluia.</p>'), 'ReferenceParsed' => array('Chapter' => 'alleluia-x-3', 'Verses' => null))), 'blessings' => array('vespers' => array('TextAbbreviation' => 'vespers', 'SourceAbbreviation' => 'breviary-blessings', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'May the Lord bless us,
	keep us from all evil,
	and bring us to everlasting life.
*Amen*', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-03-22' => array('Peer-Review'), '2021-03-21' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-03-21 - Paul Prins: First translation of this blessing.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-blessings', 'Title' => array('default' => 'Breviary Blessings', 'UMB-EN' => 'Blessings from the Breviary', 'BMU-FR' => 'Bénédictions du Bréviaire', 'eng' => 'Blessings', 'fra' => 'Bénédictions'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the blessings used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>May the Lord bless us,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>keep us from all evil,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and bring us to everlasting life.<br /><em>Amen</em></p>'), 'ReferenceParsed' => array('Chapter' => 'vespers', 'Verses' => null))), 'canticles' => array('salus-et-gloria' => array('TextAbbreviation' => 'salus-et-gloria', 'SourceAbbreviation' => 'breviary-canticles', 'Title' => 'Salvation, Glory, and Power', 'Description' => 'From Revelation 19:1-2, 5-7', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH', 'SBLGNT'), 'People' => array('Paul Prins')), 'Verses' => array('Alleluia
Salvation and glory and power belong to our God,[*]
	whose judgments are true and just.
Alleluia

', 'Alleluia
Praise our God, all servants of the Lord,[*]
	you who fear him, both small and great.
Alleluia

', 'Alleluia
The Lord our God, the Almighty, reigns:[*]
	let us rejoice and exult and give glory and homage.
Alleluia

', 'Alleluia
The marriage of the Lamb has come[*]
	and His bride has made herself ready.
Alleluia

', 'Alleluia
Happy are those who are invited[*]
	to the wedding banquet of the Lamb.
Alleluia'), 'Extra' => array('Reference' => array('Revelation 19:1-2, 5-7'), 'LiturgiaeHorarum-Index' => 22, 'LiturgiaeHorarum-Cantica' => 'NT', 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-31' => array('Verified', 'Guidelines'), '2020-03-30' => array('Peer-Review'), '2020-03-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-31' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-31 - Constance McIntosh Smith: Implement her editorial feedback.', '2020-03-29 - Paul Prins : Added this Canticle.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-canticles', 'Title' => array('default' => 'Breviary Canticles', 'UMB-EN' => 'Canticles from the Breviary', 'BMU-FR' => 'Cantiques du Bréviaire', 'eng' => 'Canticles', 'fra' => 'Cantiques'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the canticles used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Alleluia<br />Salvation and glory and power belong to our God,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>whose judgments are true and just.<br />Alleluia</p><p>Alleluia<br />Praise our God, all servants of the Lord,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>you who fear him, both small and great.<br />Alleluia</p><p>Alleluia<br />The Lord our God, the Almighty, reigns:<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>let us rejoice and exult and give glory and homage.<br />Alleluia</p><p>Alleluia<br />The marriage of the Lamb has come<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His bride has made herself ready.<br />Alleluia</p><p>Alleluia<br />Happy are those who are invited<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to the wedding banquet of the Lamb.<br />Alleluia</p>'), 'ReferenceParsed' => array('Chapter' => 'salus-et-gloria', 'Verses' => null)), 'magnificat' => array('TextAbbreviation' => 'magnificat', 'SourceAbbreviation' => 'breviary-canticles', 'Title' => 'My Soul Magnifies', 'Description' => 'From Luke 1:46-55', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH', 'SBLGNT'), 'People' => array('Paul Prins')), 'Verses' => array('My soul [+] magnifies the greatness of the Lord; [*]
	', 'my spirit bursts, rejoicing in God my Savior.
', 'For He knew the humility of His servant. [*]
	From today all generations will call me blessed.

', 'The Almighty has done great things for me, [*]
	and holy is His name.

', 'He has mercy for those who fear Him, [*]
	from generation to generation.
', 'He has shown the strength of His arm, [*]
	and scattered the proud for the thoughts of their hearts.

', 'He has torn the mighty from their thrones, [*]
	and lifted up the lowly.
', 'He has filled the hungry with good things, [*]
	and sent the rich away empty.

', 'He has given help to His servant Israel,[*]
	and remembered His promise of mercy.
', 'The promise made to our ancestors,[*]
	to Abraham and His children forever.'), 'Extra' => array('Reference' => array('Luke 1:46-55'), 'LiturgiaeHorarum-Index' => 1, 'LiturgiaeHorarum-Cantica' => 'NT', 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-31' => array('Verified', 'Guidelines'), '2020-03-30' => array('Peer-Review'), '2020-03-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-31' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-31 - Constance McIntosh Smith: Implement her editorial feedback.', '2020-03-29 - Paul Prins : Added this Canticle.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-canticles', 'Title' => array('default' => 'Breviary Canticles', 'UMB-EN' => 'Canticles from the Breviary', 'BMU-FR' => 'Cantiques du Bréviaire', 'eng' => 'Canticles', 'fra' => 'Cantiques'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the canticles used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>My soul <span class="symbol-cross">&#10011;</span> magnifies the greatness of the Lord; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>my spirit bursts, rejoicing in God my Savior.<br />For He knew the humility of His servant. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>From today all generations will call me blessed.</p><p>The Almighty has done great things for me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and holy is His name.</p><p>He has mercy for those who fear Him, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>from generation to generation.<br />He has shown the strength of His arm, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and scattered the proud for the thoughts of their hearts.</p><p>He has torn the mighty from their thrones, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and lifted up the lowly.<br />He has filled the hungry with good things, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and sent the rich away empty.</p><p>He has given help to His servant Israel,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and remembered His promise of mercy.<br />The promise made to our ancestors,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to Abraham and His children forever.</p>'), 'ReferenceParsed' => array('Chapter' => 'magnificat', 'Verses' => null))), 'other' => array('gloria' => array('TextAbbreviation' => 'gloria', 'SourceAbbreviation' => 'breviary-other', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Glory to the Father, to the Son,
	and to the Holy Spirit,
As it was in the beginning, is now,
	and will be forever.
*Amen*
Alleluia', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-20' => array('Verified', 'Guidelines'), '2020-03-30' => array('Peer-Review'), '2020-03-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-19' => 'Constance McIntosh Smith', '2024-01-11' => 'Constance McIntosh Smith', '2023-12-09' => 'Sheila Whittenberg', '2023-10-19' => 'Jordan Prins'))), 'Changes' => array('2024-01-19 - Constance McIntosh Smith: Grammatical corrections', '2022-05-01 - Paul Prins: Update language.', '2020-03-29 - Paul Prins: First translation.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-other', 'Title' => array('default' => 'Breviary Additional Texts', 'UMB-EN' => 'Additional Texts for the Breviary', 'BMU-FR' => 'Texts Supplémentaires du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This book contains all of the additional texts which are neither psalms, antiphons, canticles, responses, nor prayers.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Glory to the Father, to the Son,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and to the Holy Spirit,<br />As it was in the beginning, is now,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and will be forever.<br /><em>Amen</em><br />Alleluia</p>'), 'ReferenceParsed' => array('Chapter' => 'gloria', 'Verses' => null)), 'invitatorium-primis' => array('TextAbbreviation' => 'invitatorium-primis', 'SourceAbbreviation' => 'breviary-other', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Lord, [+] open my lips, [*]
and my mouth will proclaim Your praise.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-20' => array('Verified', 'Guidelines'), '2020-10-02' => array('Peer-Review'), '2020-10-01' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2023-10-20' => 'Jordan Prins'))), 'Changes' => array('2023-10-20 - Jordan Prins: Fix Divine pronoun casing.', '2023-10-14 - Paul Prins: Refined the text further.', '2023-04-06 - Paul Prins: Updated this text.', '2020-10-01 - Paul Prins: Added this text.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-other', 'Title' => array('default' => 'Breviary Additional Texts', 'UMB-EN' => 'Additional Texts for the Breviary', 'BMU-FR' => 'Texts Supplémentaires du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This book contains all of the additional texts which are neither psalms, antiphons, canticles, responses, nor prayers.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Lord, <span class="symbol-cross">&#10011;</span> open my lips, <span class="symbol-star"> *</span><br />and my mouth will proclaim Your praise.</p>'), 'ReferenceParsed' => array('Chapter' => 'invitatorium-primis', 'Verses' => null)), 'invitatorium-postmodum' => array('TextAbbreviation' => 'invitatorium-postmodum', 'SourceAbbreviation' => 'breviary-other', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'God, [+] come to my assistance;[*]
Lord, make haste to help me.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-20' => array('Verified', 'Guidelines'), '2020-10-02' => array('Peer-Review'), '2020-10-01' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith', '2023-10-20' => 'Jordan Prins'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2020-10-01 - Paul Prins: Added this text.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-other', 'Title' => array('default' => 'Breviary Additional Texts', 'UMB-EN' => 'Additional Texts for the Breviary', 'BMU-FR' => 'Texts Supplémentaires du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This book contains all of the additional texts which are neither psalms, antiphons, canticles, responses, nor prayers.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>God, <span class="symbol-cross">&#10011;</span> come to my assistance;<span class="symbol-star"> *</span><br />Lord, make haste to help me.</p>'), 'ReferenceParsed' => array('Chapter' => 'invitatorium-postmodum', 'Verses' => null))), 'prayers' => array('petitions-week-3-sunday-vespers-2' => array('TextAbbreviation' => 'petitions-week-3-sunday-vespers-2', 'SourceAbbreviation' => 'breviary-prayers', 'FormatAs' => 'book', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => '[II] God has created the cosmos, He brought restoration through redemption, and continually renews creation through His love. Trusting in His eternal love we ask:
[IR] Lord, renew the wondrous works of Your love. 
[I1] We thank You God for You reveal Your power in all of creation,
[I2] You reveal Your providence within the course of history.
[I1] Through Your Son, who preaches a gospel of peace, and was victorious on the cross,
[I2] deliver us from baseless fear and despair.
[I1] Provide to everyone that loves and practices justice,
[I2] a faithful cooperation in the building of a world where true peace reigns.
[I1] Be present with the oppressed, deliver the captives, comfort the poor, feed the hungry, grant strength to the weak,
[I2] reveal in all things the victory of the cross.
[I1] After his death and burial, You wonderfully raised Your Son to glory,
[I2] grant that the deceased may join Him in eternal life.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-06-06' => array('Peer-Review'), '2021-06-05' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-09-30 - Paul Prins: First translation of these intensions.', '2021-08-04 - Paul Prins: Change abbreviation to use petitions.', '2021-06-05 - Paul Prins: Added placeholder for these intentions.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-prayers', 'Title' => array('default' => 'Breviary Prayer Texts', 'UMB-EN' => 'Prayers from the Breviary', 'BMU-FR' => 'Prières du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the prayers used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<section class="intercession"><div class="part-introduction">God has created the cosmos, He brought restoration through redemption, and continually renews creation through His love. Trusting in His eternal love we ask:</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">We thank You God for You reveal Your power in all of creation,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>You reveal Your providence within the course of history.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Through Your Son, who preaches a gospel of peace, and was victorious on the cross,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>deliver us from baseless fear and despair.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Provide to everyone that loves and practices justice,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>a faithful cooperation in the building of a world where true peace reigns.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Be present with the oppressed, deliver the captives, comfort the poor, feed the hungry, grant strength to the weak,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>reveal in all things the victory of the cross.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">After his death and burial, You wonderfully raised Your Son to glory,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>grant that the deceased may join Him in eternal life.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div></section>'), 'ReferenceParsed' => array('Chapter' => 'petitions-week-3-sunday-vespers-2', 'Verses' => null)), 'pater-noster' => array('TextAbbreviation' => 'pater-noster', 'SourceAbbreviation' => 'breviary-prayers', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'SBLGNT'), 'People' => array('Paul Prins')), 'Text' => 'Our Father, who is in heaven,
	hallowed be Your Name.
Your kingdom come,
	Your will be done,
	on earth as it is in heaven.
Give us today our daily bread.
Forgive us our sins,
	as we forgive those who sin against us.
Lead us not into temptation,
	but deliver us from evil;
for the kingdom, the power,
	and the glory are Yours without end.
Amen', 'Description' => 'The Lords Prayer.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-19' => array('Verified', 'Guidelines'), '2020-10-02' => array('Peer-Review'), '2020-10-01' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2023-10-19' => 'Jordan Prins'))), 'Changes' => array('2023-09-02 - Paul Prins: Update divine casing.', '2020-10-01 - Paul Prins: Added this prayer'), 'License' => '© 2023 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-prayers', 'Title' => array('default' => 'Breviary Prayer Texts', 'UMB-EN' => 'Prayers from the Breviary', 'BMU-FR' => 'Prières du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the prayers used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Our Father, who is in heaven,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>hallowed be Your Name.<br />Your kingdom come,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Your will be done,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>on earth as it is in heaven.<br />Give us today our daily bread.<br />Forgive us our sins,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as we forgive those who sin against us.<br />Lead us not into temptation,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>but deliver us from evil;<br />for the kingdom, the power,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the glory are Yours without end.<br />Amen</p>'), 'ReferenceParsed' => array('Chapter' => 'pater-noster', 'Verses' => null))), 'psalms' => array(array('TextAbbreviation' => 'chapter-0095', 'SourceAbbreviation' => 'breviary-psalms', 'Title' => 'An Invitation to Praise God', 'Chapter' => '95', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'WLC'), 'People' => array('Paul Prins')), 'Verses' => array('Come, let us sing praise to the LORD. [*]
	Shout with joy to the Rock of our salvation.
', 'Let us enter His presence with a song of thanksgiving, [*]
	singing joyful songs to Him.

[ANT]

', 'For the LORD is a great God, [*]
	and the great king above all gods.
', 'In His hand are the depths of the earth, [*]
	and the mountain peaks are His also.
', 'The sea is His for He made it, [*]
	the dry land His hands formed.

[ANT]

', 'Come, let us bow down and worship. [*]
	Let us kneel before the LORD our maker,
', 'for He is our God, and we are the people of his pasture, [*]
	and the flock of His hand.

[ANT]

Today, will you hear His voice? [t]
', '	"Do not harden your hearts, [*]
	as at Meribah and during the temptation in the wilderness,
', 'where your ancestors tested and provoked Me, [*]
	although they were witness to My work."

[ANT]

', '"Forty years that generation disgusted me", [t]
	and I said, "They are a people whose hearts go astray, [*]
	and they do not know my ways."
', 'So I swore in my anger, [*]
	"Never shall they enter into My rest."

[ANT]'), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-25' => array('Verified', 'Guidelines'), '2022-10-27' => array('Peer-Review'), '2022-10-26' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2022-10-26 - Paul Prins: First translation of psalm 95 based on Greek, Latin, and some Hebrew'), 'License' => '© 2022 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-psalms', 'Title' => array('default' => 'Breviary Psalms', 'UMB-EN' => 'Psalms from the Breviary', 'BMU-FR' => 'Psaumes du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'SecondaryType' => 'Poetry', 'Language' => 'hbo', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Chapters', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the psalms used during the divine office.', 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Come, let us sing praise to the <span class="type-small-caps">LORD</span>. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Shout with joy to the Rock of our salvation.<br />Let us enter His presence with a song of thanksgiving, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>singing joyful songs to Him.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>For the <span class="type-small-caps">LORD</span> is a great God, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the great king above all gods.<br />In His hand are the depths of the earth, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the mountain peaks are His also.<br />The sea is His for He made it, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the dry land His hands formed.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Come, let us bow down and worship. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="type-small-caps">LORD</span>us kneel before the <span class="type-small-caps">LORD</span> our maker,<br />for He is our God, and we are the people of his pasture, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the flock of His hand.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Today, will you hear His voice? <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Do not harden your hearts, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as at Meribah and during the temptation in the wilderness,<br />where your ancestors tested and provoked Me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>although they were witness to My work."</p><p>[<span class="type-small-caps">ANT</span>]</p><p>"Forty years that generation disgusted me", <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and I said, "They are a people whose hearts go astray, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and they do not know my ways."<br />So I swore in my anger, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Never shall they enter into My rest."</p><p>[<span class="type-small-caps">ANT</span>]</p>'), 'ReferenceParsed' => array('Chapter' => '95', 'Verses' => null)), array('TextAbbreviation' => 'chapter-0110', 'SourceAbbreviation' => 'breviary-psalms', 'Title' => 'Messiah, King, & Priest', 'Description' => 'A Psalm of David', 'Chapter' => '110', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'WLC'), 'People' => array('Paul Prins')), 'Verses' => array('The LORD says to my master, [*]
	"Sit at my right hand,
and I will make your enemies [*]
	into a footstool for your feet."

', 'From Zion, the LORD will extend your mighty scepter\'s reach, saying, [*]
	"Rule in the midst of your enemies."

', 'On the day of your power, your people will follow you, [t]
	in your holy splendor, [*]
	"With the breaking of dawn, your youth comes to you like the dew."

', 'The LORD swore an irrevocable oath,[*]
	"You are a priest always, in the order of King Melchizedek."

', 'On your right is my master, [*]
	who will crush rulers on the day of his wrath.

', 'He will drink from the brook along his way; [*]
	therefore he will lift up his head.'), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-25' => array('Verified', 'Guidelines'), '2021-04-08' => array('Peer-Review'), '2021-04-07' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2023-09-30 - Paul Prins: Fixed casings on divine name.', '2021-04-07 - Paul Prins: First translation of psalm 110 based on Greek, Latin, and some Hebrew'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-psalms', 'Title' => array('default' => 'Breviary Psalms', 'UMB-EN' => 'Psalms from the Breviary', 'BMU-FR' => 'Psaumes du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'SecondaryType' => 'Poetry', 'Language' => 'hbo', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Chapters', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the psalms used during the divine office.', 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>The <span class="type-small-caps">LORD</span> says to my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Sit at my right hand,<br />and I will make your enemies <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>into a footstool for your feet."</p><p>From Zion, the <span class="type-small-caps">LORD</span> will extend your mighty scepter\'s reach, saying, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Rule in the midst of your enemies."</p><p>On the day of your power, your people will follow you, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in your holy splendor, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"With the breaking of dawn, your youth comes to you like the dew."</p><p>The <span class="type-small-caps">LORD</span> swore an irrevocable oath,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"You are a priest always, in the order of King Melchizedek."</p><p>On your right is my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>who will crush rulers on the day of his wrath.</p><p>He will drink from the brook along his way; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>therefore he will lift up his head.</p>'), 'ReferenceParsed' => array('Chapter' => '110', 'Verses' => null)), array('TextAbbreviation' => 'chapter-0111', 'SourceAbbreviation' => 'breviary-psalms', 'Title' => 'Great Works of the Lord', 'Description' => '', 'Chapter' => '111', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'WLC'), 'People' => array('Paul Prins')), 'Verses' => array('I will praise the LORD with my whole heart, [*]
	in the council of the upright and the assembly.
', 'Great are the works of the Lord, [*]
	sought out by all who delight in them.
', 'Glorious and majestic is His work, [*]
	and His justice endures forever.

', 'He has caused His wonders to be remembered; [*]
	the LORD is gracious and compassionate.
', 'He gives food to those who fear Him; [*]
	He remembers His covenant forever.

', 'He has shown His people the power of His works [t]
	by giving them the inheritance of nations. [*]
', '	The works of His hands are truth and justice.
All His precepts are trustworthy, [t]
', '	standing firm forever and ever, [*]
	made with uprightness and truth.
', 'He has sent redemption to His people, [*]
	establishing His covenant forever.

Holy and awe-inspiring is His name. [*]
', '	The fear of the LORD is the beginning of wisdom.
All those who embody this have good understanding; [*]
	their praise endures forever.'), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-25' => array('Verified', 'Guidelines'), '2021-09-22' => array('Peer-Review'), '2021-09-21' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2021-09-21 - Paul Prins: First translation of psalm 111 based on Greek, Latin, and Hebrew'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-psalms', 'Title' => array('default' => 'Breviary Psalms', 'UMB-EN' => 'Psalms from the Breviary', 'BMU-FR' => 'Psaumes du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'SecondaryType' => 'Poetry', 'Language' => 'hbo', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Chapters', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the psalms used during the divine office.', 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>I will praise the <span class="type-small-caps">LORD</span> with my whole heart, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in the council of the upright and the assembly.<br />Great are the works of the Lord, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>sought out by all who delight in them.<br />Glorious and majestic is His work, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His justice endures forever.</p><p>He has caused His wonders to be remembered; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the <span class="type-small-caps">LORD</span> is gracious and compassionate.<br />He gives food to those who fear Him; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>He remembers His covenant forever.</p><p>He has shown His people the power of His works <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>by giving them the inheritance of nations. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The works of His hands are truth and justice.<br />All His precepts are trustworthy, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>standing firm forever and ever, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>made with uprightness and truth.<br />He has sent redemption to His people, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>establishing His covenant forever.</p><p>Holy and awe-inspiring is His name. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The fear of the <span class="type-small-caps">LORD</span> is the beginning of wisdom.<br />All those who embody this have good understanding; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>their praise endures forever.</p>'), 'ReferenceParsed' => array('Chapter' => '111', 'Verses' => null))), 'readings' => array('1 Peter 1:3-5' => array('TextAbbreviation' => 'chapter-0001', 'SourceAbbreviation' => 'bible-nt-peter-1', 'Chapter' => '1', 'FormatAs' => 'Letter', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('SBLGNT'), 'People' => array('Paul Prins')), 'Verses' => array('	Blessed be God, the Father of our Lord Jesus Christ. In His great mercy, he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead. ', 'So we will inherit what never perishes, spoils, or fades away. An inheritance that is being kept safe for you in heaven. ', 'You who are protected by the power of God, through faith, for a salvation ready to be revealed at the end of time. '), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-09-30' => array('Peer-Review'), '2021-09-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-09-29 - Paul Prins: First translation of verses 1-9 based on Greek.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'bible-nt-peter-1', 'Title' => array('default' => 'Α\' Πέτρου', 'UMB-EN' => 'The First Epistle of Peter', 'BMU-FR' => 'La Première Épître de Pierre', 'eng' => '1 Peter', 'fra' => '1 Pierre'), 'AlternativeTitles' => array('eng' => array('1 Peter', 'First Peter'), 'fra' => array('1 Pierre', 'Première Épître de Pierre')), 'Description' => '', 'Type' => 'Letter', 'Language' => 'grc-koi', 'Version' => 'Original', 'Segments' => 'Chapters', 'Verses' => true, 'Chapters' => true, 'SegmentTitles' => true, 'Notes' => '', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Date' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Blessed be God, the Father of our Lord Jesus Christ. In His great mercy, he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead. So we will inherit what never perishes, spoils, or fades away. An inheritance that is being kept safe for you in heaven. You who are protected by the power of God, through faith, for a salvation ready to be revealed at the end of time. </p>'), 'ReferenceParsed' => array('Chapter' => 1, 'Verses' => array(3, 4, 5)))), 'responses' => array('week-3-sunday-vespers-2' => array('TextAbbreviation' => 'week-3-sunday-vespers-2', 'SourceAbbreviation' => 'breviary-responses', 'FormatAs' => 'book', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => '[V] Blessed are You Lord, in the kingdom of Heaven.
[R] Blessed are You Lord, [*] in the kingdom of Heaven.
[V]All of creation gives You glory and praise forever.
[V] Glory to the Father, to the Son, and to the Holy Spirit.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-05-05' => array('Peer-Review'), '2021-05-04' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-05-04 - Paul Prins: Translated this prayer.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-responses', 'Title' => 'Breviary Responsory Texts', 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the responsory texts used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<section class="response"><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Blessed are You Lord, in the kingdom of Heaven.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span> All of creation gives You glory and praise forever.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Glory to the Father, to the Son, and to the Holy Spirit.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div></section>'), 'ReferenceParsed' => array('Chapter' => 'week-3-sunday-vespers-2', 'Verses' => null)))), 'HTML' => array('antiphons' => array('' => '<h3>BLANK</h3>', 'invitatorium-day-sunday' => '<p>Come, together we\'ll exault the Lord.</p>', 'sunday-vespers-2-anti-1' => '<p>The <span class="type-small-caps">LORD</span> says to my master: "Sit at My right hand"</p>', 'week-3-sunday-vespers-2-anti-2' => '<p>All his commandments <span class="symbol-star"> *</span> are faithful, established for ever and ever!</p>', 'alleluia-x-3' => '<p>Alleluia, Alleluia, Alleluia.</p>'), 'blessings' => array('' => '<h3>BLANK</h3>', 'vespers' => '<p>May the Lord bless us,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>keep us from all evil,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and bring us to everlasting life.<br /><em>Amen</em></p>'), 'canticles' => array('' => '<h3>BLANK</h3>', 'salus-et-gloria' => '<p>Alleluia<br />Salvation and glory and power belong to our God,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>whose judgments are true and just.<br />Alleluia</p><p>Alleluia<br />Praise our God, all servants of the Lord,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>you who fear him, both small and great.<br />Alleluia</p><p>Alleluia<br />The Lord our God, the Almighty, reigns:<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>let us rejoice and exult and give glory and homage.<br />Alleluia</p><p>Alleluia<br />The marriage of the Lamb has come<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His bride has made herself ready.<br />Alleluia</p><p>Alleluia<br />Happy are those who are invited<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to the wedding banquet of the Lamb.<br />Alleluia</p>', 'magnificat' => '<p>My soul <span class="symbol-cross">&#10011;</span> magnifies the greatness of the Lord; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>my spirit bursts, rejoicing in God my Savior.<br />For He knew the humility of His servant. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>From today all generations will call me blessed.</p><p>The Almighty has done great things for me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and holy is His name.</p><p>He has mercy for those who fear Him, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>from generation to generation.<br />He has shown the strength of His arm, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and scattered the proud for the thoughts of their hearts.</p><p>He has torn the mighty from their thrones, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and lifted up the lowly.<br />He has filled the hungry with good things, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and sent the rich away empty.</p><p>He has given help to His servant Israel,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and remembered His promise of mercy.<br />The promise made to our ancestors,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to Abraham and His children forever.</p>'), 'other' => array('' => '<h3>BLANK</h3>', 'gloria' => '<p>Glory to the Father, to the Son,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and to the Holy Spirit,<br />As it was in the beginning, is now,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and will be forever.<br /><em>Amen</em><br />Alleluia</p>', 'invitatorium-primis' => '<p>Lord, <span class="symbol-cross">&#10011;</span> open my lips, <span class="symbol-star"> *</span><br />and my mouth will proclaim Your praise.</p>', 'invitatorium-postmodum' => '<p>God, <span class="symbol-cross">&#10011;</span> come to my assistance;<span class="symbol-star"> *</span><br />Lord, make haste to help me.</p>'), 'prayers' => array('' => '<h3>BLANK</h3>', 'petitions-week-3-sunday-vespers-2' => '<section class="intercession"><div class="part-introduction">God has created the cosmos, He brought restoration through redemption, and continually renews creation through His love. Trusting in His eternal love we ask:</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">We thank You God for You reveal Your power in all of creation,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>You reveal Your providence within the course of history.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Through Your Son, who preaches a gospel of peace, and was victorious on the cross,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>deliver us from baseless fear and despair.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Provide to everyone that loves and practices justice,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>a faithful cooperation in the building of a world where true peace reigns.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Be present with the oppressed, deliver the captives, comfort the poor, feed the hungry, grant strength to the weak,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>reveal in all things the victory of the cross.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">After his death and burial, You wonderfully raised Your Son to glory,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>grant that the deceased may join Him in eternal life.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div></section>', 'pater-noster' => '<p>Our Father, who is in heaven,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>hallowed be Your Name.<br />Your kingdom come,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Your will be done,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>on earth as it is in heaven.<br />Give us today our daily bread.<br />Forgive us our sins,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as we forgive those who sin against us.<br />Lead us not into temptation,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>but deliver us from evil;<br />for the kingdom, the power,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the glory are Yours without end.<br />Amen</p>'), 'psalms' => array('' => '<h3>BLANK</h3>', '<p>Come, let us sing praise to the <span class="type-small-caps">LORD</span>. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Shout with joy to the Rock of our salvation.<br />Let us enter His presence with a song of thanksgiving, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>singing joyful songs to Him.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>For the <span class="type-small-caps">LORD</span> is a great God, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the great king above all gods.<br />In His hand are the depths of the earth, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the mountain peaks are His also.<br />The sea is His for He made it, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the dry land His hands formed.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Come, let us bow down and worship. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="type-small-caps">LORD</span>us kneel before the <span class="type-small-caps">LORD</span> our maker,<br />for He is our God, and we are the people of his pasture, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the flock of His hand.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Today, will you hear His voice? <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Do not harden your hearts, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as at Meribah and during the temptation in the wilderness,<br />where your ancestors tested and provoked Me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>although they were witness to My work."</p><p>[<span class="type-small-caps">ANT</span>]</p><p>"Forty years that generation disgusted me", <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and I said, "They are a people whose hearts go astray, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and they do not know my ways."<br />So I swore in my anger, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Never shall they enter into My rest."</p><p>[<span class="type-small-caps">ANT</span>]</p>', '<p>The <span class="type-small-caps">LORD</span> says to my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Sit at my right hand,<br />and I will make your enemies <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>into a footstool for your feet."</p><p>From Zion, the <span class="type-small-caps">LORD</span> will extend your mighty scepter\'s reach, saying, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Rule in the midst of your enemies."</p><p>On the day of your power, your people will follow you, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in your holy splendor, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"With the breaking of dawn, your youth comes to you like the dew."</p><p>The <span class="type-small-caps">LORD</span> swore an irrevocable oath,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"You are a priest always, in the order of King Melchizedek."</p><p>On your right is my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>who will crush rulers on the day of his wrath.</p><p>He will drink from the brook along his way; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>therefore he will lift up his head.</p>', '<p>I will praise the <span class="type-small-caps">LORD</span> with my whole heart, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in the council of the upright and the assembly.<br />Great are the works of the Lord, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>sought out by all who delight in them.<br />Glorious and majestic is His work, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His justice endures forever.</p><p>He has caused His wonders to be remembered; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the <span class="type-small-caps">LORD</span> is gracious and compassionate.<br />He gives food to those who fear Him; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>He remembers His covenant forever.</p><p>He has shown His people the power of His works <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>by giving them the inheritance of nations. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The works of His hands are truth and justice.<br />All His precepts are trustworthy, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>standing firm forever and ever, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>made with uprightness and truth.<br />He has sent redemption to His people, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>establishing His covenant forever.</p><p>Holy and awe-inspiring is His name. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The fear of the <span class="type-small-caps">LORD</span> is the beginning of wisdom.<br />All those who embody this have good understanding; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>their praise endures forever.</p>'), 'readings' => array('' => '<h3>BLANK</h3>', '1 Peter 1:3-5' => '<p><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Blessed be God, the Father of our Lord Jesus Christ. In His great mercy, he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead. So we will inherit what never perishes, spoils, or fades away. An inheritance that is being kept safe for you in heaven. You who are protected by the power of God, through faith, for a salvation ready to be revealed at the end of time. </p>'), 'responses' => array('' => '<h3>BLANK</h3>', 'week-3-sunday-vespers-2' => '<section class="response"><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Blessed are You Lord, in the kingdom of Heaven.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span> All of creation gives You glory and praise forever.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Glory to the Father, to the Son, and to the Holy Spirit.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div></section>')), 'Versions' => array('UMB-EN' => array('Abbreviation' => 'UMB-EN', 'Title' => 'Urban Monastic Breviary', 'Description' => 'The english translation of the Psalter used by Urban Monasticism', 'License' => '© 2021 Urban Monastics, Paris', 'Language' => 'eng', 'Date' => '2021', 'Formatting' => array('SmallCaps' => true, 'Selah' => true))), 'thisCalendar' => 'urban-monastic', 'Navigation' => array('date' => '2023-06-18', 'today' => array('date' => '2023-06-18', 'day-month' => '18 June', 'month-day' => 'June 18', 'day-of-week' => 'Sunday'), 'yesterday' => array('date' => '2023-06-17', 'day-month' => '17 June', 'month-day' => 'June 17', 'day-of-week' => 'Saturday'), 'tomorrow' => array('date' => '2023-06-19', 'day-month' => '19 June', 'month-day' => 'June 19', 'day-of-week' => 'Monday'), 'offices' => array()), 'BodyCSS' => array('prayer', 'vespers')))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/View/View.php:139)
  at Illuminate\View\View->getContents()
     (/var/www/html/vendor/laravel/framework/src/Illuminate/View/View.php:122)
  at Illuminate\View\View->renderContents()
     (/var/www/html/vendor/laravel/framework/src/Illuminate/View/View.php:91)
  at Illuminate\View\View->render()
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Http/Response.php:69)
  at Illuminate\Http\Response->setContent(object(View))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Http/Response.php:35)
  at Illuminate\Http\Response->__construct(object(View), 200, array('Content-Type' => 'text/html'))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:820)
  at Illuminate\Routing\Router::toResponse(object(Request), object(View))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:789)
  at Illuminate\Routing\Router->prepareResponse(object(Request), object(View))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:721)
  at Illuminate\Routing\Router->Illuminate\Routing\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/mcamara/laravel-localization/src/Mcamara/LaravelLocalization/Middleware/LaravelLocalizationViewPath.php:33)
  at Mcamara\LaravelLocalization\Middleware\LaravelLocalizationViewPath->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/mcamara/laravel-localization/src/Mcamara/LaravelLocalization/Middleware/LaravelLocalizationRoutes.php:30)
  at Mcamara\LaravelLocalization\Middleware\LaravelLocalizationRoutes->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50)
  at Illuminate\Routing\Middleware\SubstituteBindings->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:78)
  at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49)
  at Illuminate\View\Middleware\ShareErrorsFromSession->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:121)
  at Illuminate\Session\Middleware\StartSession->handleStatefulRequest(object(Request), object(Store), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:64)
  at Illuminate\Session\Middleware\StartSession->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:723)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:698)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:651)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:167)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
  at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
  at Illuminate\Foundation\Http\Middleware\TrimStrings->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
  at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/fruitcake/laravel-cors/src/HandleCors.php:38)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:142)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:111)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/var/www/html/public/index.php:55)                
[1/2] ErrorException
ErrorException:
Undefined index: 

  at /var/www/html/storage/framework/views/b3dc6f3fe1a3331512a831eb5bfd3005139093d4.php:143
  at Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(8, 'Undefined index: ', '/var/www/html/storage/framework/views/b3dc6f3fe1a3331512a831eb5bfd3005139093d4.php', 143, array('__path' => '/var/www/html/storage/framework/views/b3dc6f3fe1a3331512a831eb5bfd3005139093d4.php', '__data' => array('__env' => object(Factory), 'app' => object(Application), 'Domain' => 'breviarium', 'errors' => object(ViewErrorBag), 'DateLong' => 'Sunday 18 June', 'Date' => array('Day' => '18', 'DayOfWeek' => 'Sunday', 'Month' => 'June', 'Year' => '2023', 'Season' => null, 'Week' => null, 'String' => '2023-06-18'), 'Year' => '2023', 'Liturgical' => array('calendarDate' => '2023-06-18', 'breviaryDate' => '2023-06-18', 'colors' => array('vigils' => 'Green', 'lauds' => 'Green', 'terce' => 'Green', 'sext' => 'Green', 'none' => 'Green', 'vespers' => 'Green', 'compline' => 'Green'), 'dayColor' => 'Green', 'dayOfWeek' => 0, 'dayType' => 'sunday', 'invocation' => array('antiphon' => 'invitatorium-day-sunday', 'psalm' => 95), 'marianEmphasis' => null, 'octave' => null, 'proper' => array('saints' => array(), 'optional' => array(), 'season' => 'ordinary-week-11-day-0'), 'psalterWeek' => 3, 'season' => 'ordinary', 'seasonWeek' => 11, 'startEarly' => array('proper' => null, 'abbreviation' => null), 'sundayCycle' => 'A', 'TitleSeason' => null, 'TitleProper' => null, 'Title' => '<span class="DayOfWeek">Sunday</span> the 11th Week in <span class="Season">Ordinary Time</span>', 'ProperOfSaints' => array()), 'Office' => array('Calendar' => array('calendarDate' => '2023-06-18', 'breviaryDate' => '2023-06-18', 'colors' => array('vigils' => 'Green', 'lauds' => 'Green', 'terce' => 'Green', 'sext' => 'Green', 'none' => 'Green', 'vespers' => 'Green', 'compline' => 'Green'), 'dayColor' => 'Green', 'dayOfWeek' => 0, 'dayType' => 'sunday', 'invocation' => array('antiphon' => 'invitatorium-day-sunday', 'psalm' => 95), 'marianEmphasis' => null, 'octave' => null, 'proper' => array('saints' => array(), 'optional' => array(), 'season' => 'ordinary-week-11-day-0'), 'psalterWeek' => 3, 'season' => 'ordinary', 'seasonWeek' => 11, 'startEarly' => array('proper' => null, 'abbreviation' => null), 'sundayCycle' => 'A', 'TitleSeason' => null, 'TitleProper' => null, 'Title' => '<span class="DayOfWeek">Sunday</span> the 11th Week in <span class="Season">Ordinary Time</span>', 'ProperOfSaints' => array()), 'Scheme' => array('Complete' => true, 'Hymn' => null, 'Psalmody-1' => array('Passage' => '110', 'Antiphon' => 'sunday-vespers-2-anti-1', 'Prayer' => null), 'Psalmody-2' => array('Passage' => '111', 'Antiphon' => 'week-3-sunday-vespers-2-anti-2', 'Prayer' => null), 'Canticle' => array('Passage' => 'salus-et-gloria', 'Antiphon' => 'alleluia-x-3'), 'Reading' => '1 Peter 1:3-5', 'Responsitory' => 'week-3-sunday-vespers-2', 'GospelCanticle' => array('Antiphon' => null), 'Prayers' => array('Petitions' => 'petitions-week-3-sunday-vespers-2', 'Concluding' => null), 'Blessing' => 'vespers'), 'Proper-Seasons' => array('Abbreviation' => 'ordinary-week-11-day-0', 'IntroductoryVerse' => null, 'Hymn' => null, 'Psalmody-1' => array('Passage' => null, 'Antiphon' => null, 'Prayer' => null), 'Psalmody-2' => array('Passage' => null, 'Antiphon' => null, 'Prayer' => null), 'Canticle' => array('Passage' => null, 'Antiphon' => null), 'Reading' => null, 'Responsitory' => null, 'GospelCanticle' => array('Antiphon' => array('A' => null, 'B' => null, 'C' => null)), 'Prayers' => array('Petitions' => null, 'Concluding' => null), 'Blessing' => null), 'Proper-Saints' => array(), 'Structure' => array('Invitatory' => array('other' => 'invitatorium-primis', 'psalm' => 95, 'antiphon' => 'invitatorium-day-sunday'), 'Introductory' => array('other' => 'invitatorium-postmodum'), 'Hymn' => array('Hymn' => null, 'hymn' => null), 'Psalmody-1' => array('psalm' => '110', 'antiphon' => 'sunday-vespers-2-anti-1', 'prayer' => null), 'Psalmody-2' => array('psalm' => '111', 'antiphon' => 'week-3-sunday-vespers-2-anti-2', 'prayer' => null), 'Canticle' => array('canticle' => 'salus-et-gloria', 'antiphon' => 'alleluia-x-3'), 'Reading' => array('reading' => '1 Peter 1:3-5'), 'Silence' => array('other' => null), 'ReadingResponse' => array('response' => 'week-3-sunday-vespers-2'), 'GospelCanticle' => array('canticle' => 'magnificat', 'antiphon' => null), 'Petitions' => array('prayer' => 'petitions-week-3-sunday-vespers-2'), 'LordsPrayer' => array('prayer' => 'pater-noster'), 'ConcludingPrayer' => array('prayer' => null), 'Blessing' => array('blessing' => 'vespers')), 'TextAbbreviations' => array('antiphons' => array('invitatorium-day-sunday', 'sunday-vespers-2-anti-1', 'week-3-sunday-vespers-2-anti-2', 'alleluia-x-3'), 'bible' => array(), 'blessings' => array('vespers'), 'canticles' => array('salus-et-gloria', 'magnificat'), 'hymns' => array(), 'other' => array('gloria', 'invitatorium-primis', 'invitatorium-postmodum'), 'prayers' => array('petitions-week-3-sunday-vespers-2', 'pater-noster'), 'psalms' => array('95', '110', '111'), 'readings' => array('1 Peter 1:3-5'), 'responses' => array('week-3-sunday-vespers-2')), 'General' => false, 'Office' => 'vespers', 'OfficeKey' => 'vespers', 'OfficeSVG' => '/assets/offices/office-vespers.svg'), 'Texts' => array('antiphons' => array('invitatorium-day-sunday' => array('TextAbbreviation' => 'invitatorium-day-sunday', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Come, together we\'ll exault the Lord.', 'Extra' => array('BreviaryInstructions' => 'Invitatory antiphon for Sundays in ordinary time. [Not Repeated inside the Psalm]', 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-12-05' => array('Peer-Review'), '2021-12-04' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-12-04 - Paul Prins: Added this antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Come, together we\'ll exault the Lord.</p>'), 'ReferenceParsed' => array('Chapter' => 'invitatorium-day-sunday', 'Verses' => null)), 'sunday-vespers-2-anti-1' => array('TextAbbreviation' => 'week-3-sunday-vespers-2-anti-1', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'The LORD says to my master: "Sit at My right hand"', 'Extra' => array('Reference' => array('Psalm 110'), 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-05-25' => array('Peer-Review'), '2021-05-24' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-05-24 - Paul Prins: Added this antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>The <span class="type-small-caps">LORD</span> says to my master: "Sit at My right hand"</p>'), 'ReferenceParsed' => array('Chapter' => 'sunday-vespers-2-anti-1', 'Verses' => null)), 'week-3-sunday-vespers-2-anti-2' => array('TextAbbreviation' => 'week-3-sunday-vespers-2-anti-2', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'All his commandments [*] are faithful, established for ever and ever!', 'Extra' => array('Reference' => array('Psalm 119:86'), 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-10-01' => array('Peer-Review'), '2021-09-30' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-09-30 - Paul Prins: Added this Antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>All his commandments <span class="symbol-star"> *</span> are faithful, established for ever and ever!</p>'), 'ReferenceParsed' => array('Chapter' => 'week-3-sunday-vespers-2-anti-2', 'Verses' => null)), 'alleluia-x-3' => array('TextAbbreviation' => 'alleluia-x-3', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Alleluia, Alleluia, Alleluia.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-01-01' => array('Verified', 'Guidelines', 'Peer-Review', 'Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-11' => 'Constance McIntosh Smith', '2023-12-09' => 'Sheila Whittenberg', '2023-10-19' => 'Jordan Prins'))), 'Changes' => array('2021-01-01 - Paul Prins: First translation of this Antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Alleluia, Alleluia, Alleluia.</p>'), 'ReferenceParsed' => array('Chapter' => 'alleluia-x-3', 'Verses' => null))), 'blessings' => array('vespers' => array('TextAbbreviation' => 'vespers', 'SourceAbbreviation' => 'breviary-blessings', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'May the Lord bless us,
	keep us from all evil,
	and bring us to everlasting life.
*Amen*', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-03-22' => array('Peer-Review'), '2021-03-21' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-03-21 - Paul Prins: First translation of this blessing.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-blessings', 'Title' => array('default' => 'Breviary Blessings', 'UMB-EN' => 'Blessings from the Breviary', 'BMU-FR' => 'Bénédictions du Bréviaire', 'eng' => 'Blessings', 'fra' => 'Bénédictions'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the blessings used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>May the Lord bless us,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>keep us from all evil,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and bring us to everlasting life.<br /><em>Amen</em></p>'), 'ReferenceParsed' => array('Chapter' => 'vespers', 'Verses' => null))), 'canticles' => array('salus-et-gloria' => array('TextAbbreviation' => 'salus-et-gloria', 'SourceAbbreviation' => 'breviary-canticles', 'Title' => 'Salvation, Glory, and Power', 'Description' => 'From Revelation 19:1-2, 5-7', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH', 'SBLGNT'), 'People' => array('Paul Prins')), 'Verses' => array('Alleluia
Salvation and glory and power belong to our God,[*]
	whose judgments are true and just.
Alleluia

', 'Alleluia
Praise our God, all servants of the Lord,[*]
	you who fear him, both small and great.
Alleluia

', 'Alleluia
The Lord our God, the Almighty, reigns:[*]
	let us rejoice and exult and give glory and homage.
Alleluia

', 'Alleluia
The marriage of the Lamb has come[*]
	and His bride has made herself ready.
Alleluia

', 'Alleluia
Happy are those who are invited[*]
	to the wedding banquet of the Lamb.
Alleluia'), 'Extra' => array('Reference' => array('Revelation 19:1-2, 5-7'), 'LiturgiaeHorarum-Index' => 22, 'LiturgiaeHorarum-Cantica' => 'NT', 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-31' => array('Verified', 'Guidelines'), '2020-03-30' => array('Peer-Review'), '2020-03-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-31' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-31 - Constance McIntosh Smith: Implement her editorial feedback.', '2020-03-29 - Paul Prins : Added this Canticle.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-canticles', 'Title' => array('default' => 'Breviary Canticles', 'UMB-EN' => 'Canticles from the Breviary', 'BMU-FR' => 'Cantiques du Bréviaire', 'eng' => 'Canticles', 'fra' => 'Cantiques'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the canticles used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Alleluia<br />Salvation and glory and power belong to our God,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>whose judgments are true and just.<br />Alleluia</p><p>Alleluia<br />Praise our God, all servants of the Lord,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>you who fear him, both small and great.<br />Alleluia</p><p>Alleluia<br />The Lord our God, the Almighty, reigns:<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>let us rejoice and exult and give glory and homage.<br />Alleluia</p><p>Alleluia<br />The marriage of the Lamb has come<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His bride has made herself ready.<br />Alleluia</p><p>Alleluia<br />Happy are those who are invited<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to the wedding banquet of the Lamb.<br />Alleluia</p>'), 'ReferenceParsed' => array('Chapter' => 'salus-et-gloria', 'Verses' => null)), 'magnificat' => array('TextAbbreviation' => 'magnificat', 'SourceAbbreviation' => 'breviary-canticles', 'Title' => 'My Soul Magnifies', 'Description' => 'From Luke 1:46-55', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH', 'SBLGNT'), 'People' => array('Paul Prins')), 'Verses' => array('My soul [+] magnifies the greatness of the Lord; [*]
	', 'my spirit bursts, rejoicing in God my Savior.
', 'For He knew the humility of His servant. [*]
	From today all generations will call me blessed.

', 'The Almighty has done great things for me, [*]
	and holy is His name.

', 'He has mercy for those who fear Him, [*]
	from generation to generation.
', 'He has shown the strength of His arm, [*]
	and scattered the proud for the thoughts of their hearts.

', 'He has torn the mighty from their thrones, [*]
	and lifted up the lowly.
', 'He has filled the hungry with good things, [*]
	and sent the rich away empty.

', 'He has given help to His servant Israel,[*]
	and remembered His promise of mercy.
', 'The promise made to our ancestors,[*]
	to Abraham and His children forever.'), 'Extra' => array('Reference' => array('Luke 1:46-55'), 'LiturgiaeHorarum-Index' => 1, 'LiturgiaeHorarum-Cantica' => 'NT', 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-31' => array('Verified', 'Guidelines'), '2020-03-30' => array('Peer-Review'), '2020-03-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-31' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-31 - Constance McIntosh Smith: Implement her editorial feedback.', '2020-03-29 - Paul Prins : Added this Canticle.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-canticles', 'Title' => array('default' => 'Breviary Canticles', 'UMB-EN' => 'Canticles from the Breviary', 'BMU-FR' => 'Cantiques du Bréviaire', 'eng' => 'Canticles', 'fra' => 'Cantiques'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the canticles used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>My soul <span class="symbol-cross">&#10011;</span> magnifies the greatness of the Lord; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>my spirit bursts, rejoicing in God my Savior.<br />For He knew the humility of His servant. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>From today all generations will call me blessed.</p><p>The Almighty has done great things for me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and holy is His name.</p><p>He has mercy for those who fear Him, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>from generation to generation.<br />He has shown the strength of His arm, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and scattered the proud for the thoughts of their hearts.</p><p>He has torn the mighty from their thrones, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and lifted up the lowly.<br />He has filled the hungry with good things, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and sent the rich away empty.</p><p>He has given help to His servant Israel,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and remembered His promise of mercy.<br />The promise made to our ancestors,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to Abraham and His children forever.</p>'), 'ReferenceParsed' => array('Chapter' => 'magnificat', 'Verses' => null))), 'other' => array('gloria' => array('TextAbbreviation' => 'gloria', 'SourceAbbreviation' => 'breviary-other', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Glory to the Father, to the Son,
	and to the Holy Spirit,
As it was in the beginning, is now,
	and will be forever.
*Amen*
Alleluia', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-20' => array('Verified', 'Guidelines'), '2020-03-30' => array('Peer-Review'), '2020-03-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-19' => 'Constance McIntosh Smith', '2024-01-11' => 'Constance McIntosh Smith', '2023-12-09' => 'Sheila Whittenberg', '2023-10-19' => 'Jordan Prins'))), 'Changes' => array('2024-01-19 - Constance McIntosh Smith: Grammatical corrections', '2022-05-01 - Paul Prins: Update language.', '2020-03-29 - Paul Prins: First translation.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-other', 'Title' => array('default' => 'Breviary Additional Texts', 'UMB-EN' => 'Additional Texts for the Breviary', 'BMU-FR' => 'Texts Supplémentaires du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This book contains all of the additional texts which are neither psalms, antiphons, canticles, responses, nor prayers.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Glory to the Father, to the Son,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and to the Holy Spirit,<br />As it was in the beginning, is now,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and will be forever.<br /><em>Amen</em><br />Alleluia</p>'), 'ReferenceParsed' => array('Chapter' => 'gloria', 'Verses' => null)), 'invitatorium-primis' => array('TextAbbreviation' => 'invitatorium-primis', 'SourceAbbreviation' => 'breviary-other', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Lord, [+] open my lips, [*]
and my mouth will proclaim Your praise.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-20' => array('Verified', 'Guidelines'), '2020-10-02' => array('Peer-Review'), '2020-10-01' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2023-10-20' => 'Jordan Prins'))), 'Changes' => array('2023-10-20 - Jordan Prins: Fix Divine pronoun casing.', '2023-10-14 - Paul Prins: Refined the text further.', '2023-04-06 - Paul Prins: Updated this text.', '2020-10-01 - Paul Prins: Added this text.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-other', 'Title' => array('default' => 'Breviary Additional Texts', 'UMB-EN' => 'Additional Texts for the Breviary', 'BMU-FR' => 'Texts Supplémentaires du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This book contains all of the additional texts which are neither psalms, antiphons, canticles, responses, nor prayers.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Lord, <span class="symbol-cross">&#10011;</span> open my lips, <span class="symbol-star"> *</span><br />and my mouth will proclaim Your praise.</p>'), 'ReferenceParsed' => array('Chapter' => 'invitatorium-primis', 'Verses' => null)), 'invitatorium-postmodum' => array('TextAbbreviation' => 'invitatorium-postmodum', 'SourceAbbreviation' => 'breviary-other', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'God, [+] come to my assistance;[*]
Lord, make haste to help me.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-20' => array('Verified', 'Guidelines'), '2020-10-02' => array('Peer-Review'), '2020-10-01' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith', '2023-10-20' => 'Jordan Prins'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2020-10-01 - Paul Prins: Added this text.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-other', 'Title' => array('default' => 'Breviary Additional Texts', 'UMB-EN' => 'Additional Texts for the Breviary', 'BMU-FR' => 'Texts Supplémentaires du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This book contains all of the additional texts which are neither psalms, antiphons, canticles, responses, nor prayers.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>God, <span class="symbol-cross">&#10011;</span> come to my assistance;<span class="symbol-star"> *</span><br />Lord, make haste to help me.</p>'), 'ReferenceParsed' => array('Chapter' => 'invitatorium-postmodum', 'Verses' => null))), 'prayers' => array('petitions-week-3-sunday-vespers-2' => array('TextAbbreviation' => 'petitions-week-3-sunday-vespers-2', 'SourceAbbreviation' => 'breviary-prayers', 'FormatAs' => 'book', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => '[II] God has created the cosmos, He brought restoration through redemption, and continually renews creation through His love. Trusting in His eternal love we ask:
[IR] Lord, renew the wondrous works of Your love. 
[I1] We thank You God for You reveal Your power in all of creation,
[I2] You reveal Your providence within the course of history.
[I1] Through Your Son, who preaches a gospel of peace, and was victorious on the cross,
[I2] deliver us from baseless fear and despair.
[I1] Provide to everyone that loves and practices justice,
[I2] a faithful cooperation in the building of a world where true peace reigns.
[I1] Be present with the oppressed, deliver the captives, comfort the poor, feed the hungry, grant strength to the weak,
[I2] reveal in all things the victory of the cross.
[I1] After his death and burial, You wonderfully raised Your Son to glory,
[I2] grant that the deceased may join Him in eternal life.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-06-06' => array('Peer-Review'), '2021-06-05' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-09-30 - Paul Prins: First translation of these intensions.', '2021-08-04 - Paul Prins: Change abbreviation to use petitions.', '2021-06-05 - Paul Prins: Added placeholder for these intentions.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-prayers', 'Title' => array('default' => 'Breviary Prayer Texts', 'UMB-EN' => 'Prayers from the Breviary', 'BMU-FR' => 'Prières du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the prayers used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<section class="intercession"><div class="part-introduction">God has created the cosmos, He brought restoration through redemption, and continually renews creation through His love. Trusting in His eternal love we ask:</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">We thank You God for You reveal Your power in all of creation,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>You reveal Your providence within the course of history.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Through Your Son, who preaches a gospel of peace, and was victorious on the cross,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>deliver us from baseless fear and despair.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Provide to everyone that loves and practices justice,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>a faithful cooperation in the building of a world where true peace reigns.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Be present with the oppressed, deliver the captives, comfort the poor, feed the hungry, grant strength to the weak,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>reveal in all things the victory of the cross.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">After his death and burial, You wonderfully raised Your Son to glory,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>grant that the deceased may join Him in eternal life.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div></section>'), 'ReferenceParsed' => array('Chapter' => 'petitions-week-3-sunday-vespers-2', 'Verses' => null)), 'pater-noster' => array('TextAbbreviation' => 'pater-noster', 'SourceAbbreviation' => 'breviary-prayers', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'SBLGNT'), 'People' => array('Paul Prins')), 'Text' => 'Our Father, who is in heaven,
	hallowed be Your Name.
Your kingdom come,
	Your will be done,
	on earth as it is in heaven.
Give us today our daily bread.
Forgive us our sins,
	as we forgive those who sin against us.
Lead us not into temptation,
	but deliver us from evil;
for the kingdom, the power,
	and the glory are Yours without end.
Amen', 'Description' => 'The Lords Prayer.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-19' => array('Verified', 'Guidelines'), '2020-10-02' => array('Peer-Review'), '2020-10-01' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2023-10-19' => 'Jordan Prins'))), 'Changes' => array('2023-09-02 - Paul Prins: Update divine casing.', '2020-10-01 - Paul Prins: Added this prayer'), 'License' => '© 2023 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-prayers', 'Title' => array('default' => 'Breviary Prayer Texts', 'UMB-EN' => 'Prayers from the Breviary', 'BMU-FR' => 'Prières du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the prayers used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Our Father, who is in heaven,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>hallowed be Your Name.<br />Your kingdom come,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Your will be done,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>on earth as it is in heaven.<br />Give us today our daily bread.<br />Forgive us our sins,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as we forgive those who sin against us.<br />Lead us not into temptation,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>but deliver us from evil;<br />for the kingdom, the power,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the glory are Yours without end.<br />Amen</p>'), 'ReferenceParsed' => array('Chapter' => 'pater-noster', 'Verses' => null))), 'psalms' => array(array('TextAbbreviation' => 'chapter-0095', 'SourceAbbreviation' => 'breviary-psalms', 'Title' => 'An Invitation to Praise God', 'Chapter' => '95', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'WLC'), 'People' => array('Paul Prins')), 'Verses' => array('Come, let us sing praise to the LORD. [*]
	Shout with joy to the Rock of our salvation.
', 'Let us enter His presence with a song of thanksgiving, [*]
	singing joyful songs to Him.

[ANT]

', 'For the LORD is a great God, [*]
	and the great king above all gods.
', 'In His hand are the depths of the earth, [*]
	and the mountain peaks are His also.
', 'The sea is His for He made it, [*]
	the dry land His hands formed.

[ANT]

', 'Come, let us bow down and worship. [*]
	Let us kneel before the LORD our maker,
', 'for He is our God, and we are the people of his pasture, [*]
	and the flock of His hand.

[ANT]

Today, will you hear His voice? [t]
', '	"Do not harden your hearts, [*]
	as at Meribah and during the temptation in the wilderness,
', 'where your ancestors tested and provoked Me, [*]
	although they were witness to My work."

[ANT]

', '"Forty years that generation disgusted me", [t]
	and I said, "They are a people whose hearts go astray, [*]
	and they do not know my ways."
', 'So I swore in my anger, [*]
	"Never shall they enter into My rest."

[ANT]'), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-25' => array('Verified', 'Guidelines'), '2022-10-27' => array('Peer-Review'), '2022-10-26' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2022-10-26 - Paul Prins: First translation of psalm 95 based on Greek, Latin, and some Hebrew'), 'License' => '© 2022 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-psalms', 'Title' => array('default' => 'Breviary Psalms', 'UMB-EN' => 'Psalms from the Breviary', 'BMU-FR' => 'Psaumes du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'SecondaryType' => 'Poetry', 'Language' => 'hbo', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Chapters', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the psalms used during the divine office.', 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Come, let us sing praise to the <span class="type-small-caps">LORD</span>. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Shout with joy to the Rock of our salvation.<br />Let us enter His presence with a song of thanksgiving, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>singing joyful songs to Him.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>For the <span class="type-small-caps">LORD</span> is a great God, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the great king above all gods.<br />In His hand are the depths of the earth, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the mountain peaks are His also.<br />The sea is His for He made it, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the dry land His hands formed.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Come, let us bow down and worship. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="type-small-caps">LORD</span>us kneel before the <span class="type-small-caps">LORD</span> our maker,<br />for He is our God, and we are the people of his pasture, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the flock of His hand.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Today, will you hear His voice? <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Do not harden your hearts, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as at Meribah and during the temptation in the wilderness,<br />where your ancestors tested and provoked Me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>although they were witness to My work."</p><p>[<span class="type-small-caps">ANT</span>]</p><p>"Forty years that generation disgusted me", <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and I said, "They are a people whose hearts go astray, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and they do not know my ways."<br />So I swore in my anger, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Never shall they enter into My rest."</p><p>[<span class="type-small-caps">ANT</span>]</p>'), 'ReferenceParsed' => array('Chapter' => '95', 'Verses' => null)), array('TextAbbreviation' => 'chapter-0110', 'SourceAbbreviation' => 'breviary-psalms', 'Title' => 'Messiah, King, & Priest', 'Description' => 'A Psalm of David', 'Chapter' => '110', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'WLC'), 'People' => array('Paul Prins')), 'Verses' => array('The LORD says to my master, [*]
	"Sit at my right hand,
and I will make your enemies [*]
	into a footstool for your feet."

', 'From Zion, the LORD will extend your mighty scepter\'s reach, saying, [*]
	"Rule in the midst of your enemies."

', 'On the day of your power, your people will follow you, [t]
	in your holy splendor, [*]
	"With the breaking of dawn, your youth comes to you like the dew."

', 'The LORD swore an irrevocable oath,[*]
	"You are a priest always, in the order of King Melchizedek."

', 'On your right is my master, [*]
	who will crush rulers on the day of his wrath.

', 'He will drink from the brook along his way; [*]
	therefore he will lift up his head.'), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-25' => array('Verified', 'Guidelines'), '2021-04-08' => array('Peer-Review'), '2021-04-07' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2023-09-30 - Paul Prins: Fixed casings on divine name.', '2021-04-07 - Paul Prins: First translation of psalm 110 based on Greek, Latin, and some Hebrew'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-psalms', 'Title' => array('default' => 'Breviary Psalms', 'UMB-EN' => 'Psalms from the Breviary', 'BMU-FR' => 'Psaumes du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'SecondaryType' => 'Poetry', 'Language' => 'hbo', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Chapters', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the psalms used during the divine office.', 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>The <span class="type-small-caps">LORD</span> says to my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Sit at my right hand,<br />and I will make your enemies <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>into a footstool for your feet."</p><p>From Zion, the <span class="type-small-caps">LORD</span> will extend your mighty scepter\'s reach, saying, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Rule in the midst of your enemies."</p><p>On the day of your power, your people will follow you, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in your holy splendor, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"With the breaking of dawn, your youth comes to you like the dew."</p><p>The <span class="type-small-caps">LORD</span> swore an irrevocable oath,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"You are a priest always, in the order of King Melchizedek."</p><p>On your right is my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>who will crush rulers on the day of his wrath.</p><p>He will drink from the brook along his way; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>therefore he will lift up his head.</p>'), 'ReferenceParsed' => array('Chapter' => '110', 'Verses' => null)), array('TextAbbreviation' => 'chapter-0111', 'SourceAbbreviation' => 'breviary-psalms', 'Title' => 'Great Works of the Lord', 'Description' => '', 'Chapter' => '111', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'WLC'), 'People' => array('Paul Prins')), 'Verses' => array('I will praise the LORD with my whole heart, [*]
	in the council of the upright and the assembly.
', 'Great are the works of the Lord, [*]
	sought out by all who delight in them.
', 'Glorious and majestic is His work, [*]
	and His justice endures forever.

', 'He has caused His wonders to be remembered; [*]
	the LORD is gracious and compassionate.
', 'He gives food to those who fear Him; [*]
	He remembers His covenant forever.

', 'He has shown His people the power of His works [t]
	by giving them the inheritance of nations. [*]
', '	The works of His hands are truth and justice.
All His precepts are trustworthy, [t]
', '	standing firm forever and ever, [*]
	made with uprightness and truth.
', 'He has sent redemption to His people, [*]
	establishing His covenant forever.

Holy and awe-inspiring is His name. [*]
', '	The fear of the LORD is the beginning of wisdom.
All those who embody this have good understanding; [*]
	their praise endures forever.'), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-25' => array('Verified', 'Guidelines'), '2021-09-22' => array('Peer-Review'), '2021-09-21' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2021-09-21 - Paul Prins: First translation of psalm 111 based on Greek, Latin, and Hebrew'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-psalms', 'Title' => array('default' => 'Breviary Psalms', 'UMB-EN' => 'Psalms from the Breviary', 'BMU-FR' => 'Psaumes du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'SecondaryType' => 'Poetry', 'Language' => 'hbo', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Chapters', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the psalms used during the divine office.', 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>I will praise the <span class="type-small-caps">LORD</span> with my whole heart, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in the council of the upright and the assembly.<br />Great are the works of the Lord, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>sought out by all who delight in them.<br />Glorious and majestic is His work, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His justice endures forever.</p><p>He has caused His wonders to be remembered; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the <span class="type-small-caps">LORD</span> is gracious and compassionate.<br />He gives food to those who fear Him; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>He remembers His covenant forever.</p><p>He has shown His people the power of His works <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>by giving them the inheritance of nations. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The works of His hands are truth and justice.<br />All His precepts are trustworthy, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>standing firm forever and ever, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>made with uprightness and truth.<br />He has sent redemption to His people, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>establishing His covenant forever.</p><p>Holy and awe-inspiring is His name. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The fear of the <span class="type-small-caps">LORD</span> is the beginning of wisdom.<br />All those who embody this have good understanding; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>their praise endures forever.</p>'), 'ReferenceParsed' => array('Chapter' => '111', 'Verses' => null))), 'readings' => array('1 Peter 1:3-5' => array('TextAbbreviation' => 'chapter-0001', 'SourceAbbreviation' => 'bible-nt-peter-1', 'Chapter' => '1', 'FormatAs' => 'Letter', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('SBLGNT'), 'People' => array('Paul Prins')), 'Verses' => array('	Blessed be God, the Father of our Lord Jesus Christ. In His great mercy, he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead. ', 'So we will inherit what never perishes, spoils, or fades away. An inheritance that is being kept safe for you in heaven. ', 'You who are protected by the power of God, through faith, for a salvation ready to be revealed at the end of time. '), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-09-30' => array('Peer-Review'), '2021-09-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-09-29 - Paul Prins: First translation of verses 1-9 based on Greek.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'bible-nt-peter-1', 'Title' => array('default' => 'Α\' Πέτρου', 'UMB-EN' => 'The First Epistle of Peter', 'BMU-FR' => 'La Première Épître de Pierre', 'eng' => '1 Peter', 'fra' => '1 Pierre'), 'AlternativeTitles' => array('eng' => array('1 Peter', 'First Peter'), 'fra' => array('1 Pierre', 'Première Épître de Pierre')), 'Description' => '', 'Type' => 'Letter', 'Language' => 'grc-koi', 'Version' => 'Original', 'Segments' => 'Chapters', 'Verses' => true, 'Chapters' => true, 'SegmentTitles' => true, 'Notes' => '', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Date' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Blessed be God, the Father of our Lord Jesus Christ. In His great mercy, he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead. So we will inherit what never perishes, spoils, or fades away. An inheritance that is being kept safe for you in heaven. You who are protected by the power of God, through faith, for a salvation ready to be revealed at the end of time. </p>'), 'ReferenceParsed' => array('Chapter' => 1, 'Verses' => array(3, 4, 5)))), 'responses' => array('week-3-sunday-vespers-2' => array('TextAbbreviation' => 'week-3-sunday-vespers-2', 'SourceAbbreviation' => 'breviary-responses', 'FormatAs' => 'book', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => '[V] Blessed are You Lord, in the kingdom of Heaven.
[R] Blessed are You Lord, [*] in the kingdom of Heaven.
[V]All of creation gives You glory and praise forever.
[V] Glory to the Father, to the Son, and to the Holy Spirit.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-05-05' => array('Peer-Review'), '2021-05-04' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-05-04 - Paul Prins: Translated this prayer.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-responses', 'Title' => 'Breviary Responsory Texts', 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the responsory texts used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<section class="response"><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Blessed are You Lord, in the kingdom of Heaven.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span> All of creation gives You glory and praise forever.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Glory to the Father, to the Son, and to the Holy Spirit.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div></section>'), 'ReferenceParsed' => array('Chapter' => 'week-3-sunday-vespers-2', 'Verses' => null)))), 'HTML' => array('antiphons' => array('' => '<h3>BLANK</h3>', 'invitatorium-day-sunday' => '<p>Come, together we\'ll exault the Lord.</p>', 'sunday-vespers-2-anti-1' => '<p>The <span class="type-small-caps">LORD</span> says to my master: "Sit at My right hand"</p>', 'week-3-sunday-vespers-2-anti-2' => '<p>All his commandments <span class="symbol-star"> *</span> are faithful, established for ever and ever!</p>', 'alleluia-x-3' => '<p>Alleluia, Alleluia, Alleluia.</p>'), 'blessings' => array('' => '<h3>BLANK</h3>', 'vespers' => '<p>May the Lord bless us,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>keep us from all evil,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and bring us to everlasting life.<br /><em>Amen</em></p>'), 'canticles' => array('' => '<h3>BLANK</h3>', 'salus-et-gloria' => '<p>Alleluia<br />Salvation and glory and power belong to our God,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>whose judgments are true and just.<br />Alleluia</p><p>Alleluia<br />Praise our God, all servants of the Lord,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>you who fear him, both small and great.<br />Alleluia</p><p>Alleluia<br />The Lord our God, the Almighty, reigns:<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>let us rejoice and exult and give glory and homage.<br />Alleluia</p><p>Alleluia<br />The marriage of the Lamb has come<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His bride has made herself ready.<br />Alleluia</p><p>Alleluia<br />Happy are those who are invited<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to the wedding banquet of the Lamb.<br />Alleluia</p>', 'magnificat' => '<p>My soul <span class="symbol-cross">&#10011;</span> magnifies the greatness of the Lord; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>my spirit bursts, rejoicing in God my Savior.<br />For He knew the humility of His servant. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>From today all generations will call me blessed.</p><p>The Almighty has done great things for me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and holy is His name.</p><p>He has mercy for those who fear Him, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>from generation to generation.<br />He has shown the strength of His arm, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and scattered the proud for the thoughts of their hearts.</p><p>He has torn the mighty from their thrones, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and lifted up the lowly.<br />He has filled the hungry with good things, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and sent the rich away empty.</p><p>He has given help to His servant Israel,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and remembered His promise of mercy.<br />The promise made to our ancestors,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to Abraham and His children forever.</p>'), 'other' => array('' => '<h3>BLANK</h3>', 'gloria' => '<p>Glory to the Father, to the Son,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and to the Holy Spirit,<br />As it was in the beginning, is now,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and will be forever.<br /><em>Amen</em><br />Alleluia</p>', 'invitatorium-primis' => '<p>Lord, <span class="symbol-cross">&#10011;</span> open my lips, <span class="symbol-star"> *</span><br />and my mouth will proclaim Your praise.</p>', 'invitatorium-postmodum' => '<p>God, <span class="symbol-cross">&#10011;</span> come to my assistance;<span class="symbol-star"> *</span><br />Lord, make haste to help me.</p>'), 'prayers' => array('' => '<h3>BLANK</h3>', 'petitions-week-3-sunday-vespers-2' => '<section class="intercession"><div class="part-introduction">God has created the cosmos, He brought restoration through redemption, and continually renews creation through His love. Trusting in His eternal love we ask:</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">We thank You God for You reveal Your power in all of creation,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>You reveal Your providence within the course of history.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Through Your Son, who preaches a gospel of peace, and was victorious on the cross,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>deliver us from baseless fear and despair.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Provide to everyone that loves and practices justice,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>a faithful cooperation in the building of a world where true peace reigns.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Be present with the oppressed, deliver the captives, comfort the poor, feed the hungry, grant strength to the weak,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>reveal in all things the victory of the cross.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">After his death and burial, You wonderfully raised Your Son to glory,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>grant that the deceased may join Him in eternal life.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div></section>', 'pater-noster' => '<p>Our Father, who is in heaven,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>hallowed be Your Name.<br />Your kingdom come,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Your will be done,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>on earth as it is in heaven.<br />Give us today our daily bread.<br />Forgive us our sins,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as we forgive those who sin against us.<br />Lead us not into temptation,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>but deliver us from evil;<br />for the kingdom, the power,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the glory are Yours without end.<br />Amen</p>'), 'psalms' => array('' => '<h3>BLANK</h3>', '<p>Come, let us sing praise to the <span class="type-small-caps">LORD</span>. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Shout with joy to the Rock of our salvation.<br />Let us enter His presence with a song of thanksgiving, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>singing joyful songs to Him.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>For the <span class="type-small-caps">LORD</span> is a great God, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the great king above all gods.<br />In His hand are the depths of the earth, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the mountain peaks are His also.<br />The sea is His for He made it, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the dry land His hands formed.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Come, let us bow down and worship. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="type-small-caps">LORD</span>us kneel before the <span class="type-small-caps">LORD</span> our maker,<br />for He is our God, and we are the people of his pasture, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the flock of His hand.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Today, will you hear His voice? <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Do not harden your hearts, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as at Meribah and during the temptation in the wilderness,<br />where your ancestors tested and provoked Me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>although they were witness to My work."</p><p>[<span class="type-small-caps">ANT</span>]</p><p>"Forty years that generation disgusted me", <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and I said, "They are a people whose hearts go astray, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and they do not know my ways."<br />So I swore in my anger, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Never shall they enter into My rest."</p><p>[<span class="type-small-caps">ANT</span>]</p>', '<p>The <span class="type-small-caps">LORD</span> says to my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Sit at my right hand,<br />and I will make your enemies <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>into a footstool for your feet."</p><p>From Zion, the <span class="type-small-caps">LORD</span> will extend your mighty scepter\'s reach, saying, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Rule in the midst of your enemies."</p><p>On the day of your power, your people will follow you, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in your holy splendor, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"With the breaking of dawn, your youth comes to you like the dew."</p><p>The <span class="type-small-caps">LORD</span> swore an irrevocable oath,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"You are a priest always, in the order of King Melchizedek."</p><p>On your right is my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>who will crush rulers on the day of his wrath.</p><p>He will drink from the brook along his way; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>therefore he will lift up his head.</p>', '<p>I will praise the <span class="type-small-caps">LORD</span> with my whole heart, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in the council of the upright and the assembly.<br />Great are the works of the Lord, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>sought out by all who delight in them.<br />Glorious and majestic is His work, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His justice endures forever.</p><p>He has caused His wonders to be remembered; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the <span class="type-small-caps">LORD</span> is gracious and compassionate.<br />He gives food to those who fear Him; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>He remembers His covenant forever.</p><p>He has shown His people the power of His works <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>by giving them the inheritance of nations. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The works of His hands are truth and justice.<br />All His precepts are trustworthy, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>standing firm forever and ever, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>made with uprightness and truth.<br />He has sent redemption to His people, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>establishing His covenant forever.</p><p>Holy and awe-inspiring is His name. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The fear of the <span class="type-small-caps">LORD</span> is the beginning of wisdom.<br />All those who embody this have good understanding; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>their praise endures forever.</p>'), 'readings' => array('' => '<h3>BLANK</h3>', '1 Peter 1:3-5' => '<p><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Blessed be God, the Father of our Lord Jesus Christ. In His great mercy, he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead. So we will inherit what never perishes, spoils, or fades away. An inheritance that is being kept safe for you in heaven. You who are protected by the power of God, through faith, for a salvation ready to be revealed at the end of time. </p>'), 'responses' => array('' => '<h3>BLANK</h3>', 'week-3-sunday-vespers-2' => '<section class="response"><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Blessed are You Lord, in the kingdom of Heaven.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span> All of creation gives You glory and praise forever.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Glory to the Father, to the Son, and to the Holy Spirit.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div></section>')), 'Versions' => array('UMB-EN' => array('Abbreviation' => 'UMB-EN', 'Title' => 'Urban Monastic Breviary', 'Description' => 'The english translation of the Psalter used by Urban Monasticism', 'License' => '© 2021 Urban Monastics, Paris', 'Language' => 'eng', 'Date' => '2021', 'Formatting' => array('SmallCaps' => true, 'Selah' => true))), 'thisCalendar' => 'urban-monastic', 'Navigation' => array('date' => '2023-06-18', 'today' => array('date' => '2023-06-18', 'day-month' => '18 June', 'month-day' => 'June 18', 'day-of-week' => 'Sunday'), 'yesterday' => array('date' => '2023-06-17', 'day-month' => '17 June', 'month-day' => 'June 17', 'day-of-week' => 'Saturday'), 'tomorrow' => array('date' => '2023-06-19', 'day-month' => '19 June', 'month-day' => 'June 19', 'day-of-week' => 'Monday'), 'offices' => array()), 'BodyCSS' => array('prayer', 'vespers')), '__env' => object(Factory), 'app' => object(Application), 'Domain' => 'breviarium', 'errors' => object(ViewErrorBag), 'DateLong' => 'Sunday 18 June', 'Date' => array('Day' => '18', 'DayOfWeek' => 'Sunday', 'Month' => 'June', 'Year' => '2023', 'Season' => null, 'Week' => null, 'String' => '2023-06-18'), 'Year' => '2023', 'Liturgical' => array('calendarDate' => '2023-06-18', 'breviaryDate' => '2023-06-18', 'colors' => array('vigils' => 'Green', 'lauds' => 'Green', 'terce' => 'Green', 'sext' => 'Green', 'none' => 'Green', 'vespers' => 'Green', 'compline' => 'Green'), 'dayColor' => 'Green', 'dayOfWeek' => 0, 'dayType' => 'sunday', 'invocation' => array('antiphon' => 'invitatorium-day-sunday', 'psalm' => 95), 'marianEmphasis' => null, 'octave' => null, 'proper' => array('saints' => array(), 'optional' => array(), 'season' => 'ordinary-week-11-day-0'), 'psalterWeek' => 3, 'season' => 'ordinary', 'seasonWeek' => 11, 'startEarly' => array('proper' => null, 'abbreviation' => null), 'sundayCycle' => 'A', 'TitleSeason' => null, 'TitleProper' => null, 'Title' => '<span class="DayOfWeek">Sunday</span> the 11th Week in <span class="Season">Ordinary Time</span>', 'ProperOfSaints' => array()), 'Office' => array('Calendar' => array('calendarDate' => '2023-06-18', 'breviaryDate' => '2023-06-18', 'colors' => array('vigils' => 'Green', 'lauds' => 'Green', 'terce' => 'Green', 'sext' => 'Green', 'none' => 'Green', 'vespers' => 'Green', 'compline' => 'Green'), 'dayColor' => 'Green', 'dayOfWeek' => 0, 'dayType' => 'sunday', 'invocation' => array('antiphon' => 'invitatorium-day-sunday', 'psalm' => 95), 'marianEmphasis' => null, 'octave' => null, 'proper' => array('saints' => array(), 'optional' => array(), 'season' => 'ordinary-week-11-day-0'), 'psalterWeek' => 3, 'season' => 'ordinary', 'seasonWeek' => 11, 'startEarly' => array('proper' => null, 'abbreviation' => null), 'sundayCycle' => 'A', 'TitleSeason' => null, 'TitleProper' => null, 'Title' => '<span class="DayOfWeek">Sunday</span> the 11th Week in <span class="Season">Ordinary Time</span>', 'ProperOfSaints' => array()), 'Scheme' => array('Complete' => true, 'Hymn' => null, 'Psalmody-1' => array('Passage' => '110', 'Antiphon' => 'sunday-vespers-2-anti-1', 'Prayer' => null), 'Psalmody-2' => array('Passage' => '111', 'Antiphon' => 'week-3-sunday-vespers-2-anti-2', 'Prayer' => null), 'Canticle' => array('Passage' => 'salus-et-gloria', 'Antiphon' => 'alleluia-x-3'), 'Reading' => '1 Peter 1:3-5', 'Responsitory' => 'week-3-sunday-vespers-2', 'GospelCanticle' => array('Antiphon' => null), 'Prayers' => array('Petitions' => 'petitions-week-3-sunday-vespers-2', 'Concluding' => null), 'Blessing' => 'vespers'), 'Proper-Seasons' => array('Abbreviation' => 'ordinary-week-11-day-0', 'IntroductoryVerse' => null, 'Hymn' => null, 'Psalmody-1' => array('Passage' => null, 'Antiphon' => null, 'Prayer' => null), 'Psalmody-2' => array('Passage' => null, 'Antiphon' => null, 'Prayer' => null), 'Canticle' => array('Passage' => null, 'Antiphon' => null), 'Reading' => null, 'Responsitory' => null, 'GospelCanticle' => array('Antiphon' => array('A' => null, 'B' => null, 'C' => null)), 'Prayers' => array('Petitions' => null, 'Concluding' => null), 'Blessing' => null), 'Proper-Saints' => array(), 'Structure' => array('Invitatory' => array('other' => 'invitatorium-primis', 'psalm' => 95, 'antiphon' => 'invitatorium-day-sunday'), 'Introductory' => array('other' => 'invitatorium-postmodum'), 'Hymn' => array('Hymn' => null, 'hymn' => null), 'Psalmody-1' => array('psalm' => '110', 'antiphon' => 'sunday-vespers-2-anti-1', 'prayer' => null), 'Psalmody-2' => array('psalm' => '111', 'antiphon' => 'week-3-sunday-vespers-2-anti-2', 'prayer' => null), 'Canticle' => array('canticle' => 'salus-et-gloria', 'antiphon' => 'alleluia-x-3'), 'Reading' => array('reading' => '1 Peter 1:3-5'), 'Silence' => array('other' => null), 'ReadingResponse' => array('response' => 'week-3-sunday-vespers-2'), 'GospelCanticle' => array('canticle' => 'magnificat', 'antiphon' => null), 'Petitions' => array('prayer' => 'petitions-week-3-sunday-vespers-2'), 'LordsPrayer' => array('prayer' => 'pater-noster'), 'ConcludingPrayer' => array('prayer' => null), 'Blessing' => array('blessing' => 'vespers')), 'TextAbbreviations' => array('antiphons' => array('invitatorium-day-sunday', 'sunday-vespers-2-anti-1', 'week-3-sunday-vespers-2-anti-2', 'alleluia-x-3'), 'bible' => array(), 'blessings' => array('vespers'), 'canticles' => array('salus-et-gloria', 'magnificat'), 'hymns' => array(), 'other' => array('gloria', 'invitatorium-primis', 'invitatorium-postmodum'), 'prayers' => array('petitions-week-3-sunday-vespers-2', 'pater-noster'), 'psalms' => array('95', '110', '111'), 'readings' => array('1 Peter 1:3-5'), 'responses' => array('week-3-sunday-vespers-2')), 'General' => false, 'Office' => 'vespers', 'OfficeKey' => 'vespers', 'OfficeSVG' => '/assets/offices/office-vespers.svg'), 'Texts' => array('antiphons' => array('invitatorium-day-sunday' => array('TextAbbreviation' => 'invitatorium-day-sunday', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Come, together we\'ll exault the Lord.', 'Extra' => array('BreviaryInstructions' => 'Invitatory antiphon for Sundays in ordinary time. [Not Repeated inside the Psalm]', 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-12-05' => array('Peer-Review'), '2021-12-04' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-12-04 - Paul Prins: Added this antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Come, together we\'ll exault the Lord.</p>'), 'ReferenceParsed' => array('Chapter' => 'invitatorium-day-sunday', 'Verses' => null)), 'sunday-vespers-2-anti-1' => array('TextAbbreviation' => 'week-3-sunday-vespers-2-anti-1', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'The LORD says to my master: "Sit at My right hand"', 'Extra' => array('Reference' => array('Psalm 110'), 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-05-25' => array('Peer-Review'), '2021-05-24' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-05-24 - Paul Prins: Added this antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>The <span class="type-small-caps">LORD</span> says to my master: "Sit at My right hand"</p>'), 'ReferenceParsed' => array('Chapter' => 'sunday-vespers-2-anti-1', 'Verses' => null)), 'week-3-sunday-vespers-2-anti-2' => array('TextAbbreviation' => 'week-3-sunday-vespers-2-anti-2', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'All his commandments [*] are faithful, established for ever and ever!', 'Extra' => array('Reference' => array('Psalm 119:86'), 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-10-01' => array('Peer-Review'), '2021-09-30' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-09-30 - Paul Prins: Added this Antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>All his commandments <span class="symbol-star"> *</span> are faithful, established for ever and ever!</p>'), 'ReferenceParsed' => array('Chapter' => 'week-3-sunday-vespers-2-anti-2', 'Verses' => null)), 'alleluia-x-3' => array('TextAbbreviation' => 'alleluia-x-3', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Alleluia, Alleluia, Alleluia.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-01-01' => array('Verified', 'Guidelines', 'Peer-Review', 'Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-11' => 'Constance McIntosh Smith', '2023-12-09' => 'Sheila Whittenberg', '2023-10-19' => 'Jordan Prins'))), 'Changes' => array('2021-01-01 - Paul Prins: First translation of this Antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Alleluia, Alleluia, Alleluia.</p>'), 'ReferenceParsed' => array('Chapter' => 'alleluia-x-3', 'Verses' => null))), 'blessings' => array('vespers' => array('TextAbbreviation' => 'vespers', 'SourceAbbreviation' => 'breviary-blessings', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'May the Lord bless us,
	keep us from all evil,
	and bring us to everlasting life.
*Amen*', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-03-22' => array('Peer-Review'), '2021-03-21' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-03-21 - Paul Prins: First translation of this blessing.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-blessings', 'Title' => array('default' => 'Breviary Blessings', 'UMB-EN' => 'Blessings from the Breviary', 'BMU-FR' => 'Bénédictions du Bréviaire', 'eng' => 'Blessings', 'fra' => 'Bénédictions'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the blessings used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>May the Lord bless us,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>keep us from all evil,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and bring us to everlasting life.<br /><em>Amen</em></p>'), 'ReferenceParsed' => array('Chapter' => 'vespers', 'Verses' => null))), 'canticles' => array('salus-et-gloria' => array('TextAbbreviation' => 'salus-et-gloria', 'SourceAbbreviation' => 'breviary-canticles', 'Title' => 'Salvation, Glory, and Power', 'Description' => 'From Revelation 19:1-2, 5-7', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH', 'SBLGNT'), 'People' => array('Paul Prins')), 'Verses' => array('Alleluia
Salvation and glory and power belong to our God,[*]
	whose judgments are true and just.
Alleluia

', 'Alleluia
Praise our God, all servants of the Lord,[*]
	you who fear him, both small and great.
Alleluia

', 'Alleluia
The Lord our God, the Almighty, reigns:[*]
	let us rejoice and exult and give glory and homage.
Alleluia

', 'Alleluia
The marriage of the Lamb has come[*]
	and His bride has made herself ready.
Alleluia

', 'Alleluia
Happy are those who are invited[*]
	to the wedding banquet of the Lamb.
Alleluia'), 'Extra' => array('Reference' => array('Revelation 19:1-2, 5-7'), 'LiturgiaeHorarum-Index' => 22, 'LiturgiaeHorarum-Cantica' => 'NT', 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-31' => array('Verified', 'Guidelines'), '2020-03-30' => array('Peer-Review'), '2020-03-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-31' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-31 - Constance McIntosh Smith: Implement her editorial feedback.', '2020-03-29 - Paul Prins : Added this Canticle.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-canticles', 'Title' => array('default' => 'Breviary Canticles', 'UMB-EN' => 'Canticles from the Breviary', 'BMU-FR' => 'Cantiques du Bréviaire', 'eng' => 'Canticles', 'fra' => 'Cantiques'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the canticles used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Alleluia<br />Salvation and glory and power belong to our God,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>whose judgments are true and just.<br />Alleluia</p><p>Alleluia<br />Praise our God, all servants of the Lord,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>you who fear him, both small and great.<br />Alleluia</p><p>Alleluia<br />The Lord our God, the Almighty, reigns:<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>let us rejoice and exult and give glory and homage.<br />Alleluia</p><p>Alleluia<br />The marriage of the Lamb has come<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His bride has made herself ready.<br />Alleluia</p><p>Alleluia<br />Happy are those who are invited<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to the wedding banquet of the Lamb.<br />Alleluia</p>'), 'ReferenceParsed' => array('Chapter' => 'salus-et-gloria', 'Verses' => null)), 'magnificat' => array('TextAbbreviation' => 'magnificat', 'SourceAbbreviation' => 'breviary-canticles', 'Title' => 'My Soul Magnifies', 'Description' => 'From Luke 1:46-55', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH', 'SBLGNT'), 'People' => array('Paul Prins')), 'Verses' => array('My soul [+] magnifies the greatness of the Lord; [*]
	', 'my spirit bursts, rejoicing in God my Savior.
', 'For He knew the humility of His servant. [*]
	From today all generations will call me blessed.

', 'The Almighty has done great things for me, [*]
	and holy is His name.

', 'He has mercy for those who fear Him, [*]
	from generation to generation.
', 'He has shown the strength of His arm, [*]
	and scattered the proud for the thoughts of their hearts.

', 'He has torn the mighty from their thrones, [*]
	and lifted up the lowly.
', 'He has filled the hungry with good things, [*]
	and sent the rich away empty.

', 'He has given help to His servant Israel,[*]
	and remembered His promise of mercy.
', 'The promise made to our ancestors,[*]
	to Abraham and His children forever.'), 'Extra' => array('Reference' => array('Luke 1:46-55'), 'LiturgiaeHorarum-Index' => 1, 'LiturgiaeHorarum-Cantica' => 'NT', 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-31' => array('Verified', 'Guidelines'), '2020-03-30' => array('Peer-Review'), '2020-03-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-31' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-31 - Constance McIntosh Smith: Implement her editorial feedback.', '2020-03-29 - Paul Prins : Added this Canticle.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-canticles', 'Title' => array('default' => 'Breviary Canticles', 'UMB-EN' => 'Canticles from the Breviary', 'BMU-FR' => 'Cantiques du Bréviaire', 'eng' => 'Canticles', 'fra' => 'Cantiques'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the canticles used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>My soul <span class="symbol-cross">&#10011;</span> magnifies the greatness of the Lord; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>my spirit bursts, rejoicing in God my Savior.<br />For He knew the humility of His servant. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>From today all generations will call me blessed.</p><p>The Almighty has done great things for me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and holy is His name.</p><p>He has mercy for those who fear Him, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>from generation to generation.<br />He has shown the strength of His arm, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and scattered the proud for the thoughts of their hearts.</p><p>He has torn the mighty from their thrones, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and lifted up the lowly.<br />He has filled the hungry with good things, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and sent the rich away empty.</p><p>He has given help to His servant Israel,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and remembered His promise of mercy.<br />The promise made to our ancestors,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to Abraham and His children forever.</p>'), 'ReferenceParsed' => array('Chapter' => 'magnificat', 'Verses' => null))), 'other' => array('gloria' => array('TextAbbreviation' => 'gloria', 'SourceAbbreviation' => 'breviary-other', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Glory to the Father, to the Son,
	and to the Holy Spirit,
As it was in the beginning, is now,
	and will be forever.
*Amen*
Alleluia', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-20' => array('Verified', 'Guidelines'), '2020-03-30' => array('Peer-Review'), '2020-03-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-19' => 'Constance McIntosh Smith', '2024-01-11' => 'Constance McIntosh Smith', '2023-12-09' => 'Sheila Whittenberg', '2023-10-19' => 'Jordan Prins'))), 'Changes' => array('2024-01-19 - Constance McIntosh Smith: Grammatical corrections', '2022-05-01 - Paul Prins: Update language.', '2020-03-29 - Paul Prins: First translation.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-other', 'Title' => array('default' => 'Breviary Additional Texts', 'UMB-EN' => 'Additional Texts for the Breviary', 'BMU-FR' => 'Texts Supplémentaires du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This book contains all of the additional texts which are neither psalms, antiphons, canticles, responses, nor prayers.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Glory to the Father, to the Son,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and to the Holy Spirit,<br />As it was in the beginning, is now,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and will be forever.<br /><em>Amen</em><br />Alleluia</p>'), 'ReferenceParsed' => array('Chapter' => 'gloria', 'Verses' => null)), 'invitatorium-primis' => array('TextAbbreviation' => 'invitatorium-primis', 'SourceAbbreviation' => 'breviary-other', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Lord, [+] open my lips, [*]
and my mouth will proclaim Your praise.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-20' => array('Verified', 'Guidelines'), '2020-10-02' => array('Peer-Review'), '2020-10-01' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2023-10-20' => 'Jordan Prins'))), 'Changes' => array('2023-10-20 - Jordan Prins: Fix Divine pronoun casing.', '2023-10-14 - Paul Prins: Refined the text further.', '2023-04-06 - Paul Prins: Updated this text.', '2020-10-01 - Paul Prins: Added this text.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-other', 'Title' => array('default' => 'Breviary Additional Texts', 'UMB-EN' => 'Additional Texts for the Breviary', 'BMU-FR' => 'Texts Supplémentaires du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This book contains all of the additional texts which are neither psalms, antiphons, canticles, responses, nor prayers.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Lord, <span class="symbol-cross">&#10011;</span> open my lips, <span class="symbol-star"> *</span><br />and my mouth will proclaim Your praise.</p>'), 'ReferenceParsed' => array('Chapter' => 'invitatorium-primis', 'Verses' => null)), 'invitatorium-postmodum' => array('TextAbbreviation' => 'invitatorium-postmodum', 'SourceAbbreviation' => 'breviary-other', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'God, [+] come to my assistance;[*]
Lord, make haste to help me.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-20' => array('Verified', 'Guidelines'), '2020-10-02' => array('Peer-Review'), '2020-10-01' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith', '2023-10-20' => 'Jordan Prins'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2020-10-01 - Paul Prins: Added this text.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-other', 'Title' => array('default' => 'Breviary Additional Texts', 'UMB-EN' => 'Additional Texts for the Breviary', 'BMU-FR' => 'Texts Supplémentaires du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This book contains all of the additional texts which are neither psalms, antiphons, canticles, responses, nor prayers.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>God, <span class="symbol-cross">&#10011;</span> come to my assistance;<span class="symbol-star"> *</span><br />Lord, make haste to help me.</p>'), 'ReferenceParsed' => array('Chapter' => 'invitatorium-postmodum', 'Verses' => null))), 'prayers' => array('petitions-week-3-sunday-vespers-2' => array('TextAbbreviation' => 'petitions-week-3-sunday-vespers-2', 'SourceAbbreviation' => 'breviary-prayers', 'FormatAs' => 'book', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => '[II] God has created the cosmos, He brought restoration through redemption, and continually renews creation through His love. Trusting in His eternal love we ask:
[IR] Lord, renew the wondrous works of Your love. 
[I1] We thank You God for You reveal Your power in all of creation,
[I2] You reveal Your providence within the course of history.
[I1] Through Your Son, who preaches a gospel of peace, and was victorious on the cross,
[I2] deliver us from baseless fear and despair.
[I1] Provide to everyone that loves and practices justice,
[I2] a faithful cooperation in the building of a world where true peace reigns.
[I1] Be present with the oppressed, deliver the captives, comfort the poor, feed the hungry, grant strength to the weak,
[I2] reveal in all things the victory of the cross.
[I1] After his death and burial, You wonderfully raised Your Son to glory,
[I2] grant that the deceased may join Him in eternal life.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-06-06' => array('Peer-Review'), '2021-06-05' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-09-30 - Paul Prins: First translation of these intensions.', '2021-08-04 - Paul Prins: Change abbreviation to use petitions.', '2021-06-05 - Paul Prins: Added placeholder for these intentions.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-prayers', 'Title' => array('default' => 'Breviary Prayer Texts', 'UMB-EN' => 'Prayers from the Breviary', 'BMU-FR' => 'Prières du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the prayers used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<section class="intercession"><div class="part-introduction">God has created the cosmos, He brought restoration through redemption, and continually renews creation through His love. Trusting in His eternal love we ask:</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">We thank You God for You reveal Your power in all of creation,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>You reveal Your providence within the course of history.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Through Your Son, who preaches a gospel of peace, and was victorious on the cross,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>deliver us from baseless fear and despair.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Provide to everyone that loves and practices justice,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>a faithful cooperation in the building of a world where true peace reigns.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Be present with the oppressed, deliver the captives, comfort the poor, feed the hungry, grant strength to the weak,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>reveal in all things the victory of the cross.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">After his death and burial, You wonderfully raised Your Son to glory,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>grant that the deceased may join Him in eternal life.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div></section>'), 'ReferenceParsed' => array('Chapter' => 'petitions-week-3-sunday-vespers-2', 'Verses' => null)), 'pater-noster' => array('TextAbbreviation' => 'pater-noster', 'SourceAbbreviation' => 'breviary-prayers', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'SBLGNT'), 'People' => array('Paul Prins')), 'Text' => 'Our Father, who is in heaven,
	hallowed be Your Name.
Your kingdom come,
	Your will be done,
	on earth as it is in heaven.
Give us today our daily bread.
Forgive us our sins,
	as we forgive those who sin against us.
Lead us not into temptation,
	but deliver us from evil;
for the kingdom, the power,
	and the glory are Yours without end.
Amen', 'Description' => 'The Lords Prayer.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-19' => array('Verified', 'Guidelines'), '2020-10-02' => array('Peer-Review'), '2020-10-01' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2023-10-19' => 'Jordan Prins'))), 'Changes' => array('2023-09-02 - Paul Prins: Update divine casing.', '2020-10-01 - Paul Prins: Added this prayer'), 'License' => '© 2023 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-prayers', 'Title' => array('default' => 'Breviary Prayer Texts', 'UMB-EN' => 'Prayers from the Breviary', 'BMU-FR' => 'Prières du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the prayers used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Our Father, who is in heaven,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>hallowed be Your Name.<br />Your kingdom come,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Your will be done,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>on earth as it is in heaven.<br />Give us today our daily bread.<br />Forgive us our sins,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as we forgive those who sin against us.<br />Lead us not into temptation,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>but deliver us from evil;<br />for the kingdom, the power,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the glory are Yours without end.<br />Amen</p>'), 'ReferenceParsed' => array('Chapter' => 'pater-noster', 'Verses' => null))), 'psalms' => array(array('TextAbbreviation' => 'chapter-0095', 'SourceAbbreviation' => 'breviary-psalms', 'Title' => 'An Invitation to Praise God', 'Chapter' => '95', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'WLC'), 'People' => array('Paul Prins')), 'Verses' => array('Come, let us sing praise to the LORD. [*]
	Shout with joy to the Rock of our salvation.
', 'Let us enter His presence with a song of thanksgiving, [*]
	singing joyful songs to Him.

[ANT]

', 'For the LORD is a great God, [*]
	and the great king above all gods.
', 'In His hand are the depths of the earth, [*]
	and the mountain peaks are His also.
', 'The sea is His for He made it, [*]
	the dry land His hands formed.

[ANT]

', 'Come, let us bow down and worship. [*]
	Let us kneel before the LORD our maker,
', 'for He is our God, and we are the people of his pasture, [*]
	and the flock of His hand.

[ANT]

Today, will you hear His voice? [t]
', '	"Do not harden your hearts, [*]
	as at Meribah and during the temptation in the wilderness,
', 'where your ancestors tested and provoked Me, [*]
	although they were witness to My work."

[ANT]

', '"Forty years that generation disgusted me", [t]
	and I said, "They are a people whose hearts go astray, [*]
	and they do not know my ways."
', 'So I swore in my anger, [*]
	"Never shall they enter into My rest."

[ANT]'), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-25' => array('Verified', 'Guidelines'), '2022-10-27' => array('Peer-Review'), '2022-10-26' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2022-10-26 - Paul Prins: First translation of psalm 95 based on Greek, Latin, and some Hebrew'), 'License' => '© 2022 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-psalms', 'Title' => array('default' => 'Breviary Psalms', 'UMB-EN' => 'Psalms from the Breviary', 'BMU-FR' => 'Psaumes du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'SecondaryType' => 'Poetry', 'Language' => 'hbo', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Chapters', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the psalms used during the divine office.', 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Come, let us sing praise to the <span class="type-small-caps">LORD</span>. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Shout with joy to the Rock of our salvation.<br />Let us enter His presence with a song of thanksgiving, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>singing joyful songs to Him.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>For the <span class="type-small-caps">LORD</span> is a great God, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the great king above all gods.<br />In His hand are the depths of the earth, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the mountain peaks are His also.<br />The sea is His for He made it, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the dry land His hands formed.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Come, let us bow down and worship. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="type-small-caps">LORD</span>us kneel before the <span class="type-small-caps">LORD</span> our maker,<br />for He is our God, and we are the people of his pasture, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the flock of His hand.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Today, will you hear His voice? <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Do not harden your hearts, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as at Meribah and during the temptation in the wilderness,<br />where your ancestors tested and provoked Me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>although they were witness to My work."</p><p>[<span class="type-small-caps">ANT</span>]</p><p>"Forty years that generation disgusted me", <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and I said, "They are a people whose hearts go astray, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and they do not know my ways."<br />So I swore in my anger, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Never shall they enter into My rest."</p><p>[<span class="type-small-caps">ANT</span>]</p>'), 'ReferenceParsed' => array('Chapter' => '95', 'Verses' => null)), array('TextAbbreviation' => 'chapter-0110', 'SourceAbbreviation' => 'breviary-psalms', 'Title' => 'Messiah, King, & Priest', 'Description' => 'A Psalm of David', 'Chapter' => '110', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'WLC'), 'People' => array('Paul Prins')), 'Verses' => array('The LORD says to my master, [*]
	"Sit at my right hand,
and I will make your enemies [*]
	into a footstool for your feet."

', 'From Zion, the LORD will extend your mighty scepter\'s reach, saying, [*]
	"Rule in the midst of your enemies."

', 'On the day of your power, your people will follow you, [t]
	in your holy splendor, [*]
	"With the breaking of dawn, your youth comes to you like the dew."

', 'The LORD swore an irrevocable oath,[*]
	"You are a priest always, in the order of King Melchizedek."

', 'On your right is my master, [*]
	who will crush rulers on the day of his wrath.

', 'He will drink from the brook along his way; [*]
	therefore he will lift up his head.'), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-25' => array('Verified', 'Guidelines'), '2021-04-08' => array('Peer-Review'), '2021-04-07' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2023-09-30 - Paul Prins: Fixed casings on divine name.', '2021-04-07 - Paul Prins: First translation of psalm 110 based on Greek, Latin, and some Hebrew'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-psalms', 'Title' => array('default' => 'Breviary Psalms', 'UMB-EN' => 'Psalms from the Breviary', 'BMU-FR' => 'Psaumes du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'SecondaryType' => 'Poetry', 'Language' => 'hbo', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Chapters', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the psalms used during the divine office.', 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>The <span class="type-small-caps">LORD</span> says to my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Sit at my right hand,<br />and I will make your enemies <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>into a footstool for your feet."</p><p>From Zion, the <span class="type-small-caps">LORD</span> will extend your mighty scepter\'s reach, saying, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Rule in the midst of your enemies."</p><p>On the day of your power, your people will follow you, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in your holy splendor, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"With the breaking of dawn, your youth comes to you like the dew."</p><p>The <span class="type-small-caps">LORD</span> swore an irrevocable oath,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"You are a priest always, in the order of King Melchizedek."</p><p>On your right is my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>who will crush rulers on the day of his wrath.</p><p>He will drink from the brook along his way; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>therefore he will lift up his head.</p>'), 'ReferenceParsed' => array('Chapter' => '110', 'Verses' => null)), array('TextAbbreviation' => 'chapter-0111', 'SourceAbbreviation' => 'breviary-psalms', 'Title' => 'Great Works of the Lord', 'Description' => '', 'Chapter' => '111', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'WLC'), 'People' => array('Paul Prins')), 'Verses' => array('I will praise the LORD with my whole heart, [*]
	in the council of the upright and the assembly.
', 'Great are the works of the Lord, [*]
	sought out by all who delight in them.
', 'Glorious and majestic is His work, [*]
	and His justice endures forever.

', 'He has caused His wonders to be remembered; [*]
	the LORD is gracious and compassionate.
', 'He gives food to those who fear Him; [*]
	He remembers His covenant forever.

', 'He has shown His people the power of His works [t]
	by giving them the inheritance of nations. [*]
', '	The works of His hands are truth and justice.
All His precepts are trustworthy, [t]
', '	standing firm forever and ever, [*]
	made with uprightness and truth.
', 'He has sent redemption to His people, [*]
	establishing His covenant forever.

Holy and awe-inspiring is His name. [*]
', '	The fear of the LORD is the beginning of wisdom.
All those who embody this have good understanding; [*]
	their praise endures forever.'), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-25' => array('Verified', 'Guidelines'), '2021-09-22' => array('Peer-Review'), '2021-09-21' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2021-09-21 - Paul Prins: First translation of psalm 111 based on Greek, Latin, and Hebrew'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-psalms', 'Title' => array('default' => 'Breviary Psalms', 'UMB-EN' => 'Psalms from the Breviary', 'BMU-FR' => 'Psaumes du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'SecondaryType' => 'Poetry', 'Language' => 'hbo', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Chapters', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the psalms used during the divine office.', 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>I will praise the <span class="type-small-caps">LORD</span> with my whole heart, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in the council of the upright and the assembly.<br />Great are the works of the Lord, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>sought out by all who delight in them.<br />Glorious and majestic is His work, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His justice endures forever.</p><p>He has caused His wonders to be remembered; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the <span class="type-small-caps">LORD</span> is gracious and compassionate.<br />He gives food to those who fear Him; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>He remembers His covenant forever.</p><p>He has shown His people the power of His works <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>by giving them the inheritance of nations. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The works of His hands are truth and justice.<br />All His precepts are trustworthy, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>standing firm forever and ever, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>made with uprightness and truth.<br />He has sent redemption to His people, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>establishing His covenant forever.</p><p>Holy and awe-inspiring is His name. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The fear of the <span class="type-small-caps">LORD</span> is the beginning of wisdom.<br />All those who embody this have good understanding; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>their praise endures forever.</p>'), 'ReferenceParsed' => array('Chapter' => '111', 'Verses' => null))), 'readings' => array('1 Peter 1:3-5' => array('TextAbbreviation' => 'chapter-0001', 'SourceAbbreviation' => 'bible-nt-peter-1', 'Chapter' => '1', 'FormatAs' => 'Letter', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('SBLGNT'), 'People' => array('Paul Prins')), 'Verses' => array('	Blessed be God, the Father of our Lord Jesus Christ. In His great mercy, he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead. ', 'So we will inherit what never perishes, spoils, or fades away. An inheritance that is being kept safe for you in heaven. ', 'You who are protected by the power of God, through faith, for a salvation ready to be revealed at the end of time. '), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-09-30' => array('Peer-Review'), '2021-09-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-09-29 - Paul Prins: First translation of verses 1-9 based on Greek.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'bible-nt-peter-1', 'Title' => array('default' => 'Α\' Πέτρου', 'UMB-EN' => 'The First Epistle of Peter', 'BMU-FR' => 'La Première Épître de Pierre', 'eng' => '1 Peter', 'fra' => '1 Pierre'), 'AlternativeTitles' => array('eng' => array('1 Peter', 'First Peter'), 'fra' => array('1 Pierre', 'Première Épître de Pierre')), 'Description' => '', 'Type' => 'Letter', 'Language' => 'grc-koi', 'Version' => 'Original', 'Segments' => 'Chapters', 'Verses' => true, 'Chapters' => true, 'SegmentTitles' => true, 'Notes' => '', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Date' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Blessed be God, the Father of our Lord Jesus Christ. In His great mercy, he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead. So we will inherit what never perishes, spoils, or fades away. An inheritance that is being kept safe for you in heaven. You who are protected by the power of God, through faith, for a salvation ready to be revealed at the end of time. </p>'), 'ReferenceParsed' => array('Chapter' => 1, 'Verses' => array(3, 4, 5)))), 'responses' => array('week-3-sunday-vespers-2' => array('TextAbbreviation' => 'week-3-sunday-vespers-2', 'SourceAbbreviation' => 'breviary-responses', 'FormatAs' => 'book', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => '[V] Blessed are You Lord, in the kingdom of Heaven.
[R] Blessed are You Lord, [*] in the kingdom of Heaven.
[V]All of creation gives You glory and praise forever.
[V] Glory to the Father, to the Son, and to the Holy Spirit.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-05-05' => array('Peer-Review'), '2021-05-04' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-05-04 - Paul Prins: Translated this prayer.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-responses', 'Title' => 'Breviary Responsory Texts', 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the responsory texts used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<section class="response"><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Blessed are You Lord, in the kingdom of Heaven.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span> All of creation gives You glory and praise forever.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Glory to the Father, to the Son, and to the Holy Spirit.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div></section>'), 'ReferenceParsed' => array('Chapter' => 'week-3-sunday-vespers-2', 'Verses' => null)))), 'HTML' => array('antiphons' => array('' => '<h3>BLANK</h3>', 'invitatorium-day-sunday' => '<p>Come, together we\'ll exault the Lord.</p>', 'sunday-vespers-2-anti-1' => '<p>The <span class="type-small-caps">LORD</span> says to my master: "Sit at My right hand"</p>', 'week-3-sunday-vespers-2-anti-2' => '<p>All his commandments <span class="symbol-star"> *</span> are faithful, established for ever and ever!</p>', 'alleluia-x-3' => '<p>Alleluia, Alleluia, Alleluia.</p>'), 'blessings' => array('' => '<h3>BLANK</h3>', 'vespers' => '<p>May the Lord bless us,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>keep us from all evil,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and bring us to everlasting life.<br /><em>Amen</em></p>'), 'canticles' => array('' => '<h3>BLANK</h3>', 'salus-et-gloria' => '<p>Alleluia<br />Salvation and glory and power belong to our God,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>whose judgments are true and just.<br />Alleluia</p><p>Alleluia<br />Praise our God, all servants of the Lord,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>you who fear him, both small and great.<br />Alleluia</p><p>Alleluia<br />The Lord our God, the Almighty, reigns:<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>let us rejoice and exult and give glory and homage.<br />Alleluia</p><p>Alleluia<br />The marriage of the Lamb has come<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His bride has made herself ready.<br />Alleluia</p><p>Alleluia<br />Happy are those who are invited<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to the wedding banquet of the Lamb.<br />Alleluia</p>', 'magnificat' => '<p>My soul <span class="symbol-cross">&#10011;</span> magnifies the greatness of the Lord; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>my spirit bursts, rejoicing in God my Savior.<br />For He knew the humility of His servant. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>From today all generations will call me blessed.</p><p>The Almighty has done great things for me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and holy is His name.</p><p>He has mercy for those who fear Him, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>from generation to generation.<br />He has shown the strength of His arm, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and scattered the proud for the thoughts of their hearts.</p><p>He has torn the mighty from their thrones, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and lifted up the lowly.<br />He has filled the hungry with good things, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and sent the rich away empty.</p><p>He has given help to His servant Israel,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and remembered His promise of mercy.<br />The promise made to our ancestors,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to Abraham and His children forever.</p>'), 'other' => array('' => '<h3>BLANK</h3>', 'gloria' => '<p>Glory to the Father, to the Son,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and to the Holy Spirit,<br />As it was in the beginning, is now,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and will be forever.<br /><em>Amen</em><br />Alleluia</p>', 'invitatorium-primis' => '<p>Lord, <span class="symbol-cross">&#10011;</span> open my lips, <span class="symbol-star"> *</span><br />and my mouth will proclaim Your praise.</p>', 'invitatorium-postmodum' => '<p>God, <span class="symbol-cross">&#10011;</span> come to my assistance;<span class="symbol-star"> *</span><br />Lord, make haste to help me.</p>'), 'prayers' => array('' => '<h3>BLANK</h3>', 'petitions-week-3-sunday-vespers-2' => '<section class="intercession"><div class="part-introduction">God has created the cosmos, He brought restoration through redemption, and continually renews creation through His love. Trusting in His eternal love we ask:</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">We thank You God for You reveal Your power in all of creation,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>You reveal Your providence within the course of history.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Through Your Son, who preaches a gospel of peace, and was victorious on the cross,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>deliver us from baseless fear and despair.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Provide to everyone that loves and practices justice,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>a faithful cooperation in the building of a world where true peace reigns.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Be present with the oppressed, deliver the captives, comfort the poor, feed the hungry, grant strength to the weak,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>reveal in all things the victory of the cross.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">After his death and burial, You wonderfully raised Your Son to glory,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>grant that the deceased may join Him in eternal life.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div></section>', 'pater-noster' => '<p>Our Father, who is in heaven,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>hallowed be Your Name.<br />Your kingdom come,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Your will be done,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>on earth as it is in heaven.<br />Give us today our daily bread.<br />Forgive us our sins,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as we forgive those who sin against us.<br />Lead us not into temptation,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>but deliver us from evil;<br />for the kingdom, the power,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the glory are Yours without end.<br />Amen</p>'), 'psalms' => array('' => '<h3>BLANK</h3>', '<p>Come, let us sing praise to the <span class="type-small-caps">LORD</span>. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Shout with joy to the Rock of our salvation.<br />Let us enter His presence with a song of thanksgiving, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>singing joyful songs to Him.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>For the <span class="type-small-caps">LORD</span> is a great God, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the great king above all gods.<br />In His hand are the depths of the earth, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the mountain peaks are His also.<br />The sea is His for He made it, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the dry land His hands formed.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Come, let us bow down and worship. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="type-small-caps">LORD</span>us kneel before the <span class="type-small-caps">LORD</span> our maker,<br />for He is our God, and we are the people of his pasture, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the flock of His hand.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Today, will you hear His voice? <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Do not harden your hearts, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as at Meribah and during the temptation in the wilderness,<br />where your ancestors tested and provoked Me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>although they were witness to My work."</p><p>[<span class="type-small-caps">ANT</span>]</p><p>"Forty years that generation disgusted me", <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and I said, "They are a people whose hearts go astray, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and they do not know my ways."<br />So I swore in my anger, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Never shall they enter into My rest."</p><p>[<span class="type-small-caps">ANT</span>]</p>', '<p>The <span class="type-small-caps">LORD</span> says to my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Sit at my right hand,<br />and I will make your enemies <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>into a footstool for your feet."</p><p>From Zion, the <span class="type-small-caps">LORD</span> will extend your mighty scepter\'s reach, saying, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Rule in the midst of your enemies."</p><p>On the day of your power, your people will follow you, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in your holy splendor, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"With the breaking of dawn, your youth comes to you like the dew."</p><p>The <span class="type-small-caps">LORD</span> swore an irrevocable oath,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"You are a priest always, in the order of King Melchizedek."</p><p>On your right is my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>who will crush rulers on the day of his wrath.</p><p>He will drink from the brook along his way; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>therefore he will lift up his head.</p>', '<p>I will praise the <span class="type-small-caps">LORD</span> with my whole heart, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in the council of the upright and the assembly.<br />Great are the works of the Lord, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>sought out by all who delight in them.<br />Glorious and majestic is His work, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His justice endures forever.</p><p>He has caused His wonders to be remembered; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the <span class="type-small-caps">LORD</span> is gracious and compassionate.<br />He gives food to those who fear Him; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>He remembers His covenant forever.</p><p>He has shown His people the power of His works <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>by giving them the inheritance of nations. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The works of His hands are truth and justice.<br />All His precepts are trustworthy, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>standing firm forever and ever, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>made with uprightness and truth.<br />He has sent redemption to His people, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>establishing His covenant forever.</p><p>Holy and awe-inspiring is His name. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The fear of the <span class="type-small-caps">LORD</span> is the beginning of wisdom.<br />All those who embody this have good understanding; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>their praise endures forever.</p>'), 'readings' => array('' => '<h3>BLANK</h3>', '1 Peter 1:3-5' => '<p><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Blessed be God, the Father of our Lord Jesus Christ. In His great mercy, he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead. So we will inherit what never perishes, spoils, or fades away. An inheritance that is being kept safe for you in heaven. You who are protected by the power of God, through faith, for a salvation ready to be revealed at the end of time. </p>'), 'responses' => array('' => '<h3>BLANK</h3>', 'week-3-sunday-vespers-2' => '<section class="response"><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Blessed are You Lord, in the kingdom of Heaven.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span> All of creation gives You glory and praise forever.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Glory to the Father, to the Son, and to the Holy Spirit.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div></section>')), 'Versions' => array('UMB-EN' => array('Abbreviation' => 'UMB-EN', 'Title' => 'Urban Monastic Breviary', 'Description' => 'The english translation of the Psalter used by Urban Monasticism', 'License' => '© 2021 Urban Monastics, Paris', 'Language' => 'eng', 'Date' => '2021', 'Formatting' => array('SmallCaps' => true, 'Selah' => true))), 'thisCalendar' => 'urban-monastic', 'Navigation' => array('date' => '2023-06-18', 'today' => array('date' => '2023-06-18', 'day-month' => '18 June', 'month-day' => 'June 18', 'day-of-week' => 'Sunday'), 'yesterday' => array('date' => '2023-06-17', 'day-month' => '17 June', 'month-day' => 'June 17', 'day-of-week' => 'Saturday'), 'tomorrow' => array('date' => '2023-06-19', 'day-month' => '19 June', 'month-day' => 'June 19', 'day-of-week' => 'Monday'), 'offices' => array()), 'BodyCSS' => array('prayer', 'vespers'), 'PsalmodyStarted' => null, 'svg' => object(DOMDocument), '__currentLoopData' => array('Invitatory' => array('other' => 'invitatorium-primis', 'psalm' => 95, 'antiphon' => 'invitatorium-day-sunday'), 'Introductory' => array('other' => 'invitatorium-postmodum'), 'Hymn' => array('Hymn' => null, 'hymn' => null), 'Psalmody-1' => array('psalm' => '110', 'antiphon' => 'sunday-vespers-2-anti-1', 'prayer' => null), 'Psalmody-2' => array('psalm' => '111', 'antiphon' => 'week-3-sunday-vespers-2-anti-2', 'prayer' => null), 'Canticle' => array('canticle' => 'salus-et-gloria', 'antiphon' => 'alleluia-x-3'), 'Reading' => array('reading' => '1 Peter 1:3-5'), 'Silence' => array('other' => null), 'ReadingResponse' => array('response' => 'week-3-sunday-vespers-2'), 'GospelCanticle' => array('canticle' => 'magnificat', 'antiphon' => null), 'Petitions' => array('prayer' => 'petitions-week-3-sunday-vespers-2'), 'LordsPrayer' => array('prayer' => 'pater-noster'), 'ConcludingPrayer' => array('prayer' => null), 'Blessing' => array('blessing' => 'vespers')), 'Vars' => array('prayer' => null), 'Segment' => 'ConcludingPrayer', 'loop' => object(stdClass)))
     (/var/www/html/storage/framework/views/b3dc6f3fe1a3331512a831eb5bfd3005139093d4.php:143)
  at require('/var/www/html/storage/framework/views/b3dc6f3fe1a3331512a831eb5bfd3005139093d4.php')
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:107)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:108)
  at Illuminate\Filesystem\Filesystem->getRequire('/var/www/html/storage/framework/views/b3dc6f3fe1a3331512a831eb5bfd3005139093d4.php', array('__env' => object(Factory), 'app' => object(Application), 'Domain' => 'breviarium', 'errors' => object(ViewErrorBag), 'DateLong' => 'Sunday 18 June', 'Date' => array('Day' => '18', 'DayOfWeek' => 'Sunday', 'Month' => 'June', 'Year' => '2023', 'Season' => null, 'Week' => null, 'String' => '2023-06-18'), 'Year' => '2023', 'Liturgical' => array('calendarDate' => '2023-06-18', 'breviaryDate' => '2023-06-18', 'colors' => array('vigils' => 'Green', 'lauds' => 'Green', 'terce' => 'Green', 'sext' => 'Green', 'none' => 'Green', 'vespers' => 'Green', 'compline' => 'Green'), 'dayColor' => 'Green', 'dayOfWeek' => 0, 'dayType' => 'sunday', 'invocation' => array('antiphon' => 'invitatorium-day-sunday', 'psalm' => 95), 'marianEmphasis' => null, 'octave' => null, 'proper' => array('saints' => array(), 'optional' => array(), 'season' => 'ordinary-week-11-day-0'), 'psalterWeek' => 3, 'season' => 'ordinary', 'seasonWeek' => 11, 'startEarly' => array('proper' => null, 'abbreviation' => null), 'sundayCycle' => 'A', 'TitleSeason' => null, 'TitleProper' => null, 'Title' => '<span class="DayOfWeek">Sunday</span> the 11th Week in <span class="Season">Ordinary Time</span>', 'ProperOfSaints' => array()), 'Office' => array('Calendar' => array('calendarDate' => '2023-06-18', 'breviaryDate' => '2023-06-18', 'colors' => array('vigils' => 'Green', 'lauds' => 'Green', 'terce' => 'Green', 'sext' => 'Green', 'none' => 'Green', 'vespers' => 'Green', 'compline' => 'Green'), 'dayColor' => 'Green', 'dayOfWeek' => 0, 'dayType' => 'sunday', 'invocation' => array('antiphon' => 'invitatorium-day-sunday', 'psalm' => 95), 'marianEmphasis' => null, 'octave' => null, 'proper' => array('saints' => array(), 'optional' => array(), 'season' => 'ordinary-week-11-day-0'), 'psalterWeek' => 3, 'season' => 'ordinary', 'seasonWeek' => 11, 'startEarly' => array('proper' => null, 'abbreviation' => null), 'sundayCycle' => 'A', 'TitleSeason' => null, 'TitleProper' => null, 'Title' => '<span class="DayOfWeek">Sunday</span> the 11th Week in <span class="Season">Ordinary Time</span>', 'ProperOfSaints' => array()), 'Scheme' => array('Complete' => true, 'Hymn' => null, 'Psalmody-1' => array('Passage' => '110', 'Antiphon' => 'sunday-vespers-2-anti-1', 'Prayer' => null), 'Psalmody-2' => array('Passage' => '111', 'Antiphon' => 'week-3-sunday-vespers-2-anti-2', 'Prayer' => null), 'Canticle' => array('Passage' => 'salus-et-gloria', 'Antiphon' => 'alleluia-x-3'), 'Reading' => '1 Peter 1:3-5', 'Responsitory' => 'week-3-sunday-vespers-2', 'GospelCanticle' => array('Antiphon' => null), 'Prayers' => array('Petitions' => 'petitions-week-3-sunday-vespers-2', 'Concluding' => null), 'Blessing' => 'vespers'), 'Proper-Seasons' => array('Abbreviation' => 'ordinary-week-11-day-0', 'IntroductoryVerse' => null, 'Hymn' => null, 'Psalmody-1' => array('Passage' => null, 'Antiphon' => null, 'Prayer' => null), 'Psalmody-2' => array('Passage' => null, 'Antiphon' => null, 'Prayer' => null), 'Canticle' => array('Passage' => null, 'Antiphon' => null), 'Reading' => null, 'Responsitory' => null, 'GospelCanticle' => array('Antiphon' => array('A' => null, 'B' => null, 'C' => null)), 'Prayers' => array('Petitions' => null, 'Concluding' => null), 'Blessing' => null), 'Proper-Saints' => array(), 'Structure' => array('Invitatory' => array('other' => 'invitatorium-primis', 'psalm' => 95, 'antiphon' => 'invitatorium-day-sunday'), 'Introductory' => array('other' => 'invitatorium-postmodum'), 'Hymn' => array('Hymn' => null, 'hymn' => null), 'Psalmody-1' => array('psalm' => '110', 'antiphon' => 'sunday-vespers-2-anti-1', 'prayer' => null), 'Psalmody-2' => array('psalm' => '111', 'antiphon' => 'week-3-sunday-vespers-2-anti-2', 'prayer' => null), 'Canticle' => array('canticle' => 'salus-et-gloria', 'antiphon' => 'alleluia-x-3'), 'Reading' => array('reading' => '1 Peter 1:3-5'), 'Silence' => array('other' => null), 'ReadingResponse' => array('response' => 'week-3-sunday-vespers-2'), 'GospelCanticle' => array('canticle' => 'magnificat', 'antiphon' => null), 'Petitions' => array('prayer' => 'petitions-week-3-sunday-vespers-2'), 'LordsPrayer' => array('prayer' => 'pater-noster'), 'ConcludingPrayer' => array('prayer' => null), 'Blessing' => array('blessing' => 'vespers')), 'TextAbbreviations' => array('antiphons' => array('invitatorium-day-sunday', 'sunday-vespers-2-anti-1', 'week-3-sunday-vespers-2-anti-2', 'alleluia-x-3'), 'bible' => array(), 'blessings' => array('vespers'), 'canticles' => array('salus-et-gloria', 'magnificat'), 'hymns' => array(), 'other' => array('gloria', 'invitatorium-primis', 'invitatorium-postmodum'), 'prayers' => array('petitions-week-3-sunday-vespers-2', 'pater-noster'), 'psalms' => array('95', '110', '111'), 'readings' => array('1 Peter 1:3-5'), 'responses' => array('week-3-sunday-vespers-2')), 'General' => false, 'Office' => 'vespers', 'OfficeKey' => 'vespers', 'OfficeSVG' => '/assets/offices/office-vespers.svg'), 'Texts' => array('antiphons' => array('invitatorium-day-sunday' => array('TextAbbreviation' => 'invitatorium-day-sunday', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Come, together we\'ll exault the Lord.', 'Extra' => array('BreviaryInstructions' => 'Invitatory antiphon for Sundays in ordinary time. [Not Repeated inside the Psalm]', 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-12-05' => array('Peer-Review'), '2021-12-04' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-12-04 - Paul Prins: Added this antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Come, together we\'ll exault the Lord.</p>'), 'ReferenceParsed' => array('Chapter' => 'invitatorium-day-sunday', 'Verses' => null)), 'sunday-vespers-2-anti-1' => array('TextAbbreviation' => 'week-3-sunday-vespers-2-anti-1', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'The LORD says to my master: "Sit at My right hand"', 'Extra' => array('Reference' => array('Psalm 110'), 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-05-25' => array('Peer-Review'), '2021-05-24' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-05-24 - Paul Prins: Added this antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>The <span class="type-small-caps">LORD</span> says to my master: "Sit at My right hand"</p>'), 'ReferenceParsed' => array('Chapter' => 'sunday-vespers-2-anti-1', 'Verses' => null)), 'week-3-sunday-vespers-2-anti-2' => array('TextAbbreviation' => 'week-3-sunday-vespers-2-anti-2', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'All his commandments [*] are faithful, established for ever and ever!', 'Extra' => array('Reference' => array('Psalm 119:86'), 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-10-01' => array('Peer-Review'), '2021-09-30' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-09-30 - Paul Prins: Added this Antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>All his commandments <span class="symbol-star"> *</span> are faithful, established for ever and ever!</p>'), 'ReferenceParsed' => array('Chapter' => 'week-3-sunday-vespers-2-anti-2', 'Verses' => null)), 'alleluia-x-3' => array('TextAbbreviation' => 'alleluia-x-3', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Alleluia, Alleluia, Alleluia.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-01-01' => array('Verified', 'Guidelines', 'Peer-Review', 'Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-11' => 'Constance McIntosh Smith', '2023-12-09' => 'Sheila Whittenberg', '2023-10-19' => 'Jordan Prins'))), 'Changes' => array('2021-01-01 - Paul Prins: First translation of this Antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Alleluia, Alleluia, Alleluia.</p>'), 'ReferenceParsed' => array('Chapter' => 'alleluia-x-3', 'Verses' => null))), 'blessings' => array('vespers' => array('TextAbbreviation' => 'vespers', 'SourceAbbreviation' => 'breviary-blessings', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'May the Lord bless us,
	keep us from all evil,
	and bring us to everlasting life.
*Amen*', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-03-22' => array('Peer-Review'), '2021-03-21' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-03-21 - Paul Prins: First translation of this blessing.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-blessings', 'Title' => array('default' => 'Breviary Blessings', 'UMB-EN' => 'Blessings from the Breviary', 'BMU-FR' => 'Bénédictions du Bréviaire', 'eng' => 'Blessings', 'fra' => 'Bénédictions'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the blessings used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>May the Lord bless us,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>keep us from all evil,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and bring us to everlasting life.<br /><em>Amen</em></p>'), 'ReferenceParsed' => array('Chapter' => 'vespers', 'Verses' => null))), 'canticles' => array('salus-et-gloria' => array('TextAbbreviation' => 'salus-et-gloria', 'SourceAbbreviation' => 'breviary-canticles', 'Title' => 'Salvation, Glory, and Power', 'Description' => 'From Revelation 19:1-2, 5-7', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH', 'SBLGNT'), 'People' => array('Paul Prins')), 'Verses' => array('Alleluia
Salvation and glory and power belong to our God,[*]
	whose judgments are true and just.
Alleluia

', 'Alleluia
Praise our God, all servants of the Lord,[*]
	you who fear him, both small and great.
Alleluia

', 'Alleluia
The Lord our God, the Almighty, reigns:[*]
	let us rejoice and exult and give glory and homage.
Alleluia

', 'Alleluia
The marriage of the Lamb has come[*]
	and His bride has made herself ready.
Alleluia

', 'Alleluia
Happy are those who are invited[*]
	to the wedding banquet of the Lamb.
Alleluia'), 'Extra' => array('Reference' => array('Revelation 19:1-2, 5-7'), 'LiturgiaeHorarum-Index' => 22, 'LiturgiaeHorarum-Cantica' => 'NT', 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-31' => array('Verified', 'Guidelines'), '2020-03-30' => array('Peer-Review'), '2020-03-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-31' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-31 - Constance McIntosh Smith: Implement her editorial feedback.', '2020-03-29 - Paul Prins : Added this Canticle.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-canticles', 'Title' => array('default' => 'Breviary Canticles', 'UMB-EN' => 'Canticles from the Breviary', 'BMU-FR' => 'Cantiques du Bréviaire', 'eng' => 'Canticles', 'fra' => 'Cantiques'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the canticles used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Alleluia<br />Salvation and glory and power belong to our God,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>whose judgments are true and just.<br />Alleluia</p><p>Alleluia<br />Praise our God, all servants of the Lord,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>you who fear him, both small and great.<br />Alleluia</p><p>Alleluia<br />The Lord our God, the Almighty, reigns:<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>let us rejoice and exult and give glory and homage.<br />Alleluia</p><p>Alleluia<br />The marriage of the Lamb has come<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His bride has made herself ready.<br />Alleluia</p><p>Alleluia<br />Happy are those who are invited<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to the wedding banquet of the Lamb.<br />Alleluia</p>'), 'ReferenceParsed' => array('Chapter' => 'salus-et-gloria', 'Verses' => null)), 'magnificat' => array('TextAbbreviation' => 'magnificat', 'SourceAbbreviation' => 'breviary-canticles', 'Title' => 'My Soul Magnifies', 'Description' => 'From Luke 1:46-55', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH', 'SBLGNT'), 'People' => array('Paul Prins')), 'Verses' => array('My soul [+] magnifies the greatness of the Lord; [*]
	', 'my spirit bursts, rejoicing in God my Savior.
', 'For He knew the humility of His servant. [*]
	From today all generations will call me blessed.

', 'The Almighty has done great things for me, [*]
	and holy is His name.

', 'He has mercy for those who fear Him, [*]
	from generation to generation.
', 'He has shown the strength of His arm, [*]
	and scattered the proud for the thoughts of their hearts.

', 'He has torn the mighty from their thrones, [*]
	and lifted up the lowly.
', 'He has filled the hungry with good things, [*]
	and sent the rich away empty.

', 'He has given help to His servant Israel,[*]
	and remembered His promise of mercy.
', 'The promise made to our ancestors,[*]
	to Abraham and His children forever.'), 'Extra' => array('Reference' => array('Luke 1:46-55'), 'LiturgiaeHorarum-Index' => 1, 'LiturgiaeHorarum-Cantica' => 'NT', 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-31' => array('Verified', 'Guidelines'), '2020-03-30' => array('Peer-Review'), '2020-03-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-31' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-31 - Constance McIntosh Smith: Implement her editorial feedback.', '2020-03-29 - Paul Prins : Added this Canticle.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-canticles', 'Title' => array('default' => 'Breviary Canticles', 'UMB-EN' => 'Canticles from the Breviary', 'BMU-FR' => 'Cantiques du Bréviaire', 'eng' => 'Canticles', 'fra' => 'Cantiques'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the canticles used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>My soul <span class="symbol-cross">&#10011;</span> magnifies the greatness of the Lord; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>my spirit bursts, rejoicing in God my Savior.<br />For He knew the humility of His servant. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>From today all generations will call me blessed.</p><p>The Almighty has done great things for me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and holy is His name.</p><p>He has mercy for those who fear Him, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>from generation to generation.<br />He has shown the strength of His arm, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and scattered the proud for the thoughts of their hearts.</p><p>He has torn the mighty from their thrones, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and lifted up the lowly.<br />He has filled the hungry with good things, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and sent the rich away empty.</p><p>He has given help to His servant Israel,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and remembered His promise of mercy.<br />The promise made to our ancestors,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to Abraham and His children forever.</p>'), 'ReferenceParsed' => array('Chapter' => 'magnificat', 'Verses' => null))), 'other' => array('gloria' => array('TextAbbreviation' => 'gloria', 'SourceAbbreviation' => 'breviary-other', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Glory to the Father, to the Son,
	and to the Holy Spirit,
As it was in the beginning, is now,
	and will be forever.
*Amen*
Alleluia', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-20' => array('Verified', 'Guidelines'), '2020-03-30' => array('Peer-Review'), '2020-03-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-19' => 'Constance McIntosh Smith', '2024-01-11' => 'Constance McIntosh Smith', '2023-12-09' => 'Sheila Whittenberg', '2023-10-19' => 'Jordan Prins'))), 'Changes' => array('2024-01-19 - Constance McIntosh Smith: Grammatical corrections', '2022-05-01 - Paul Prins: Update language.', '2020-03-29 - Paul Prins: First translation.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-other', 'Title' => array('default' => 'Breviary Additional Texts', 'UMB-EN' => 'Additional Texts for the Breviary', 'BMU-FR' => 'Texts Supplémentaires du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This book contains all of the additional texts which are neither psalms, antiphons, canticles, responses, nor prayers.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Glory to the Father, to the Son,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and to the Holy Spirit,<br />As it was in the beginning, is now,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and will be forever.<br /><em>Amen</em><br />Alleluia</p>'), 'ReferenceParsed' => array('Chapter' => 'gloria', 'Verses' => null)), 'invitatorium-primis' => array('TextAbbreviation' => 'invitatorium-primis', 'SourceAbbreviation' => 'breviary-other', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Lord, [+] open my lips, [*]
and my mouth will proclaim Your praise.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-20' => array('Verified', 'Guidelines'), '2020-10-02' => array('Peer-Review'), '2020-10-01' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2023-10-20' => 'Jordan Prins'))), 'Changes' => array('2023-10-20 - Jordan Prins: Fix Divine pronoun casing.', '2023-10-14 - Paul Prins: Refined the text further.', '2023-04-06 - Paul Prins: Updated this text.', '2020-10-01 - Paul Prins: Added this text.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-other', 'Title' => array('default' => 'Breviary Additional Texts', 'UMB-EN' => 'Additional Texts for the Breviary', 'BMU-FR' => 'Texts Supplémentaires du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This book contains all of the additional texts which are neither psalms, antiphons, canticles, responses, nor prayers.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Lord, <span class="symbol-cross">&#10011;</span> open my lips, <span class="symbol-star"> *</span><br />and my mouth will proclaim Your praise.</p>'), 'ReferenceParsed' => array('Chapter' => 'invitatorium-primis', 'Verses' => null)), 'invitatorium-postmodum' => array('TextAbbreviation' => 'invitatorium-postmodum', 'SourceAbbreviation' => 'breviary-other', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'God, [+] come to my assistance;[*]
Lord, make haste to help me.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-20' => array('Verified', 'Guidelines'), '2020-10-02' => array('Peer-Review'), '2020-10-01' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith', '2023-10-20' => 'Jordan Prins'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2020-10-01 - Paul Prins: Added this text.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-other', 'Title' => array('default' => 'Breviary Additional Texts', 'UMB-EN' => 'Additional Texts for the Breviary', 'BMU-FR' => 'Texts Supplémentaires du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This book contains all of the additional texts which are neither psalms, antiphons, canticles, responses, nor prayers.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>God, <span class="symbol-cross">&#10011;</span> come to my assistance;<span class="symbol-star"> *</span><br />Lord, make haste to help me.</p>'), 'ReferenceParsed' => array('Chapter' => 'invitatorium-postmodum', 'Verses' => null))), 'prayers' => array('petitions-week-3-sunday-vespers-2' => array('TextAbbreviation' => 'petitions-week-3-sunday-vespers-2', 'SourceAbbreviation' => 'breviary-prayers', 'FormatAs' => 'book', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => '[II] God has created the cosmos, He brought restoration through redemption, and continually renews creation through His love. Trusting in His eternal love we ask:
[IR] Lord, renew the wondrous works of Your love. 
[I1] We thank You God for You reveal Your power in all of creation,
[I2] You reveal Your providence within the course of history.
[I1] Through Your Son, who preaches a gospel of peace, and was victorious on the cross,
[I2] deliver us from baseless fear and despair.
[I1] Provide to everyone that loves and practices justice,
[I2] a faithful cooperation in the building of a world where true peace reigns.
[I1] Be present with the oppressed, deliver the captives, comfort the poor, feed the hungry, grant strength to the weak,
[I2] reveal in all things the victory of the cross.
[I1] After his death and burial, You wonderfully raised Your Son to glory,
[I2] grant that the deceased may join Him in eternal life.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-06-06' => array('Peer-Review'), '2021-06-05' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-09-30 - Paul Prins: First translation of these intensions.', '2021-08-04 - Paul Prins: Change abbreviation to use petitions.', '2021-06-05 - Paul Prins: Added placeholder for these intentions.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-prayers', 'Title' => array('default' => 'Breviary Prayer Texts', 'UMB-EN' => 'Prayers from the Breviary', 'BMU-FR' => 'Prières du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the prayers used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<section class="intercession"><div class="part-introduction">God has created the cosmos, He brought restoration through redemption, and continually renews creation through His love. Trusting in His eternal love we ask:</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">We thank You God for You reveal Your power in all of creation,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>You reveal Your providence within the course of history.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Through Your Son, who preaches a gospel of peace, and was victorious on the cross,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>deliver us from baseless fear and despair.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Provide to everyone that loves and practices justice,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>a faithful cooperation in the building of a world where true peace reigns.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Be present with the oppressed, deliver the captives, comfort the poor, feed the hungry, grant strength to the weak,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>reveal in all things the victory of the cross.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">After his death and burial, You wonderfully raised Your Son to glory,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>grant that the deceased may join Him in eternal life.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div></section>'), 'ReferenceParsed' => array('Chapter' => 'petitions-week-3-sunday-vespers-2', 'Verses' => null)), 'pater-noster' => array('TextAbbreviation' => 'pater-noster', 'SourceAbbreviation' => 'breviary-prayers', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'SBLGNT'), 'People' => array('Paul Prins')), 'Text' => 'Our Father, who is in heaven,
	hallowed be Your Name.
Your kingdom come,
	Your will be done,
	on earth as it is in heaven.
Give us today our daily bread.
Forgive us our sins,
	as we forgive those who sin against us.
Lead us not into temptation,
	but deliver us from evil;
for the kingdom, the power,
	and the glory are Yours without end.
Amen', 'Description' => 'The Lords Prayer.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-19' => array('Verified', 'Guidelines'), '2020-10-02' => array('Peer-Review'), '2020-10-01' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2023-10-19' => 'Jordan Prins'))), 'Changes' => array('2023-09-02 - Paul Prins: Update divine casing.', '2020-10-01 - Paul Prins: Added this prayer'), 'License' => '© 2023 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-prayers', 'Title' => array('default' => 'Breviary Prayer Texts', 'UMB-EN' => 'Prayers from the Breviary', 'BMU-FR' => 'Prières du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the prayers used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Our Father, who is in heaven,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>hallowed be Your Name.<br />Your kingdom come,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Your will be done,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>on earth as it is in heaven.<br />Give us today our daily bread.<br />Forgive us our sins,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as we forgive those who sin against us.<br />Lead us not into temptation,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>but deliver us from evil;<br />for the kingdom, the power,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the glory are Yours without end.<br />Amen</p>'), 'ReferenceParsed' => array('Chapter' => 'pater-noster', 'Verses' => null))), 'psalms' => array(array('TextAbbreviation' => 'chapter-0095', 'SourceAbbreviation' => 'breviary-psalms', 'Title' => 'An Invitation to Praise God', 'Chapter' => '95', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'WLC'), 'People' => array('Paul Prins')), 'Verses' => array('Come, let us sing praise to the LORD. [*]
	Shout with joy to the Rock of our salvation.
', 'Let us enter His presence with a song of thanksgiving, [*]
	singing joyful songs to Him.

[ANT]

', 'For the LORD is a great God, [*]
	and the great king above all gods.
', 'In His hand are the depths of the earth, [*]
	and the mountain peaks are His also.
', 'The sea is His for He made it, [*]
	the dry land His hands formed.

[ANT]

', 'Come, let us bow down and worship. [*]
	Let us kneel before the LORD our maker,
', 'for He is our God, and we are the people of his pasture, [*]
	and the flock of His hand.

[ANT]

Today, will you hear His voice? [t]
', '	"Do not harden your hearts, [*]
	as at Meribah and during the temptation in the wilderness,
', 'where your ancestors tested and provoked Me, [*]
	although they were witness to My work."

[ANT]

', '"Forty years that generation disgusted me", [t]
	and I said, "They are a people whose hearts go astray, [*]
	and they do not know my ways."
', 'So I swore in my anger, [*]
	"Never shall they enter into My rest."

[ANT]'), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-25' => array('Verified', 'Guidelines'), '2022-10-27' => array('Peer-Review'), '2022-10-26' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2022-10-26 - Paul Prins: First translation of psalm 95 based on Greek, Latin, and some Hebrew'), 'License' => '© 2022 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-psalms', 'Title' => array('default' => 'Breviary Psalms', 'UMB-EN' => 'Psalms from the Breviary', 'BMU-FR' => 'Psaumes du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'SecondaryType' => 'Poetry', 'Language' => 'hbo', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Chapters', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the psalms used during the divine office.', 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Come, let us sing praise to the <span class="type-small-caps">LORD</span>. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Shout with joy to the Rock of our salvation.<br />Let us enter His presence with a song of thanksgiving, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>singing joyful songs to Him.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>For the <span class="type-small-caps">LORD</span> is a great God, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the great king above all gods.<br />In His hand are the depths of the earth, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the mountain peaks are His also.<br />The sea is His for He made it, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the dry land His hands formed.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Come, let us bow down and worship. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="type-small-caps">LORD</span>us kneel before the <span class="type-small-caps">LORD</span> our maker,<br />for He is our God, and we are the people of his pasture, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the flock of His hand.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Today, will you hear His voice? <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Do not harden your hearts, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as at Meribah and during the temptation in the wilderness,<br />where your ancestors tested and provoked Me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>although they were witness to My work."</p><p>[<span class="type-small-caps">ANT</span>]</p><p>"Forty years that generation disgusted me", <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and I said, "They are a people whose hearts go astray, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and they do not know my ways."<br />So I swore in my anger, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Never shall they enter into My rest."</p><p>[<span class="type-small-caps">ANT</span>]</p>'), 'ReferenceParsed' => array('Chapter' => '95', 'Verses' => null)), array('TextAbbreviation' => 'chapter-0110', 'SourceAbbreviation' => 'breviary-psalms', 'Title' => 'Messiah, King, & Priest', 'Description' => 'A Psalm of David', 'Chapter' => '110', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'WLC'), 'People' => array('Paul Prins')), 'Verses' => array('The LORD says to my master, [*]
	"Sit at my right hand,
and I will make your enemies [*]
	into a footstool for your feet."

', 'From Zion, the LORD will extend your mighty scepter\'s reach, saying, [*]
	"Rule in the midst of your enemies."

', 'On the day of your power, your people will follow you, [t]
	in your holy splendor, [*]
	"With the breaking of dawn, your youth comes to you like the dew."

', 'The LORD swore an irrevocable oath,[*]
	"You are a priest always, in the order of King Melchizedek."

', 'On your right is my master, [*]
	who will crush rulers on the day of his wrath.

', 'He will drink from the brook along his way; [*]
	therefore he will lift up his head.'), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-25' => array('Verified', 'Guidelines'), '2021-04-08' => array('Peer-Review'), '2021-04-07' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2023-09-30 - Paul Prins: Fixed casings on divine name.', '2021-04-07 - Paul Prins: First translation of psalm 110 based on Greek, Latin, and some Hebrew'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-psalms', 'Title' => array('default' => 'Breviary Psalms', 'UMB-EN' => 'Psalms from the Breviary', 'BMU-FR' => 'Psaumes du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'SecondaryType' => 'Poetry', 'Language' => 'hbo', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Chapters', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the psalms used during the divine office.', 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>The <span class="type-small-caps">LORD</span> says to my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Sit at my right hand,<br />and I will make your enemies <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>into a footstool for your feet."</p><p>From Zion, the <span class="type-small-caps">LORD</span> will extend your mighty scepter\'s reach, saying, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Rule in the midst of your enemies."</p><p>On the day of your power, your people will follow you, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in your holy splendor, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"With the breaking of dawn, your youth comes to you like the dew."</p><p>The <span class="type-small-caps">LORD</span> swore an irrevocable oath,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"You are a priest always, in the order of King Melchizedek."</p><p>On your right is my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>who will crush rulers on the day of his wrath.</p><p>He will drink from the brook along his way; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>therefore he will lift up his head.</p>'), 'ReferenceParsed' => array('Chapter' => '110', 'Verses' => null)), array('TextAbbreviation' => 'chapter-0111', 'SourceAbbreviation' => 'breviary-psalms', 'Title' => 'Great Works of the Lord', 'Description' => '', 'Chapter' => '111', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'WLC'), 'People' => array('Paul Prins')), 'Verses' => array('I will praise the LORD with my whole heart, [*]
	in the council of the upright and the assembly.
', 'Great are the works of the Lord, [*]
	sought out by all who delight in them.
', 'Glorious and majestic is His work, [*]
	and His justice endures forever.

', 'He has caused His wonders to be remembered; [*]
	the LORD is gracious and compassionate.
', 'He gives food to those who fear Him; [*]
	He remembers His covenant forever.

', 'He has shown His people the power of His works [t]
	by giving them the inheritance of nations. [*]
', '	The works of His hands are truth and justice.
All His precepts are trustworthy, [t]
', '	standing firm forever and ever, [*]
	made with uprightness and truth.
', 'He has sent redemption to His people, [*]
	establishing His covenant forever.

Holy and awe-inspiring is His name. [*]
', '	The fear of the LORD is the beginning of wisdom.
All those who embody this have good understanding; [*]
	their praise endures forever.'), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-25' => array('Verified', 'Guidelines'), '2021-09-22' => array('Peer-Review'), '2021-09-21' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2021-09-21 - Paul Prins: First translation of psalm 111 based on Greek, Latin, and Hebrew'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-psalms', 'Title' => array('default' => 'Breviary Psalms', 'UMB-EN' => 'Psalms from the Breviary', 'BMU-FR' => 'Psaumes du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'SecondaryType' => 'Poetry', 'Language' => 'hbo', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Chapters', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the psalms used during the divine office.', 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>I will praise the <span class="type-small-caps">LORD</span> with my whole heart, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in the council of the upright and the assembly.<br />Great are the works of the Lord, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>sought out by all who delight in them.<br />Glorious and majestic is His work, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His justice endures forever.</p><p>He has caused His wonders to be remembered; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the <span class="type-small-caps">LORD</span> is gracious and compassionate.<br />He gives food to those who fear Him; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>He remembers His covenant forever.</p><p>He has shown His people the power of His works <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>by giving them the inheritance of nations. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The works of His hands are truth and justice.<br />All His precepts are trustworthy, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>standing firm forever and ever, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>made with uprightness and truth.<br />He has sent redemption to His people, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>establishing His covenant forever.</p><p>Holy and awe-inspiring is His name. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The fear of the <span class="type-small-caps">LORD</span> is the beginning of wisdom.<br />All those who embody this have good understanding; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>their praise endures forever.</p>'), 'ReferenceParsed' => array('Chapter' => '111', 'Verses' => null))), 'readings' => array('1 Peter 1:3-5' => array('TextAbbreviation' => 'chapter-0001', 'SourceAbbreviation' => 'bible-nt-peter-1', 'Chapter' => '1', 'FormatAs' => 'Letter', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('SBLGNT'), 'People' => array('Paul Prins')), 'Verses' => array('	Blessed be God, the Father of our Lord Jesus Christ. In His great mercy, he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead. ', 'So we will inherit what never perishes, spoils, or fades away. An inheritance that is being kept safe for you in heaven. ', 'You who are protected by the power of God, through faith, for a salvation ready to be revealed at the end of time. '), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-09-30' => array('Peer-Review'), '2021-09-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-09-29 - Paul Prins: First translation of verses 1-9 based on Greek.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'bible-nt-peter-1', 'Title' => array('default' => 'Α\' Πέτρου', 'UMB-EN' => 'The First Epistle of Peter', 'BMU-FR' => 'La Première Épître de Pierre', 'eng' => '1 Peter', 'fra' => '1 Pierre'), 'AlternativeTitles' => array('eng' => array('1 Peter', 'First Peter'), 'fra' => array('1 Pierre', 'Première Épître de Pierre')), 'Description' => '', 'Type' => 'Letter', 'Language' => 'grc-koi', 'Version' => 'Original', 'Segments' => 'Chapters', 'Verses' => true, 'Chapters' => true, 'SegmentTitles' => true, 'Notes' => '', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Date' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Blessed be God, the Father of our Lord Jesus Christ. In His great mercy, he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead. So we will inherit what never perishes, spoils, or fades away. An inheritance that is being kept safe for you in heaven. You who are protected by the power of God, through faith, for a salvation ready to be revealed at the end of time. </p>'), 'ReferenceParsed' => array('Chapter' => 1, 'Verses' => array(3, 4, 5)))), 'responses' => array('week-3-sunday-vespers-2' => array('TextAbbreviation' => 'week-3-sunday-vespers-2', 'SourceAbbreviation' => 'breviary-responses', 'FormatAs' => 'book', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => '[V] Blessed are You Lord, in the kingdom of Heaven.
[R] Blessed are You Lord, [*] in the kingdom of Heaven.
[V]All of creation gives You glory and praise forever.
[V] Glory to the Father, to the Son, and to the Holy Spirit.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-05-05' => array('Peer-Review'), '2021-05-04' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-05-04 - Paul Prins: Translated this prayer.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-responses', 'Title' => 'Breviary Responsory Texts', 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the responsory texts used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<section class="response"><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Blessed are You Lord, in the kingdom of Heaven.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span> All of creation gives You glory and praise forever.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Glory to the Father, to the Son, and to the Holy Spirit.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div></section>'), 'ReferenceParsed' => array('Chapter' => 'week-3-sunday-vespers-2', 'Verses' => null)))), 'HTML' => array('antiphons' => array('' => '<h3>BLANK</h3>', 'invitatorium-day-sunday' => '<p>Come, together we\'ll exault the Lord.</p>', 'sunday-vespers-2-anti-1' => '<p>The <span class="type-small-caps">LORD</span> says to my master: "Sit at My right hand"</p>', 'week-3-sunday-vespers-2-anti-2' => '<p>All his commandments <span class="symbol-star"> *</span> are faithful, established for ever and ever!</p>', 'alleluia-x-3' => '<p>Alleluia, Alleluia, Alleluia.</p>'), 'blessings' => array('' => '<h3>BLANK</h3>', 'vespers' => '<p>May the Lord bless us,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>keep us from all evil,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and bring us to everlasting life.<br /><em>Amen</em></p>'), 'canticles' => array('' => '<h3>BLANK</h3>', 'salus-et-gloria' => '<p>Alleluia<br />Salvation and glory and power belong to our God,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>whose judgments are true and just.<br />Alleluia</p><p>Alleluia<br />Praise our God, all servants of the Lord,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>you who fear him, both small and great.<br />Alleluia</p><p>Alleluia<br />The Lord our God, the Almighty, reigns:<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>let us rejoice and exult and give glory and homage.<br />Alleluia</p><p>Alleluia<br />The marriage of the Lamb has come<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His bride has made herself ready.<br />Alleluia</p><p>Alleluia<br />Happy are those who are invited<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to the wedding banquet of the Lamb.<br />Alleluia</p>', 'magnificat' => '<p>My soul <span class="symbol-cross">&#10011;</span> magnifies the greatness of the Lord; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>my spirit bursts, rejoicing in God my Savior.<br />For He knew the humility of His servant. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>From today all generations will call me blessed.</p><p>The Almighty has done great things for me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and holy is His name.</p><p>He has mercy for those who fear Him, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>from generation to generation.<br />He has shown the strength of His arm, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and scattered the proud for the thoughts of their hearts.</p><p>He has torn the mighty from their thrones, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and lifted up the lowly.<br />He has filled the hungry with good things, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and sent the rich away empty.</p><p>He has given help to His servant Israel,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and remembered His promise of mercy.<br />The promise made to our ancestors,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to Abraham and His children forever.</p>'), 'other' => array('' => '<h3>BLANK</h3>', 'gloria' => '<p>Glory to the Father, to the Son,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and to the Holy Spirit,<br />As it was in the beginning, is now,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and will be forever.<br /><em>Amen</em><br />Alleluia</p>', 'invitatorium-primis' => '<p>Lord, <span class="symbol-cross">&#10011;</span> open my lips, <span class="symbol-star"> *</span><br />and my mouth will proclaim Your praise.</p>', 'invitatorium-postmodum' => '<p>God, <span class="symbol-cross">&#10011;</span> come to my assistance;<span class="symbol-star"> *</span><br />Lord, make haste to help me.</p>'), 'prayers' => array('' => '<h3>BLANK</h3>', 'petitions-week-3-sunday-vespers-2' => '<section class="intercession"><div class="part-introduction">God has created the cosmos, He brought restoration through redemption, and continually renews creation through His love. Trusting in His eternal love we ask:</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">We thank You God for You reveal Your power in all of creation,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>You reveal Your providence within the course of history.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Through Your Son, who preaches a gospel of peace, and was victorious on the cross,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>deliver us from baseless fear and despair.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Provide to everyone that loves and practices justice,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>a faithful cooperation in the building of a world where true peace reigns.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Be present with the oppressed, deliver the captives, comfort the poor, feed the hungry, grant strength to the weak,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>reveal in all things the victory of the cross.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">After his death and burial, You wonderfully raised Your Son to glory,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>grant that the deceased may join Him in eternal life.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div></section>', 'pater-noster' => '<p>Our Father, who is in heaven,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>hallowed be Your Name.<br />Your kingdom come,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Your will be done,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>on earth as it is in heaven.<br />Give us today our daily bread.<br />Forgive us our sins,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as we forgive those who sin against us.<br />Lead us not into temptation,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>but deliver us from evil;<br />for the kingdom, the power,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the glory are Yours without end.<br />Amen</p>'), 'psalms' => array('' => '<h3>BLANK</h3>', '<p>Come, let us sing praise to the <span class="type-small-caps">LORD</span>. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Shout with joy to the Rock of our salvation.<br />Let us enter His presence with a song of thanksgiving, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>singing joyful songs to Him.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>For the <span class="type-small-caps">LORD</span> is a great God, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the great king above all gods.<br />In His hand are the depths of the earth, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the mountain peaks are His also.<br />The sea is His for He made it, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the dry land His hands formed.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Come, let us bow down and worship. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="type-small-caps">LORD</span>us kneel before the <span class="type-small-caps">LORD</span> our maker,<br />for He is our God, and we are the people of his pasture, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the flock of His hand.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Today, will you hear His voice? <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Do not harden your hearts, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as at Meribah and during the temptation in the wilderness,<br />where your ancestors tested and provoked Me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>although they were witness to My work."</p><p>[<span class="type-small-caps">ANT</span>]</p><p>"Forty years that generation disgusted me", <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and I said, "They are a people whose hearts go astray, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and they do not know my ways."<br />So I swore in my anger, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Never shall they enter into My rest."</p><p>[<span class="type-small-caps">ANT</span>]</p>', '<p>The <span class="type-small-caps">LORD</span> says to my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Sit at my right hand,<br />and I will make your enemies <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>into a footstool for your feet."</p><p>From Zion, the <span class="type-small-caps">LORD</span> will extend your mighty scepter\'s reach, saying, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Rule in the midst of your enemies."</p><p>On the day of your power, your people will follow you, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in your holy splendor, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"With the breaking of dawn, your youth comes to you like the dew."</p><p>The <span class="type-small-caps">LORD</span> swore an irrevocable oath,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"You are a priest always, in the order of King Melchizedek."</p><p>On your right is my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>who will crush rulers on the day of his wrath.</p><p>He will drink from the brook along his way; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>therefore he will lift up his head.</p>', '<p>I will praise the <span class="type-small-caps">LORD</span> with my whole heart, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in the council of the upright and the assembly.<br />Great are the works of the Lord, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>sought out by all who delight in them.<br />Glorious and majestic is His work, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His justice endures forever.</p><p>He has caused His wonders to be remembered; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the <span class="type-small-caps">LORD</span> is gracious and compassionate.<br />He gives food to those who fear Him; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>He remembers His covenant forever.</p><p>He has shown His people the power of His works <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>by giving them the inheritance of nations. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The works of His hands are truth and justice.<br />All His precepts are trustworthy, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>standing firm forever and ever, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>made with uprightness and truth.<br />He has sent redemption to His people, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>establishing His covenant forever.</p><p>Holy and awe-inspiring is His name. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The fear of the <span class="type-small-caps">LORD</span> is the beginning of wisdom.<br />All those who embody this have good understanding; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>their praise endures forever.</p>'), 'readings' => array('' => '<h3>BLANK</h3>', '1 Peter 1:3-5' => '<p><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Blessed be God, the Father of our Lord Jesus Christ. In His great mercy, he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead. So we will inherit what never perishes, spoils, or fades away. An inheritance that is being kept safe for you in heaven. You who are protected by the power of God, through faith, for a salvation ready to be revealed at the end of time. </p>'), 'responses' => array('' => '<h3>BLANK</h3>', 'week-3-sunday-vespers-2' => '<section class="response"><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Blessed are You Lord, in the kingdom of Heaven.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span> All of creation gives You glory and praise forever.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Glory to the Father, to the Son, and to the Holy Spirit.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div></section>')), 'Versions' => array('UMB-EN' => array('Abbreviation' => 'UMB-EN', 'Title' => 'Urban Monastic Breviary', 'Description' => 'The english translation of the Psalter used by Urban Monasticism', 'License' => '© 2021 Urban Monastics, Paris', 'Language' => 'eng', 'Date' => '2021', 'Formatting' => array('SmallCaps' => true, 'Selah' => true))), 'thisCalendar' => 'urban-monastic', 'Navigation' => array('date' => '2023-06-18', 'today' => array('date' => '2023-06-18', 'day-month' => '18 June', 'month-day' => 'June 18', 'day-of-week' => 'Sunday'), 'yesterday' => array('date' => '2023-06-17', 'day-month' => '17 June', 'month-day' => 'June 17', 'day-of-week' => 'Saturday'), 'tomorrow' => array('date' => '2023-06-19', 'day-month' => '19 June', 'month-day' => 'June 19', 'day-of-week' => 'Monday'), 'offices' => array()), 'BodyCSS' => array('prayer', 'vespers')))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/var/www/html/storage/framework/views/b3dc6f3fe1a3331512a831eb5bfd3005139093d4.php', array('__env' => object(Factory), 'app' => object(Application), 'Domain' => 'breviarium', 'errors' => object(ViewErrorBag), 'DateLong' => 'Sunday 18 June', 'Date' => array('Day' => '18', 'DayOfWeek' => 'Sunday', 'Month' => 'June', 'Year' => '2023', 'Season' => null, 'Week' => null, 'String' => '2023-06-18'), 'Year' => '2023', 'Liturgical' => array('calendarDate' => '2023-06-18', 'breviaryDate' => '2023-06-18', 'colors' => array('vigils' => 'Green', 'lauds' => 'Green', 'terce' => 'Green', 'sext' => 'Green', 'none' => 'Green', 'vespers' => 'Green', 'compline' => 'Green'), 'dayColor' => 'Green', 'dayOfWeek' => 0, 'dayType' => 'sunday', 'invocation' => array('antiphon' => 'invitatorium-day-sunday', 'psalm' => 95), 'marianEmphasis' => null, 'octave' => null, 'proper' => array('saints' => array(), 'optional' => array(), 'season' => 'ordinary-week-11-day-0'), 'psalterWeek' => 3, 'season' => 'ordinary', 'seasonWeek' => 11, 'startEarly' => array('proper' => null, 'abbreviation' => null), 'sundayCycle' => 'A', 'TitleSeason' => null, 'TitleProper' => null, 'Title' => '<span class="DayOfWeek">Sunday</span> the 11th Week in <span class="Season">Ordinary Time</span>', 'ProperOfSaints' => array()), 'Office' => array('Calendar' => array('calendarDate' => '2023-06-18', 'breviaryDate' => '2023-06-18', 'colors' => array('vigils' => 'Green', 'lauds' => 'Green', 'terce' => 'Green', 'sext' => 'Green', 'none' => 'Green', 'vespers' => 'Green', 'compline' => 'Green'), 'dayColor' => 'Green', 'dayOfWeek' => 0, 'dayType' => 'sunday', 'invocation' => array('antiphon' => 'invitatorium-day-sunday', 'psalm' => 95), 'marianEmphasis' => null, 'octave' => null, 'proper' => array('saints' => array(), 'optional' => array(), 'season' => 'ordinary-week-11-day-0'), 'psalterWeek' => 3, 'season' => 'ordinary', 'seasonWeek' => 11, 'startEarly' => array('proper' => null, 'abbreviation' => null), 'sundayCycle' => 'A', 'TitleSeason' => null, 'TitleProper' => null, 'Title' => '<span class="DayOfWeek">Sunday</span> the 11th Week in <span class="Season">Ordinary Time</span>', 'ProperOfSaints' => array()), 'Scheme' => array('Complete' => true, 'Hymn' => null, 'Psalmody-1' => array('Passage' => '110', 'Antiphon' => 'sunday-vespers-2-anti-1', 'Prayer' => null), 'Psalmody-2' => array('Passage' => '111', 'Antiphon' => 'week-3-sunday-vespers-2-anti-2', 'Prayer' => null), 'Canticle' => array('Passage' => 'salus-et-gloria', 'Antiphon' => 'alleluia-x-3'), 'Reading' => '1 Peter 1:3-5', 'Responsitory' => 'week-3-sunday-vespers-2', 'GospelCanticle' => array('Antiphon' => null), 'Prayers' => array('Petitions' => 'petitions-week-3-sunday-vespers-2', 'Concluding' => null), 'Blessing' => 'vespers'), 'Proper-Seasons' => array('Abbreviation' => 'ordinary-week-11-day-0', 'IntroductoryVerse' => null, 'Hymn' => null, 'Psalmody-1' => array('Passage' => null, 'Antiphon' => null, 'Prayer' => null), 'Psalmody-2' => array('Passage' => null, 'Antiphon' => null, 'Prayer' => null), 'Canticle' => array('Passage' => null, 'Antiphon' => null), 'Reading' => null, 'Responsitory' => null, 'GospelCanticle' => array('Antiphon' => array('A' => null, 'B' => null, 'C' => null)), 'Prayers' => array('Petitions' => null, 'Concluding' => null), 'Blessing' => null), 'Proper-Saints' => array(), 'Structure' => array('Invitatory' => array('other' => 'invitatorium-primis', 'psalm' => 95, 'antiphon' => 'invitatorium-day-sunday'), 'Introductory' => array('other' => 'invitatorium-postmodum'), 'Hymn' => array('Hymn' => null, 'hymn' => null), 'Psalmody-1' => array('psalm' => '110', 'antiphon' => 'sunday-vespers-2-anti-1', 'prayer' => null), 'Psalmody-2' => array('psalm' => '111', 'antiphon' => 'week-3-sunday-vespers-2-anti-2', 'prayer' => null), 'Canticle' => array('canticle' => 'salus-et-gloria', 'antiphon' => 'alleluia-x-3'), 'Reading' => array('reading' => '1 Peter 1:3-5'), 'Silence' => array('other' => null), 'ReadingResponse' => array('response' => 'week-3-sunday-vespers-2'), 'GospelCanticle' => array('canticle' => 'magnificat', 'antiphon' => null), 'Petitions' => array('prayer' => 'petitions-week-3-sunday-vespers-2'), 'LordsPrayer' => array('prayer' => 'pater-noster'), 'ConcludingPrayer' => array('prayer' => null), 'Blessing' => array('blessing' => 'vespers')), 'TextAbbreviations' => array('antiphons' => array('invitatorium-day-sunday', 'sunday-vespers-2-anti-1', 'week-3-sunday-vespers-2-anti-2', 'alleluia-x-3'), 'bible' => array(), 'blessings' => array('vespers'), 'canticles' => array('salus-et-gloria', 'magnificat'), 'hymns' => array(), 'other' => array('gloria', 'invitatorium-primis', 'invitatorium-postmodum'), 'prayers' => array('petitions-week-3-sunday-vespers-2', 'pater-noster'), 'psalms' => array('95', '110', '111'), 'readings' => array('1 Peter 1:3-5'), 'responses' => array('week-3-sunday-vespers-2')), 'General' => false, 'Office' => 'vespers', 'OfficeKey' => 'vespers', 'OfficeSVG' => '/assets/offices/office-vespers.svg'), 'Texts' => array('antiphons' => array('invitatorium-day-sunday' => array('TextAbbreviation' => 'invitatorium-day-sunday', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Come, together we\'ll exault the Lord.', 'Extra' => array('BreviaryInstructions' => 'Invitatory antiphon for Sundays in ordinary time. [Not Repeated inside the Psalm]', 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-12-05' => array('Peer-Review'), '2021-12-04' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-12-04 - Paul Prins: Added this antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Come, together we\'ll exault the Lord.</p>'), 'ReferenceParsed' => array('Chapter' => 'invitatorium-day-sunday', 'Verses' => null)), 'sunday-vespers-2-anti-1' => array('TextAbbreviation' => 'week-3-sunday-vespers-2-anti-1', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'The LORD says to my master: "Sit at My right hand"', 'Extra' => array('Reference' => array('Psalm 110'), 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-05-25' => array('Peer-Review'), '2021-05-24' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-05-24 - Paul Prins: Added this antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>The <span class="type-small-caps">LORD</span> says to my master: "Sit at My right hand"</p>'), 'ReferenceParsed' => array('Chapter' => 'sunday-vespers-2-anti-1', 'Verses' => null)), 'week-3-sunday-vespers-2-anti-2' => array('TextAbbreviation' => 'week-3-sunday-vespers-2-anti-2', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'All his commandments [*] are faithful, established for ever and ever!', 'Extra' => array('Reference' => array('Psalm 119:86'), 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-10-01' => array('Peer-Review'), '2021-09-30' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-09-30 - Paul Prins: Added this Antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>All his commandments <span class="symbol-star"> *</span> are faithful, established for ever and ever!</p>'), 'ReferenceParsed' => array('Chapter' => 'week-3-sunday-vespers-2-anti-2', 'Verses' => null)), 'alleluia-x-3' => array('TextAbbreviation' => 'alleluia-x-3', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Alleluia, Alleluia, Alleluia.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-01-01' => array('Verified', 'Guidelines', 'Peer-Review', 'Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-11' => 'Constance McIntosh Smith', '2023-12-09' => 'Sheila Whittenberg', '2023-10-19' => 'Jordan Prins'))), 'Changes' => array('2021-01-01 - Paul Prins: First translation of this Antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Alleluia, Alleluia, Alleluia.</p>'), 'ReferenceParsed' => array('Chapter' => 'alleluia-x-3', 'Verses' => null))), 'blessings' => array('vespers' => array('TextAbbreviation' => 'vespers', 'SourceAbbreviation' => 'breviary-blessings', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'May the Lord bless us,
	keep us from all evil,
	and bring us to everlasting life.
*Amen*', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-03-22' => array('Peer-Review'), '2021-03-21' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-03-21 - Paul Prins: First translation of this blessing.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-blessings', 'Title' => array('default' => 'Breviary Blessings', 'UMB-EN' => 'Blessings from the Breviary', 'BMU-FR' => 'Bénédictions du Bréviaire', 'eng' => 'Blessings', 'fra' => 'Bénédictions'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the blessings used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>May the Lord bless us,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>keep us from all evil,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and bring us to everlasting life.<br /><em>Amen</em></p>'), 'ReferenceParsed' => array('Chapter' => 'vespers', 'Verses' => null))), 'canticles' => array('salus-et-gloria' => array('TextAbbreviation' => 'salus-et-gloria', 'SourceAbbreviation' => 'breviary-canticles', 'Title' => 'Salvation, Glory, and Power', 'Description' => 'From Revelation 19:1-2, 5-7', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH', 'SBLGNT'), 'People' => array('Paul Prins')), 'Verses' => array('Alleluia
Salvation and glory and power belong to our God,[*]
	whose judgments are true and just.
Alleluia

', 'Alleluia
Praise our God, all servants of the Lord,[*]
	you who fear him, both small and great.
Alleluia

', 'Alleluia
The Lord our God, the Almighty, reigns:[*]
	let us rejoice and exult and give glory and homage.
Alleluia

', 'Alleluia
The marriage of the Lamb has come[*]
	and His bride has made herself ready.
Alleluia

', 'Alleluia
Happy are those who are invited[*]
	to the wedding banquet of the Lamb.
Alleluia'), 'Extra' => array('Reference' => array('Revelation 19:1-2, 5-7'), 'LiturgiaeHorarum-Index' => 22, 'LiturgiaeHorarum-Cantica' => 'NT', 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-31' => array('Verified', 'Guidelines'), '2020-03-30' => array('Peer-Review'), '2020-03-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-31' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-31 - Constance McIntosh Smith: Implement her editorial feedback.', '2020-03-29 - Paul Prins : Added this Canticle.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-canticles', 'Title' => array('default' => 'Breviary Canticles', 'UMB-EN' => 'Canticles from the Breviary', 'BMU-FR' => 'Cantiques du Bréviaire', 'eng' => 'Canticles', 'fra' => 'Cantiques'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the canticles used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Alleluia<br />Salvation and glory and power belong to our God,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>whose judgments are true and just.<br />Alleluia</p><p>Alleluia<br />Praise our God, all servants of the Lord,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>you who fear him, both small and great.<br />Alleluia</p><p>Alleluia<br />The Lord our God, the Almighty, reigns:<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>let us rejoice and exult and give glory and homage.<br />Alleluia</p><p>Alleluia<br />The marriage of the Lamb has come<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His bride has made herself ready.<br />Alleluia</p><p>Alleluia<br />Happy are those who are invited<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to the wedding banquet of the Lamb.<br />Alleluia</p>'), 'ReferenceParsed' => array('Chapter' => 'salus-et-gloria', 'Verses' => null)), 'magnificat' => array('TextAbbreviation' => 'magnificat', 'SourceAbbreviation' => 'breviary-canticles', 'Title' => 'My Soul Magnifies', 'Description' => 'From Luke 1:46-55', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH', 'SBLGNT'), 'People' => array('Paul Prins')), 'Verses' => array('My soul [+] magnifies the greatness of the Lord; [*]
	', 'my spirit bursts, rejoicing in God my Savior.
', 'For He knew the humility of His servant. [*]
	From today all generations will call me blessed.

', 'The Almighty has done great things for me, [*]
	and holy is His name.

', 'He has mercy for those who fear Him, [*]
	from generation to generation.
', 'He has shown the strength of His arm, [*]
	and scattered the proud for the thoughts of their hearts.

', 'He has torn the mighty from their thrones, [*]
	and lifted up the lowly.
', 'He has filled the hungry with good things, [*]
	and sent the rich away empty.

', 'He has given help to His servant Israel,[*]
	and remembered His promise of mercy.
', 'The promise made to our ancestors,[*]
	to Abraham and His children forever.'), 'Extra' => array('Reference' => array('Luke 1:46-55'), 'LiturgiaeHorarum-Index' => 1, 'LiturgiaeHorarum-Cantica' => 'NT', 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-31' => array('Verified', 'Guidelines'), '2020-03-30' => array('Peer-Review'), '2020-03-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-31' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-31 - Constance McIntosh Smith: Implement her editorial feedback.', '2020-03-29 - Paul Prins : Added this Canticle.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-canticles', 'Title' => array('default' => 'Breviary Canticles', 'UMB-EN' => 'Canticles from the Breviary', 'BMU-FR' => 'Cantiques du Bréviaire', 'eng' => 'Canticles', 'fra' => 'Cantiques'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the canticles used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>My soul <span class="symbol-cross">&#10011;</span> magnifies the greatness of the Lord; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>my spirit bursts, rejoicing in God my Savior.<br />For He knew the humility of His servant. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>From today all generations will call me blessed.</p><p>The Almighty has done great things for me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and holy is His name.</p><p>He has mercy for those who fear Him, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>from generation to generation.<br />He has shown the strength of His arm, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and scattered the proud for the thoughts of their hearts.</p><p>He has torn the mighty from their thrones, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and lifted up the lowly.<br />He has filled the hungry with good things, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and sent the rich away empty.</p><p>He has given help to His servant Israel,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and remembered His promise of mercy.<br />The promise made to our ancestors,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to Abraham and His children forever.</p>'), 'ReferenceParsed' => array('Chapter' => 'magnificat', 'Verses' => null))), 'other' => array('gloria' => array('TextAbbreviation' => 'gloria', 'SourceAbbreviation' => 'breviary-other', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Glory to the Father, to the Son,
	and to the Holy Spirit,
As it was in the beginning, is now,
	and will be forever.
*Amen*
Alleluia', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-20' => array('Verified', 'Guidelines'), '2020-03-30' => array('Peer-Review'), '2020-03-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-19' => 'Constance McIntosh Smith', '2024-01-11' => 'Constance McIntosh Smith', '2023-12-09' => 'Sheila Whittenberg', '2023-10-19' => 'Jordan Prins'))), 'Changes' => array('2024-01-19 - Constance McIntosh Smith: Grammatical corrections', '2022-05-01 - Paul Prins: Update language.', '2020-03-29 - Paul Prins: First translation.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-other', 'Title' => array('default' => 'Breviary Additional Texts', 'UMB-EN' => 'Additional Texts for the Breviary', 'BMU-FR' => 'Texts Supplémentaires du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This book contains all of the additional texts which are neither psalms, antiphons, canticles, responses, nor prayers.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Glory to the Father, to the Son,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and to the Holy Spirit,<br />As it was in the beginning, is now,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and will be forever.<br /><em>Amen</em><br />Alleluia</p>'), 'ReferenceParsed' => array('Chapter' => 'gloria', 'Verses' => null)), 'invitatorium-primis' => array('TextAbbreviation' => 'invitatorium-primis', 'SourceAbbreviation' => 'breviary-other', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Lord, [+] open my lips, [*]
and my mouth will proclaim Your praise.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-20' => array('Verified', 'Guidelines'), '2020-10-02' => array('Peer-Review'), '2020-10-01' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2023-10-20' => 'Jordan Prins'))), 'Changes' => array('2023-10-20 - Jordan Prins: Fix Divine pronoun casing.', '2023-10-14 - Paul Prins: Refined the text further.', '2023-04-06 - Paul Prins: Updated this text.', '2020-10-01 - Paul Prins: Added this text.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-other', 'Title' => array('default' => 'Breviary Additional Texts', 'UMB-EN' => 'Additional Texts for the Breviary', 'BMU-FR' => 'Texts Supplémentaires du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This book contains all of the additional texts which are neither psalms, antiphons, canticles, responses, nor prayers.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Lord, <span class="symbol-cross">&#10011;</span> open my lips, <span class="symbol-star"> *</span><br />and my mouth will proclaim Your praise.</p>'), 'ReferenceParsed' => array('Chapter' => 'invitatorium-primis', 'Verses' => null)), 'invitatorium-postmodum' => array('TextAbbreviation' => 'invitatorium-postmodum', 'SourceAbbreviation' => 'breviary-other', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'God, [+] come to my assistance;[*]
Lord, make haste to help me.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-20' => array('Verified', 'Guidelines'), '2020-10-02' => array('Peer-Review'), '2020-10-01' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith', '2023-10-20' => 'Jordan Prins'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2020-10-01 - Paul Prins: Added this text.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-other', 'Title' => array('default' => 'Breviary Additional Texts', 'UMB-EN' => 'Additional Texts for the Breviary', 'BMU-FR' => 'Texts Supplémentaires du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This book contains all of the additional texts which are neither psalms, antiphons, canticles, responses, nor prayers.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>God, <span class="symbol-cross">&#10011;</span> come to my assistance;<span class="symbol-star"> *</span><br />Lord, make haste to help me.</p>'), 'ReferenceParsed' => array('Chapter' => 'invitatorium-postmodum', 'Verses' => null))), 'prayers' => array('petitions-week-3-sunday-vespers-2' => array('TextAbbreviation' => 'petitions-week-3-sunday-vespers-2', 'SourceAbbreviation' => 'breviary-prayers', 'FormatAs' => 'book', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => '[II] God has created the cosmos, He brought restoration through redemption, and continually renews creation through His love. Trusting in His eternal love we ask:
[IR] Lord, renew the wondrous works of Your love. 
[I1] We thank You God for You reveal Your power in all of creation,
[I2] You reveal Your providence within the course of history.
[I1] Through Your Son, who preaches a gospel of peace, and was victorious on the cross,
[I2] deliver us from baseless fear and despair.
[I1] Provide to everyone that loves and practices justice,
[I2] a faithful cooperation in the building of a world where true peace reigns.
[I1] Be present with the oppressed, deliver the captives, comfort the poor, feed the hungry, grant strength to the weak,
[I2] reveal in all things the victory of the cross.
[I1] After his death and burial, You wonderfully raised Your Son to glory,
[I2] grant that the deceased may join Him in eternal life.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-06-06' => array('Peer-Review'), '2021-06-05' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-09-30 - Paul Prins: First translation of these intensions.', '2021-08-04 - Paul Prins: Change abbreviation to use petitions.', '2021-06-05 - Paul Prins: Added placeholder for these intentions.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-prayers', 'Title' => array('default' => 'Breviary Prayer Texts', 'UMB-EN' => 'Prayers from the Breviary', 'BMU-FR' => 'Prières du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the prayers used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<section class="intercession"><div class="part-introduction">God has created the cosmos, He brought restoration through redemption, and continually renews creation through His love. Trusting in His eternal love we ask:</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">We thank You God for You reveal Your power in all of creation,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>You reveal Your providence within the course of history.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Through Your Son, who preaches a gospel of peace, and was victorious on the cross,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>deliver us from baseless fear and despair.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Provide to everyone that loves and practices justice,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>a faithful cooperation in the building of a world where true peace reigns.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Be present with the oppressed, deliver the captives, comfort the poor, feed the hungry, grant strength to the weak,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>reveal in all things the victory of the cross.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">After his death and burial, You wonderfully raised Your Son to glory,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>grant that the deceased may join Him in eternal life.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div></section>'), 'ReferenceParsed' => array('Chapter' => 'petitions-week-3-sunday-vespers-2', 'Verses' => null)), 'pater-noster' => array('TextAbbreviation' => 'pater-noster', 'SourceAbbreviation' => 'breviary-prayers', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'SBLGNT'), 'People' => array('Paul Prins')), 'Text' => 'Our Father, who is in heaven,
	hallowed be Your Name.
Your kingdom come,
	Your will be done,
	on earth as it is in heaven.
Give us today our daily bread.
Forgive us our sins,
	as we forgive those who sin against us.
Lead us not into temptation,
	but deliver us from evil;
for the kingdom, the power,
	and the glory are Yours without end.
Amen', 'Description' => 'The Lords Prayer.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-19' => array('Verified', 'Guidelines'), '2020-10-02' => array('Peer-Review'), '2020-10-01' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2023-10-19' => 'Jordan Prins'))), 'Changes' => array('2023-09-02 - Paul Prins: Update divine casing.', '2020-10-01 - Paul Prins: Added this prayer'), 'License' => '© 2023 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-prayers', 'Title' => array('default' => 'Breviary Prayer Texts', 'UMB-EN' => 'Prayers from the Breviary', 'BMU-FR' => 'Prières du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the prayers used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Our Father, who is in heaven,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>hallowed be Your Name.<br />Your kingdom come,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Your will be done,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>on earth as it is in heaven.<br />Give us today our daily bread.<br />Forgive us our sins,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as we forgive those who sin against us.<br />Lead us not into temptation,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>but deliver us from evil;<br />for the kingdom, the power,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the glory are Yours without end.<br />Amen</p>'), 'ReferenceParsed' => array('Chapter' => 'pater-noster', 'Verses' => null))), 'psalms' => array(array('TextAbbreviation' => 'chapter-0095', 'SourceAbbreviation' => 'breviary-psalms', 'Title' => 'An Invitation to Praise God', 'Chapter' => '95', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'WLC'), 'People' => array('Paul Prins')), 'Verses' => array('Come, let us sing praise to the LORD. [*]
	Shout with joy to the Rock of our salvation.
', 'Let us enter His presence with a song of thanksgiving, [*]
	singing joyful songs to Him.

[ANT]

', 'For the LORD is a great God, [*]
	and the great king above all gods.
', 'In His hand are the depths of the earth, [*]
	and the mountain peaks are His also.
', 'The sea is His for He made it, [*]
	the dry land His hands formed.

[ANT]

', 'Come, let us bow down and worship. [*]
	Let us kneel before the LORD our maker,
', 'for He is our God, and we are the people of his pasture, [*]
	and the flock of His hand.

[ANT]

Today, will you hear His voice? [t]
', '	"Do not harden your hearts, [*]
	as at Meribah and during the temptation in the wilderness,
', 'where your ancestors tested and provoked Me, [*]
	although they were witness to My work."

[ANT]

', '"Forty years that generation disgusted me", [t]
	and I said, "They are a people whose hearts go astray, [*]
	and they do not know my ways."
', 'So I swore in my anger, [*]
	"Never shall they enter into My rest."

[ANT]'), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-25' => array('Verified', 'Guidelines'), '2022-10-27' => array('Peer-Review'), '2022-10-26' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2022-10-26 - Paul Prins: First translation of psalm 95 based on Greek, Latin, and some Hebrew'), 'License' => '© 2022 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-psalms', 'Title' => array('default' => 'Breviary Psalms', 'UMB-EN' => 'Psalms from the Breviary', 'BMU-FR' => 'Psaumes du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'SecondaryType' => 'Poetry', 'Language' => 'hbo', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Chapters', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the psalms used during the divine office.', 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Come, let us sing praise to the <span class="type-small-caps">LORD</span>. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Shout with joy to the Rock of our salvation.<br />Let us enter His presence with a song of thanksgiving, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>singing joyful songs to Him.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>For the <span class="type-small-caps">LORD</span> is a great God, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the great king above all gods.<br />In His hand are the depths of the earth, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the mountain peaks are His also.<br />The sea is His for He made it, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the dry land His hands formed.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Come, let us bow down and worship. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="type-small-caps">LORD</span>us kneel before the <span class="type-small-caps">LORD</span> our maker,<br />for He is our God, and we are the people of his pasture, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the flock of His hand.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Today, will you hear His voice? <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Do not harden your hearts, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as at Meribah and during the temptation in the wilderness,<br />where your ancestors tested and provoked Me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>although they were witness to My work."</p><p>[<span class="type-small-caps">ANT</span>]</p><p>"Forty years that generation disgusted me", <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and I said, "They are a people whose hearts go astray, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and they do not know my ways."<br />So I swore in my anger, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Never shall they enter into My rest."</p><p>[<span class="type-small-caps">ANT</span>]</p>'), 'ReferenceParsed' => array('Chapter' => '95', 'Verses' => null)), array('TextAbbreviation' => 'chapter-0110', 'SourceAbbreviation' => 'breviary-psalms', 'Title' => 'Messiah, King, & Priest', 'Description' => 'A Psalm of David', 'Chapter' => '110', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'WLC'), 'People' => array('Paul Prins')), 'Verses' => array('The LORD says to my master, [*]
	"Sit at my right hand,
and I will make your enemies [*]
	into a footstool for your feet."

', 'From Zion, the LORD will extend your mighty scepter\'s reach, saying, [*]
	"Rule in the midst of your enemies."

', 'On the day of your power, your people will follow you, [t]
	in your holy splendor, [*]
	"With the breaking of dawn, your youth comes to you like the dew."

', 'The LORD swore an irrevocable oath,[*]
	"You are a priest always, in the order of King Melchizedek."

', 'On your right is my master, [*]
	who will crush rulers on the day of his wrath.

', 'He will drink from the brook along his way; [*]
	therefore he will lift up his head.'), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-25' => array('Verified', 'Guidelines'), '2021-04-08' => array('Peer-Review'), '2021-04-07' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2023-09-30 - Paul Prins: Fixed casings on divine name.', '2021-04-07 - Paul Prins: First translation of psalm 110 based on Greek, Latin, and some Hebrew'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-psalms', 'Title' => array('default' => 'Breviary Psalms', 'UMB-EN' => 'Psalms from the Breviary', 'BMU-FR' => 'Psaumes du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'SecondaryType' => 'Poetry', 'Language' => 'hbo', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Chapters', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the psalms used during the divine office.', 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>The <span class="type-small-caps">LORD</span> says to my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Sit at my right hand,<br />and I will make your enemies <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>into a footstool for your feet."</p><p>From Zion, the <span class="type-small-caps">LORD</span> will extend your mighty scepter\'s reach, saying, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Rule in the midst of your enemies."</p><p>On the day of your power, your people will follow you, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in your holy splendor, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"With the breaking of dawn, your youth comes to you like the dew."</p><p>The <span class="type-small-caps">LORD</span> swore an irrevocable oath,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"You are a priest always, in the order of King Melchizedek."</p><p>On your right is my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>who will crush rulers on the day of his wrath.</p><p>He will drink from the brook along his way; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>therefore he will lift up his head.</p>'), 'ReferenceParsed' => array('Chapter' => '110', 'Verses' => null)), array('TextAbbreviation' => 'chapter-0111', 'SourceAbbreviation' => 'breviary-psalms', 'Title' => 'Great Works of the Lord', 'Description' => '', 'Chapter' => '111', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'WLC'), 'People' => array('Paul Prins')), 'Verses' => array('I will praise the LORD with my whole heart, [*]
	in the council of the upright and the assembly.
', 'Great are the works of the Lord, [*]
	sought out by all who delight in them.
', 'Glorious and majestic is His work, [*]
	and His justice endures forever.

', 'He has caused His wonders to be remembered; [*]
	the LORD is gracious and compassionate.
', 'He gives food to those who fear Him; [*]
	He remembers His covenant forever.

', 'He has shown His people the power of His works [t]
	by giving them the inheritance of nations. [*]
', '	The works of His hands are truth and justice.
All His precepts are trustworthy, [t]
', '	standing firm forever and ever, [*]
	made with uprightness and truth.
', 'He has sent redemption to His people, [*]
	establishing His covenant forever.

Holy and awe-inspiring is His name. [*]
', '	The fear of the LORD is the beginning of wisdom.
All those who embody this have good understanding; [*]
	their praise endures forever.'), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-25' => array('Verified', 'Guidelines'), '2021-09-22' => array('Peer-Review'), '2021-09-21' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2021-09-21 - Paul Prins: First translation of psalm 111 based on Greek, Latin, and Hebrew'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-psalms', 'Title' => array('default' => 'Breviary Psalms', 'UMB-EN' => 'Psalms from the Breviary', 'BMU-FR' => 'Psaumes du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'SecondaryType' => 'Poetry', 'Language' => 'hbo', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Chapters', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the psalms used during the divine office.', 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>I will praise the <span class="type-small-caps">LORD</span> with my whole heart, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in the council of the upright and the assembly.<br />Great are the works of the Lord, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>sought out by all who delight in them.<br />Glorious and majestic is His work, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His justice endures forever.</p><p>He has caused His wonders to be remembered; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the <span class="type-small-caps">LORD</span> is gracious and compassionate.<br />He gives food to those who fear Him; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>He remembers His covenant forever.</p><p>He has shown His people the power of His works <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>by giving them the inheritance of nations. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The works of His hands are truth and justice.<br />All His precepts are trustworthy, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>standing firm forever and ever, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>made with uprightness and truth.<br />He has sent redemption to His people, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>establishing His covenant forever.</p><p>Holy and awe-inspiring is His name. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The fear of the <span class="type-small-caps">LORD</span> is the beginning of wisdom.<br />All those who embody this have good understanding; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>their praise endures forever.</p>'), 'ReferenceParsed' => array('Chapter' => '111', 'Verses' => null))), 'readings' => array('1 Peter 1:3-5' => array('TextAbbreviation' => 'chapter-0001', 'SourceAbbreviation' => 'bible-nt-peter-1', 'Chapter' => '1', 'FormatAs' => 'Letter', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('SBLGNT'), 'People' => array('Paul Prins')), 'Verses' => array('	Blessed be God, the Father of our Lord Jesus Christ. In His great mercy, he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead. ', 'So we will inherit what never perishes, spoils, or fades away. An inheritance that is being kept safe for you in heaven. ', 'You who are protected by the power of God, through faith, for a salvation ready to be revealed at the end of time. '), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-09-30' => array('Peer-Review'), '2021-09-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-09-29 - Paul Prins: First translation of verses 1-9 based on Greek.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'bible-nt-peter-1', 'Title' => array('default' => 'Α\' Πέτρου', 'UMB-EN' => 'The First Epistle of Peter', 'BMU-FR' => 'La Première Épître de Pierre', 'eng' => '1 Peter', 'fra' => '1 Pierre'), 'AlternativeTitles' => array('eng' => array('1 Peter', 'First Peter'), 'fra' => array('1 Pierre', 'Première Épître de Pierre')), 'Description' => '', 'Type' => 'Letter', 'Language' => 'grc-koi', 'Version' => 'Original', 'Segments' => 'Chapters', 'Verses' => true, 'Chapters' => true, 'SegmentTitles' => true, 'Notes' => '', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Date' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Blessed be God, the Father of our Lord Jesus Christ. In His great mercy, he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead. So we will inherit what never perishes, spoils, or fades away. An inheritance that is being kept safe for you in heaven. You who are protected by the power of God, through faith, for a salvation ready to be revealed at the end of time. </p>'), 'ReferenceParsed' => array('Chapter' => 1, 'Verses' => array(3, 4, 5)))), 'responses' => array('week-3-sunday-vespers-2' => array('TextAbbreviation' => 'week-3-sunday-vespers-2', 'SourceAbbreviation' => 'breviary-responses', 'FormatAs' => 'book', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => '[V] Blessed are You Lord, in the kingdom of Heaven.
[R] Blessed are You Lord, [*] in the kingdom of Heaven.
[V]All of creation gives You glory and praise forever.
[V] Glory to the Father, to the Son, and to the Holy Spirit.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-05-05' => array('Peer-Review'), '2021-05-04' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-05-04 - Paul Prins: Translated this prayer.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-responses', 'Title' => 'Breviary Responsory Texts', 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the responsory texts used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<section class="response"><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Blessed are You Lord, in the kingdom of Heaven.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span> All of creation gives You glory and praise forever.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Glory to the Father, to the Son, and to the Holy Spirit.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div></section>'), 'ReferenceParsed' => array('Chapter' => 'week-3-sunday-vespers-2', 'Verses' => null)))), 'HTML' => array('antiphons' => array('' => '<h3>BLANK</h3>', 'invitatorium-day-sunday' => '<p>Come, together we\'ll exault the Lord.</p>', 'sunday-vespers-2-anti-1' => '<p>The <span class="type-small-caps">LORD</span> says to my master: "Sit at My right hand"</p>', 'week-3-sunday-vespers-2-anti-2' => '<p>All his commandments <span class="symbol-star"> *</span> are faithful, established for ever and ever!</p>', 'alleluia-x-3' => '<p>Alleluia, Alleluia, Alleluia.</p>'), 'blessings' => array('' => '<h3>BLANK</h3>', 'vespers' => '<p>May the Lord bless us,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>keep us from all evil,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and bring us to everlasting life.<br /><em>Amen</em></p>'), 'canticles' => array('' => '<h3>BLANK</h3>', 'salus-et-gloria' => '<p>Alleluia<br />Salvation and glory and power belong to our God,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>whose judgments are true and just.<br />Alleluia</p><p>Alleluia<br />Praise our God, all servants of the Lord,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>you who fear him, both small and great.<br />Alleluia</p><p>Alleluia<br />The Lord our God, the Almighty, reigns:<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>let us rejoice and exult and give glory and homage.<br />Alleluia</p><p>Alleluia<br />The marriage of the Lamb has come<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His bride has made herself ready.<br />Alleluia</p><p>Alleluia<br />Happy are those who are invited<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to the wedding banquet of the Lamb.<br />Alleluia</p>', 'magnificat' => '<p>My soul <span class="symbol-cross">&#10011;</span> magnifies the greatness of the Lord; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>my spirit bursts, rejoicing in God my Savior.<br />For He knew the humility of His servant. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>From today all generations will call me blessed.</p><p>The Almighty has done great things for me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and holy is His name.</p><p>He has mercy for those who fear Him, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>from generation to generation.<br />He has shown the strength of His arm, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and scattered the proud for the thoughts of their hearts.</p><p>He has torn the mighty from their thrones, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and lifted up the lowly.<br />He has filled the hungry with good things, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and sent the rich away empty.</p><p>He has given help to His servant Israel,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and remembered His promise of mercy.<br />The promise made to our ancestors,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to Abraham and His children forever.</p>'), 'other' => array('' => '<h3>BLANK</h3>', 'gloria' => '<p>Glory to the Father, to the Son,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and to the Holy Spirit,<br />As it was in the beginning, is now,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and will be forever.<br /><em>Amen</em><br />Alleluia</p>', 'invitatorium-primis' => '<p>Lord, <span class="symbol-cross">&#10011;</span> open my lips, <span class="symbol-star"> *</span><br />and my mouth will proclaim Your praise.</p>', 'invitatorium-postmodum' => '<p>God, <span class="symbol-cross">&#10011;</span> come to my assistance;<span class="symbol-star"> *</span><br />Lord, make haste to help me.</p>'), 'prayers' => array('' => '<h3>BLANK</h3>', 'petitions-week-3-sunday-vespers-2' => '<section class="intercession"><div class="part-introduction">God has created the cosmos, He brought restoration through redemption, and continually renews creation through His love. Trusting in His eternal love we ask:</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">We thank You God for You reveal Your power in all of creation,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>You reveal Your providence within the course of history.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Through Your Son, who preaches a gospel of peace, and was victorious on the cross,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>deliver us from baseless fear and despair.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Provide to everyone that loves and practices justice,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>a faithful cooperation in the building of a world where true peace reigns.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Be present with the oppressed, deliver the captives, comfort the poor, feed the hungry, grant strength to the weak,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>reveal in all things the victory of the cross.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">After his death and burial, You wonderfully raised Your Son to glory,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>grant that the deceased may join Him in eternal life.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div></section>', 'pater-noster' => '<p>Our Father, who is in heaven,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>hallowed be Your Name.<br />Your kingdom come,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Your will be done,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>on earth as it is in heaven.<br />Give us today our daily bread.<br />Forgive us our sins,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as we forgive those who sin against us.<br />Lead us not into temptation,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>but deliver us from evil;<br />for the kingdom, the power,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the glory are Yours without end.<br />Amen</p>'), 'psalms' => array('' => '<h3>BLANK</h3>', '<p>Come, let us sing praise to the <span class="type-small-caps">LORD</span>. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Shout with joy to the Rock of our salvation.<br />Let us enter His presence with a song of thanksgiving, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>singing joyful songs to Him.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>For the <span class="type-small-caps">LORD</span> is a great God, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the great king above all gods.<br />In His hand are the depths of the earth, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the mountain peaks are His also.<br />The sea is His for He made it, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the dry land His hands formed.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Come, let us bow down and worship. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="type-small-caps">LORD</span>us kneel before the <span class="type-small-caps">LORD</span> our maker,<br />for He is our God, and we are the people of his pasture, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the flock of His hand.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Today, will you hear His voice? <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Do not harden your hearts, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as at Meribah and during the temptation in the wilderness,<br />where your ancestors tested and provoked Me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>although they were witness to My work."</p><p>[<span class="type-small-caps">ANT</span>]</p><p>"Forty years that generation disgusted me", <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and I said, "They are a people whose hearts go astray, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and they do not know my ways."<br />So I swore in my anger, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Never shall they enter into My rest."</p><p>[<span class="type-small-caps">ANT</span>]</p>', '<p>The <span class="type-small-caps">LORD</span> says to my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Sit at my right hand,<br />and I will make your enemies <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>into a footstool for your feet."</p><p>From Zion, the <span class="type-small-caps">LORD</span> will extend your mighty scepter\'s reach, saying, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Rule in the midst of your enemies."</p><p>On the day of your power, your people will follow you, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in your holy splendor, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"With the breaking of dawn, your youth comes to you like the dew."</p><p>The <span class="type-small-caps">LORD</span> swore an irrevocable oath,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"You are a priest always, in the order of King Melchizedek."</p><p>On your right is my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>who will crush rulers on the day of his wrath.</p><p>He will drink from the brook along his way; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>therefore he will lift up his head.</p>', '<p>I will praise the <span class="type-small-caps">LORD</span> with my whole heart, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in the council of the upright and the assembly.<br />Great are the works of the Lord, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>sought out by all who delight in them.<br />Glorious and majestic is His work, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His justice endures forever.</p><p>He has caused His wonders to be remembered; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the <span class="type-small-caps">LORD</span> is gracious and compassionate.<br />He gives food to those who fear Him; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>He remembers His covenant forever.</p><p>He has shown His people the power of His works <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>by giving them the inheritance of nations. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The works of His hands are truth and justice.<br />All His precepts are trustworthy, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>standing firm forever and ever, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>made with uprightness and truth.<br />He has sent redemption to His people, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>establishing His covenant forever.</p><p>Holy and awe-inspiring is His name. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The fear of the <span class="type-small-caps">LORD</span> is the beginning of wisdom.<br />All those who embody this have good understanding; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>their praise endures forever.</p>'), 'readings' => array('' => '<h3>BLANK</h3>', '1 Peter 1:3-5' => '<p><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Blessed be God, the Father of our Lord Jesus Christ. In His great mercy, he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead. So we will inherit what never perishes, spoils, or fades away. An inheritance that is being kept safe for you in heaven. You who are protected by the power of God, through faith, for a salvation ready to be revealed at the end of time. </p>'), 'responses' => array('' => '<h3>BLANK</h3>', 'week-3-sunday-vespers-2' => '<section class="response"><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Blessed are You Lord, in the kingdom of Heaven.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span> All of creation gives You glory and praise forever.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Glory to the Father, to the Son, and to the Holy Spirit.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div></section>')), 'Versions' => array('UMB-EN' => array('Abbreviation' => 'UMB-EN', 'Title' => 'Urban Monastic Breviary', 'Description' => 'The english translation of the Psalter used by Urban Monasticism', 'License' => '© 2021 Urban Monastics, Paris', 'Language' => 'eng', 'Date' => '2021', 'Formatting' => array('SmallCaps' => true, 'Selah' => true))), 'thisCalendar' => 'urban-monastic', 'Navigation' => array('date' => '2023-06-18', 'today' => array('date' => '2023-06-18', 'day-month' => '18 June', 'month-day' => 'June 18', 'day-of-week' => 'Sunday'), 'yesterday' => array('date' => '2023-06-17', 'day-month' => '17 June', 'month-day' => 'June 17', 'day-of-week' => 'Saturday'), 'tomorrow' => array('date' => '2023-06-19', 'day-month' => '19 June', 'month-day' => 'June 19', 'day-of-week' => 'Monday'), 'offices' => array()), 'BodyCSS' => array('prayer', 'vespers')))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:61)
  at Illuminate\View\Engines\CompilerEngine->get('/var/www/html/resources/views/breviarium/office.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'Domain' => 'breviarium', 'errors' => object(ViewErrorBag), 'DateLong' => 'Sunday 18 June', 'Date' => array('Day' => '18', 'DayOfWeek' => 'Sunday', 'Month' => 'June', 'Year' => '2023', 'Season' => null, 'Week' => null, 'String' => '2023-06-18'), 'Year' => '2023', 'Liturgical' => array('calendarDate' => '2023-06-18', 'breviaryDate' => '2023-06-18', 'colors' => array('vigils' => 'Green', 'lauds' => 'Green', 'terce' => 'Green', 'sext' => 'Green', 'none' => 'Green', 'vespers' => 'Green', 'compline' => 'Green'), 'dayColor' => 'Green', 'dayOfWeek' => 0, 'dayType' => 'sunday', 'invocation' => array('antiphon' => 'invitatorium-day-sunday', 'psalm' => 95), 'marianEmphasis' => null, 'octave' => null, 'proper' => array('saints' => array(), 'optional' => array(), 'season' => 'ordinary-week-11-day-0'), 'psalterWeek' => 3, 'season' => 'ordinary', 'seasonWeek' => 11, 'startEarly' => array('proper' => null, 'abbreviation' => null), 'sundayCycle' => 'A', 'TitleSeason' => null, 'TitleProper' => null, 'Title' => '<span class="DayOfWeek">Sunday</span> the 11th Week in <span class="Season">Ordinary Time</span>', 'ProperOfSaints' => array()), 'Office' => array('Calendar' => array('calendarDate' => '2023-06-18', 'breviaryDate' => '2023-06-18', 'colors' => array('vigils' => 'Green', 'lauds' => 'Green', 'terce' => 'Green', 'sext' => 'Green', 'none' => 'Green', 'vespers' => 'Green', 'compline' => 'Green'), 'dayColor' => 'Green', 'dayOfWeek' => 0, 'dayType' => 'sunday', 'invocation' => array('antiphon' => 'invitatorium-day-sunday', 'psalm' => 95), 'marianEmphasis' => null, 'octave' => null, 'proper' => array('saints' => array(), 'optional' => array(), 'season' => 'ordinary-week-11-day-0'), 'psalterWeek' => 3, 'season' => 'ordinary', 'seasonWeek' => 11, 'startEarly' => array('proper' => null, 'abbreviation' => null), 'sundayCycle' => 'A', 'TitleSeason' => null, 'TitleProper' => null, 'Title' => '<span class="DayOfWeek">Sunday</span> the 11th Week in <span class="Season">Ordinary Time</span>', 'ProperOfSaints' => array()), 'Scheme' => array('Complete' => true, 'Hymn' => null, 'Psalmody-1' => array('Passage' => '110', 'Antiphon' => 'sunday-vespers-2-anti-1', 'Prayer' => null), 'Psalmody-2' => array('Passage' => '111', 'Antiphon' => 'week-3-sunday-vespers-2-anti-2', 'Prayer' => null), 'Canticle' => array('Passage' => 'salus-et-gloria', 'Antiphon' => 'alleluia-x-3'), 'Reading' => '1 Peter 1:3-5', 'Responsitory' => 'week-3-sunday-vespers-2', 'GospelCanticle' => array('Antiphon' => null), 'Prayers' => array('Petitions' => 'petitions-week-3-sunday-vespers-2', 'Concluding' => null), 'Blessing' => 'vespers'), 'Proper-Seasons' => array('Abbreviation' => 'ordinary-week-11-day-0', 'IntroductoryVerse' => null, 'Hymn' => null, 'Psalmody-1' => array('Passage' => null, 'Antiphon' => null, 'Prayer' => null), 'Psalmody-2' => array('Passage' => null, 'Antiphon' => null, 'Prayer' => null), 'Canticle' => array('Passage' => null, 'Antiphon' => null), 'Reading' => null, 'Responsitory' => null, 'GospelCanticle' => array('Antiphon' => array('A' => null, 'B' => null, 'C' => null)), 'Prayers' => array('Petitions' => null, 'Concluding' => null), 'Blessing' => null), 'Proper-Saints' => array(), 'Structure' => array('Invitatory' => array('other' => 'invitatorium-primis', 'psalm' => 95, 'antiphon' => 'invitatorium-day-sunday'), 'Introductory' => array('other' => 'invitatorium-postmodum'), 'Hymn' => array('Hymn' => null, 'hymn' => null), 'Psalmody-1' => array('psalm' => '110', 'antiphon' => 'sunday-vespers-2-anti-1', 'prayer' => null), 'Psalmody-2' => array('psalm' => '111', 'antiphon' => 'week-3-sunday-vespers-2-anti-2', 'prayer' => null), 'Canticle' => array('canticle' => 'salus-et-gloria', 'antiphon' => 'alleluia-x-3'), 'Reading' => array('reading' => '1 Peter 1:3-5'), 'Silence' => array('other' => null), 'ReadingResponse' => array('response' => 'week-3-sunday-vespers-2'), 'GospelCanticle' => array('canticle' => 'magnificat', 'antiphon' => null), 'Petitions' => array('prayer' => 'petitions-week-3-sunday-vespers-2'), 'LordsPrayer' => array('prayer' => 'pater-noster'), 'ConcludingPrayer' => array('prayer' => null), 'Blessing' => array('blessing' => 'vespers')), 'TextAbbreviations' => array('antiphons' => array('invitatorium-day-sunday', 'sunday-vespers-2-anti-1', 'week-3-sunday-vespers-2-anti-2', 'alleluia-x-3'), 'bible' => array(), 'blessings' => array('vespers'), 'canticles' => array('salus-et-gloria', 'magnificat'), 'hymns' => array(), 'other' => array('gloria', 'invitatorium-primis', 'invitatorium-postmodum'), 'prayers' => array('petitions-week-3-sunday-vespers-2', 'pater-noster'), 'psalms' => array('95', '110', '111'), 'readings' => array('1 Peter 1:3-5'), 'responses' => array('week-3-sunday-vespers-2')), 'General' => false, 'Office' => 'vespers', 'OfficeKey' => 'vespers', 'OfficeSVG' => '/assets/offices/office-vespers.svg'), 'Texts' => array('antiphons' => array('invitatorium-day-sunday' => array('TextAbbreviation' => 'invitatorium-day-sunday', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Come, together we\'ll exault the Lord.', 'Extra' => array('BreviaryInstructions' => 'Invitatory antiphon for Sundays in ordinary time. [Not Repeated inside the Psalm]', 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-12-05' => array('Peer-Review'), '2021-12-04' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-12-04 - Paul Prins: Added this antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Come, together we\'ll exault the Lord.</p>'), 'ReferenceParsed' => array('Chapter' => 'invitatorium-day-sunday', 'Verses' => null)), 'sunday-vespers-2-anti-1' => array('TextAbbreviation' => 'week-3-sunday-vespers-2-anti-1', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'The LORD says to my master: "Sit at My right hand"', 'Extra' => array('Reference' => array('Psalm 110'), 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-05-25' => array('Peer-Review'), '2021-05-24' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-05-24 - Paul Prins: Added this antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>The <span class="type-small-caps">LORD</span> says to my master: "Sit at My right hand"</p>'), 'ReferenceParsed' => array('Chapter' => 'sunday-vespers-2-anti-1', 'Verses' => null)), 'week-3-sunday-vespers-2-anti-2' => array('TextAbbreviation' => 'week-3-sunday-vespers-2-anti-2', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'All his commandments [*] are faithful, established for ever and ever!', 'Extra' => array('Reference' => array('Psalm 119:86'), 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-10-01' => array('Peer-Review'), '2021-09-30' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-09-30 - Paul Prins: Added this Antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>All his commandments <span class="symbol-star"> *</span> are faithful, established for ever and ever!</p>'), 'ReferenceParsed' => array('Chapter' => 'week-3-sunday-vespers-2-anti-2', 'Verses' => null)), 'alleluia-x-3' => array('TextAbbreviation' => 'alleluia-x-3', 'SourceAbbreviation' => 'breviary-antiphons', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Alleluia, Alleluia, Alleluia.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-01-01' => array('Verified', 'Guidelines', 'Peer-Review', 'Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-11' => 'Constance McIntosh Smith', '2023-12-09' => 'Sheila Whittenberg', '2023-10-19' => 'Jordan Prins'))), 'Changes' => array('2021-01-01 - Paul Prins: First translation of this Antiphon.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-antiphons', 'Title' => array('default' => 'Breviary Antiphons', 'UMB-EN' => 'Antiphons from the Breviary', 'BMU-FR' => 'Antiphons du Bréviaire', 'eng' => 'Antiphons', 'fra' => 'Antiphones'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'LH', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the antiphons used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Alleluia, Alleluia, Alleluia.</p>'), 'ReferenceParsed' => array('Chapter' => 'alleluia-x-3', 'Verses' => null))), 'blessings' => array('vespers' => array('TextAbbreviation' => 'vespers', 'SourceAbbreviation' => 'breviary-blessings', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'May the Lord bless us,
	keep us from all evil,
	and bring us to everlasting life.
*Amen*', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-03-22' => array('Peer-Review'), '2021-03-21' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-03-21 - Paul Prins: First translation of this blessing.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-blessings', 'Title' => array('default' => 'Breviary Blessings', 'UMB-EN' => 'Blessings from the Breviary', 'BMU-FR' => 'Bénédictions du Bréviaire', 'eng' => 'Blessings', 'fra' => 'Bénédictions'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the blessings used during the divine office. They include descriptions to help remind us of their placement.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>May the Lord bless us,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>keep us from all evil,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and bring us to everlasting life.<br /><em>Amen</em></p>'), 'ReferenceParsed' => array('Chapter' => 'vespers', 'Verses' => null))), 'canticles' => array('salus-et-gloria' => array('TextAbbreviation' => 'salus-et-gloria', 'SourceAbbreviation' => 'breviary-canticles', 'Title' => 'Salvation, Glory, and Power', 'Description' => 'From Revelation 19:1-2, 5-7', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH', 'SBLGNT'), 'People' => array('Paul Prins')), 'Verses' => array('Alleluia
Salvation and glory and power belong to our God,[*]
	whose judgments are true and just.
Alleluia

', 'Alleluia
Praise our God, all servants of the Lord,[*]
	you who fear him, both small and great.
Alleluia

', 'Alleluia
The Lord our God, the Almighty, reigns:[*]
	let us rejoice and exult and give glory and homage.
Alleluia

', 'Alleluia
The marriage of the Lamb has come[*]
	and His bride has made herself ready.
Alleluia

', 'Alleluia
Happy are those who are invited[*]
	to the wedding banquet of the Lamb.
Alleluia'), 'Extra' => array('Reference' => array('Revelation 19:1-2, 5-7'), 'LiturgiaeHorarum-Index' => 22, 'LiturgiaeHorarum-Cantica' => 'NT', 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-31' => array('Verified', 'Guidelines'), '2020-03-30' => array('Peer-Review'), '2020-03-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-31' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-31 - Constance McIntosh Smith: Implement her editorial feedback.', '2020-03-29 - Paul Prins : Added this Canticle.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-canticles', 'Title' => array('default' => 'Breviary Canticles', 'UMB-EN' => 'Canticles from the Breviary', 'BMU-FR' => 'Cantiques du Bréviaire', 'eng' => 'Canticles', 'fra' => 'Cantiques'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the canticles used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Alleluia<br />Salvation and glory and power belong to our God,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>whose judgments are true and just.<br />Alleluia</p><p>Alleluia<br />Praise our God, all servants of the Lord,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>you who fear him, both small and great.<br />Alleluia</p><p>Alleluia<br />The Lord our God, the Almighty, reigns:<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>let us rejoice and exult and give glory and homage.<br />Alleluia</p><p>Alleluia<br />The marriage of the Lamb has come<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His bride has made herself ready.<br />Alleluia</p><p>Alleluia<br />Happy are those who are invited<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to the wedding banquet of the Lamb.<br />Alleluia</p>'), 'ReferenceParsed' => array('Chapter' => 'salus-et-gloria', 'Verses' => null)), 'magnificat' => array('TextAbbreviation' => 'magnificat', 'SourceAbbreviation' => 'breviary-canticles', 'Title' => 'My Soul Magnifies', 'Description' => 'From Luke 1:46-55', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH', 'SBLGNT'), 'People' => array('Paul Prins')), 'Verses' => array('My soul [+] magnifies the greatness of the Lord; [*]
	', 'my spirit bursts, rejoicing in God my Savior.
', 'For He knew the humility of His servant. [*]
	From today all generations will call me blessed.

', 'The Almighty has done great things for me, [*]
	and holy is His name.

', 'He has mercy for those who fear Him, [*]
	from generation to generation.
', 'He has shown the strength of His arm, [*]
	and scattered the proud for the thoughts of their hearts.

', 'He has torn the mighty from their thrones, [*]
	and lifted up the lowly.
', 'He has filled the hungry with good things, [*]
	and sent the rich away empty.

', 'He has given help to His servant Israel,[*]
	and remembered His promise of mercy.
', 'The promise made to our ancestors,[*]
	to Abraham and His children forever.'), 'Extra' => array('Reference' => array('Luke 1:46-55'), 'LiturgiaeHorarum-Index' => 1, 'LiturgiaeHorarum-Cantica' => 'NT', 'Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-31' => array('Verified', 'Guidelines'), '2020-03-30' => array('Peer-Review'), '2020-03-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-31' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-31 - Constance McIntosh Smith: Implement her editorial feedback.', '2020-03-29 - Paul Prins : Added this Canticle.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-canticles', 'Title' => array('default' => 'Breviary Canticles', 'UMB-EN' => 'Canticles from the Breviary', 'BMU-FR' => 'Cantiques du Bréviaire', 'eng' => 'Canticles', 'fra' => 'Cantiques'), 'Description' => '', 'Type' => 'Book', 'Language' => 'lat', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the canticles used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>My soul <span class="symbol-cross">&#10011;</span> magnifies the greatness of the Lord; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>my spirit bursts, rejoicing in God my Savior.<br />For He knew the humility of His servant. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>From today all generations will call me blessed.</p><p>The Almighty has done great things for me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and holy is His name.</p><p>He has mercy for those who fear Him, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>from generation to generation.<br />He has shown the strength of His arm, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and scattered the proud for the thoughts of their hearts.</p><p>He has torn the mighty from their thrones, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and lifted up the lowly.<br />He has filled the hungry with good things, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and sent the rich away empty.</p><p>He has given help to His servant Israel,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and remembered His promise of mercy.<br />The promise made to our ancestors,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to Abraham and His children forever.</p>'), 'ReferenceParsed' => array('Chapter' => 'magnificat', 'Verses' => null))), 'other' => array('gloria' => array('TextAbbreviation' => 'gloria', 'SourceAbbreviation' => 'breviary-other', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Glory to the Father, to the Son,
	and to the Holy Spirit,
As it was in the beginning, is now,
	and will be forever.
*Amen*
Alleluia', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-20' => array('Verified', 'Guidelines'), '2020-03-30' => array('Peer-Review'), '2020-03-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-19' => 'Constance McIntosh Smith', '2024-01-11' => 'Constance McIntosh Smith', '2023-12-09' => 'Sheila Whittenberg', '2023-10-19' => 'Jordan Prins'))), 'Changes' => array('2024-01-19 - Constance McIntosh Smith: Grammatical corrections', '2022-05-01 - Paul Prins: Update language.', '2020-03-29 - Paul Prins: First translation.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-other', 'Title' => array('default' => 'Breviary Additional Texts', 'UMB-EN' => 'Additional Texts for the Breviary', 'BMU-FR' => 'Texts Supplémentaires du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This book contains all of the additional texts which are neither psalms, antiphons, canticles, responses, nor prayers.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Glory to the Father, to the Son,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and to the Holy Spirit,<br />As it was in the beginning, is now,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and will be forever.<br /><em>Amen</em><br />Alleluia</p>'), 'ReferenceParsed' => array('Chapter' => 'gloria', 'Verses' => null)), 'invitatorium-primis' => array('TextAbbreviation' => 'invitatorium-primis', 'SourceAbbreviation' => 'breviary-other', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'Lord, [+] open my lips, [*]
and my mouth will proclaim Your praise.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-20' => array('Verified', 'Guidelines'), '2020-10-02' => array('Peer-Review'), '2020-10-01' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2023-10-20' => 'Jordan Prins'))), 'Changes' => array('2023-10-20 - Jordan Prins: Fix Divine pronoun casing.', '2023-10-14 - Paul Prins: Refined the text further.', '2023-04-06 - Paul Prins: Updated this text.', '2020-10-01 - Paul Prins: Added this text.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-other', 'Title' => array('default' => 'Breviary Additional Texts', 'UMB-EN' => 'Additional Texts for the Breviary', 'BMU-FR' => 'Texts Supplémentaires du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This book contains all of the additional texts which are neither psalms, antiphons, canticles, responses, nor prayers.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Lord, <span class="symbol-cross">&#10011;</span> open my lips, <span class="symbol-star"> *</span><br />and my mouth will proclaim Your praise.</p>'), 'ReferenceParsed' => array('Chapter' => 'invitatorium-primis', 'Verses' => null)), 'invitatorium-postmodum' => array('TextAbbreviation' => 'invitatorium-postmodum', 'SourceAbbreviation' => 'breviary-other', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => 'God, [+] come to my assistance;[*]
Lord, make haste to help me.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-20' => array('Verified', 'Guidelines'), '2020-10-02' => array('Peer-Review'), '2020-10-01' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith', '2023-10-20' => 'Jordan Prins'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2020-10-01 - Paul Prins: Added this text.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-other', 'Title' => array('default' => 'Breviary Additional Texts', 'UMB-EN' => 'Additional Texts for the Breviary', 'BMU-FR' => 'Texts Supplémentaires du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This book contains all of the additional texts which are neither psalms, antiphons, canticles, responses, nor prayers.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>God, <span class="symbol-cross">&#10011;</span> come to my assistance;<span class="symbol-star"> *</span><br />Lord, make haste to help me.</p>'), 'ReferenceParsed' => array('Chapter' => 'invitatorium-postmodum', 'Verses' => null))), 'prayers' => array('petitions-week-3-sunday-vespers-2' => array('TextAbbreviation' => 'petitions-week-3-sunday-vespers-2', 'SourceAbbreviation' => 'breviary-prayers', 'FormatAs' => 'book', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => '[II] God has created the cosmos, He brought restoration through redemption, and continually renews creation through His love. Trusting in His eternal love we ask:
[IR] Lord, renew the wondrous works of Your love. 
[I1] We thank You God for You reveal Your power in all of creation,
[I2] You reveal Your providence within the course of history.
[I1] Through Your Son, who preaches a gospel of peace, and was victorious on the cross,
[I2] deliver us from baseless fear and despair.
[I1] Provide to everyone that loves and practices justice,
[I2] a faithful cooperation in the building of a world where true peace reigns.
[I1] Be present with the oppressed, deliver the captives, comfort the poor, feed the hungry, grant strength to the weak,
[I2] reveal in all things the victory of the cross.
[I1] After his death and burial, You wonderfully raised Your Son to glory,
[I2] grant that the deceased may join Him in eternal life.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-06-06' => array('Peer-Review'), '2021-06-05' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-09-30 - Paul Prins: First translation of these intensions.', '2021-08-04 - Paul Prins: Change abbreviation to use petitions.', '2021-06-05 - Paul Prins: Added placeholder for these intentions.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-prayers', 'Title' => array('default' => 'Breviary Prayer Texts', 'UMB-EN' => 'Prayers from the Breviary', 'BMU-FR' => 'Prières du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the prayers used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<section class="intercession"><div class="part-introduction">God has created the cosmos, He brought restoration through redemption, and continually renews creation through His love. Trusting in His eternal love we ask:</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">We thank You God for You reveal Your power in all of creation,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>You reveal Your providence within the course of history.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Through Your Son, who preaches a gospel of peace, and was victorious on the cross,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>deliver us from baseless fear and despair.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Provide to everyone that loves and practices justice,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>a faithful cooperation in the building of a world where true peace reigns.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Be present with the oppressed, deliver the captives, comfort the poor, feed the hungry, grant strength to the weak,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>reveal in all things the victory of the cross.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">After his death and burial, You wonderfully raised Your Son to glory,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>grant that the deceased may join Him in eternal life.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div></section>'), 'ReferenceParsed' => array('Chapter' => 'petitions-week-3-sunday-vespers-2', 'Verses' => null)), 'pater-noster' => array('TextAbbreviation' => 'pater-noster', 'SourceAbbreviation' => 'breviary-prayers', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'SBLGNT'), 'People' => array('Paul Prins')), 'Text' => 'Our Father, who is in heaven,
	hallowed be Your Name.
Your kingdom come,
	Your will be done,
	on earth as it is in heaven.
Give us today our daily bread.
Forgive us our sins,
	as we forgive those who sin against us.
Lead us not into temptation,
	but deliver us from evil;
for the kingdom, the power,
	and the glory are Yours without end.
Amen', 'Description' => 'The Lords Prayer.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2023-10-19' => array('Verified', 'Guidelines'), '2020-10-02' => array('Peer-Review'), '2020-10-01' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2023-10-19' => 'Jordan Prins'))), 'Changes' => array('2023-09-02 - Paul Prins: Update divine casing.', '2020-10-01 - Paul Prins: Added this prayer'), 'License' => '© 2023 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-prayers', 'Title' => array('default' => 'Breviary Prayer Texts', 'UMB-EN' => 'Prayers from the Breviary', 'BMU-FR' => 'Prières du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the prayers used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Our Father, who is in heaven,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>hallowed be Your Name.<br />Your kingdom come,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Your will be done,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>on earth as it is in heaven.<br />Give us today our daily bread.<br />Forgive us our sins,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as we forgive those who sin against us.<br />Lead us not into temptation,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>but deliver us from evil;<br />for the kingdom, the power,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the glory are Yours without end.<br />Amen</p>'), 'ReferenceParsed' => array('Chapter' => 'pater-noster', 'Verses' => null))), 'psalms' => array(array('TextAbbreviation' => 'chapter-0095', 'SourceAbbreviation' => 'breviary-psalms', 'Title' => 'An Invitation to Praise God', 'Chapter' => '95', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'WLC'), 'People' => array('Paul Prins')), 'Verses' => array('Come, let us sing praise to the LORD. [*]
	Shout with joy to the Rock of our salvation.
', 'Let us enter His presence with a song of thanksgiving, [*]
	singing joyful songs to Him.

[ANT]

', 'For the LORD is a great God, [*]
	and the great king above all gods.
', 'In His hand are the depths of the earth, [*]
	and the mountain peaks are His also.
', 'The sea is His for He made it, [*]
	the dry land His hands formed.

[ANT]

', 'Come, let us bow down and worship. [*]
	Let us kneel before the LORD our maker,
', 'for He is our God, and we are the people of his pasture, [*]
	and the flock of His hand.

[ANT]

Today, will you hear His voice? [t]
', '	"Do not harden your hearts, [*]
	as at Meribah and during the temptation in the wilderness,
', 'where your ancestors tested and provoked Me, [*]
	although they were witness to My work."

[ANT]

', '"Forty years that generation disgusted me", [t]
	and I said, "They are a people whose hearts go astray, [*]
	and they do not know my ways."
', 'So I swore in my anger, [*]
	"Never shall they enter into My rest."

[ANT]'), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-25' => array('Verified', 'Guidelines'), '2022-10-27' => array('Peer-Review'), '2022-10-26' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2022-10-26 - Paul Prins: First translation of psalm 95 based on Greek, Latin, and some Hebrew'), 'License' => '© 2022 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-psalms', 'Title' => array('default' => 'Breviary Psalms', 'UMB-EN' => 'Psalms from the Breviary', 'BMU-FR' => 'Psaumes du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'SecondaryType' => 'Poetry', 'Language' => 'hbo', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Chapters', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the psalms used during the divine office.', 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>Come, let us sing praise to the <span class="type-small-caps">LORD</span>. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Shout with joy to the Rock of our salvation.<br />Let us enter His presence with a song of thanksgiving, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>singing joyful songs to Him.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>For the <span class="type-small-caps">LORD</span> is a great God, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the great king above all gods.<br />In His hand are the depths of the earth, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the mountain peaks are His also.<br />The sea is His for He made it, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the dry land His hands formed.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Come, let us bow down and worship. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="type-small-caps">LORD</span>us kneel before the <span class="type-small-caps">LORD</span> our maker,<br />for He is our God, and we are the people of his pasture, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the flock of His hand.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Today, will you hear His voice? <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Do not harden your hearts, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as at Meribah and during the temptation in the wilderness,<br />where your ancestors tested and provoked Me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>although they were witness to My work."</p><p>[<span class="type-small-caps">ANT</span>]</p><p>"Forty years that generation disgusted me", <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and I said, "They are a people whose hearts go astray, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and they do not know my ways."<br />So I swore in my anger, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Never shall they enter into My rest."</p><p>[<span class="type-small-caps">ANT</span>]</p>'), 'ReferenceParsed' => array('Chapter' => '95', 'Verses' => null)), array('TextAbbreviation' => 'chapter-0110', 'SourceAbbreviation' => 'breviary-psalms', 'Title' => 'Messiah, King, & Priest', 'Description' => 'A Psalm of David', 'Chapter' => '110', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'WLC'), 'People' => array('Paul Prins')), 'Verses' => array('The LORD says to my master, [*]
	"Sit at my right hand,
and I will make your enemies [*]
	into a footstool for your feet."

', 'From Zion, the LORD will extend your mighty scepter\'s reach, saying, [*]
	"Rule in the midst of your enemies."

', 'On the day of your power, your people will follow you, [t]
	in your holy splendor, [*]
	"With the breaking of dawn, your youth comes to you like the dew."

', 'The LORD swore an irrevocable oath,[*]
	"You are a priest always, in the order of King Melchizedek."

', 'On your right is my master, [*]
	who will crush rulers on the day of his wrath.

', 'He will drink from the brook along his way; [*]
	therefore he will lift up his head.'), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-25' => array('Verified', 'Guidelines'), '2021-04-08' => array('Peer-Review'), '2021-04-07' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2023-09-30 - Paul Prins: Fixed casings on divine name.', '2021-04-07 - Paul Prins: First translation of psalm 110 based on Greek, Latin, and some Hebrew'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-psalms', 'Title' => array('default' => 'Breviary Psalms', 'UMB-EN' => 'Psalms from the Breviary', 'BMU-FR' => 'Psaumes du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'SecondaryType' => 'Poetry', 'Language' => 'hbo', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Chapters', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the psalms used during the divine office.', 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>The <span class="type-small-caps">LORD</span> says to my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Sit at my right hand,<br />and I will make your enemies <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>into a footstool for your feet."</p><p>From Zion, the <span class="type-small-caps">LORD</span> will extend your mighty scepter\'s reach, saying, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Rule in the midst of your enemies."</p><p>On the day of your power, your people will follow you, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in your holy splendor, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"With the breaking of dawn, your youth comes to you like the dew."</p><p>The <span class="type-small-caps">LORD</span> swore an irrevocable oath,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"You are a priest always, in the order of King Melchizedek."</p><p>On your right is my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>who will crush rulers on the day of his wrath.</p><p>He will drink from the brook along his way; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>therefore he will lift up his head.</p>'), 'ReferenceParsed' => array('Chapter' => '110', 'Verses' => null)), array('TextAbbreviation' => 'chapter-0111', 'SourceAbbreviation' => 'breviary-psalms', 'Title' => 'Great Works of the Lord', 'Description' => '', 'Chapter' => '111', 'FormatAs' => 'poetry', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('CODEX-SINAITICUS', 'LH', 'WLC'), 'People' => array('Paul Prins')), 'Verses' => array('I will praise the LORD with my whole heart, [*]
	in the council of the upright and the assembly.
', 'Great are the works of the Lord, [*]
	sought out by all who delight in them.
', 'Glorious and majestic is His work, [*]
	and His justice endures forever.

', 'He has caused His wonders to be remembered; [*]
	the LORD is gracious and compassionate.
', 'He gives food to those who fear Him; [*]
	He remembers His covenant forever.

', 'He has shown His people the power of His works [t]
	by giving them the inheritance of nations. [*]
', '	The works of His hands are truth and justice.
All His precepts are trustworthy, [t]
', '	standing firm forever and ever, [*]
	made with uprightness and truth.
', 'He has sent redemption to His people, [*]
	establishing His covenant forever.

Holy and awe-inspiring is His name. [*]
', '	The fear of the LORD is the beginning of wisdom.
All those who embody this have good understanding; [*]
	their praise endures forever.'), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2024-01-25' => array('Verified', 'Guidelines'), '2021-09-22' => array('Peer-Review'), '2021-09-21' => array('Second-Pass', 'Initial')), 'Reviewers' => array('2024-01-25' => 'Constance McIntosh Smith'))), 'Changes' => array('2024-01-25 - Constance McIntosh Smith: Implement her editorial feedback.', '2021-09-21 - Paul Prins: First translation of psalm 111 based on Greek, Latin, and Hebrew'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-psalms', 'Title' => array('default' => 'Breviary Psalms', 'UMB-EN' => 'Psalms from the Breviary', 'BMU-FR' => 'Psaumes du Bréviaire'), 'Description' => '', 'Type' => 'Book', 'SecondaryType' => 'Poetry', 'Language' => 'hbo', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Chapters', 'SegmentTitles' => true, 'Verses' => true, 'Notes' => 'This is a collection of all the psalms used during the divine office.', 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p>I will praise the <span class="type-small-caps">LORD</span> with my whole heart, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in the council of the upright and the assembly.<br />Great are the works of the Lord, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>sought out by all who delight in them.<br />Glorious and majestic is His work, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His justice endures forever.</p><p>He has caused His wonders to be remembered; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the <span class="type-small-caps">LORD</span> is gracious and compassionate.<br />He gives food to those who fear Him; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>He remembers His covenant forever.</p><p>He has shown His people the power of His works <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>by giving them the inheritance of nations. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The works of His hands are truth and justice.<br />All His precepts are trustworthy, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>standing firm forever and ever, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>made with uprightness and truth.<br />He has sent redemption to His people, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>establishing His covenant forever.</p><p>Holy and awe-inspiring is His name. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The fear of the <span class="type-small-caps">LORD</span> is the beginning of wisdom.<br />All those who embody this have good understanding; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>their praise endures forever.</p>'), 'ReferenceParsed' => array('Chapter' => '111', 'Verses' => null))), 'readings' => array('1 Peter 1:3-5' => array('TextAbbreviation' => 'chapter-0001', 'SourceAbbreviation' => 'bible-nt-peter-1', 'Chapter' => '1', 'FormatAs' => 'Letter', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('SBLGNT'), 'People' => array('Paul Prins')), 'Verses' => array('	Blessed be God, the Father of our Lord Jesus Christ. In His great mercy, he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead. ', 'So we will inherit what never perishes, spoils, or fades away. An inheritance that is being kept safe for you in heaven. ', 'You who are protected by the power of God, through faith, for a salvation ready to be revealed at the end of time. '), 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-09-30' => array('Peer-Review'), '2021-09-29' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-09-29 - Paul Prins: First translation of verses 1-9 based on Greek.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'bible-nt-peter-1', 'Title' => array('default' => 'Α\' Πέτρου', 'UMB-EN' => 'The First Epistle of Peter', 'BMU-FR' => 'La Première Épître de Pierre', 'eng' => '1 Peter', 'fra' => '1 Pierre'), 'AlternativeTitles' => array('eng' => array('1 Peter', 'First Peter'), 'fra' => array('1 Pierre', 'Première Épître de Pierre')), 'Description' => '', 'Type' => 'Letter', 'Language' => 'grc-koi', 'Version' => 'Original', 'Segments' => 'Chapters', 'Verses' => true, 'Chapters' => true, 'SegmentTitles' => true, 'Notes' => '', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Date' => null, 'Collection' => null, 'ChapterTitles' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<p><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Blessed be God, the Father of our Lord Jesus Christ. In His great mercy, he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead. So we will inherit what never perishes, spoils, or fades away. An inheritance that is being kept safe for you in heaven. You who are protected by the power of God, through faith, for a salvation ready to be revealed at the end of time. </p>'), 'ReferenceParsed' => array('Chapter' => 1, 'Verses' => array(3, 4, 5)))), 'responses' => array('week-3-sunday-vespers-2' => array('TextAbbreviation' => 'week-3-sunday-vespers-2', 'SourceAbbreviation' => 'breviary-responses', 'FormatAs' => 'book', 'Version' => 'UMB-EN', 'Translation' => array('Versions' => array('LH'), 'People' => array('Paul Prins')), 'Text' => '[V] Blessed are You Lord, in the kingdom of Heaven.
[R] Blessed are You Lord, [*] in the kingdom of Heaven.
[V]All of creation gives You glory and praise forever.
[V] Glory to the Father, to the Son, and to the Holy Spirit.', 'Extra' => array('Writing' => array('Authors' => array('Paul Prins'), 'Step' => array('2021-05-05' => array('Peer-Review'), '2021-05-04' => array('Second-Pass', 'Initial')), 'Reviewers' => array())), 'Changes' => array('2021-05-04 - Paul Prins: Translated this prayer.'), 'License' => '© 2021 Urban Monastics, Paris', 'Source' => array('Abbreviation' => 'breviary-responses', 'Title' => 'Breviary Responsory Texts', 'Description' => '', 'Type' => 'Book', 'Language' => '', 'Version' => 'Original', 'Date' => '', 'Segments' => 'Abbreviations', 'Notes' => 'This is a collection of all the responsory texts used during the divine office.', 'SecondaryType' => null, 'SecondaryLanguage' => null, 'Collection' => null, 'ChapterTitles' => false, 'Verses' => false, 'Extra' => array(), 'Source' => array('DateAccessed' => null, 'License' => null, 'Attribution' => null, 'Link' => null, 'LastUpdated' => null)), 'Format' => array('HTML' => '<section class="response"><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Blessed are You Lord, in the kingdom of Heaven.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span> All of creation gives You glory and praise forever.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Glory to the Father, to the Son, and to the Holy Spirit.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div></section>'), 'ReferenceParsed' => array('Chapter' => 'week-3-sunday-vespers-2', 'Verses' => null)))), 'HTML' => array('antiphons' => array('' => '<h3>BLANK</h3>', 'invitatorium-day-sunday' => '<p>Come, together we\'ll exault the Lord.</p>', 'sunday-vespers-2-anti-1' => '<p>The <span class="type-small-caps">LORD</span> says to my master: "Sit at My right hand"</p>', 'week-3-sunday-vespers-2-anti-2' => '<p>All his commandments <span class="symbol-star"> *</span> are faithful, established for ever and ever!</p>', 'alleluia-x-3' => '<p>Alleluia, Alleluia, Alleluia.</p>'), 'blessings' => array('' => '<h3>BLANK</h3>', 'vespers' => '<p>May the Lord bless us,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>keep us from all evil,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and bring us to everlasting life.<br /><em>Amen</em></p>'), 'canticles' => array('' => '<h3>BLANK</h3>', 'salus-et-gloria' => '<p>Alleluia<br />Salvation and glory and power belong to our God,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>whose judgments are true and just.<br />Alleluia</p><p>Alleluia<br />Praise our God, all servants of the Lord,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>you who fear him, both small and great.<br />Alleluia</p><p>Alleluia<br />The Lord our God, the Almighty, reigns:<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>let us rejoice and exult and give glory and homage.<br />Alleluia</p><p>Alleluia<br />The marriage of the Lamb has come<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His bride has made herself ready.<br />Alleluia</p><p>Alleluia<br />Happy are those who are invited<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to the wedding banquet of the Lamb.<br />Alleluia</p>', 'magnificat' => '<p>My soul <span class="symbol-cross">&#10011;</span> magnifies the greatness of the Lord; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>my spirit bursts, rejoicing in God my Savior.<br />For He knew the humility of His servant. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>From today all generations will call me blessed.</p><p>The Almighty has done great things for me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and holy is His name.</p><p>He has mercy for those who fear Him, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>from generation to generation.<br />He has shown the strength of His arm, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and scattered the proud for the thoughts of their hearts.</p><p>He has torn the mighty from their thrones, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and lifted up the lowly.<br />He has filled the hungry with good things, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and sent the rich away empty.</p><p>He has given help to His servant Israel,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and remembered His promise of mercy.<br />The promise made to our ancestors,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>to Abraham and His children forever.</p>'), 'other' => array('' => '<h3>BLANK</h3>', 'gloria' => '<p>Glory to the Father, to the Son,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and to the Holy Spirit,<br />As it was in the beginning, is now,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and will be forever.<br /><em>Amen</em><br />Alleluia</p>', 'invitatorium-primis' => '<p>Lord, <span class="symbol-cross">&#10011;</span> open my lips, <span class="symbol-star"> *</span><br />and my mouth will proclaim Your praise.</p>', 'invitatorium-postmodum' => '<p>God, <span class="symbol-cross">&#10011;</span> come to my assistance;<span class="symbol-star"> *</span><br />Lord, make haste to help me.</p>'), 'prayers' => array('' => '<h3>BLANK</h3>', 'petitions-week-3-sunday-vespers-2' => '<section class="intercession"><div class="part-introduction">God has created the cosmos, He brought restoration through redemption, and continually renews creation through His love. Trusting in His eternal love we ask:</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">We thank You God for You reveal Your power in all of creation,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>You reveal Your providence within the course of history.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Through Your Son, who preaches a gospel of peace, and was victorious on the cross,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>deliver us from baseless fear and despair.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Provide to everyone that loves and practices justice,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>a faithful cooperation in the building of a world where true peace reigns.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">Be present with the oppressed, deliver the captives, comfort the poor, feed the hungry, grant strength to the weak,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>reveal in all things the victory of the cross.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div><div class="part-part1">After his death and burial, You wonderfully raised Your Son to glory,</div><div class="part-part2"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;– </span>grant that the deceased may join Him in eternal life.</div><div class="part-response"><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;</span>Lord, renew the wondrous works of Your love.</div></section>', 'pater-noster' => '<p>Our Father, who is in heaven,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>hallowed be Your Name.<br />Your kingdom come,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Your will be done,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>on earth as it is in heaven.<br />Give us today our daily bread.<br />Forgive us our sins,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as we forgive those who sin against us.<br />Lead us not into temptation,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>but deliver us from evil;<br />for the kingdom, the power,<br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the glory are Yours without end.<br />Amen</p>'), 'psalms' => array('' => '<h3>BLANK</h3>', '<p>Come, let us sing praise to the <span class="type-small-caps">LORD</span>. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Shout with joy to the Rock of our salvation.<br />Let us enter His presence with a song of thanksgiving, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>singing joyful songs to Him.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>For the <span class="type-small-caps">LORD</span> is a great God, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the great king above all gods.<br />In His hand are the depths of the earth, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the mountain peaks are His also.<br />The sea is His for He made it, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the dry land His hands formed.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Come, let us bow down and worship. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="type-small-caps">LORD</span>us kneel before the <span class="type-small-caps">LORD</span> our maker,<br />for He is our God, and we are the people of his pasture, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and the flock of His hand.</p><p>[<span class="type-small-caps">ANT</span>]</p><p>Today, will you hear His voice? <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Do not harden your hearts, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>as at Meribah and during the temptation in the wilderness,<br />where your ancestors tested and provoked Me, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>although they were witness to My work."</p><p>[<span class="type-small-caps">ANT</span>]</p><p>"Forty years that generation disgusted me", <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and I said, "They are a people whose hearts go astray, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and they do not know my ways."<br />So I swore in my anger, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Never shall they enter into My rest."</p><p>[<span class="type-small-caps">ANT</span>]</p>', '<p>The <span class="type-small-caps">LORD</span> says to my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Sit at my right hand,<br />and I will make your enemies <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>into a footstool for your feet."</p><p>From Zion, the <span class="type-small-caps">LORD</span> will extend your mighty scepter\'s reach, saying, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"Rule in the midst of your enemies."</p><p>On the day of your power, your people will follow you, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in your holy splendor, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"With the breaking of dawn, your youth comes to you like the dew."</p><p>The <span class="type-small-caps">LORD</span> swore an irrevocable oath,<span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>"You are a priest always, in the order of King Melchizedek."</p><p>On your right is my master, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>who will crush rulers on the day of his wrath.</p><p>He will drink from the brook along his way; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>therefore he will lift up his head.</p>', '<p>I will praise the <span class="type-small-caps">LORD</span> with my whole heart, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>in the council of the upright and the assembly.<br />Great are the works of the Lord, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>sought out by all who delight in them.<br />Glorious and majestic is His work, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>and His justice endures forever.</p><p>He has caused His wonders to be remembered; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>the <span class="type-small-caps">LORD</span> is gracious and compassionate.<br />He gives food to those who fear Him; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>He remembers His covenant forever.</p><p>He has shown His people the power of His works <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>by giving them the inheritance of nations. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The works of His hands are truth and justice.<br />All His precepts are trustworthy, <span class="symbol-dagger"> &#8224;</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>standing firm forever and ever, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>made with uprightness and truth.<br />He has sent redemption to His people, <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>establishing His covenant forever.</p><p>Holy and awe-inspiring is His name. <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>The fear of the <span class="type-small-caps">LORD</span> is the beginning of wisdom.<br />All those who embody this have good understanding; <span class="symbol-star"> *</span><br /><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>their praise endures forever.</p>'), 'readings' => array('' => '<h3>BLANK</h3>', '1 Peter 1:3-5' => '<p><span class="spacer-tab">&nbsp;&nbsp;&nbsp;&nbsp;</span>Blessed be God, the Father of our Lord Jesus Christ. In His great mercy, he has given us a new birth into a living hope through the resurrection of Jesus Christ from the dead. So we will inherit what never perishes, spoils, or fades away. An inheritance that is being kept safe for you in heaven. You who are protected by the power of God, through faith, for a salvation ready to be revealed at the end of time. </p>'), 'responses' => array('' => '<h3>BLANK</h3>', 'week-3-sunday-vespers-2' => '<section class="response"><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Blessed are You Lord, in the kingdom of Heaven.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span> All of creation gives You glory and praise forever.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div><div class="response-versicle"><span class="symbol-versicle">&#8483;</span>  Glory to the Father, to the Son, and to the Holy Spirit.</div><div class="response-response"><span class="symbol-response">&#8479;</span>  Blessed are You Lord, <span class="symbol-star"> *</span> in the kingdom of Heaven.</div></section>')), 'Versions' => array('UMB-EN' => array('Abbreviation' => 'UMB-EN', 'Title' => 'Urban Monastic Breviary', 'Description' => 'The english translation of the Psalter used by Urban Monasticism', 'License' => '© 2021 Urban Monastics, Paris', 'Language' => 'eng', 'Date' => '2021', 'Formatting' => array('SmallCaps' => true, 'Selah' => true))), 'thisCalendar' => 'urban-monastic', 'Navigation' => array('date' => '2023-06-18', 'today' => array('date' => '2023-06-18', 'day-month' => '18 June', 'month-day' => 'June 18', 'day-of-week' => 'Sunday'), 'yesterday' => array('date' => '2023-06-17', 'day-month' => '17 June', 'month-day' => 'June 17', 'day-of-week' => 'Saturday'), 'tomorrow' => array('date' => '2023-06-19', 'day-month' => '19 June', 'month-day' => 'June 19', 'day-of-week' => 'Monday'), 'offices' => array()), 'BodyCSS' => array('prayer', 'vespers')))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/View/View.php:139)
  at Illuminate\View\View->getContents()
     (/var/www/html/vendor/laravel/framework/src/Illuminate/View/View.php:122)
  at Illuminate\View\View->renderContents()
     (/var/www/html/vendor/laravel/framework/src/Illuminate/View/View.php:91)
  at Illuminate\View\View->render()
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Http/Response.php:69)
  at Illuminate\Http\Response->setContent(object(View))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Http/Response.php:35)
  at Illuminate\Http\Response->__construct(object(View), 200, array('Content-Type' => 'text/html'))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:820)
  at Illuminate\Routing\Router::toResponse(object(Request), object(View))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:789)
  at Illuminate\Routing\Router->prepareResponse(object(Request), object(View))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:721)
  at Illuminate\Routing\Router->Illuminate\Routing\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/mcamara/laravel-localization/src/Mcamara/LaravelLocalization/Middleware/LaravelLocalizationViewPath.php:33)
  at Mcamara\LaravelLocalization\Middleware\LaravelLocalizationViewPath->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/mcamara/laravel-localization/src/Mcamara/LaravelLocalization/Middleware/LaravelLocalizationRoutes.php:30)
  at Mcamara\LaravelLocalization\Middleware\LaravelLocalizationRoutes->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50)
  at Illuminate\Routing\Middleware\SubstituteBindings->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:78)
  at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49)
  at Illuminate\View\Middleware\ShareErrorsFromSession->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:121)
  at Illuminate\Session\Middleware\StartSession->handleStatefulRequest(object(Request), object(Store), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:64)
  at Illuminate\Session\Middleware\StartSession->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:723)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:698)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:651)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:167)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
  at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
  at Illuminate\Foundation\Http\Middleware\TrimStrings->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
  at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/fruitcake/laravel-cors/src/HandleCors.php:38)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:142)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:111)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/var/www/html/public/index.php:55)