<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version  (Ruby 3.0.4) -->
<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc comments="yes"?>
<?rfc subcompact="no"?>
<?rfc iprnotified="no"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-amsuess-core-resource-directory-extensions-06" category="exp" tocDepth="3" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.4 -->
  <front>
    <title>CoRE Resource Directory Extensions</title>
    <seriesInfo name="Internet-Draft" value="draft-amsuess-core-resource-directory-extensions-06"/>
    <author initials="C." surname="Amsüss" fullname="Christian Amsüss">
      <organization/>
      <address>
        <email>christian@amsuess.com</email>
      </address>
    </author>
    <date year="2022" month="July" day="10"/>
    <area>Internet</area>
    <workgroup>CoRE</workgroup>
    <keyword>CoRE, Web Linking, Resource Discovery, Resource Directory, Proxy</keyword>
    <abstract>
      <t>A collection of extensions to the Resource Directory <xref target="rfc9176"/>
that can stand on their own, and have no clear future in specification yet.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Discussion of this document takes place on the
    Constrained RESTful Environments Working Group mailing list (core@ietf.org),
    which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/core/"/>.</t>
      <t>Source for this draft and an issue tracker can be found at
    <eref target="https://gitlab.com/chrysn/resource-directory-extensions"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>This document pools some extensions to the Resource Directory
<xref target="rfc9176"/> that might be useful but have no place in
the original document.</t>
      <t>They might become individual documents for IETF submission, simple
registrations in the RD Parameter Registry at IANA, or grow into a shape where
they can be submitted as a collection of tools.</t>
      <t>At its current state, this draft is a collection of ideas.</t>
    </section>
    <section anchor="reverse-proxy-requests">
      <name>Reverse Proxy requests</name>
      <t>When a registrant registers at a Resource Directory, it might not have a
suitable address it can use as a base address.
Typical reasons include being inside a NAT without control over port forwarding,
or only being able to open outgoing connections
(as program running inside a web browser utilizing CoAP over WebSocket <xref target="RFC8323"/> might be).</t>
      <t><xref target="rfc9176"/> suggests (in the Cellular M2M use case) that proxy access to such endpoints can be provided,
it gives no concrete mechanism to do that; this is such a mechanism.</t>
      <t>This mechanism is intended to be a last-resort option to provide connectivity.
Where possible, direct connections are preferred.
Before registering for proxying,
the registrant should attempt to obtain a publicly available port,
for example using PCP (<xref target="RFC6887"/>).</t>
      <t>The same mechanism can also be employed by registrants that want to conceal their network address from its clients.</t>
      <t>A deployed application where this is implicitly done is LwM2M [citation missing].
Notable differences are that the protocol used between the client and the proxying RD is not CoAP but application specific,
and that the RD (depending on some configuration) eagerly populates its proxy caches
by sending requests and starting observations at registration time.</t>
      <section anchor="discovery">
        <name>Discovery</name>
        <t>An RD that provides proxying functionality advertises it by announcing the additional resource type "TBD1" on its directory resource.</t>
      </section>
      <section anchor="registration">
        <name>Registration</name>
        <t>A client passes the "proxy=yes" or "proxy=ondemand" query parameter
in addition to (but typically instead of) a "base" query parameter.</t>
        <t>A server that receives a "proxy=yes" query parameter in a registration
(or receives "proxy=ondemand" and decides it needs to proxy)
MUST come up with a "Proxy URL" on which it accepts requests,
and which it uses as a Registration Base URI for lookups on the present registration.</t>
        <t>The Proxy URL SHOULD have no path component,
as acting as a reverse proxy in such a scenario
means that any relative references in all representations that are proxied must be recognized
and possibly rewritten.</t>
        <t>The RD MAY accept connections also on alternative Registration Base URIs
using different protocols;
it can advertise them using the mechanisms of <xref target="I-D.ietf-core-transport-indication"/>.</t>
        <t>The registrant is not informed of the chosen public name by the RD.</t>
        <t>This mechanism is applicable to all transports that can be used to register.
If proxying is active, the restrictions on when the base parameter needs to be present
(<xref target="rfc9176"/> Registration template)
are relaxed:
The base parameter may also be absent if the connection originates from an ephemeral port,
as long as the underlying protocol supports role reversal,
and link-local IPv6 addresses may be used without any concerns of expressibility.</t>
        <t>If the client uses the role reversal rule relaxation,
both it and the server keep that connection open for as long as it wants to be reachable.
When the connection terminates, the RD SHOULD treat the registration as having timed out
(even if its lifetime has not been exceeded) and MAY eventually remove the registration.
It is yet to be decided whether the RD's announced ability to do proxying
should imply that infinite lifetimes are necessarily supported for such registrations;
at least, it is RECOMMENDED.</t>
        <section anchor="registration-updates">
          <name>Registration updates</name>
          <t>The "proxy" query parameter can not be changed or repeated in a registration update;
RD servers MUST answer 4.00 Bad Request to any registration update that has a "proxy" query parameter.</t>
          <t>As always, registration updates can explicitly or implicitly update the Registration Base URI.
In proxied registrations, those changes are not propagated to lookup,
but do change the forwarding address of the proxy.</t>
          <t>For example, if a registration is established over TCP,
an update can come along in a new TCP connection.
Starting then, proxied requests are forwarded along that new connection.</t>
        </section>
        <section anchor="proxy-behavior">
          <name>Proxy behavior</name>
          <t>The RD operates as a reverse-proxy as described in <xref target="RFC7252"/> Section 5.7.3 at the announced Proxy URL(s),
where it decides based on the requested host and port
to which registrant endpoint to forward the request.</t>
          <t>The address the incoming request are forwarded to is the base address of the registration.
If an explicit "base" paremter is given,
the RD will forward requests to that location.
Otherwise, it forwards to the registration's source address
(which is the implied base parameter).</t>
          <t>When an implicit base is used,
the requests forwarded by the RD to the EP contain no Uri-Host option.
EPs that want to run multiple parallel registrations
(especially gateway-like devices)
can either open up separate connections,
or use an additional (to-be-specified) mechanism to set the "virtual host name" for that registration in a separate argument.</t>
          <section anchor="limitations-from-using-a-reverse-proxy">
            <name>Limitations from using a reverse proxy</name>
            <t>The registrant requesting the reverse proxying needs to ensure that all services it provides are compatible with being operated behind a reverse proxy with an unknown name.
In particular, this rules out all applications that refer to local resources by a full URI
(as opposed to relative references without scheme and host).
Applications behind a reverse proxy can not use role reversal.</t>
            <t>Some of these limitations can be mitigated if the application knows its advertised address.</t>
          </section>
        </section>
        <section anchor="on-demand-proxying">
          <name>On-Demand proxying</name>
          <t>If an endpoint is deployed in an unknown network,
it might not know whether it is behind a NAT that would require it to configure an explicit base address,
and ask the RD to assist by proxying if necessary by registering with the "proxy=ondemand" query parameter.</t>
          <t>A server receiving that SHOULD use a different IP address to try
to access the registrant's .well-known/core file using a GET request under the Registration Base URI.
If that succeeds, it may assume that no NAT is present, and ignore the proxying request.
Otherwise, it configures proxying as if "proxy=yes" were requested.</t>
          <t>Note that this is only a heuristic
[ and not tested in deployments yet ].</t>
        </section>
        <section anchor="multiple-upstreams">
          <name>Multiple upstreams</name>
          <t>When a proxying RD is operating behind a router that has uplinks with multiple provisioning domains (see <xref target="RFC7556"/>) or a similar setup,
it MAY mint multiple addresses that are reachable on the respective provisioning domains.
When possible, it is preferred to keep the number of URIs handed out low (avoiding URI aliasing);
this can be achieved by announcing both the proxy's public addresses under the same wildcard name.</t>
          <t>If RDs are announced by the uplinks using RDAO,
the proxy may use the methods of <xref target="I-D.amsuess-core-rd-replication"/> to distribute its registrations to all the announced upstream RDs.</t>
          <t>In such setups, the router can forward the upstream RDs using the PvD option (<xref target="RFC8801"/>) to PvD-aware hosts
and only announce the local RD to PvD-unaware ones (which then forwards their registrations).
It can be expected that PvD-aware endpoints are capable of registering with multiple RDs simultaneously.</t>
        </section>
        <section anchor="examples">
          <name>Examples</name>
          <section anchor="registration-through-a-firewall">
            <name>Registration through a firewall</name>
            <artwork><![CDATA[
Req from [2001:db8:42::9876]:5683:
POST coap://rd.example.net/rd?ep=node9876&proxy=ondemand
</some-resource>;rt="example.x"

Req from other-address.rd.example.net:
GET coap://[2001:db8:42::9876]/.well-known/core

Request blocked by stateful firewall around [2001:db8:42::]

RD decides that proxying is necessary

Res: 2.04 Created
Location: /reg/abcd
]]></artwork>
            <t>Later, lookup of that registration might say:</t>
            <artwork><![CDATA[
Req: GET coap://rd.example.net/lookup/res?rt=example.x

Res: 2.05 Content
<coap://node987.rd.example.net/some-resource>;rt="example.x
]]></artwork>
            <t>A request to that resource will end up at an IP address of the RD,
which will forward it using its the IP and port on which the registrant had registered as source port,
thus reaching the registrant through the stateful firewall.</t>
          </section>
          <section anchor="browser">
            <name>Registration from a browser context</name>
            <artwork><![CDATA[
Req: POST coaps+ws://rd.example.net/rd?ep=node1234&proxy=yes
</gyroscope>;rt="core.s"

Res: 2.04 Created
Location: /reg/123
]]></artwork>
            <t>The gyroscope can now not only be looked up in the RD, but also be reached:</t>
            <artwork><![CDATA[
Req: GET coap://rd.example.net/lookup/res?rt=core.s

Res: 2.05 Content
<coap://[2001:db8:1::1]:10123/gyroscope>;rt="core.s"
]]></artwork>
            <t>In this example, the RD has chosen to do port-based rather than host-based virtual hosting
and announces its literal IP address
as that allows clients to not send the lengthy Uri-Host option with all requests.</t>
          </section>
        </section>
        <section anchor="notes-on-stability-and-maturity">
          <name>Notes on stability and maturity</name>
          <t>Using this with UDP can be quite fragile;
the author only draws on own experience that this can work across cell-phone NATs
and does not claim that this will work over generic firewalls.</t>
          <t>[ It may make sense to have the example as TCP right away. ]</t>
        </section>
        <section anchor="security-considerations">
          <name>Security considerations</name>
          <t>An RD MAY impose additional restrictions on which endpoints can register for proxying,
and thus respond 4.01 Unauthorized to request that would pass had they not requested proxying.</t>
          <t>Attackers could do third party registrations with an attacked device's address as base URI,
though the RD would probably not amplify any attacks in that case.</t>
          <t>The RD MUST NOT reveal the address at which it reaches the registrant
except for adaequately authenticated and authorized debugging purposes,
as that address could reveal sensitive location data the registrant may wish to hide by using a proxy.</t>
          <t>Usual caveats for proxies apply.</t>
        </section>
      </section>
    </section>
    <section anchor="infinite-lifetime">
      <name>Infinite lifetime</name>
      <t>An RD can indicate support for infinite lifetimes
by adding the resoruce type "TBD2" to its list of resource types.</t>
      <t>A registrant that wishes to keep its registration alive indefinitely
can set the lifetime value as "lt=inf".</t>
      <t>Registrations with infinite lifetimes never time out.
Unlike regular registrations, they are not "soft state";
the registrant can expect the RD to persist the registrations
across network changes, reboots, softare updates and that like.</t>
      <t>Typical use cases for infinite life times are:</t>
      <ul spacing="normal">
        <li>Commissioning tools (CTs) that do not return to the deployment site,
and thus can not refresh the soft state</li>
        <li>Proxy registrations whose lifetime is limited by a connection that is kept alive</li>
      </ul>
      <section anchor="example">
        <name>Example</name>
        <t>Had the example of <xref target="browser"/> discovered support for infinite lifetimes during lookup like this:</t>
        <artwork><![CDATA[
Req: GET coaps+ws://rd.example.net/.well-known/core?rt=core.rd*

Res: 2.05 Content
</rd>;rt="core.rd TBD1 TBD2";ct=40
]]></artwork>
        <t>it could register like that:</t>
        <artwork><![CDATA[
Req: POST coaps+ws://rd.example.net/rd?ep=node1234&proxy=yes&lt=inf
</gyroscope>;rt="core.s"

Res: 2.04 Created
Location: /reg/123
]]></artwork>
        <t>and never need to update the registration for as long as the websocket connection is open.</t>
        <t>(When it gets terminated, it could try renewing the registration,
but needs to be prepared for the RD to already have removed the original registration.)</t>
      </section>
    </section>
    <section anchor="limited-lifetimes">
      <name>Limited lifetimes</name>
      <t>Even if an RD supports infinite lifetimes,
it may not accept them from just any registrant.
Even more, an RD may have policies in place that require a certain frequency of updates
and thus place an upper limit on lt lower than the technical limit of 136 years.</t>
      <t>This document does not define any means of communicating lifetime limits,
but explores a few options:</t>
      <ul spacing="normal">
        <li>
          <t>Administrative channels.  </t>
          <t>
An RD that sees registrations with unreasonably long lifetimes can flag them for its operator
to take further measures.  </t>
          <t>
While sounding tediously manual,
this captures the observation that different components are configured in a softly incompatible way,
and need operator intervention (because if there were automatic means, they obviously failed).</t>
        </li>
        <li>
          <t>General advertisement of preferred lifetimes.  </t>
          <t>
When the limitations on the lifetimes are not from authorization
but from general setup,
an RD could advertise that property in a to-be-created link target attribute of its registration resource.
Different attributes could express preference or hard limits.  </t>
          <t>
This information is also available easily for registrants,
which may then heed the advice if supported,
and may notify their operators that they just started spending more resources than they were configured to.  </t>
          <t>
It is also available to tools that provision endpoints with their RD address (and parameters),
as they can use the same lookup interface.</t>
        </li>
        <li>
          <t>Per-registration information.  </t>
          <t>
For soft limits, the RD can offer the endpoint additional metadata if it queries them post-registration.
That query can use the endpoint lookup interface (where the endpoint would see additional metadata to its own registration resource)
or special media types for GETting the registration resource itself.
Either way, this requires additional round-trips on the part of endpoint.</t>
        </li>
        <li>
          <t>Hard limits informed by error codes.  </t>
          <t>
An RD can reject registrations with overly long lifetimes if the endpoint is not authorized to use such long lifetimes
with a 4.01 Unauthorized error.
The mechanisms outlined in <xref target="I-D.ietf-core-problem-details"/>,
with a to-be-defined error detail on the permissible lifetime,
can be used to propagate information back to then endpoint.  </t>
          <t>
This behavior is explicitly NOT RECOMMENDED,
because devices may crucially depend on the RD's services --
this rejection may even be the reason why the device is not configured with the new settings that would contain a shorter lifetime.</t>
        </li>
      </ul>
    </section>
    <section anchor="lookup-across-link-relations">
      <name>Lookup across link relations</name>
      <t>Resource lookup occasionally needs execute multiple queries to follow links.</t>
      <t>An RD server
(or any other server that supports <xref target="RFC6690"/> compatible lookup),
can announce support for following links in resource lookups
by announcing support for the TBD3 interface type on its resource lookup.</t>
      <t>A client can the query that server to not only provide the matched links,
but also links that are reachable over relations given in "follow" query parameters.</t>
      <section anchor="example-1">
        <name>Example</name>
        <t>Assume a node presents the following data in its &lt;.well-known/core&gt; resource
(and submitted the same to the RD):</t>
        <artwork><![CDATA[
</temp>;if="core.s";rt="example.temperature",
</t-prot>;rel="calibration-protocol";anchor="/temp",
<http://vendor.example.com/temp9000>;rel="describedby";anchor="/temp",
</hum>;if="core.s";rt="example.humidity",
</h-prot>;rel="calibration-protocol";anchor="/hum",
]]></artwork>
        <t>A lookup client can, in one query,
find the temperature sensor
and its relevant metadata:</t>
        <artwork><![CDATA[
Req: GET /rd-lookup/res?rt=example.temperature&follow=calibration-protocol&follow=describedby

<coap://node1/temp>;if="core.s";rt="example.temperature";anchor="coap://node1",
<coap://node1/t-prot>;rel="calibration-protocol";anchor="coap://node1/temp",
<http://vendor.example.com/temp9000>;rel="describedby";anchor="coap://node1/temp",
]]></artwork>
        <t>[
There is a <eref target="https://github.com/ace-wg/ace-oauth/issues/120#issuecomment-407997786">better example</eref> in an earlier stage of <xref target="I-D.tiloca-core-oscore-discovery"/>
]</t>
        <t>Given the likelihood of a CoRAL based successor to <xref target="RFC6690"/>,
this lookup variant might easily be superseeded by a
CoRAL FETCH format;
it might look like this there:</t>
        <artwork><![CDATA[
Req: FETCH /reef-lookup
Content-Format: application/template-coral+cbor
Payload:
#using core = <...>
#using reef = <...>
reef:content ?x {
  core:rt "example.temperature"
  calibration-protocol ?y {
    core:describedby ?z
  }
}

Res: 2.01 Content
Content-Format: aplication/coral+cbor
Payload:
reef:content <coap://node1/temp> {
    core:rt "example.temperature"
    calibration-protocol <coap://node1/t-prot> {
      core:describedby <http://vendor.example.com/temp9000>
    }
}
]]></artwork>
      </section>
    </section>
    <section anchor="lifetime-age">
      <name>Lifetime Age</name>
      <t>This extension is described in <xref target="I-D.amsuess-core-rd-replication"/> Section 5.2.</t>
      <t>The "provenance" extension in Section 5.1 of the same document
should probably be expressed differently to avoid using non-target link attributes.</t>
    </section>
    <section anchor="zone-identifier-introspection">
      <name>Zone identifier introspection</name>
      <t>The 'split-horizon' mechanism of <xref target="rfc9176"/>
(that registrations with link-local bases can only be read from the zone they registered on)
reduces the usability of the endpoint lookup interface for debugging purposes.</t>
      <t>To allow an administrator to read out the "show-zone-id" query parameter for endpoint and resource lookup is introduced.</t>
      <t>A Resource Directory that understands this parameter MUST NOT limit lookup results to registrations from the lookup's zone,
and MUST use <xref target="RFC6874"/> zone identifiers to annotate which zone those registrations are valid on.</t>
      <t>The RD MUST limit such requests to authenticated and authorized debugging requests,
as registrants may rely on the RD to keep their presence secret from other links.</t>
      <section anchor="example-2">
        <name>Example</name>
        <artwork><![CDATA[
Req: GET /rd-lookup/ep?show-zone-id&et=printer

Res: 2.05 Content
</reg/1>;base="coap://[2001:db8::1]";et=printer;ep="bigprinter",
</reg/2>;base="coap://[fe80::99%wlan0]";et=printer;ep="localprinter-1234",
</reg/3>;base="coap://[fe80::99%eth2]";et=printer;ep="localprinter-5678",
]]></artwork>
      </section>
    </section>
    <section anchor="proxying-multicast-requests">
      <name>Proxying multicast requests</name>
      <t>Multicast requests are hard to forward at a proxy:
Even if a media type is used
in which multiple responses can be aggregated transparently,
the proxy can not reliably know when all responses have come in.
<xref target="RFC7390"/> Section 2.9 describes the difficulties in more detail.</t>
      <t>Note that <xref target="I-D.tiloca-core-groupcomm-proxy"/> provides a mechanism
that <em>does</em> allow the forwarding of multicast requests.
It is yet to be determined what the respective pros and cons are.
Conversely, that lookup mechanism may also serve as an alternative to resource lookup on an RD.</t>
      <t>A proxy MAY expose an interface compatible with the RD lookup interface,
which SHOULD be advertised by a link to it that indicates the resource types
core.rd-lookup-res and TBD4.</t>
      <t>The proxy sends multicast requests to All CoAP Nodes (<xref target="RFC7252"/> Section 12.8)
requesting their .well-known/core files
either eagerly (ie. in regular intervals independent of queries)
or on demand
(in which case it SHOULD limit the results by applying <xref target="RFC6690"/> query filtering;
if it has received multiple query parameters it should forward the one it deems most likely to limit the results,
as .well-known/core only supports a single query parameter).</t>
      <t>In comparison to classical RD operation,
this RD behaves roughly as if it had received a simple registration
with a All CoAP Nodes address as the source address,
if such behavior were specified.
The individual registrations that result from this
neither have an explicit registration resource
nor an explicit endpoint name;
given that the endpoint lookup interface is not present on such proxies,
neither can be queried.</t>
      <t>Clients that would intend to do run a multicast discovery operation behind the proxy
can then instead query that resource lookup interface.
They SHOULD use observation on lookups,
as an on-demand implementation MAY return the first result before others have arrived,
or MAY even return an empty link set immediately.</t>
      <section anchor="example-3">
        <name>Example</name>
        <artwork><![CDATA[
Req: GET coap+ws://gateway.example.com/.well-known/core?rt=TBD4

Res: 2.05 Content
</discover>;rt="core.rd-lookup-res TBD4";ct=40

Req: GET coap+ws://gateway.example.com/discover?rt=core.s
Observe: 0

Res: 2.05 Content
Observe: 0
Content-Format: 40
(empty payload)
]]></artwork>
        <t>At the same time, the proxy sends out multicast requests on its interfaces:</t>
        <artwork><![CDATA[
Req: GET coap://ff05::fd/.well-known/core?rt=core.s

Res (from [2001:db8::1]:5683): 2.05 Content
</temp>;ct="0 112";rt="core.s"

Res (from [2001:db8::2]:5683): 2.05 Content
</light>;ct="0 112";rt="core.s"
]]></artwork>
        <t>upon receipt of which it sends out a notification to the websocket client:</t>
        <artwork><![CDATA[
Res: 2.05 Content
Observe: 1
Content-Format: 40
<coap://[2001:db8::1]/temp>;ct="0 112";rt="core.s";anchor="coap://[2001:db8::1]",
<coap://[2001:db8::2]/light>;ct="0 112";rt="core.s";anchro="coap://[2001:db8::2]"
]]></artwork>
      </section>
    </section>
    <section anchor="opportunistic-rd">
      <name>Opportunistic RD</name>
      <t>An application that wants to advertise its resources in Resource Directory
can find itself in a network that has no RD deployed.
It may be able to start an RD on its own to fill in that gap until an explicitly configured one gets installed.</t>
      <t>This bears the risk of having competing RDs on the same network,
where resources registered at one can not be discovered on the other.
To mitigate that, such Opportunistic Resource Directories should follow those steps:</t>
      <ul spacing="normal">
        <li>
          <t>The RD chooses its own Opportunistic Capability value.
That integer number is an estimate of number of target attributes it expects to be able to store,
where in absence of better estimates one would assume that a registration contains 16 links,
and each links contains three target attributes each with an eight byte key and a 16 byte value.  </t>
          <t>
The Opportunistic Capability value is advertised as a TBD5-cap= target attribute on the registration resource.</t>
        </li>
        <li>
          <t>The RD chooses its own Opportunistic Tie-Break value.
That integer number needs no other properties than being likely to be different
even for two instances of the same device being started;
numeric forms of MAC addresses or random numbers make good candidates.  </t>
          <t>
The Opportunistic Capability value is advertised as a TBD5-tie= target attribute on the registration resource.</t>
        </li>
        <li>The Opportunistic RD, before advertising its resources, performs RD discovery itself,
using at least all the discovery paths it may become discoverable on itself.</li>
        <li>
          <t>If the Opportunistic RD finds no other RD,
or if the RD it finds is less capable than itself,
it can start advertising itself as a Resource Directory.  </t>
          <t>
An RD is called more capable than another if its TBD5-cap value is greater than the other's,
or if its TBD5-tie value is greater than the other's if the former results in a tie.
Absent or unparsable attributes are considered greater than any present attribute.  </t>
          <t>
In case an RD observes a tie even after evaluating the tie breaker,
it may change its Opportunistic Tie-Break value if that was picked randomly,
or reevaluate its life choices if it uses its own MAC address.</t>
        </li>
        <li>
          <t>A running Opportunistic RD needs to perform discovery for other RDs repeatedly.
If it discovers a more capable RD,
it stops advertising its own resources.
It should continue to serve lookup requests,
but refuse any new registration or registration updates
(which will trigger the registrant endpoints to look for a new RD).  </t>
          <t>
An inactive Opportunistic RD will be notified of the highter capability RD's shutdown
by the expiry of whatever it may be started to advertise that was now advertised there;
see below for possible improvements.</t>
        </li>
        <li>
          <t>An RD that discovers an Opportunistic RD of lower capability may speed up the transition process
by (not mutually exclusive) two ways
          </t>
          <ul spacing="normal">
            <li>It can register its own (registration) resource(s) into the lower capability directory.
That RD can take that as having discovered a higher capability RD and stop advertising.</li>
            <li>It can expose resources and registrations of the lower capability directory
using the methods described in <xref target="I-D.amsuess-core-rd-replication"/>.</li>
          </ul>
        </li>
        <li>An Opportunistic RD that yields to a more capable RD may ease the transition
by attempting to register its active registrations at the more capable RD,
taking the role of a CT.
The lifetimes picked for those must not exceed the remaining lifetime of its registrations,
and it must not renew those registrations.</li>
      </ul>
      <t>Future iterations of this document may want to cut down on the possibilities listed above.</t>
      <t>Some ideas are around for making the shutdown of a commissioned or otherwise high-capability RD more graceful,
but they still have some problems</t>
      <ul spacing="normal">
        <li>Setting a commissioned or high-capability RD's Capability to zero in preparation of the shutdown
may create loops in any distributed lookups.</li>
        <li>Asking the lower capability RD to register its registration resource
(even though not otherwise advertised) at the higher capability RD
still creates a situation where clients may find two RDs running simultaneously,
and we can't expect clients to make any decisions based on TBD5 values.</li>
        <li>Asking the higher capability RD to register its registration resource
with the lower capability RD contradicts the current recommendation for the
passive Opportunistic RD to not accept registrations / renewals.
Also, the deployed RD may not know that Opportunistic RDs are a thing.</li>
        <li>Advertising an almost-but-not-quite rt= value on passive registration resources may be an option,
but needs to be thought through thoroughly.</li>
      </ul>
      <t>Installations of Opportunistic RDs are at special risk of resource exhaustion
because they are not sized with their actual deployment in mind,
but rely on defaults set by the application that starts the RD.
Opportunistic RDs should only be started if the application's administrator
can be informed in a timely fashion when the RD's resources are nearing exhaustion;
guidance towards installing a more capable RD on the network should be provided in that case.</t>
      <section anchor="applications">
        <name>Applications</name>
        <ul spacing="normal">
          <li>Group managers using <xref target="I-D.tiloca-core-oscore-discovery"/> can ship its own low-priority Opportunistic RD
to announce its join resources.
This provides benefits over announcing them on multicast discovery
if the network can efficiently route requests to the All CoAP Resource Directories multicast address
(so group members get a response back from an early focused request to all RDs
rather than falling back to multicasting All CoAP Nodes for <tt>?rt=osc.j&amp;...</tt>),
or if discovery of the group's multicast address is used.</li>
          <li>
            <t>Administrative tools that try to provide a broad overview of a network's CoAP devices
could offer to open an Opportunistic RD if they find no active RD on the network
(but should ask the user in interactive scenarios).  </t>
            <t>
That allows them to see devices that newly join the network quickly (by observing their own or the found RD),
rather than relying periodic multicasts.</t>
          </li>
        </ul>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="rfc9176">
          <front>
            <title>Constrained RESTful Environments (CoRE) Resource Directory</title>
            <author fullname="C. Amsüss" initials="C." role="editor" surname="Amsüss">
              <organization/>
            </author>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby">
              <organization/>
            </author>
            <author fullname="M. Koster" initials="M." surname="Koster">
              <organization/>
            </author>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <author fullname="P. van der Stok" initials="P." surname="van der Stok">
              <organization/>
            </author>
            <date month="April" year="2022"/>
            <abstract>
              <t>In many Internet of Things (IoT) applications, direct discovery of resources is not practical due to sleeping nodes or networks where multicast traffic is inefficient. These problems can be solved by employing an entity called a Resource Directory (RD), which contains information about resources held on other servers, allowing lookups to be performed for those resources. The input to an RD is composed of links, and the output is composed of links constructed from the information stored in the RD. This document specifies the web interfaces that an RD supports for web servers to discover the RD and to register, maintain, look up, and remove information on resources. Furthermore, new target attributes useful in conjunction with an RD are defined.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9176"/>
          <seriesInfo name="DOI" value="10.17487/RFC9176"/>
        </reference>
        <reference anchor="I-D.amsuess-core-rd-replication">
          <front>
            <title>Resource Directory Replication</title>
            <author fullname="Christian Amsüss">
	 </author>
            <date day="11" month="March" year="2019"/>
            <abstract>
              <t>   Discovery of endpoints and resources in M2M applications over large
   networks is enabled by Resource Directories, but no special
   consideration has been given to how such directories can scale beyond
   what can be managed by a single device.

   This document explores different ways in which Resource Directories
   can be scaled up from single network to enterprise and global scale.
   It does not attempt to standardize any of those methods, but only to
   demonstrate the feasibility of such extensions and to provide
   terminology and exploratory groundwork for later documents.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-amsuess-core-rd-replication-02"/>
        </reference>
        <reference anchor="RFC6874">
          <front>
            <title>Representing IPv6 Zone Identifiers in Address Literals and Uniform Resource Identifiers</title>
            <author fullname="B. Carpenter" initials="B." surname="Carpenter">
              <organization/>
            </author>
            <author fullname="S. Cheshire" initials="S." surname="Cheshire">
              <organization/>
            </author>
            <author fullname="R. Hinden" initials="R." surname="Hinden">
              <organization/>
            </author>
            <date month="February" year="2013"/>
            <abstract>
              <t>This document describes how the zone identifier of an IPv6 scoped address, defined as &lt;zone_id&gt; in the IPv6 Scoped Address Architecture (RFC 4007), can be represented in a literal IPv6 address and in a Uniform Resource Identifier that includes such a literal address.  It updates the URI Generic Syntax specification (RFC 3986) accordingly.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6874"/>
          <seriesInfo name="DOI" value="10.17487/RFC6874"/>
        </reference>
        <reference anchor="RFC7252">
          <front>
            <title>The Constrained Application Protocol (CoAP)</title>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby">
              <organization/>
            </author>
            <author fullname="K. Hartke" initials="K." surname="Hartke">
              <organization/>
            </author>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <date month="June" year="2014"/>
            <abstract>
              <t>The Constrained Application Protocol (CoAP) is a specialized web transfer protocol for use with constrained nodes and constrained (e.g., low-power, lossy) networks.  The nodes often have 8-bit microcontrollers with small amounts of ROM and RAM, while constrained networks such as IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs) often have high packet error rates and a typical throughput of 10s of kbit/s.  The protocol is designed for machine- to-machine (M2M) applications such as smart energy and building automation.</t>
              <t>CoAP provides a request/response interaction model between application endpoints, supports built-in discovery of services and resources, and includes key concepts of the Web such as URIs and Internet media types.  CoAP is designed to easily interface with HTTP for integration with the Web while meeting specialized requirements such as multicast support, very low overhead, and simplicity for constrained environments.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7252"/>
          <seriesInfo name="DOI" value="10.17487/RFC7252"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC8323">
          <front>
            <title>CoAP (Constrained Application Protocol) over TCP, TLS, and WebSockets</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <author fullname="S. Lemay" initials="S." surname="Lemay">
              <organization/>
            </author>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig">
              <organization/>
            </author>
            <author fullname="K. Hartke" initials="K." surname="Hartke">
              <organization/>
            </author>
            <author fullname="B. Silverajan" initials="B." surname="Silverajan">
              <organization/>
            </author>
            <author fullname="B. Raymor" initials="B." role="editor" surname="Raymor">
              <organization/>
            </author>
            <date month="February" year="2018"/>
            <abstract>
              <t>The Constrained Application Protocol (CoAP), although inspired by HTTP, was designed to use UDP instead of TCP.  The message layer of CoAP over UDP includes support for reliable delivery, simple congestion control, and flow control.</t>
              <t>Some environments benefit from the availability of CoAP carried over reliable transports such as TCP or Transport Layer Security (TLS). This document outlines the changes required to use CoAP over TCP, TLS, and WebSockets transports.  It also formally updates RFC 7641 for use with these transports and RFC 7959 to enable the use of larger messages over a reliable transport.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8323"/>
          <seriesInfo name="DOI" value="10.17487/RFC8323"/>
        </reference>
        <reference anchor="RFC6887">
          <front>
            <title>Port Control Protocol (PCP)</title>
            <author fullname="D. Wing" initials="D." role="editor" surname="Wing">
              <organization/>
            </author>
            <author fullname="S. Cheshire" initials="S." surname="Cheshire">
              <organization/>
            </author>
            <author fullname="M. Boucadair" initials="M." surname="Boucadair">
              <organization/>
            </author>
            <author fullname="R. Penno" initials="R." surname="Penno">
              <organization/>
            </author>
            <author fullname="P. Selkirk" initials="P." surname="Selkirk">
              <organization/>
            </author>
            <date month="April" year="2013"/>
            <abstract>
              <t>The Port Control Protocol allows an IPv6 or IPv4 host to control how incoming IPv6 or IPv4 packets are translated and forwarded by a Network Address Translator (NAT) or simple firewall, and also allows a host to optimize its outgoing NAT keepalive messages.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6887"/>
          <seriesInfo name="DOI" value="10.17487/RFC6887"/>
        </reference>
        <reference anchor="I-D.ietf-core-transport-indication">
          <front>
            <title>CoAP Protocol Indication</title>
            <author fullname="Christian Amsüss">
	 </author>
            <date day="30" month="May" year="2022"/>
            <abstract>
              <t>   The Constrained Application Protocol (CoAP, [RFC7252]) is available
   over different transports (UDP, DTLS, TCP, TLS, WebSockets), but
   lacks a way to unify these addresses.  This document provides
   terminology and provisions based on Web Linking [RFC8288] to express
   alternative transports available to a device, and to optimize
   exchanges using these.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-transport-indication-00"/>
        </reference>
        <reference anchor="RFC7556">
          <front>
            <title>Multiple Provisioning Domain Architecture</title>
            <author fullname="D. Anipko" initials="D." role="editor" surname="Anipko">
              <organization/>
            </author>
            <date month="June" year="2015"/>
            <abstract>
              <t>This document is a product of the work of the Multiple Interfaces Architecture Design team.  It outlines a solution framework for some of the issues experienced by nodes that can be attached to multiple networks simultaneously.  The framework defines the concept of a Provisioning Domain (PvD), which is a consistent set of network configuration information.  PvD-aware nodes learn PvD-specific information from the networks they are attached to and/or other sources.  PvDs are used to enable separation and configuration consistency in the presence of multiple concurrent connections.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7556"/>
          <seriesInfo name="DOI" value="10.17487/RFC7556"/>
        </reference>
        <reference anchor="RFC8801">
          <front>
            <title>Discovering Provisioning Domain Names and Data</title>
            <author fullname="P. Pfister" initials="P." surname="Pfister">
              <organization/>
            </author>
            <author fullname="É. Vyncke" initials="É." surname="Vyncke">
              <organization/>
            </author>
            <author fullname="T. Pauly" initials="T." surname="Pauly">
              <organization/>
            </author>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi">
              <organization/>
            </author>
            <author fullname="W. Shao" initials="W." surname="Shao">
              <organization/>
            </author>
            <date month="July" year="2020"/>
            <abstract>
              <t>Provisioning Domains (PvDs) are defined as consistent sets of network configuration information. PvDs allows hosts to manage connections to multiple networks and interfaces simultaneously, such as when a home router provides connectivity through both a broadband and cellular network provider.</t>
              <t>This document defines a mechanism for explicitly identifying PvDs through a Router Advertisement (RA) option. This RA option announces a PvD identifier, which hosts can compare to differentiate between PvDs. The option can directly carry some information about a PvD and can optionally point to PvD Additional Information that can be retrieved using HTTP over TLS.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8801"/>
          <seriesInfo name="DOI" value="10.17487/RFC8801"/>
        </reference>
        <reference anchor="I-D.ietf-core-problem-details">
          <front>
            <title>Concise Problem Details For CoAP APIs</title>
            <author fullname="Thomas Fossati">
              <organization>arm</organization>
            </author>
            <author fullname="Carsten Bormann">
              <organization>Universität Bremen TZI</organization>
            </author>
            <date day="6" month="July" year="2022"/>
            <abstract>
              <t>   This document defines a concise "problem detail" as a way to carry
   machine-readable details of errors in a REST response to avoid the
   need to define new error response formats for REST APIs for
   constrained environments.  The format is inspired by, but intended to
   be more concise than, the Problem Details for HTTP APIs defined in
   RFC 7807.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-problem-details-08"/>
        </reference>
        <reference anchor="RFC6690">
          <front>
            <title>Constrained RESTful Environments (CoRE) Link Format</title>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby">
              <organization/>
            </author>
            <date month="August" year="2012"/>
            <abstract>
              <t>This specification defines Web Linking using a link format for use by constrained web servers to describe hosted resources, their attributes, and other relationships between links.  Based on the HTTP Link Header field defined in RFC 5988, the Constrained RESTful Environments (CoRE) Link Format is carried as a payload and is assigned an Internet media type.  "RESTful" refers to the Representational State Transfer (REST) architecture.  A well-known URI is defined as a default entry point for requesting the links hosted by a server.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6690"/>
          <seriesInfo name="DOI" value="10.17487/RFC6690"/>
        </reference>
        <reference anchor="I-D.tiloca-core-oscore-discovery">
          <front>
            <title>Discovery of OSCORE Groups with the CoRE Resource Directory</title>
            <author fullname="Marco Tiloca">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Christian Amsuess">
	 </author>
            <author fullname="Peter van der Stok">
              <organization>Consultant</organization>
            </author>
            <date day="7" month="March" year="2022"/>
            <abstract>
              <t>   Group communication over the Constrained Application Protocol (CoAP)
   can be secured by means of Group Object Security for Constrained
   RESTful Environments (Group OSCORE).  At deployment time, devices may
   not know the exact security groups to join, the respective Group
   Manager, or other information required to perform the joining
   process.  This document describes how a CoAP endpoint can use
   descriptions and links of resources registered at the CoRE Resource
   Directory to discover security groups and to acquire information for
   joining them through the respective Group Manager.  A given security
   group may protect multiple application groups, which are separately
   announced in the Resource Directory as sets of endpoints sharing a
   pool of resources.  This approach is consistent with, but not limited
   to, the joining of security groups based on the ACE framework for
   Authentication and Authorization in constrained environments.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-tiloca-core-oscore-discovery-11"/>
        </reference>
        <reference anchor="RFC7390">
          <front>
            <title>Group Communication for the Constrained Application Protocol (CoAP)</title>
            <author fullname="A. Rahman" initials="A." role="editor" surname="Rahman">
              <organization/>
            </author>
            <author fullname="E. Dijk" initials="E." role="editor" surname="Dijk">
              <organization/>
            </author>
            <date month="October" year="2014"/>
            <abstract>
              <t>The Constrained Application Protocol (CoAP) is a specialized web transfer protocol for constrained devices and constrained networks. It is anticipated that constrained devices will often naturally operate in groups (e.g., in a building automation scenario, all lights in a given room may need to be switched on/off as a group). This specification defines how CoAP should be used in a group communication context.  An approach for using CoAP on top of IP multicast is detailed based on existing CoAP functionality as well as new features introduced in this specification.  Also, various use cases and corresponding protocol flows are provided to illustrate important concepts.  Finally, guidance is provided for deployment in various network topologies.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7390"/>
          <seriesInfo name="DOI" value="10.17487/RFC7390"/>
        </reference>
        <reference anchor="I-D.tiloca-core-groupcomm-proxy">
          <front>
            <title>Proxy Operations for CoAP Group Communication</title>
            <author fullname="Marco Tiloca">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Esko Dijk">
              <organization>IoTconsultancy.nl</organization>
            </author>
            <date day="7" month="March" year="2022"/>
            <abstract>
              <t>   This document specifies the operations performed by a proxy, when
   using the Constrained Application Protocol (CoAP) in group
   communication scenarios.  Such a proxy processes a single request
   sent by a client over unicast, and distributes the request over IP
   multicast to a group of servers.  Then, the proxy collects the
   individual responses from those servers and relays those responses
   back to the client, in a way that allows the client to distinguish
   the responses and their origin servers through embedded addressing
   information.  This document updates RFC7252 with respect to caching
   of response messages at proxies.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-tiloca-core-groupcomm-proxy-06"/>
        </reference>
      </references>
    </references>
    <section anchor="change-log">
      <name>Change log</name>
      <t>Since -05:</t>
      <ul spacing="normal">
        <li>Add section on Limited Lifetimes.</li>
        <li>Point out limitations to applications that use reverse proxying.</li>
        <li>Minor reference and bugfix updates.</li>
      </ul>
      <t>Since -04:</t>
      <ul spacing="normal">
        <li>
          <t>Minor adjustments:
          </t>
          <ul spacing="normal">
            <li>Mention LwM2M and how it is already doing RD proxying.</li>
            <li>Tie proxying in with infinite lifetimes.</li>
            <li>Remove note on not being able to switch protocols: RDs that support some future protocol negotiation can do that.</li>
            <li>Point out that there is no Uri-Host from the RD proxy to the EP, but there could be.</li>
            <li>Infinite lifetimes: Take up CTs more explicitly from RD discussion.</li>
            <li>Start exploring interactions with groupcomm-proxy.</li>
          </ul>
        </li>
      </ul>
      <t>Since -03:</t>
      <ul spacing="normal">
        <li>Added interaction with PvD (Provisioning Domains)</li>
      </ul>
      <t>Since -02:</t>
      <ul spacing="normal">
        <li>Added abstract</li>
        <li>Added example of CoRAL FETCH to Lookup across link relations section</li>
      </ul>
      <t>Since -01:</t>
      <ul spacing="normal">
        <li>Added section on Opportunistic RDs</li>
      </ul>
      <t>Since -00:</t>
      <ul spacing="normal">
        <li>Add multicast proxy usage pattern</li>
        <li>ondemand proxying: Probing queries must be sent from a different address</li>
        <li>proxying: Point to RFC7252 to describe how the actual proxying happens</li>
        <li>proxying: Describe this as a last-resort options and suggest attempting PCP first</li>
      </ul>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>[ Reviews from: Jaime Jimenez ]</t>
      <t><xref target="limited-lifetimes"/> was inspired by Ben Kaduk's comments from reviewing <xref target="rfc9176"/>.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA61965LbRpbmfzwFphRrVWmKVFXpTrXsKVfJbc1ItkKWomPH
7ZgBgSSZLRDgIIGiaIXebP/ti+35zjmZSICULO9MR0e3igTyci7fuWZyMpkk
rW1LM0uv6jfP0zfG1V2Tm/TaNiZv62aXPv/QmsrZunJJUedVtqZniyZbtJNs
7Trj3CSvGzNp9M1J4d+cmPDm5Oxh4tqsKv4jK+uKBmibziR20/C/XHtxdvbk
7CLJs3aWmg+bZGNnSZq6trE5fXJ7Z9xt+rut88Efhdm0K/rkHv52u3VjFq5/
wNVNO/wkr9ebLB6QPlibqqVH6AO80s37Z6oaj9Aaq7q1C2sK/SxrTDZLX1St
aSrTJtulkC55v5V/nKZ/M/P0pa3e22p5GlPU5fWNaXanB6h8mr5u6g+7JOva
Vd3MkklqK1rW1TS9XLv/+38cViekv1o11rU2q6JvzDqz5SzN/Vf/opyZ0m6S
qm7WWWtvDEjaLPIn548e4p8vJtfTIQcLYuKmtMQF4tkssdWifzWZTCZpNieW
EHWS5JJoV5a0dnoyrRdpz2piTNquzCFJ+vhRp//0KWlXWZvmtAsWi5RGoZds
k9bb6jTFJ6vsxqRVnealyZp00bVdY4goqduYnNghiyS+tVNZ29oWRWmS5BZY
09RFJ2v7eMtGf35Kkrcr61IS5A6cTzd1XToSlbX5qi0k0RZS3sLaLldtOjdp
58yiK9N514alb8osx5oTDFY3dmmrrAxzT7EWswsj5FiErQp7Y4sues6lxIb0
xfO3P0A+19Zhjaeps+sN7bcxSwumtLxwW8nCr9PXWUPiQjJKu+Andimt9sXl
T5entJR02dRbepo2mqVulW1Mul2ZxmClO2YL7Yhna1tTpJmjx4YMb0E42sJl
m1paYt41DehJ3GzNKS0CRAZIpHb/XVuYDO/eorWRQjgjwp825r9IGluXJH9b
mYpe85ujgeWf9DC2kR3UIOu5QQorPMgS19k2m5f0z6IghHJ4CNsjbsmu5pkL
X06Tt7sNSVZJs2VO6JmXXWGIGqTLUElaOr300+XbdGtJU4nZeQ35KlOoNolT
04Jd26wpoP0Jkbquyp0OwCshmtcb2h69vKzxKY1QCXFcckyL2jT1kpiXNl1V
DabdEq7MiXGOZupaW9rf8fVVfflaZifc+aXO35uWNO27Nz9cPb53cY/k1AvY
CZE8ll/XLZcgd3qsYnNlyrIrSdteXbxiCuVEnBOR8w1zKMtzEJG24Lp8lZqq
2NAWwH8RGXqKpNcUpwnReUnA4ViF6ypvSBbTtclXWWXdGiMUNY/8VISF/stD
Zv1DU1XW/i08R7hb0QwYYQ6ilJlr2fgQ5esNixh9pQsJtL2x7W4KsSIQ2dSk
QsSJ01RMVcyANMMDZDYMyXMxTb43xE0TpA/0hjYyNZjBoFskpo5koiSFIbVZ
b1rm9bzNLIR5080JW0kWshtCaxYFiMtpggHNhwzqTFTHFK+vXqfHwsOHjx8/
+vTpRMAidaTTET1A9ax0TAmar6x3RJj5LlqQE+5tsbZWOGFIvgVryXxt6+Z9
0I1FU69Fm0sL4IF6p2RkZdxsE2yDgEVgHJDI5uRF7IiplcFHL7eQob//Sp/K
G4xb1fLvv02Tn2pRycIuiMyGViRk55WCnkRdsu6kUySDtB9apTEiobIwtg/6
ILMBgGcd6z1rA0A4Xq63GaeJvKnz0FvHtD2SJ4yB5wDBRKOFXXYCqSepyZam
oZ1t6g3pRmscU0jUIc/yFTkORHGng3gI4yUSGDYtDz0nlb1RjM7aNAbttLVr
AzC81XsIRPcKq/OaB1F2/W4XXcXSmpUk1cQ9eqW1jlcG7mdVVdMTeBK7JO5a
eTr1Plra7gjxj95+f31+hH1jR8FtC0/Jot5Ea2W7LyzYZA4zYoIjXtgzcqGO
YFr0z5q0dE1UOEqJIjTqxhukBNqga4JMHoNbrQAv0ZnQrjUZeQSLE1KaI+Dz
3hAsmCApgR7TiJZuGG2ywWpGr6U2Niq8oWNacHh5b+VgYkGiUwhtK2MKp+jy
YXeSvHr3y9uUzXa3YXuA6cWUvXvzkim7XVkCNXoXyLkhMnsBEVEMX3cgJhuk
mN7p97BO7968YNAp6/p9t3HqKwGlnKmGwqQwEdaQ/vLjz+9eXvceSUaLhItL
aloR9GDGnEWU527UHIt0w9kSSHa5qbLG1snaZJVCSlZBUkp2D1MGTNFk0LiE
qOn6VOrlnUbGJmc6XZPbD9wi6tfLyv5uCqaIgjPG3jbwPvyeSB1eXf5vpeMQ
soGANaaFSy4LOkhFlwi8euBpA9K4p4k6BkGbQOO14jHIHVDXwYUhcIb/bE27
EOcZaOuA5xO4cII7nz7p2iMDoTAlvrUp2JUCsK1qIpbaCPb0ockCUgftoMKb
OhSgeFiBEltNMmMoPeJN2DR5seihxIoA3LDPhoVKzMV0FZwXYWM3qVekoAnz
IIfJcexbDOgPWwjoPEHsxELzgaIppsxo3HW2CwaNgg2wyCqBAsO9Jw0oZotF
+zQbYpZpCOLEpJI0U5zJUo2XO9JownBsONgW122EWOS8GZX8rBS1LCl4m5Q1
PMEXr28eegNJE2KBnqjeA4QmsGFtKiexEEhCUmxL9jpA8Mh4dR43BxOTt1cq
bZhop8m8bgU51Ngp3r03ZqMMjkgChxIYEW3citn3bCKXlsSH5GUq3vWIqET9
tRD11NtGxQ4KotVeDswWzUCowtphWZA7EgHaTAWOwaCUdmHwFT0mMj+HFTcf
cpIdU5zwvqDReKftGPsbsyb7tzcXiSwrDgV7uhkBZeCnoYcbXfFt520f3BUh
v3qaXuATddDgsuyEjKSKtrLknfoFizdChCEmEurRcyorNCpozKA4iLueJjQO
xamu5SiElvrm+dXPr149/+n6+TWb0aEdJXtRgNSCDmJ29q0VFFjolkLxlyAy
rNWG+EH/3jNmOurThHgnwuJSNlGEC1sa7/707IywsKClsA1i4Kh2h8YQyqyy
3qAetMHA3m22I5E5MIYEBaQM3jekxUeeYpjoM2BNTK+CsRhQGwJaO08U5VbN
YL7Jlkwb2plYS1Ij0lASAHmYp+vjs+D5KgrzTmljP/Qe+SnEeURn4i+Rj3TJ
uhWYArV8e/Ua2OG3ha2zZ5CxOjKvKrPFY5HWTZNfvItI01NQ3+/Xu5FNWC9k
mgdj3mCweCCWMbH7cwPFrJtgNwkdGmZIbOQnGtGR52dc3ti5iNTHjxR0PLp4
cEEg/otiw4Ppo+m9VEGg17DgZRy7k9NEQgKSfu8wAdp9YsdviD4g1gmmQaMS
YpT4QJGJ9FEluKh7j8dQm+pZh28oTK/Xkfs9IhuNY11vxkZMHyHNIo2k1vuf
JPVmzR6k47C2ksCPaLu1ZHr9KgPbWoltU9gQGfdn4NSW/ApGCH0hZJriNdxG
Poq9dF1ocqxuom4WOoS4aGA6ESFK1qQKWiaP0GswVz5U1RX21Al+hl/McxZR
jlrJZXzX2MmP4JkE19Pk+etRUNl0FN51ZWsRwGJBZWnKocqSZeAYjFEeKkqo
MSnteyD5jSWgPUkYLCyjOVszcqmdwWhtbKccp1Q4e1PFkc1xW0/mZqKBHszL
INfgjAjv0Y1tYGtECuFmHTGkaxAR6zg0Niwga5Y+Z3cLivbSrq33bNkHET9x
5EHvOX9Kfe9SDh7Gh8GtMpXrfEQM3w5wbnOJQkI8CCHndHWLbIYEIJJnUoVH
7Lwid3TPs5dYhWhcva/qbcWEELwFGuXIAWkOD16JS9nLoWVEMbXzNFvA/Nap
eEs+dHQch1KgSi8RlnNaqyYbGnzR/bjBe1MuhysnKWBiEsn1ZTzrZ3bkbSUk
Y+BXEcd+AQ6LsjtY+Z516iLTB1bshjqbce4AFJKYP4QGRZ8wZNj9uZpcc8TY
uxkeRzyUIR3qEym2GtBekjCcMevTl/gueDfiUoSdI/soCsiuDITKCvRKhoez
F2YAYzHuiYubufeR2lMwbx0nD/rIYBFcoF2fU5IUGMtPFPp/NtaPA3UJs603
YOpdsipHEdmL1z2yExw1O5gIn3YcaBPh5HRrynLCdLyLKCxd2JBDy9K/Pn8b
DAJHAF90NhayLHLu4KA6SScjHHGOVF+Nbs3Et84HPVKqsMuqbswwIxWM1RD4
A3uidA589cUgb7E1TWQyiYg/1W3Ij0nOjbPKWboyHdd88uTvv/JaIDytWFqS
M5E5qSLAe0b6jUX2lcfrbuPg4K/7pPsoqSZYgr971SM99ZkX+IjdBgGTqHBk
CYBTqFVwyF2vyZ649NgZo9npRw8eUKR4ArcwQzXDIvNMQA2njSiF0GAN1QkD
9lFYSCaEoKb3M2ACGFsOza+xT58BFtUKCV/InAZY5FN26zms0YJzB7RTzjsD
o0pSzuPsprbsRCI/k5U2g9idPE2YQ4ostDpLQFSM0nIc2gVxIUHWuL/fYS+v
nPIlL6PI4WEIUkNa31yLBej9MTXknhuiBm+uL38W0y9ACZHuJLtBJpIgt9B8
xh+UA1HvokgKqmPJpTaMiMPik89DDJxEL19YLxauOSXms4aaKk4gWezuxW9G
eZjXN9c+z68p8sePz84hSDQ/fTnJtiALbIdLpLRYBuLLvsVWCfLhja6Sd+qK
KK/OFvzxyE3jfPlguycclSqfCWhJ6ozmlvtV9AUSNtbZRmR1sY+mQcqxW9IG
+jOrTN25cqcq+1wCEqcuyDDDsiIiLpGqW5Ap2BIbkiSl/1CkJ/7JrxdnZ+ez
Yv54dv9iNnvy+NHD32YPHj6+N+PHXv/MicxsM7t7tymmGvpMyTTRn9+ZzbOq
Lgxe+maI9/zyX+4ibR7q/98+bdpnR36ID0ejhdSAw4m3n8PJZDGAbV3LgVXf
HWN+GJ9xfl6iAMa6wKVIlGQ9SYgHJAPFiBa/6QDXIXDp612aIQt20M/lZunF
9Ox+etVwKM6fvlRXf5beJebezeZ5kSQv6WtypSQWFR9k7GiKzXfZbhZ2Motp
MOKHDEVTuO+IzoHMw5U9SK9q1MlaYZCOpEwcEf2L3IP5bvpsga5ewxMOfUjC
4apzQjg23hpcvblGZAiFGgRKnPFm6rZi1vGmxoR92nxUW1tlRdAbKUrrQiTn
1646Jwah96/Du15BGFHHgjE9pFKSWgz1VkRE5kObfryln3yK2BX0x/3z1n1J
h84v7t3/Jhh6VZ/lrqldTnZWiA+hnrqjPyFrNKqEGmEk9Ye37A5oAZqlkBG5
bxM4lVKZZlyZeMjM/nlBlEV/jRT22nc+m53/Njs/o+V/lgYvKvF4QjZGfVa4
HZoz1wQfUu+SciAGSk6QaAAzoB/HoR9cdPaC1Sw4zVi2nEPuxTjJvLNRlggD
tDCKOUFZVP3Eophq2a5242BZAy0uh0jcrVgOf44T7EgjSZ4Sy1lnLblzLeHM
O7V3Vr2qd9evva0hb5/M76LJluTsPmXTLl1DwuiiybY8NIIL2KXGGjF83nvE
OFL3zYno9DcAdbNC5Za8WzGaRW0kaZuXmV1HL7Ma89uc9lqaiibIgyphg+SJ
vhDfeZ29R966clyk4CIUluuL3URc5MMaRkAymLspOahCoF9MzpSA3qH7wecR
tDAK59CuEU+Oypuj6oXda1LwADIq40uSnQHEbci8IVl6nr6rhLKoTkncqlDY
R1+ogzIycecMKNanuvzw3CbTZmSYGloEv8bND7YpOOLejRwpH55n8lKhSRKk
txVdM0mvwfUE8AVoQ0JKltXU8wxlNKwI1LaLHSd7ZUztFOIqkTNRhQ3p4p9+
fsvhc1b6+rHM2fblSkGKcUSWILm/aaUQUWREB0IsOF8dvKkWniRwG3rXk7Uw
82655NJM14Cj7rTXOp0610CX1wR5suzh++xaWmRtNkZ8yB+FXSuWPLSCzHch
MvR53ncOgJCTXGbaZiUJWCmvseOVvhiXB7wMQpq01md8hYDH2C8ooEMAchrs
kqubLi7DXxxxkpIxCOixGJbqpRNjYM7ADaSfXQhZxg45YpIb7igzsp5yx0k2
nwsL9ZmbrOxYGY/K9hkt/ohme7MvkAfqJJXhCjwGIR9+mryrOKdHq+A2or2s
PWmIT9YfuXqh7WJHT8ddNFo4QG9On6MgJOMkxThfSoAlOObbWbQugKLEvK5b
+gfmwsS+MBG6QLBcSL+2ffmeJ7fPxzRUhsg83iHLttZOPGYqdxEeX7112i1V
1AoFhOeVz6v2wTg5+K05JbMYYMfnrygQJc6rnxIohBl9i9yAL1wHCYy0TrJb
Gm8Oyntc6XIkKZtWBIObOzSmSJIfBcECNHNI6D2dT4j7uDOFRv6ypKdFxzGN
erwsDrAbh3yKw87S2L8P3kVT3Pmif0EDRc4DQSvaW1JWrqd5++z+WcI1foUS
tQK6wKyd/ffduW9Eff5HvTpO6bCWITcMSYrqZgNtH1V/8f3WzJ30A0aSICkd
VIyOOReCRj0Dl8YXgAtNVIFOLbcDVWY7dqm1RN2141YAVEoKzamH7GJJuyx2
4gBIjVekLfTEDmowJ4DdlyrIvWR9vKXCPQmfkQ/+XCvOGWNyKOrvS6YkWDO1
iNJFwi0e7Oj/o3PtoBiKXD+PvSbGnerweJ03samRV5VuF+ny1dBIUrGkeqbh
AsqCvYEq30GjfNU3aL28ylXDDQsj7Q+OS8kpJu/DglKtyVcVY5Q+tEjP7z1M
dyZr3HTc1BycN0Z+w/uSzh16DT3vXcVZHeipxw4e1glLkTauG+6mWpit+rKO
ce+yICFRVt1ICbYy7PWladSz5owZZ4fYhnSVdNaya8Ki2vOX8z9ltlSuAF5a
n36sG+74T1s4lIuuYQeftoQqiUz+txVSvw4BPsuqKSwnT4hnVYe+jtQ7v5uW
068sf31fnuJ2yEOHJilfZ9G8rdbdgc3crBYXYLKdx3RWVr907llt0OXASau5
yTMYGqk1NEayveQR1ei1z4VTai3r+Y1uY5HR/gpU+e6kf4XTTaIQChLM9XoR
5TEDWZU42vARFz/qauAG9HV0iXzVQ5M2uZTjRP5iqZNrpjZV1RC8iLunJIlC
NGh3QjMp0eWCeNxjQ/xsCHzglGpWsV7s+zF9P2KaXgcGhXe8e6htN0oEjnmI
9iukG0S4mRSsKeFkg+Ahx799Vy6JFZo+FnUToYHDVsX/BQpwenBlFMdo2zZn
joZOES8JijhwvyWJ6KXC+aCK2Mzow92iMLC+IXUtnce+ouaxYCcCE0lkW/PW
pElmtBkoDXsnfS8pvJYoKvLFHFob8dG73MecjvF1HBT4UzUru9BAH9LTau1Z
zhcZd46Sw2KayaikGqjO60WXBfs4ij3eYmD4erHQ/HcooUWBHq0pY5+fW424
6GRFpdfI7beDeafM9azV2lS8+DD2eAPIAptm9JBEVihgHFqK+u+Iug9K7wkt
AxuWMji9V9hMnHuWNHKK2kNGtg8EaHRTLrCb51ImB95olVbsjhsEw4DCCelI
1DGaNQwTfkfMph97Bem7Esl9JBypkfYqTIzuEkL/A575AXiHi7gP7FpUjWuh
bIMHoTVYwpWB4ctQOmms3Q/IeYXC3WF7ZtcSuPh2llGfJgLj0qwnBfHNlu7T
p9N+CgEoMZo6fCrPBQrCSZLaUVgjBhj1WoZOpAHSzCnw1liginmgoOTbdri9
qO+aQjQedZNhNm9BtHeCMSangFLaK6Sj3a+Yu+JC+8Bk4u2gMJET0PQ29+3N
vVcJC01Yt9OoRbBN00E96oQiMFqRyBpAfH1nCGuKbyLBCSNgYhNIxoH1S9E5
Dd7YHEhfAOd5wgEfnzvPKTBjyUZSg31O88HksBmhdBJwAH1DSNjxqBw8i3fI
hWju+YZLxKWIQRt5cB/17MXDJ2cU/EQmXhZDYMitwr6mFIdEMrG4VpXkWZrh
ViQb0BcD47dBTopY7kVIxDkC7dEfjTSN+vFzdRQF5NQJk53VfRbYH4vh6l/W
Itsr6xTHj22HrPtQiVWq+Moi6YPC/o5kz3vFf0l29jHmpVTSsxShk6+giyPW
U01gXbb7l3Es+G2gQML2qT+hFkyRP7p3faIR3V/uov3426d2EYKwQY0D38Ii
k0wfnfo3ABMtBW6mpJcoXJ4LzE189/DR06zKSaifHfHo/sVV2yLFTXQpCJn8
DCQ//NSTs7MzHTO03M13nxnq7qpbf37R9KUlpN/1T/+JFdPL9B6JjqpWL0Gn
oDzywMzJ02RhNb8dEYnzb+SPc+MDy2RpbjjhppZwHOpTvDw5XLWKRv1GJODZ
oaX77yKiJXuFrfM/weZAivh9T8rhmF9P1r21/M8IxaFhk7//ioRtY+Rw5a9z
Al8TOlZ/O8aMyFssCaG7OU9FSDLZLvn/apjQu2TFOuPunl+c3eJ/6lHoyf2z
R0+ePHr0+OGJ9ilRhEny0cA9XZro6ENrkX4Vo4pER4OT33p+6dOnBIn8vzJC
SJDx3pR2Vdd84CHDOenLl9ohyh03ztWMVDHwnkorhUrpTdZYFjOuFqiPzqdU
kRjknnLOeiUy9g/P3179mIrxfdr3VmGwPislAVgssPIaCapZqNDyd5pomvzA
483iBrG7/nQDSJGV/5zPOVhN09fZrqyzQoratyT1zE1KzwjYptNv488x3+Bz
fDDLZdb0uw/pR/405QFmZCwOyrV/5oCcpt/twhg6SiRu6Xe/63efEvnfQZrq
fJBo26dFIMWXKDDY0QHNHS/vDzb5mW0eVN9o6AN7/xoFDe8H+iBDpamTy6XR
DEw4Qi79foO26j/ur+nbrS+m/ckAWhZhgTmKB6+iZ899qZ3Nn88B+XMOoQ4k
TSrcXVT0aY6Sz0dwJ5MWRyqipkbl7JL1YTY7bf/O5zsL5DIWlk/UteS+bWQ1
sujbjjbVTthLr6vbUSMug0d/BcDxXjOEhhHR8Zs5Z+M5ItQqNlKJkonApn/H
ejgojToD6uokof/vck3zdM4XWevFH8R9C3b5xxUpsKOWGrD0HYckmKAWrwmN
YdwTSaTfTrCwid3viOQZ+pi2KsZOnR5y5isLuPfv8tBVCkw6bhLj+xOcwFk/
SyjkSbpQh6apyFd2/XEwT/ZAT3mQQgasX8qiPBTCjY8f/4kPJD+6T8L6+1AQ
pPuLnFqUKzRPorxBiWI4G9zKG9JecGpUe5Tl6gmbvpn+KyuI0eFKF+duOMZp
UIoMUVHc6Wcb9UbhyxscVY96lUIMEbuyn3NwzOa7mPvfmPbZpmHp+oPSBfL9
3z6FtAeT3zdKzM5/O3raD/XUbJ4dze1S/ww+IAa5GA+yMI/PZrMnT/7Xtsyq
s/1xWM30gwnqGYPh7n12ONOuLv5gtAcPHz2Gt6LnUjilhVCNArlQJadI79Xe
ZywgnLiLToDwtQ9ca5n1Sf8ojeLPOeB4sebpfFwoNX0PJGjLXC5pd3JSiE9N
ZgKGcaNkX5ErLSOob8n251v9mFwQ0Ms7pon2tt7jyNGj9MX0STAHAklAYDTa
t1pE4Fyf5BoG7b4HnK1lU3cbuGtygoem6U8E9GArF6zcQSngjiJXOzz7RFi4
z45DR+2kMsSn7cJBwLjLVuqpuWr2lBywilvzS05PZQF9ekMQjnlyiMrHkobH
dxmgRgmASjLNjIjCIj49+EG6QKoIxMeHIlTjx2DvO9O0E31u4g5/LqBKjrrm
1no5Kijlft/4EJfoEy07KhRMGq0zUzh/X0FOVo2mIXeA9JjokiSLbzD4CXk3
NLj+0/5xrPOL6WMYuPgsCUHYwWZ4l+iZGn+NwbE1U0lKSI1eahPEDG4UQOZI
awmaTDmRK0xSbfg8DtqV89mi0McvwK1kYSMDCqKLAivkU2WaThGDSIuT9ldy
zjmJu2LI5pP4xTClE6cU8KS6NnGvMBsj1LvMmkiLBiyOONi72VsZW4c9arF/
ERJA6EivlvsLOJEeZpawxjq5wSAvcX5Ce4q1X76uNHx5cy2ZPRTE0KdT7rTh
3/qORt1zplf6DIxloqnJkWBEfUDSKRCfFztNuBCRr/qUIlcMwuGoKUtjdNXQ
qI9buzyJVt4xsC6pVJDkYp3obMnBbDVunRo8FVwedLA/TZYaGiqgfN4h07yj
v+yg1v5x7dM5DcsKzXGQWrhNV75Vr09Iyt0x2jCIU2tZpIYheO056E88BKOQ
aJatCrdUROm2PT+ur4a8hYMaHXiJ644o90peUK5jwCcT0TY+yMfFPXkUeOdb
SoDltnGBUXO5qIZdFrVJWdNAsPjEnD9o7d8Ha9Yb8ogZ4tASZNdsS9Em9CVn
B46AdEXoMb5BwHSoeQMA+GXvx5N+0L4R4yiGCE0cf2I5fuCoQxVv/8zkN7P0
7Evrip46FPbel4+PhYwbCXVP+EKsPhmJ8kAvPgr9CBQOwL/meIPYHOyZoY0u
FmcPZrNF8flOmb4PNz0edf+j4xZ9/ycHGSEpNKLz0Vl6fn5xdLBzZX/Miy+N
WSLv8vlBuw2jBmHghs1OaDHsaZVJAdUfyNMMb9Tcwpo++ypenn+Jl/stykSu
LxJlnKYb+uynnxv14rcvk4WHbepDw5LTDY/6Z7ZTXcVnv8jGcIkjPrYYTuhK
/BTq8nEZgT3PA5fccSeGlfyuKRf+9Lp014VTX1UthybkVCM7jno7hi88c0Vb
+wNUulEehVOPLmLfgrrMNhTKkosbG4xyF9eaYN+5Swm4i/PFhW96maMDRqy7
de8hQXorBUy0aeUIVKiAslaGE5dS4+2pER8uaHnO6AqGqAVOB2OsnSIz4A+Q
8n5OxUKNODSmMvz+4Mioew5HlubfSKuNhsUkX7XTBnVQbzjuFY4USW6D2zhD
sRswskTbmBxis2xZ4C+uM2mz6E+3jZsw2MmS9kvf2NVzFN1Q3Alh5DpGvqUl
5xF9GloncUxBsbzxIcrRZQpaJXTp+UNfipLOCdSdtBgVnmlXjTEHFszP+rZp
I/fd7Wif74001mcYnT9RKmnV+MvEZKpFh37hFpIpejDJs82zA70r/gjiwd6V
r2ToW2sm3zcme/9lfkoFlFRQchTaaGN9m4gcA+994Hl/2xoAkT0Brjdua1Ep
PgMxSCRK2VcG0taUp7iElPjIDf8EnfzGq8ur6NwiemaI4GQfZKFOzgAskfkn
ZSosd8D9d+lPG/3/pP8YN0+94+Tn8YeSAiqcougvuwXcBS9RsBHCql3legNM
OAPZP4pbt5w/T6wXffpv/eFV391xJ9XbgsYrZUSOWP6GWwHQLuBPWvHFEvwQ
qibcN68HDlkm+gXbcPMq4Hm4ceC93kM2tgtRGwg30gGGJXExmCerZIF6DZBX
mJ6lS+4Ai5ob+fnbrt9PeI8Y/cfveQpw70oT4k/pObOsQpdylxSujqgocHNy
JWiPH9rixydNaFODmdAq4MOP8Io0XFUSBauFEx/DyayiY9mCERFbyEJ7D76d
Q8VNo9zgBg65oAZb/yIiyG7ZuLt0Y/l8iKhcuVMKEkbKjCZcxATUkQskFuG6
OQ9AkQZD/i7DxaN7IthfgCcqEck40MQLJrRHLilCLJFCom0fYHGaKpYakWS4
fG29cXuaKB1Vqo1T6XNTywm7YKtOTBOnkkKi2yeCpXOxMQu5M2TH3SoDiKiH
BxVCl27qjwLzkSfi+3KpLWkH7qpx/soh6cPmWd5cn3iVsZXcsrZPUh58blJ/
ybQH4RWMGMe1AROllWfVtQWRBBuTBh2y1LbZie9MC7+RCyPUFfNNhQMfMIgP
MpoRwHI1FCCPHre5gVPCZ2L0tDzCUdSj1nI36J244Tdi7tiiQTUW2s8c7QYL
dBsjBxJZLZCJlVshaRqUhGWPx3DA1p1eEWY+5CUB7g3upSXjhdun6LE7qZ7F
Do39XnKOY96eBEE6didy/bEUPUZrK3rIgwfPBlib37gDWfyYcAFa5BpmzLgx
3/Q20HoTC/c0XremMXtfVCpDcVpGBePzi+W1xhcWyun+P1uHVM7uMZE3vbOm
FAjYU2JpJMu0tbLnpnBRb8SV0zJDNqlqjGpEEkYfAAriQGiUrOWoSpZevfWN
gH3foYKj9FWBunzlJKRJLqFTXcbFEINW+AM9yMEphWb5UfhgxKECF24Q0/vK
WzNgX9ylzwfU/L28fEnZtgp9hrW/PxAuHc6E8Y12JGT+Phu+Q1sugJBT7djm
uieNxwkhTx6OK8klcozUuJSExXUyFFam+bLJchySlsYwrrCSIBBWcWqJL8rV
VkqHYOUX6f87MNX+BIRikadHu//dNDWfpGjkviWrV4xH2yDyS5cjzAqAdiMG
vtpFd1IUPpPGIuwCLfZURsp/AyE8nMVEfkcSlXzEkvvoAul65Dzx4npI+YGn
TDlZvOSW2y6+SNkfK8YWpedqW4sdVUs8vBDCC+OWA9TbPliLTyez183UMbmV
S+3DfWzwrMSXGBPqIHZ9LaVCqeUQufmW9KywuTb8+fviG208KvpDTPQ1jYZz
tQcNprYz6gmeIWjcFZ3MSvYTLktXn2oPq169pCgVblhiTBtPoWoFdQVK49BL
75FwoWrNp8q7dkIDTeQ8dtM+U/8M9ksXf5BU4RJRpHo3UikQLyU+SiUSF19c
UGv5gCsQnAXpkeUzW2hDu7lPjoQktfmwygjIgM++nbiNz2c6Lq1HZwMIpflX
CfpDjChbkrAKQvjqemEWGbvfyCmrh7KXl2KvxGnYMk32V6/+ne/58F7M/vVc
fCY66sZItA4QOtk1ClgbPkPjVja+1ZaxKLK5fO1nxgcYe/o8TZYdha18hr6W
62A0CyWANzaDCuE+X6ZbiS7HH5+9vnUrja844xM+qPHi6BKqdv72m69qvJPI
bmU3wQMidZxsGlvzcfq9vGHqGze4kxnv/KO2I4ebE22hyDwnFVvw4HA1h5eN
r7H7AzUV+PeLAVnY6UEN3EobEl8CNKiF4ulQ9jqYP+sn8tc1EF67Ol0K9Ywk
IDhJEOr10oUf7g3OGj7pk3PnfnTTCYJ4EkQaML5NYqFM9538YQH4cFSiA5T9
J1LyxKPpP76ZTqf/edJHuFG1SejCa759YE++r2F64PhddLIHJzWj3z3gi0sy
uZv0xuIQ36LP4cIAY6F6fgDnF0TdFnqZH1/AeMiRFyaqkapq77rtST0YAVTw
P4egl811Ti5h5xqHvuvvFncnmhXqb9tggeLQrj/r4C8/JbaxoMYyRUicv0eN
e77TaLyvjrMr1GieAP4SRWenI/YCw7jty9B6ChzF88xw+iMzYDzS71cSrJf1
ktwxC82ZnD3QA5I4IpT70p4/xvqyP493J33NpU6+SCw6jwep27tfke8zHF0T
iSFe2YrjVn/SDe7AvFsu7Acfv077ld3nlckrWYHDZvKrRxyAvNJzifKLDXLt
4lbvRfMHd4ta74Prl4BX39rowjtbfe6aAHn4jdztXNWSqZOsevyjKI5el8qu
XMk+Y0sQn8sQt1N/Cii0fFZmSbGzJpOJi/q7IjJrT2pfa260ptzf1RKa3/wG
+4tQ5X4ceStXHNe4bW+bs/QtnC5Cnqu3TqxCVMzgSTSB2LF7LOPwBcB64lbI
qKoRuiFH/T4RX+95iTNF/J68hnvSjl/Hd+Bdyx14J/0AF9EA4bed/AfRVQBx
SzXR5ksnd7zw95OcR5NEmrFn9Ps3zoIm9WgojOkcmtA3CCabip7xF5EFMZyh
12yO3frDQP53Bjh/p5c69cd8veG4E4/gLx/W1htuGNAgmpWDfRBxh4L4r0h3
TTUc6Nq/xIEfZ1X3f61GfypEfosnDpPxIzBc4gfgXObwV0tTLCX9wrfsvDGA
dunenKX/miF4/Vf6n8r8zhfpfPy4f2L+Eyd+SAw2tpE2p+8J6/8tKzqYBf+D
aEKohscX1yO07U6T/weoe+T4NG4AAA==

-->

</rfc>
