<?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.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-amsuess-core-cachable-oscore-08" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.18.0 -->
  <front>
    <title>Cacheable OSCORE</title>
    <seriesInfo name="Internet-Draft" value="draft-amsuess-core-cachable-oscore-08"/>
    <author initials="C." surname="Amsüss" fullname="Christian Amsüss">
      <organization/>
      <address>
        <postal>
          <country>Austria</country>
        </postal>
        <email>christian@amsuess.com</email>
      </address>
    </author>
    <author initials="M." surname="Tiloca" fullname="Marco Tiloca">
      <organization>RISE AB</organization>
      <address>
        <postal>
          <street>Isafjordsgatan 22</street>
          <city>Kista</city>
          <code>16440 Stockholm</code>
          <country>Sweden</country>
        </postal>
        <email>marco.tiloca@ri.se</email>
      </address>
    </author>
    <date year="2024" month="January" day="10"/>
    <workgroup>CoRE Working Group</workgroup>
    <keyword>CoAP, OSCORE, multicast, caching, proxy</keyword>
    <abstract>
      <t>Group communication with the Constrained Application Protocol (CoAP) can be secured end-to-end using Group Object Security for Constrained RESTful Environments (Group OSCORE), also across untrusted intermediary proxies. However, this sidesteps the proxies' abilities to cache responses from the origin server(s). This specification restores cacheability of protected responses at proxies, by introducing consensus requests which any client in a group can send to one server or multiple servers in the same group.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Discussion of this document takes place on the
  CORE 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/core-cachable-oscore/"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>The Constrained Application Protocol (CoAP) <xref target="RFC7252"/> supports also group communication, for instance over UDP and IP multicast <xref target="I-D.ietf-core-groupcomm-bis"/>. In a group communication environment, exchanged messages can be secured end-to-end by using Group Object Security for Constrained RESTful Environments (Group OSCORE) <xref target="I-D.ietf-core-oscore-groupcomm"/>.</t>
      <t>Requests and responses protected with the group mode of Group OSCORE can be read by all group members, i.e., not only by the intended recipient(s), thus achieving group-level confidentiality.</t>
      <t>This allows a trusted intermediary proxy which is also a member of the OSCORE group to populate its cache with responses from origin servers. Later on, the proxy can possibly reply to a request in the group with a response from its cache, if recognized as an eligible server by the client.</t>
      <t>However, an untrusted proxy which is not member of the OSCORE group only sees protected responses as opaque, uncacheable ciphertext. In particular, different clients in the group that originate a same plain CoAP request would send different protected requests, as a result of their Group OSCORE processing. Such protected requests cannot yield a cache hit at the proxy, which makes the whole caching of protected responses pointless.</t>
      <t>This document addresses this complication and enables cacheability of protected responses, also for proxies that are not members of the OSCORE group and are unaware of OSCORE in general. To this end, it builds on the concept of "consensus request" initially considered in <xref target="I-D.ietf-core-observe-multicast-notifications"/>, and defines "Deterministic Request" as a convenient incarnation of such concept.</t>
      <t>All clients wishing to send a particular GET or FETCH request are able to deterministically compute the same protected request, using a variation on the pairwise mode of Group OSCORE. It follows that cache hits become possible at the proxy, which can thus serve clients in the group from its cache. Like in <xref target="I-D.ietf-core-observe-multicast-notifications"/>, this requires that clients and servers are already members of a suitable OSCORE group.</t>
      <t>Cacheability of protected responses is useful also in applications where several clients wish to retrieve the same object from a single server.
Some security properties of OSCORE are dispensed with, in order to gain other desirable properties.</t>
      <t>In order to clearly handle the protocol's security properties,
and to broaden applicability to group situations outside the deterministic case,
the technical implementation is split into two halves:</t>
      <ul spacing="normal">
        <li>maintaining request-response bindings in the absence of request source authentication; and</li>
        <li>building and processing of Deterministic Requests
(which have no source authentication, and thus require the former).</li>
      </ul>
      <section anchor="use-cases">
        <name>Use Cases</name>
        <t>When firmware updates are delivered using CoAP, many similar devices fetch the same large data at the same time. Collecting such large data at a proxy from its cache not only keeps the traffic low, but also lets the clients ride single file to hide their numbers <xref target="SW-EPIV"/> and identities. By using protected Deterministic Requests as defined in this document, it is possible to efficiently perform data collection at a proxy also when the firmware updates are protected end-to-end.</t>
        <t>When relying on intermediaries to fan out the delivery of multicast data protected end-to-end as in <xref target="I-D.ietf-core-observe-multicast-notifications"/>, the use of protected Deterministic Requests as defined in this document allows for a more efficient setup, by reducing the amount of message exchanges and enabling early population of cache entries (see <xref target="det-requests-for-notif"/>).</t>
        <t>When relying on Information-Centric Networking (ICN) for multiparty dissemination of cacheable content, CoAP and CoAP proxies can be used to enable asynchronous group communication. This leverages CoAP proxies performing request aggregation, as well as response replication and cacheability <xref target="ICN-paper"/>. By restoring cacheability of OSCORE-protected responses, the Deterministic Requests defined in this document make it possible to attain dissemination of cacheable content in ICN-based deployments, also when the content is protected end-to-end.</t>
        <t>When DNS messages are transported over CoAP <xref target="I-D.ietf-core-dns-over-coap"/>, it is recommended to use OSCORE for protecting such messages. By restoring cacheability of OSCORE-protected responses, it becomes possible to benefit from the cache retrieval of such CoAP responses that particularly transport DNS messages.</t>
      </section>
      <section anchor="terminology">
        <name>Terminology</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they appear in all capitals, as shown here.</t>
        <t>Readers are expected to be familiar with terms and concepts of CoAP <xref target="RFC7252"/> and its method FETCH <xref target="RFC8132"/>, group communication for CoAP <xref target="I-D.ietf-core-groupcomm-bis"/>, COSE <xref target="RFC9052"/><xref target="RFC9053"/>, OSCORE <xref target="RFC8613"/>, and Group OSCORE <xref target="I-D.ietf-core-oscore-groupcomm"/>.</t>
        <t>This document also introduces the following new terms.</t>
        <ul spacing="normal">
          <li>
            <t>Consensus Request: a CoAP request that multiple clients use to repeatedly access a particular resource.
In this document, it exclusively refers to requests protected with Group OSCORE to a resource hosted at one or more servers in the OSCORE group.  </t>
            <t>
A Consensus Request has all the properties relevant to caching, but its transport dependent properties (e.g., Token or Message ID) are not defined. Thus, different requests on the wire can be said to "be the same Consensus Request" even if they have different Tokens or source addresses.  </t>
            <t>
The Consensus Request is the reference for request-response binding.
 In general, a client processing a response to a Consensus Request did not generate (and thus sign) the consensus request.
 The client not only needs to decrypt the Consensus Request to understand a response to it (for example to tell which path was requested),
 but it also needs to verify that this is the only Consensus Request that could elicit this response.</t>
          </li>
          <li>
            <t>Deterministic Client: a fictitious member of an OSCORE group, having no Sender Sequence Number, no asymmetric key pair, and no Recipient Context.  </t>
            <t>
The Group Manager sets up the Deterministic Client, and assigns it a unique Sender ID as for other group members. Furthermore, the Deterministic Client has only the minimum common set of privileges shared by all group members.</t>
          </li>
          <li>Deterministic Request: a Consensus Request generated by the Deterministic Client. The use of Deterministic Requests is defined in <xref target="sec-deterministic-requests"/>.</li>
          <li>
            <t>Ticket Request: a Consensus Request generated by the server itself.  </t>
            <t>
This term is not used in the main document, but is useful in comparison with other applications of Consensus Requests
that are generated in a different way than as Deterministic Requests.
The prototypical Ticket Request is the Phantom Request defined in <xref target="I-D.ietf-core-observe-multicast-notifications"/>.  </t>
            <t>
In <xref target="sec-ticket-requests"/>, the term is used to bridge the gap with that document.</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="oscore-nosourceauth">
      <name>OSCORE processing without source authentication</name>
      <t>The request-response binding of OSCORE is achieved by the items request_kid / request_piv (and, in group OSCORE, request_kid_context)
that are present in both the request's and the response's AAD, and are hereafter referred to as "request_ details".</t>
      <t>The security of such binding depends on the server obtaining source authentication for the request:
if this precondition is not fulfilled, a malicious group member could alter a request to the server (without altering the request_ details above),
and the client would still accept the response as if it were a response to its request.</t>
      <t>Source authentication is thus a precondition for the secure use of OSCORE and Group OSCORE.
However, it is hard to provide when:</t>
      <ul spacing="normal">
        <li>Requests are built exclusively using shared keying material, like in the case of a Deterministic Client.</li>
        <li>Requests are sent without source authentication, or their source authentication is not checked. (This was part of <xref target="I-D.ietf-core-oscore-groupcomm"/> in revisions before version -12)</li>
      </ul>
      <t>This document does not [ yet? ] give full guidance on how to restore request-response binding for the general case,
but currently only offers suggestions:</t>
      <ul spacing="normal">
        <li>The response can contain the full request. An option that allows doing that is presented in <xref target="I-D.bormann-core-responses"/>.</li>
        <li>The response can contain a cryptographic hash of the full request. This is used by the method specified in this document, as defined in <xref target="ssec-request-hash-option"/>.</li>
        <li>The request_ details above can be transported in a Class E option (encrypted and integrity protected) or a Class I option (unencrypted, but part of the AAD hence integrity protected).
The latter has the advantage that the option can be removed in transit and reconstructed at the receiver.</li>
        <li>Alternatively, the agreed-on request data can be placed in a different position in the AAD,
or take part to the derivation of the OSCORE Security Context.
In the latter case, care needs to be taken to never initialize a Security Context twice with the same input,
as that would lead to reuse of the AEAD nonce.</li>
      </ul>
      <t>[ Suggestion for any OSCORE v2: avoid request_ details in the request's AAD as individual elements. Rather than having 'request_kid', 'request_piv' (and, in Group OSCORE, 'request_kid_context') as separate fields, they can better be something more pluggable.
This would avoid the need to make up an option before processing, and would allow just plugging in the hash or request in there as replacing the elements for the request_ details. ]</t>
      <t>Additional care has to be taken in ensuring that request_ details that are not expressed in the request itself are captured. For instance, these include an indication of the Security Context from which the request is assumed to have been originated.</t>
      <t>Requests without source authentication have to be processed assuming only the minimal possible privilege of the requester
[ which is currently described as the authorization of the Deterministic Client, and may be moved up here in later versions of this document ].
If a response is built to such a request and contains data more sensitive than that
(which might be justified if the response is protected for an authorized group member in pairwise mode),
special consideration for any side channels like response size or timing is required.</t>
    </section>
    <section anchor="sec-deterministic-requests">
      <name>Deterministic Requests</name>
      <t>This section defines a method for clients starting from a same plain CoAP request to independently build the same, corresponding Deterministic Request protected with Group OSCORE.</t>
      <section anchor="sec-deterministic-requests-unprotected">
        <name>Deterministic Unprotected Request</name>
        <t>Clients build the unprotected Deterministic Request in a way which is as much reproducible as possible.
This document does not set out full guidelines for minimizing the variation,
but considered starting points are:</t>
        <ul spacing="normal">
          <li>
            <t>Set the inner Observe option to 0 even if no observation is intended (and hence no outer Observe is set). Thus, both observing and non-observing requests can be aggregated into a single request, which is upstreamed as an observation at the latest when any observing request reaches a caching proxy.  </t>
            <t>
In this case, following a Deterministic Request that includes only an inner Observe option, servers include an inner Observe option (but no outer Observe option) in a successful response sent as reply. Also, when receiving a response to such a Deterministic Request previously sent, clients have to silently ignore the inner Observe option in that response.</t>
          </li>
          <li>Avoid setting the ETag option in requests on a whim.
Only set it when there was a recent response with that ETag.
When obtaining later blocks, do not send the known-stale ETag.</li>
          <li>In block-wise transfers, maximally sized large inner blocks (szx=6) should be selected.
This serves not only to align the clients on consistent cache entries,
but also helps amortize the additional data transferred in the per-message signatures.</li>
        </ul>
        <!--
MT: proposed  s/should be selected/SHOULD be selected
-->

<t>Outer block-wise transfer can then be used if these messages exceed a hop's efficiently usable MTU size.</t>
        <t>(If BERT <xref target="RFC8323"/> is usable with OSCORE, its use is fine as well;
  in that case, the server picks a consistent block size for all clients anyway).</t>
        <ul spacing="normal">
          <li>The Padding option defined in <xref target="sec-padding"/> can be used to limit an adversary's ability to deduce the content and the target resource of Deterministic Requests from their length. In particular, all Deterministic Requests of the same class (ideally, all requests to a particular server) can be padded to reach the same total length, that should be agreed on among all users of the same OSCORE Security Context.</li>
        </ul>
        <!--
MT: proposed  s/should be agreed/SHOULD be agreed
-->

<ul spacing="normal">
          <li>
            <t>Clients should not send any inner Echo options <xref target="RFC9175"/> in Deterministic Requests.  </t>
            <t>
This limits the use of the Echo option in combination with Deterministic Requests to unprotected (outer) options,
and thus is limited to testing the reachability of the client.
This is not practically limiting, as the use as an inner option would be to prove freshness,
which is something Deterministic Requests simply cannot provide anyway.</t>
          </li>
        </ul>
        <t>These only serve to ensure that cache entries are utilized; failure to follow them has no more severe consequences than decreasing the utility and effectiveness of a cache.</t>
      </section>
      <section anchor="ssec-deterministic-requests-design">
        <name>Design Considerations</name>
        <t>The hard part is determining a consensus pair (key, nonce) to be used with the AEAD cipher for encrypting the plain CoAP request and obtaining the Deterministic Request as a result, while also avoiding the reuse of the same (key, nonce) pair across different requests.</t>
        <t>Diversity can conceptually be enforced by applying a cryptographic hash function to the complete input of the encryption operation over the plain CoAP request (i.e., the AAD and the plaintext of the COSE object), and then using the result as source of uniqueness.
Any non-malleable cryptographically secure hash of sufficient length to make collisions sufficiently unlikely is suitable for this purpose.</t>
        <t>A tempting possibility is to use a fixed (group) key, and use the hash as a deterministic AEAD nonce for each Deterministic Request through the Partial IV component (see <xref section="5.2" sectionFormat="of" target="RFC8613"/>). However, the 40 bit available for the Partial IV are by far insufficient to ensure that the deterministic nonce is not reused across different Deterministic Requests. Even if the full deterministic AEAD nonce could be set, the sizes used by common algorithms would still be too small.</t>
        <t>As a consequence, the proposed method takes the opposite approach, by considering a fixed deterministic AEAD nonce, while deriving a different deterministic encryption key for each Deterministic Request. That is, the hash computed over the plain CoAP request is taken as input to the key derivation. As an advantage, this approach does not require to transport the computed hash in the OSCORE option.</t>
        <t>[ Note: This has a further positive side effect arising with version -11 of Group OSCORE. That is, since the full encoded OSCORE option is part of the AAD, it avoids a circular dependency from feeding the AAD into the hash computation, which in turn needs crude workarounds like building the full AAD twice, or zeroing out the hash-to-be. ]</t>
      </section>
      <section anchor="ssec-request-hash-option">
        <name>Request-Hash</name>
        <t>In order to transport the hash of the plain CoAP request, a new CoAP option is defined, which MUST be supported by clients and servers that support Deterministic Requests.</t>
        <t>The option is called Request-Hash. As summarized in <xref target="request-hash-table"/>, the Request-Hash option is elective, safe to forward, part of the cache key, and repeatable.</t>
        <figure anchor="request-hash-table">
          <name>Request-Hash Option</name>
          <artwork align="center"><![CDATA[
+------+---+---+---+---+--------------+--------+--------+---------+
| No.  | C | U | N | R |     Name     | Format | Length | Default |
+------+---+---+---+---+--------------+--------+--------+---------+
| TBD1 |   |   |   | x | Request-Hash | opaque | any    | (none)  |
+------+---+---+---+---+--------------+--------+--------+---------+
]]></artwork>
        </figure>
        <t>The Request-Hash option is identical in all its properties to the Request-Tag option defined in <xref target="RFC9175"/>, with the following exceptions:</t>
        <ul spacing="normal">
          <li>
            <t>It may be arbitrarily long.  </t>
            <t>
Implementations can limit its length to that of the longest output of the supported hash functions.</t>
          </li>
          <li>
            <t>It may be present in responses (TBD: Does this affect any other properties?).  </t>
            <t>
A response's Request-Hash option is, as a matter of default value,
equal to the request's Request-Hash option.
The response is only valid if the value of its Request-Hash option is equal to the value of the Request-Hash option in the corresponding request.  </t>
            <t>
Servers (including proxies) thus generally SHOULD NOT need to include the Request-Hash option explicitly in responses,
especially as a matter of bandwidth efficiency.  </t>
            <t>
A reason (and, currently, the only known) to actually include a Request-Hash option in a response
is the possible use of non-traditional responses as described in <xref target="I-D.bormann-core-responses"/>,
which in terms of that document are non-matching to the request (and thus easily usable).
The Request-Hash option in the response allows populating caches (see below) and enables the decryption of a response sent as a reply to a Consensus Request.
In the context of non-traditional responses, the Request-Hash value of the request corresponding to a response can be inferred from the value of the Request-Hash option in the response.</t>
          </li>
          <li>
            <t>A proxy MAY use any fresh cached response from the selected server to respond to a request with the same Request-Hash;
this may save it some memory.  </t>
            <t>
A proxy can add or remove the request's Request-Tag value to / from a response.</t>
          </li>
          <li>When used with a Deterministic Request, this option is created at message protection time by the sender, and used before message unprotection by the recipient. Therefore, in this use case, it is treated as Class U for OSCORE <xref target="RFC8613"/> in requests. In the same application, for responses, it is treated as Class I, and often elided from sending (but reconstructed at the receiver). Other uses of this option can put it into different classes for the OSCORE processing.</li>
        </ul>
        <t>This option achieves request-response binding described in <xref target="oscore-nosourceauth"/>.</t>
      </section>
      <section anchor="ssec-use-deterministic-requests">
        <name>Use of Deterministic Requests</name>
        <t>This section defines how a Deterministic Request is built on the client side and then processed on the server side.</t>
        <section anchor="sssec-use-deterministic-requests-pre-conditions">
          <name>Preconditions</name>
          <t>The use of Deterministic Requests in an OSCORE group requires that the interested group members are aware of the Deterministic Client in the group. In particular, they need to know:</t>
          <ul spacing="normal">
            <li>
              <t>The Sender ID of the Deterministic Client, to be used as 'kid' parameter for the Deterministic Requests. This allows all group members to compute the Sender Key of the Deterministic Client.  </t>
              <t>
The Sender ID of the Deterministic Client is immutable throughout the lifetime of the OSCORE group. That is, it is not relinquished and it does not change upon changes of the group keying material following a group rekeying performed by the Group Manager.</t>
            </li>
            <li>The hash algorithm to use for computing the hash of a plain CoAP request, when producing the associated Deterministic Request.</li>
          </ul>
          <t>Group members have to obtain this information from the Group Manager. A group member can do that, for instance, when obtaining the group keying material upon joining the OSCORE group, or later on as an active member by sending a request to a dedicated resource at the Group Manager.</t>
          <t>The joining process based on the Group Manager defined in <xref target="I-D.ietf-ace-key-groupcomm-oscore"/> can be easily extended to support the provisioning of information about the Deterministic Client. Such an extension is defined in <xref target="sec-obtaining-info"/> of this document.</t>
        </section>
        <section anchor="sssec-use-deterministic-requests-client-req">
          <name>Client Processing of Deterministic Requests</name>
          <t>In order to build a Deterministic Request, the client protects the plain CoAP request using the pairwise mode of Group OSCORE (see <xref section="9" sectionFormat="of" target="I-D.ietf-core-oscore-groupcomm"/>), with the following alterations.</t>
          <ol spacing="normal" type="1"><li>
              <t>When preparing the OSCORE option, the external_aad, and the AEAD nonce:  </t>
              <ul spacing="normal">
                <li>The used Sender ID is the Deterministic Client's Sender ID.</li>
                <li>The used Partial IV is 0.</li>
              </ul>
              <t>
When preparing the external_aad, the element 'sender_cred' in the aad_array takes the empty CBOR byte string.</t>
            </li>
            <li>
              <t>The client uses the hash function indicated for the Deterministic Client, and computes a hash H over the following input: the Sender Key of the Deterministic Client, concatenated with the binary serialization of the aad_array from step 1, concatenated with the COSE plaintext.  </t>
              <t>
Note that the payload of the plain CoAP request (if any) is not self-delimiting, and thus hash functions are limited to non-malleable ones.</t>
            </li>
            <li>
              <t>The client derives the deterministic Pairwise Sender Key K as defined in <xref section="2.5.1" sectionFormat="of" target="I-D.ietf-core-oscore-groupcomm"/>, with the following differences:  </t>
              <ul spacing="normal">
                <li>The Sender Key of the Deterministic Client is used as first argument of the HKDF.</li>
                <li>
                  <t>The hash H from step 2 is used as second argument of the HKDF, i.e., as a pseudo IKM-Sender computable by all the group members.      </t>
                  <t>
Note that an actual IKM-Sender cannot be obtained, since there is no authentication credential (and public key included therein) associated with the Deterministic Client, to be used as Sender Authentication Credential and for computing an actual Diffie-Hellman Shared Secret.</t>
                </li>
                <li>The Sender ID of the Deterministic Client is used as value for the 'id' element of the 'info' parameter used as third argument of the HKDF.</li>
              </ul>
            </li>
            <li>The client includes a Request-Hash option in the request to protect, with value set to the hash H from Step 2.</li>
            <li>The client MAY include an inner Observe option set to 0 to be protected with OSCORE, even if no observation is intended (see <xref target="sec-deterministic-requests-unprotected"/>).</li>
            <li>The client protects the request using the pairwise mode of Group OSCORE as defined in <xref section="9.3" sectionFormat="of" target="I-D.ietf-core-oscore-groupcomm"/>, using the AEAD nonce from step 1, the deterministic Pairwise Sender Key K from step 3 as AEAD encryption key, and the finalized AAD.</li>
            <li>The client MUST NOT include an unprotected (outer) Observe option if no observation is intended, even in case an inner Observe option was included at step 5.</li>
            <li>The client MUST set FETCH as the outer code of the protected request to make it usable for a proxy's cache, even if no observation is intended <xref target="RFC7641"/>.</li>
          </ol>
          <t>The result is the Deterministic Request to be sent.</t>
          <t>Since the encryption key K is derived using material from the whole plain CoAP request, this (key, nonce) pair is only used for this very message, which is deterministically encrypted unless there is a hash collision between two Deterministic Requests.</t>
          <t>The deterministic encryption requires the used AEAD algorithm to be deterministic in itself. This is the case for all the AEAD algorithms currently registered with COSE in <xref target="COSE.Algorithms"/>. For future algorithms, a flag in the COSE registry is to be added.</t>
          <t>Note that, while the process defined above is based on the pairwise mode of Group OSCORE, no information about the server takes part to the key derivation or is included in the AAD. This is intentional, since it allows for sending a Deterministic Request to multiple servers at once (see <xref target="det-req-one-to-many"/>). On the other hand, it requires later checks at the client when verifying a response to a Deterministic Request (see <xref target="ssec-use-deterministic-requests-response"/>).</t>
        </section>
        <section anchor="sssec-use-deterministic-requests-server-req">
          <name>Server Processing of Deterministic Requests</name>
          <t>Upon receiving a Deterministic Request, a server performs the following actions.</t>
          <t>A server that does not support Deterministic Requests would not be able to create the necessary Recipient Context, and thus will fail decrypting the request.</t>
          <ol spacing="normal" type="1"><li>If not already available, the server retrieves the information about the Deterministic Client from the Group Manager, and derives the Sender Key of the Deterministic Client.</li>
            <li>
              <t>The server actually recognizes the request to be a Deterministic Request, due to the presence of the Request-Hash option and to the 'kid' parameter of the OSCORE option set to the Sender ID of the Deterministic Client.  </t>
              <t>
If the 'kid' parameter of the OSCORE option specifies a different Sender ID than the one of the Deterministic Client, the server MUST NOT take the following steps, and instead processes the request as per <xref section="9.4" sectionFormat="of" target="I-D.ietf-core-oscore-groupcomm"/>.</t>
            </li>
            <li>The server retrieves the hash H from the Request-Hash option.</li>
            <li>
              <t>The server derives a Recipient Context for processing the Deterministic Request. In particular:  </t>
              <ul spacing="normal">
                <li>The Recipient ID is the Sender ID of the Deterministic Client.</li>
                <li>The Recipient Key is derived as the key K in step 3 of <xref target="sssec-use-deterministic-requests-client-req"/>, with the hash H retrieved at the previous step.</li>
              </ul>
            </li>
            <li>The server verifies the request using the pairwise mode of Group OSCORE, as defined in <xref section="9.4" sectionFormat="of" target="I-D.ietf-core-oscore-groupcomm"/>, using the Recipient Context from step 4, with the difference that the server does not perform replay checks against a Replay Window (see below).</li>
          </ol>
          <t>In case of successful verification, the server MUST also perform the following actions, before possibly delivering the request to the application.</t>
          <ul spacing="normal">
            <li>
              <t>Starting from the recovered plain CoAP request, the server MUST recompute the same hash that the client computed at step 2 of <xref target="sssec-use-deterministic-requests-client-req"/>.  </t>
              <t>
If the recomputed hash value differs from the value retrieved from the Request-Hash option at step 3, the server MUST treat the request as invalid and MAY reply with an unprotected 4.00 (Bad Request) error response. The server MAY set an Outer Max-Age option with value zero. The diagnostic payload MAY contain the string "Decryption failed".  </t>
              <t>
This prevents an attacker that guessed a valid authentication tag for a given Request-Hash value to poison caches with incorrect responses.</t>
            </li>
            <li>
              <t>The server MUST verify that the unprotected request is safe to be processed in the REST sense, i.e., that it has no side effects. If verification fails, the server MUST discard the message and SHOULD reply with a protected 4.01 (Unauthorized) error response.  </t>
              <t>
Note that some CoAP implementations may not be able to prevent that an application produces side effects from a safe request. This may incur checking whether the particular resource handler is explicitly marked as eligible for processing Deterministic Requests. An implementation may also have a configured list of requests that are known to be side effect free, or even a pre-built list of valid hashes for all sensible requests for them, and reject any other request.  </t>
              <t>
These checks replace the otherwise present requirement that the server needs to check the Replay Window of the Recipient Context (see step 5 above), which is inapplicable with the Recipient Context derived at step 4 from the value of the Request-Hash option. The reasoning is analogous to the one in <xref target="I-D.amsuess-lwig-oscore"/> to treat the potential replay as answerable, if the handled request is side effect free.</t>
            </li>
          </ul>
        </section>
        <section anchor="ssec-use-deterministic-requests-response">
          <name>Response to a Deterministic Request</name>
          <t>When preparing a response to a Deterministic Request, the server treats the Request-Hash option as a Class I option. The value of the Request-Hash option MUST be equal to the value of the Request-Hash option that was specified in the corresponding Deterministic Request. Since the client is aware of the Request-Hash value to expect in the response, the server usually elides the Request-Hash option from the actually transmitted response.</t>
          <t>Treating the Request-Hash option as a Class I option creates the request-response binding, thus ensuring that no mismatched responses can be successfully unprotected and verified by the client (see <xref target="oscore-nosourceauth"/>).</t>
          <t>The client MUST reject a response to a Deterministic Request, if the Request-Hash value of the response is not equal to the value that was specified in the Request-Hash option of that Deterministic Request.</t>
          <!--
MT: Is there any possible reason in this application of the Request-Hash option to not elide it the from the response?
-->

<t>When preparing the response, the server performs the following actions.</t>
          <ol spacing="normal" type="1"><li>The server sets a non-zero Max-Age option, thus making the Deterministic Request usable for the proxy cache.</li>
            <li>The server preliminarily sets the Request-Hash option with the full Request-Hash value, i.e., the same value of the Request-Hash option that was specified in the Deterministic Request.</li>
            <li>If the Deterministic Request included an inner Observe option but not an outer Observe option, the server MUST include an inner Observe option in the response.</li>
            <li>
              <t>The server MUST protect the response using the group mode of Group OSCORE, as defined in <xref section="8.3" sectionFormat="of" target="I-D.ietf-core-oscore-groupcomm"/>. This is required to ensure that the client can verify the source authentication of the response, since the "pairwise" key used for producing the Deterministic Request is actually shared among all the group members.  </t>
              <t>
Note that the Request-Hash option is treated as Class I here.</t>
            </li>
            <li>The server MUST use its own Sender Sequence Number as Partial IV to protect the response, and include it as Partial IV in the OSCORE option of the response. This is required since the server does not perform replay protection on the Deterministic Request (see <xref target="ssec-use-deterministic-requests-response"/>).</li>
            <li>The server uses 2.05 (Content) as outer code even though the response is not necessarily an Observe notification <xref target="RFC7641"/>, in order to make the response cacheable.</li>
            <li>The server SHOULD remove the Request-Hash option from the response before sending the response to the client, as per the general option mechanism defined in <xref target="ssec-request-hash-option"/>.</li>
            <li>If the Deterministic Request included an inner Observe option but not an outer Observe option, the server MUST NOT include an outer Observe option in the response.</li>
          </ol>
          <t>Upon receiving the response, the client performs the following actions.</t>
          <ol spacing="normal" type="1"><li>In case the response includes a 'kid' in the OSCORE option, the client MUST verify it to be exactly the 'kid' of the server to which the Deterministic Request was sent, unless responses from multiple servers are expected (see <xref target="det-req-one-to-many"/>).</li>
            <li>
              <t>In case the response does not include the Request-Hash option, the client adds the Request-Hash option to the response, setting its value to the same value of the Request-Hash option that was specified in the Deterministic Request.  </t>
              <t>
Otherwise, the client MUST reject the response if the value of the Request-Hash option is different from the value of the Request-Hash option that was specified in the Deterministic Request.</t>
            </li>
            <li>The client verifies the response using the group mode of Group OSCORE, as defined in <xref section="8.4" sectionFormat="of" target="I-D.ietf-core-oscore-groupcomm"/>. In particular, the client verifies the countersignature in the response, based on the 'kid' of the server it sent the request to. When verifying the response, the Request-Hash option is treated as a Class I option.</li>
            <li>If the Deterministic Request included an inner Observe option but not an outer Observe option (see <xref target="sec-deterministic-requests-unprotected"/>), the client MUST silently ignore the inner Observe option in the response, which MUST NOT result in stopping the processing of the response.</li>
          </ol>
          <t>[ Note: This deviates from Section 4.1.3.5.2 of RFC 8613, but it is limited to a very specific situation, where the client and server both know exactly what happens. This does not affect the use of OSCORE in other situations. ]</t>
        </section>
        <section anchor="det-req-one-to-many">
          <name>Deterministic Requests to Multiple Servers</name>
          <t>A Deterministic Request <em>can</em> be sent to a CoAP group, e.g., over UDP and IP multicast <xref target="I-D.ietf-core-groupcomm-bis"/>, thus targeting multiple servers at once.</t>
          <t>To simplify key derivation, such a Deterministic Request is still created in the same way as a one-to-one request and still protected with the pairwise mode of Group OSCORE, as defined in <xref target="sssec-use-deterministic-requests-client-req"/>.</t>
          <t>Note that this deviates from <xref section="8" sectionFormat="of" target="I-D.ietf-core-oscore-groupcomm"/>, since the Deterministic Request in this case is indeed intended to multiple recipients, but yet it is protected with the pairwise mode. However, this is limited to a very specific situation, where the client and servers both know exactly what happens. This does not affect the use of Group OSCORE in other situations.</t>
          <t>[ Note: If it was protected with the group mode, the request hash would need to be fed into a group key derivation just for this corner case. Furthermore, there would need to be a signature in spite of no authentication credential (and public key included therein) associated with the Deterministic Client. ]</t>
          <t>When a server receives a request from the Deterministic Client as addressed to a CoAP group, the server proceeds as defined in <xref target="sssec-use-deterministic-requests-server-req"/>, with the difference that it MUST include its own Sender ID in the response, as 'kid' parameter of the OSCORE option.</t>
          <t>Although it is normally optional for the server to include its Sender ID when replying to a request protected in pairwise mode, it is required in this case for allowing the client to retrieve the Recipient Context associated with the server originating the response.</t>
          <t>If a server is member of a CoAP group, and it fails to successfully decrypt and verify an incoming Deterministic Request, then it is RECOMMENDED for that server to not send back any error message, in case the server asserts that the Deterministic Request was sent to the CoAP group (e.g., to the associated IP multicast address) or in case the server is not able to assert that altogether.</t>
        </section>
      </section>
    </section>
    <section anchor="sec-obtaining-info">
      <name>Obtaining Information about the Deterministic Client</name>
      <t>This section extends the Joining Process defined in <xref target="I-D.ietf-ace-key-groupcomm-oscore"/>, and based on the ACE framework for Authentication and Authorization <xref target="RFC9200"/>. Upon joining the OSCORE group, this enables a new group member to obtain from the Group Manager the required information about the Deterministic Client (see <xref target="sssec-use-deterministic-requests-pre-conditions"/>).</t>
      <t>With reference to the 'key' parameter included in the Join Response defined in <xref section="6.3" sectionFormat="of" target="I-D.ietf-ace-key-groupcomm-oscore"/>, the Group_OSCORE_Input_Material object specified as its value contains also the two additional parameters 'det_senderId' and 'det_hash_alg'. These are defined in <xref target="ssec-iana-security-context-parameter-registry"/> of this document. In particular:</t>
      <ul spacing="normal">
        <li>The 'det_senderId' parameter, if present, has as value the OSCORE Sender ID assigned to the Deterministic Client by the Group Manager. This parameter MUST be present if the OSCORE group uses Deterministic Requests as defined in this document. Otherwise, this parameter MUST NOT be present.</li>
        <li>The 'det_hash_alg' parameter, if present, has as value the hash algorithm to use for computing the hash of a plain CoAP request, when producing the associated Deterministic Request. This parameter takes values from the "Value" column of the "COSE Algorithms" Registry <xref target="COSE.Algorithms"/>. This parameter MUST be present if the OSCORE group uses Deterministic Requests as defined in this document. Otherwise, this parameter MUST NOT be present.</li>
      </ul>
      <t>The same extension above applies also to the 'key' parameter included in a Key Distribution Response (see Sections <xref target="I-D.ietf-ace-key-groupcomm-oscore" section="9.1.1" sectionFormat="bare"/> and <xref target="I-D.ietf-ace-key-groupcomm-oscore" section="9.1.2" sectionFormat="bare"/> of <xref target="I-D.ietf-ace-key-groupcomm-oscore"/>).</t>
      <t>With reference to the 'key' parameter included in a Signature Verification Data Response defined in <xref section="9.6" sectionFormat="of" target="I-D.ietf-ace-key-groupcomm-oscore"/>, the Group_OSCORE_Input_Material object specified as its value contains also the 'det_senderId' parameter defined above.</t>
    </section>
    <section anchor="sec-security-considerations">
      <name>Security Considerations</name>
      <t>The same security considerations from <xref target="RFC7252"/><xref target="I-D.ietf-core-groupcomm-bis"/><xref target="RFC8613"/><xref target="I-D.ietf-core-oscore-groupcomm"/> hold for this document.</t>
      <t>The following elaborates on how, compared to Group OSCORE, Deterministic Requests dispense with some of the OSCORE security properties, by just so much as to make caching possible.</t>
      <ul spacing="normal">
        <li>
          <t>A Deterministic Request is intrinsically designed to be replayed, as intended to be identically sent multiple times by multiple clients to the same server(s).  </t>
          <t>
Consistently, as per the processing defined in <xref target="sssec-use-deterministic-requests-server-req"/>, a server receiving a Deterministic Request does not perform replay checks against an OSCORE Replay Window.  </t>
          <t>
This builds on the following considerations.  </t>
          <ul spacing="normal">
            <li>
              <t>For a given request, the level of tolerance to replay risk is specific to the resource it operates upon (and therefore only known to the origin server). In general, if processing a request does not have state-changing side effects, the consequences of replay are not significant.      </t>
              <t>
Just like for what concerns the lack of source authentication (see below), the server must verify that the received Deterministic Request (more precisely, its handler) is side effect free. The distinct semantics of the CoAP request codes can help the server make that assessment.</t>
            </li>
            <li>Consistently with the point above, a server can choose whether it will process a Deterministic Request on a per-resource basis. It is RECOMMENDED that origin servers allow resources to explicitly configure whether Deterministic Requests are appropriate to receive, as still limited to requests that are safe to be processed in the REST sense, i.e., they do not have state-changing side effects.</li>
          </ul>
        </li>
        <li>
          <t>Receiving a response to a Deterministic Request does not mean that the response was generated after the Deterministic Request was sent.  </t>
          <t>
However, a valid response to a Deterministic Request still contains two freshness statements.  </t>
          <ul spacing="normal">
            <li>It is more recent than any other response from the same group member that has a smaller sequence number.</li>
            <li>It is more recent than the original creation of the deterministic keying material in the Group OSCORE Security Context.</li>
          </ul>
        </li>
        <li>
          <t>Source authentication of Deterministic Requests is lost.  </t>
          <t>
Instead, the server must verify that the Deterministic Request (more precisely, its handler) is side effect free. The distinct semantics of the CoAP request codes can help the server make that assessment.  </t>
          <t>
Just like for what concerns the acceptance of replayed Deterministic Requests (see above), the server can choose whether it will process a Deterministic Request on a per-resource basis.</t>
        </li>
        <li>
          <t>The privacy of Deterministic Requests is limited.  </t>
          <t>
An intermediary can determine that two Deterministic Requests from different clients are identical, and associate the different responses generated for them.
A server producing responses of varying size to a Deterministic Request can use the Padding option to hide when the response is changing.</t>
        </li>
      </ul>
      <t>[ More on the verification of the Deterministic Request ]</t>
    </section>
    <section anchor="iana">
      <name>IANA Considerations</name>
      <t>Note to RFC Editor: Please replace "[RFC-XXXX]" with the RFC number of this document and delete this paragraph.</t>
      <t>This document has the following actions for IANA.</t>
      <section anchor="iana-coap-options">
        <name>CoAP Option Numbers Registry</name>
        <t>IANA is asked to enter the following option numbers to the "CoAP Option Numbers" registry within the "Constrained RESTful Environments (CoRE) Parameters" registry group.</t>
        <figure>
          <name>CoAP Option Numbers</name>
          <artwork align="center"><![CDATA[
+--------+--------------+------------+
| Number | Name         | Reference  |
+--------+--------------+------------+
|  TBD1  | Request-Hash | [RFC-XXXX] |
+--------+--------------+------------+
|  TBD2  | Padding      | [RFC-XXXX] |
+--------+--------------+------------+
]]></artwork>
        </figure>
        <t>[</t>
        <t>For the Request-Hash option, the number suggested to IANA is 548.</t>
        <t>For the Padding option, the option number is picked to be the highest number in the Experts Review range; the high option number allows it to follow practically all other options, and thus to be set when the final unpadded message length including all options is known. Therefore, the number suggested to IANA is 64988.</t>
        <t>Applications that make use of the "Experimental use" range and want to preserve that property are invited to pick the largest suitable experimental number (65532)</t>
        <t>Note that unless other high options are used, this means that padding a message adds an overhead of at least 3 bytes, i.e., 1 byte for option delta/length and two more bytes of extended option delta. This is considered acceptable overhead, given that the application has already chosen to prefer the privacy gains of padding over wire transfer length.</t>
        <t>]</t>
      </section>
      <section anchor="ssec-iana-security-context-parameter-registry">
        <name>OSCORE Security Context Parameters Registry</name>
        <t>IANA is asked to register the following entries in the "OSCORE Security Context Parameters" registry within the "Authentication and Authorization for Constrained Environments (ACE)" registry group.</t>
        <ul spacing="normal">
          <li>Name: det_senderId</li>
          <li>CBOR Label: TBD3</li>
          <li>CBOR Type: bstr</li>
          <li>Registry: -</li>
          <li>Description: OSCORE Sender ID assigned to the Deterministic Client of an OSCORE group</li>
          <li>Reference: [RFC-XXXX] (<xref target="sec-obtaining-info"/>)</li>
        </ul>
        <t> </t>
        <ul spacing="normal">
          <li>Name: det_hash_alg</li>
          <li>CBOR Label: TBD4</li>
          <li>CBOR Type: int / tstr</li>
          <li>Registry: -</li>
          <li>Description: Hash algorithm to use in an OSCORE group when producing a Deterministic Request</li>
          <li>Reference: [RFC-XXXX] (<xref target="sec-obtaining-info"/>)</li>
        </ul>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="I-D.ietf-core-groupcomm-bis">
          <front>
            <title>Group Communication for the Constrained Application Protocol (CoAP)</title>
            <author fullname="Esko Dijk" initials="E." surname="Dijk">
              <organization>IoTconsultancy.nl</organization>
            </author>
            <author fullname="Chonggang Wang" initials="C." surname="Wang">
              <organization>InterDigital</organization>
            </author>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <date day="23" month="October" year="2023"/>
            <abstract>
              <t>   This document specifies the use of the Constrained Application
   Protocol (CoAP) for group communication, including the use of UDP/IP
   multicast as the default underlying data transport.  Both unsecured
   and secured CoAP group communication are specified.  Security is
   achieved by use of the Group Object Security for Constrained RESTful
   Environments (Group OSCORE) protocol.  The target application area of
   this specification is any group communication use cases that involve
   resource-constrained devices or networks that support CoAP.  This
   document replaces and obsoletes RFC 7390, while it updates RFC 7252
   and RFC 7641.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-groupcomm-bis-10"/>
        </reference>
        <reference anchor="I-D.ietf-core-oscore-groupcomm">
          <front>
            <title>Group Object Security for Constrained RESTful Environments (Group OSCORE)</title>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Göran Selander" initials="G." surname="Selander">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="Francesca Palombini" initials="F." surname="Palombini">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="John Preuß Mattsson" initials="J. P." surname="Mattsson">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="Jiye Park" initials="J." surname="Park">
              <organization>Universitaet Duisburg-Essen</organization>
            </author>
            <date day="2" month="September" year="2023"/>
            <abstract>
              <t>   This document defines the security protocol Group Object Security for
   Constrained RESTful Environments (Group OSCORE), providing end-to-end
   security of CoAP messages exchanged between members of a group, e.g.,
   sent over IP multicast.  In particular, the described protocol
   defines how OSCORE is used in a group communication setting to
   provide source authentication for CoAP group requests, sent by a
   client to multiple servers, and for protection of the corresponding
   CoAP responses.  Group OSCORE also defines a pairwise mode where each
   member of the group can efficiently derive a symmetric pairwise key
   with any other member of the group for pairwise OSCORE communication.
   Group OSCORE can be used between endpoints communicating with CoAP or
   CoAP-mappable HTTP.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-oscore-groupcomm-20"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC7252">
          <front>
            <title>The Constrained Application Protocol (CoAP)</title>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby"/>
            <author fullname="K. Hartke" initials="K." surname="Hartke"/>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <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>
        <reference anchor="RFC8132">
          <front>
            <title>PATCH and FETCH Methods for the Constrained Application Protocol (CoAP)</title>
            <author fullname="P. van der Stok" initials="P." surname="van der Stok"/>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <author fullname="A. Sehgal" initials="A." surname="Sehgal"/>
            <date month="April" year="2017"/>
            <abstract>
              <t>The methods defined in RFC 7252 for the Constrained Application Protocol (CoAP) only allow access to a complete resource, not to parts of a resource. In case of resources with larger or complex data, or in situations where resource continuity is required, replacing or requesting the whole resource is undesirable. Several applications using CoAP need to access parts of the resources.</t>
              <t>This specification defines the new CoAP methods, FETCH, PATCH, and iPATCH, which are used to access and update parts of a resource.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8132"/>
          <seriesInfo name="DOI" value="10.17487/RFC8132"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC8613">
          <front>
            <title>Object Security for Constrained RESTful Environments (OSCORE)</title>
            <author fullname="G. Selander" initials="G." surname="Selander"/>
            <author fullname="J. Mattsson" initials="J." surname="Mattsson"/>
            <author fullname="F. Palombini" initials="F." surname="Palombini"/>
            <author fullname="L. Seitz" initials="L." surname="Seitz"/>
            <date month="July" year="2019"/>
            <abstract>
              <t>This document defines Object Security for Constrained RESTful Environments (OSCORE), a method for application-layer protection of the Constrained Application Protocol (CoAP), using CBOR Object Signing and Encryption (COSE). OSCORE provides end-to-end protection between endpoints communicating using CoAP or CoAP-mappable HTTP. OSCORE is designed for constrained nodes and networks supporting a range of proxy operations, including translation between different transport protocols.</t>
              <t>Although an optional functionality of CoAP, OSCORE alters CoAP options processing and IANA registration. Therefore, this document updates RFC 7252.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8613"/>
          <seriesInfo name="DOI" value="10.17487/RFC8613"/>
        </reference>
        <reference anchor="RFC9052">
          <front>
            <title>CBOR Object Signing and Encryption (COSE): Structures and Process</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>Concise Binary Object Representation (CBOR) is a data format designed for small code size and small message size. There is a need to be able to define basic security services for this data format. This document defines the CBOR Object Signing and Encryption (COSE) protocol. This specification describes how to create and process signatures, message authentication codes, and encryption using CBOR for serialization. This specification additionally describes how to represent cryptographic keys using CBOR.</t>
              <t>This document, along with RFC 9053, obsoletes RFC 8152.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="96"/>
          <seriesInfo name="RFC" value="9052"/>
          <seriesInfo name="DOI" value="10.17487/RFC9052"/>
        </reference>
        <reference anchor="RFC9053">
          <front>
            <title>CBOR Object Signing and Encryption (COSE): Initial Algorithms</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>Concise Binary Object Representation (CBOR) is a data format designed for small code size and small message size. There is a need to be able to define basic security services for this data format. This document defines a set of algorithms that can be used with the CBOR Object Signing and Encryption (COSE) protocol (RFC 9052).</t>
              <t>This document, along with RFC 9052, obsoletes RFC 8152.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9053"/>
          <seriesInfo name="DOI" value="10.17487/RFC9053"/>
        </reference>
        <reference anchor="COSE.Algorithms" target="https://www.iana.org/assignments/cose/cose.xhtml#algorithms">
          <front>
            <title>COSE Algorithms</title>
            <author>
              <organization>IANA</organization>
            </author>
            <date/>
          </front>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC7641">
          <front>
            <title>Observing Resources in the Constrained Application Protocol (CoAP)</title>
            <author fullname="K. Hartke" initials="K." surname="Hartke"/>
            <date month="September" year="2015"/>
            <abstract>
              <t>The Constrained Application Protocol (CoAP) is a RESTful application protocol for constrained nodes and networks. The state of a resource on a CoAP server can change over time. This document specifies a simple protocol extension for CoAP that enables CoAP clients to "observe" resources, i.e., to retrieve a representation of a resource and keep this representation updated by the server over a period of time. The protocol follows a best-effort approach for sending new representations to clients and provides eventual consistency between the state observed by each client and the actual resource state at the server.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7641"/>
          <seriesInfo name="DOI" value="10.17487/RFC7641"/>
        </reference>
        <reference anchor="RFC9175">
          <front>
            <title>Constrained Application Protocol (CoAP): Echo, Request-Tag, and Token Processing</title>
            <author fullname="C. Amsüss" initials="C." surname="Amsüss"/>
            <author fullname="J. Preuß Mattsson" initials="J." surname="Preuß Mattsson"/>
            <author fullname="G. Selander" initials="G." surname="Selander"/>
            <date month="February" year="2022"/>
            <abstract>
              <t>This document specifies enhancements to the Constrained Application Protocol (CoAP) that mitigate security issues in particular use cases. The Echo option enables a CoAP server to verify the freshness of a request or to force a client to demonstrate reachability at its claimed network address. The Request-Tag option allows the CoAP server to match block-wise message fragments belonging to the same request. This document updates RFC 7252 with respect to the following: processing requirements for client Tokens, forbidding non-secure reuse of Tokens to ensure response-to-request binding when CoAP is used with a security protocol, and amplification mitigation (where the use of the Echo option is now recommended).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9175"/>
          <seriesInfo name="DOI" value="10.17487/RFC9175"/>
        </reference>
        <reference anchor="RFC9200">
          <front>
            <title>Authentication and Authorization for Constrained Environments Using the OAuth 2.0 Framework (ACE-OAuth)</title>
            <author fullname="L. Seitz" initials="L." surname="Seitz"/>
            <author fullname="G. Selander" initials="G." surname="Selander"/>
            <author fullname="E. Wahlstroem" initials="E." surname="Wahlstroem"/>
            <author fullname="S. Erdtman" initials="S." surname="Erdtman"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>This specification defines a framework for authentication and authorization in Internet of Things (IoT) environments called ACE-OAuth. The framework is based on a set of building blocks including OAuth 2.0 and the Constrained Application Protocol (CoAP), thus transforming a well-known and widely used authorization solution into a form suitable for IoT devices. Existing specifications are used where possible, but extensions are added and profiles are defined to better serve the IoT use cases.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9200"/>
          <seriesInfo name="DOI" value="10.17487/RFC9200"/>
        </reference>
        <reference anchor="I-D.ietf-ace-key-groupcomm-oscore">
          <front>
            <title>Key Management for OSCORE Groups in ACE</title>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Jiye Park" initials="J." surname="Park">
              <organization>Universitaet Duisburg-Essen</organization>
            </author>
            <author fullname="Francesca Palombini" initials="F." surname="Palombini">
              <organization>Ericsson AB</organization>
            </author>
            <date day="6" month="March" year="2023"/>
            <abstract>
              <t>   This document defines an application profile of the ACE framework for
   Authentication and Authorization, to request and provision keying
   material in group communication scenarios that are based on CoAP and
   are secured with Group Object Security for Constrained RESTful
   Environments (Group OSCORE).  This application profile delegates the
   authentication and authorization of Clients, that join an OSCORE
   group through a Resource Server acting as Group Manager for that
   group.  This application profile leverages protocol-specific
   transport profiles of ACE to achieve communication security, server
   authentication and proof-of-possession for a key owned by the Client
   and bound to an OAuth 2.0 Access Token.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-ace-key-groupcomm-oscore-16"/>
        </reference>
        <reference anchor="I-D.amsuess-lwig-oscore">
          <front>
            <title>OSCORE Implementation Guidance</title>
            <author fullname="Christian Amsüss" initials="C." surname="Amsüss">
         </author>
            <date day="29" month="April" year="2020"/>
            <abstract>
              <t>   Object Security for Constrained RESTful Environments (OSCORE) is a
   means of end-to-end protection of short request/response exchanges
   for tiny devices, typically transported using the Constrained
   Application Protocol (CoAP).  This document aims to assist
   implementers in leveraging the optimizations catered for by the
   combination of CoAP and OSCORE, and by generally providing experience
   from earlier implementations.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-amsuess-lwig-oscore-00"/>
        </reference>
        <reference anchor="I-D.ietf-core-observe-multicast-notifications">
          <front>
            <title>Observe Notifications as CoAP Multicast Responses</title>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Rikard Höglund" initials="R." surname="Höglund">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Christian Amsüss" initials="C." surname="Amsüss">
         </author>
            <author fullname="Francesca Palombini" initials="F." surname="Palombini">
              <organization>Ericsson AB</organization>
            </author>
            <date day="23" month="October" year="2023"/>
            <abstract>
              <t>   The Constrained Application Protocol (CoAP) allows clients to
   "observe" resources at a server, and receive notifications as unicast
   responses upon changes of the resource state.  In some use cases,
   such as based on publish-subscribe, it would be convenient for the
   server to send a single notification addressed to all the clients
   observing a same target resource.  This document updates RFC7252 and
   RFC7641, and defines how a server sends observe notifications as
   response messages over multicast, synchronizing all the observers of
   a same resource on a same shared Token value.  Besides, this document
   defines how Group OSCORE can be used to protect multicast
   notifications end-to-end between the server and the observer clients.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-observe-multicast-notifications-07"/>
        </reference>
        <reference anchor="I-D.ietf-core-dns-over-coap">
          <front>
            <title>DNS over CoAP (DoC)</title>
            <author fullname="Martine Sophie Lenders" initials="M. S." surname="Lenders">
              <organization>TUD Dresden University of Technology</organization>
            </author>
            <author fullname="Christian Amsüss" initials="C." surname="Amsüss">
         </author>
            <author fullname="Cenk Gündoğan" initials="C." surname="Gündoğan">
              <organization>Huawei Technologies</organization>
            </author>
            <author fullname="Thomas C. Schmidt" initials="T. C." surname="Schmidt">
              <organization>HAW Hamburg</organization>
            </author>
            <author fullname="Matthias Wählisch" initials="M." surname="Wählisch">
              <organization>TUD Dresden University of Technology &amp; Barkhausen Institut</organization>
            </author>
            <date day="17" month="November" year="2023"/>
            <abstract>
              <t>   This document defines a protocol for sending DNS messages over the
   Constrained Application Protocol (CoAP).  These CoAP messages are
   protected by DTLS-Secured CoAP (CoAPS) or Object Security for
   Constrained RESTful Environments (OSCORE) to provide encrypted DNS
   message exchange for constrained devices in the Internet of Things
   (IoT).

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-dns-over-coap-05"/>
        </reference>
        <reference anchor="SW-EPIV">
          <front>
            <title>Star Wars</title>
            <author initials="G." surname="Lucas" fullname="George Lucas">
              <organization/>
            </author>
            <date year="1977"/>
          </front>
          <seriesInfo name="Lucasfilm Ltd." value=""/>
        </reference>
        <reference anchor="ICN-paper" target="https://ieeexplore.ieee.org/document/9525000">
          <front>
            <title>Group Communication with OSCORE: RESTful Multiparty Access to a Data-Centric Web of Things</title>
            <author initials="C." surname="Gündoğan" fullname="Cenk Gündoğan">
              <organization/>
            </author>
            <author initials="C." surname="Amsüss" fullname="Christian Amsüss">
              <organization/>
            </author>
            <author initials="T. C." surname="Schmidt" fullname="Thomas C. Schmidt">
              <organization/>
            </author>
            <author initials="M." surname="Wählisch" fullname="Matthias Wählisch">
              <organization/>
            </author>
            <date year="2021" month="October"/>
          </front>
        </reference>
        <reference anchor="I-D.bormann-core-responses">
          <front>
            <title>CoAP: Non-traditional response forms</title>
            <author fullname="Carsten Bormann" initials="C." surname="Bormann">
              <organization>Universität Bremen TZI</organization>
            </author>
            <author fullname="Christian Amsüss" initials="C." surname="Amsüss">
         </author>
            <date day="3" month="February" year="2022"/>
            <abstract>
              <t>   In CoAP as defined by RFC 7252, responses are always unicast back to
   a client that posed a request.  The present memo describes two forms
   of responses that go beyond that model.  These descriptions are not
   intended as advocacy for adopting these approaches immediately, they
   are provided to point out potential avenues for development that
   would have to be carefully evaluated.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-bormann-core-responses-01"/>
        </reference>
        <reference anchor="RFC8323">
          <front>
            <title>CoAP (Constrained Application Protocol) over TCP, TLS, and WebSockets</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <author fullname="S. Lemay" initials="S." surname="Lemay"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <author fullname="K. Hartke" initials="K." surname="Hartke"/>
            <author fullname="B. Silverajan" initials="B." surname="Silverajan"/>
            <author fullname="B. Raymor" initials="B." role="editor" surname="Raymor"/>
            <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>
      </references>
    </references>
    <section anchor="change-log">
      <name>Change log</name>
      <t>Since -07:</t>
      <ul spacing="normal">
        <li>Use of "Consensus Request" instead of "Deterministic Request" in one sentence.</li>
        <li>Added DNS over CoAP as possible use case.</li>
        <li>The computation of the Request Hash takes as input the aad_array (i.e., not the external_aad).</li>
        <li>Corrected parameter name 'sender_cred'.</li>
        <li>Simplified parameter provisioning to the external signature verifier.</li>
      </ul>
      <t>Since -06:</t>
      <ul spacing="normal">
        <li>Clarifications, terminology alignment, and editorial improvements.</li>
      </ul>
      <t>Since -05:</t>
      <ul spacing="normal">
        <li>Updated references.</li>
      </ul>
      <t>Since -04:</t>
      <ul spacing="normal">
        <li>Revised and extended list of use cases.</li>
        <li>Added further note on Deterministic Requests to a group of servers as still protected with the pairwise mode.</li>
        <li>Suppression of error responses for servers in a CoAP group.</li>
        <li>Extended security considerations with discussion on replayed requests.</li>
      </ul>
      <t>Since -03:</t>
      <ul spacing="normal">
        <li>Processing steps in case only inner Observe is included.</li>
        <li>Clarified preserving/eliding the Request-Hash option in responses.</li>
        <li>Clarified limited use of the Echo option.</li>
        <li>Clarifications on using the Padding option.</li>
      </ul>
      <t>Since -02:</t>
      <ul spacing="normal">
        <li>Separate parts needed to respond to unauthenticated requests from the remaining deterministic response part.
(Currently this is mainly an addition; the document will undergo further refactoring if that split proves helpful).</li>
        <li>Inner Observe is set unconditionally in Deterministic Requests.</li>
        <li>Clarifications around padding and security considerations.</li>
      </ul>
      <t>Since -01:</t>
      <ul spacing="normal">
        <li>
          <t>Not meddling with request_kid any more.  </t>
          <t>
Instead, Request-Hash in responses is treated as Class I, but typically elided.  </t>
          <t>
In requests, this removes the need to compute the external_aad twice.</t>
        </li>
        <li>Derivation of the hash now uses the external_aad, rather than the full AAD. This is good enough because AAD is a function only of the external_aad, and the external_aad is easier to get your hands on if COSE manages all the rest.</li>
        <li>The Sender ID of the Deterministic Client is immutable throughout the group lifetime. Hence, no need for any related expiration/creation time and mechanisms to perform its update in the group.</li>
        <li>Extension to the ACE Group Manager of ace-key-groupcomm-oscore to provide required info about the Deterministic Client to new group members when joining the group.</li>
        <li>Alignment with changes in core-oscore-groupcomm-12.</li>
        <li>Editorial improvements.</li>
      </ul>
      <t>Since -00:</t>
      <ul spacing="normal">
        <li>More precise specification of the hashing (guided by first implementations)</li>
        <li>Focus shifted to Deterministic Requests (where it should have been in the first place; all the build-up of Token Requests was moved to a motivating appendix)</li>
        <li>Aligned with draft-tiloca-core-observe-responses-multicast-05 (not submitted at the time of submission)</li>
        <li>List the security properties lost compared to OSCORE</li>
      </ul>
    </section>
    <section anchor="sec-padding">
      <name>Padding</name>
      <t>As discussed in <xref target="sec-security-considerations"/>, information can be leaked by the length of a response or, in different contexts, of a request.</t>
      <t>In order to hide such information and mitigate the impact on privacy, the new CoAP option with name Padding is defined, in order to allow increasing a message's length without changing its meaning.</t>
      <t>The option can be used with any CoAP transport, but is especially useful with OSCORE as that does not provide any padding of its own.</t>
      <t>Before choosing to pad a message by using the Padding option, application designers should consider whether they can arrange for common message variants to have the same length by picking a suitable content representation; the canonical example here is expressing "yes" and "no" with "y" and "n", respectively.</t>
      <section anchor="definition-of-the-padding-option">
        <name>Definition of the Padding Option</name>
        <t>As summarized in <xref target="padding-table"/>, the Padding option is elective, safe to forward and not part of the cache key; these follow from the usage instructions. The option may be repeated, as that may be the only way to achieve a certain total length for the padded message.</t>
        <figure anchor="padding-table">
          <name>Padding Option</name>
          <artwork align="center"><![CDATA[
+------+---+---+---+---+---------+--------+--------+---------+
| No.  | C | U | N | R |  Name   | Format | Length | Default |
+------+---+---+---+---+---------+--------+--------+---------+
| TBD2 |   |   | x | x | Padding | opaque | any    | (none)  |
+------+---+---+---+---+---------+--------+--------+---------+
]]></artwork>
        </figure>
        <t>When used with OSCORE, the Padding option is of Class E,
which makes it indistinguishable from other Class E options or the payload to third parties.</t>
      </section>
      <section anchor="using-and-processing-the-padding-option">
        <name>Using and processing the Padding option</name>
        <t>When a server produces different responses of different length for a given class of requests
but wishes to produce responses of consistent length
(typically to hide the variation from anyone but the intended recipient),
the server can pick a length that all possible responses can be padded to,
and set the Padding option with a suitable all-zero option value in all responses to that class of requests.</t>
        <t>Likewise, a client can decide on a class of requests that it pads to reach a consistent length. This has considerably less efficacy and applicability when applied to Deterministic Requests. That is: an external observer can group together different requests even if they are of the same length; and padding would hinder convergence on a single Consensus Request, thus requiring all users of the same Group OSCORE Security Context to agree on the same total length in advance.</t>
        <t>Any party receiving a Padding option MUST ignore it.
In particular, a server MUST NOT make its choice of padding a response dependent on any padding present in the corresponding request.
A means driven by the client for coordinating response padding is out of scope for this document.</t>
        <t>Proxies that see a Padding option MAY discard it.</t>
      </section>
    </section>
    <section anchor="sec-ticket-requests">
      <name>Simple Cacheability using Ticket Requests</name>
      <t>Building on the concept of Phantom Requests and Informative Responses defined in <xref target="I-D.ietf-core-observe-multicast-notifications"/>,
basic caching is already possible without building a Deterministic Request.</t>
      <t>The approach discussed in this appendix is not provided for application. In fact, it is efficient only when dealing with very large representations and no OSCORE inner Block-Wise mode (which is inefficient for other reasons), or when dealing with observe notifications (which are already well covered in <xref target="I-D.ietf-core-observe-multicast-notifications"/>).</t>
      <t>Rather, it is more provided as a "mental exercise" for the authors and interested readers to bridge the gap between this document and <xref target="I-D.ietf-core-observe-multicast-notifications"/>.</t>
      <t>That is, instead of replying to a client with a regular response, a server can send an Informative Response, defined as a protected 5.03 (Service Unavailable) error message. The payload of the Informative Response contains the Phantom Request, which is a Ticket Request in the broader terminology used by this document.</t>
      <t>Unlike a Deterministic Request, a Phantom Request is protected with the Group Mode of Group OSCORE.
Instead of verifying a hash, the client can see from the countersignature that this was indeed the request the server is answering.
The client also verifies that the request URI is identical between the original request and the Ticket Request.</t>
      <t>The remaining exchange largely plays out like in <xref target="I-D.ietf-core-observe-multicast-notifications"/>'s "Example with a Proxy and Group OSCORE":
The client sends the Phantom Request to the proxy (but, lacking a <tt>tp_info</tt>, without a Listen-To-Multicast-Responses option),
which forwards it to the server for lack of the option.</t>
      <t>The server then produces a regular response and includes a non-zero Max-Age option as an outer CoAP option. Note that there is no point in including an inner Max-Age option, as the client could not pin it in time.</t>
      <t>When a second, different client later asks for the same resource at the same server, its new request uses a different 'kid' and 'Partial IV' than the first client's. Thus, the new request produces a cache miss at the proxy and is forwarded to the server, which responds with the same Ticket Request provided to the first client. After that, when the second client sends the Ticket Request, a cache hit at the proxy will be produced, and the Ticket Request can be served from the proxy's cache.</t>
      <t>When multiple proxies are in use, or the response has expired from the proxy's cache, the server receives the Ticket Request multiple times. It is a matter of perspective whether the server treats that as an acceptable replay (given that this whole mechanism only makes sense on requests free of side effects), or whether it is conceptualized as having an internal proxy where the request produces a cache hit.</t>
    </section>
    <section anchor="det-requests-for-notif">
      <name>Application for More Efficient End-to-End Protected Multicast Notifications</name>
      <t><xref target="I-D.ietf-core-observe-multicast-notifications"/> defines how a CoAP server can serve all clients observing a same resource at once, by sending notifications over multicast. The approach supports the possible presence of intermediaries such as proxies, also if Group OSCORE is used to protect notifications end-to-end.</t>
      <t>However, comparing the "Example with a Proxy" in <xref section="E" sectionFormat="of" target="I-D.ietf-core-observe-multicast-notifications"/> and the "Example with a Proxy and Group OSCORE" in <xref section="F" sectionFormat="of" target="I-D.ietf-core-observe-multicast-notifications"/> shows that, when using Group OSCORE, more requests need to hit the server. This is because every client originally protects its Observation request individually, and thus needs a custom response served to obtain the Phantom Request as a Ticket Request.</t>
      <t>If the clients send their requests as the same Deterministic Request, then the server can use these requests as Ticket Requests as well. Thus, there is no need for the server to provide a same Phantom Request to each client.</t>
      <t>Instead, the server can send a single, unprotected Informative Response - very much like in the example without Group OSCORE - hence setting the proxy up and optionally providing also the latest notification along the way.</t>
      <t>The proxy can thus be configured by the server following the first request from the clients, after which it has an active observation and a fresh cache entry in time for the second client to arrive.</t>
    </section>
    <section anchor="open-questions">
      <name>Open questions</name>
      <ul spacing="normal">
        <li>
          <t>Is "deterministic encryption" something worthwhile to consider in COSE?  </t>
          <t>
COSE would probably specify something more elaborate for the KDF
(the current KDF round is the pairwise mode's;
COSE would probably run through KDF with a KDF context structure).  </t>
          <t>
COSE would give a header parameter name to the Request-Hash
(which for the purpose of OSCORE Deterministic Requests would put back into Request-Hash by extending the option compression function across the two options).  </t>
          <t>
Conceptually, they should align well, and the implementation changes are likely limited to how the KDF is run.</t>
        </li>
        <li>
          <t>An unprotection failure from a mismatched hash will not be part of the ideally constant-time code paths that otherwise lead to AEAD unprotect failures. Is that a problem?  </t>
          <t>
After all, it does tell the attacker that they did succeed in producing a valid MAC (it's just not doing it any good, because this key is only used for Deterministic Requests and thus also needs to pass the Request-Hash check).</t>
        </li>
      </ul>
      <!--
MT: This second bullet point seems something that can already be said in the Security Considerations section.
-->

</section>
    <section anchor="unsorted-further-ideas">
      <name>Unsorted further ideas</name>
      <ul spacing="normal">
        <li>All or none of the Deterministic Requests should have an inner observe option.
Preferably none -- that makes messages shorter, and clients need to ignore that option either way when checking whether a Consensus Request matches their intended request.</li>
      </ul>
      <!--
MT: How can clients start an observation then? That would require an inner Observe option, right?

Also the guidelines in Section 2 suggest to have an inner observe option, regardless the resource being actually observable.
-->

<ul spacing="normal">
        <li>
          <t>We could allows clients to elide all other options than Request-Hash, and elide the payload,
if it has reason to believe that it can produce a cache hit with the abbreviated request alone.  </t>
          <t>
This may prove troublesome in terms of cache invalidation
(the server would have to use short-lived responses to indicate that it does need the full request,
or we'd need special handling for error responses,
or criteria by which proxies don't even forward these if they don't have a response at hand).  </t>
          <t>
That may be more trouble than it's worth without a strong use case (say, of complex but converging FETCH requests).  </t>
          <t>
Hashes could also be used in truncated form for that.</t>
        </li>
      </ul>
    </section>
    <section numbered="false" anchor="acknowldegment">
      <name>Acknowledgments</name>
      <t>The authors sincerely thank <contact fullname="Michael Richardson"/>, <contact fullname="Jim Schaad"/>, and <contact fullname="Göran Selander"/> for their comments and feedback.</t>
      <t>The work on this document has been partly supported by VINNOVA and the Celtic-Next project CRITISEC; and by the H2020 project SIFIS-Home (Grant agreement 952652).</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA9V9WXcbR5bmO35FDn1Oi3QBsEQtLtNT46Yp2mbbWkakyt2n
qo4rgAwAWUxkYjITpGBb/VfmZX7DPPVbzQ+bu8aSC0ipqrtndI4tCkxExnLj
rt+9dzKZjG5OksejUZM1uT1JDs7MfGXNLLfJq8uzV2/OD0ZpOS/MGn6XVmbR
TMy63tq6nszLyk7m8DQ+PClr+nduGls3o2xTnSRNta2b44cPv3h4PKobU6Q/
mbwsLP3CjuamOUnqJh3V29k6q+usLJrdBn57cX71zeh2eZKclW/Okx/L6jor
lsm3VbndjK5v8ePT12OZ3DhZb/Mmm5u6GSc4F3h0nGyq8t1uZLbNqqxORpMk
K2r42jQ5Xdd//be6HiUJr+dsVWV1k5ki+M283BZNtTtJTmHyVWbgI7s2WX6S
zPXpf5QdmM7L9WgCD9D4L6bJVZaXc+OGf2Gqeek/LCtY05uLy/Pk9Gv4J4xu
LWzBRW0WfymrtF4a2KPk+BgnkTUwg+/hdYamlMJol+eTR8+ePHmYXDbl/HpV
5utwtpe3NrWFn+wa3z1t6N3/WGXT2o5GRVmtTZPd2BN47mLyfJrZZsHHuMTd
heWsJ7Os7v5aDtc9hU+8+ebs+NGjL+THz4+fHsuPv3302P/4+RP98dmjx/Lj
Fw/ds/AjfXr26vJ8epovyyprVmuaQZLoASb0h7bv4vTlKf07BTo7SRYmh4Xh
v4V6cZzEj8O/MtUSN3rVNJv65LPPbm9vp3CKZgojfmaA8JbF2hZN/dm8rC39
b/pu1azzT4wfZ5QVi3D3cMXPnjzSVTz6/Kn+CPQe7Z+Z28m13QU7zJupD+lt
ym+zZetXwf7Palvd2Ikj9klRNtkCfmzg2vQcWFrUk/LGVvAvs8FfH1z+ODl/
ffH7g76tncjfQsnfTpMftvAW9ymT87cWNswGv+IzePTF55+HR3AJ+538aCp+
Buad2Rp3D1gLfXWR5evkhyadHuC0Ls5eTjZmY6v7TAyu8Ld//bciLf/P/zRF
a3Zntrju/rY7gL/p0bd7OEHP96+mOMTlfLXO0qY1xNWqXJu6+/vWEMAmfvzr
/1rlWT1ftUZ4YZpmlcEY8QPKmIkDAvdbr7eFnHxyC+QprBB4y/nl1WKbJy+Q
SjamanbJ6XwOxJU0ZWKS58BfJrBNwNXmyY92lpQLmDQwzPogOM7jh8ePJo8e
9t6czFr7bpMDgU3xR7pAIBy2eH0+++Lp8dOHDx+ORvAPZF8wwuX5D9/AxP8A
92Lyz/DnTwej0WQyScwMmJ+ZN6MRr2neXVOzsrDUAp/LCpsmp5tNrg+8rkpg
gWWeHKIoOAK+XyQzC6Q231bwqC3SSVNO4K9kWzvRkbya/cXOm+QSn4L5JXCf
ozfo7p0XN1lVMktIDuW7tMNH4wT4DWzlvCphU5HzgoyAr2ZFY6u1TTNT7Uj4
AMlPk+/KWwtXcAxryeqkzlIQjHZT09LkoQewFVmeNfAjnhEKMJtUtt7AvOCj
RVWu6XFgQ8usSIgJVIf10RQPDsbc2LnjAvi9Bo6m5mF44B0eMrysgaXDRP3Q
ptE5jJPZDldQlel2jts1xyeKelvD4/8DeBNsw+0qm68SU+ySeZ7BxsDzQFBL
PjyDE4PNhgWAdJdJwpRZNG9y/ajGb+FqaqB2/vKU6QFuS5qDgPokuZB50IJ+
+SQL/vl+NLr6AKL45ReRSu/fJ/V2sykrWAcd37JLc2OiBrifIIHnsN24gLfP
X8OK0+TitdcxYNQ9cvP9+ykswG9MRNXWk9U4se9AayqWsIQ1XE+zpEMbImI4
nr8zHXeW0ZbvsJLR6I2ePu6CpxxPTe6i8nrXoKYguYWv0mVV1tBCTJ7r03Y9
A5oYJ9nUTscJyDOgnnyHD+GQeKWKlEh2nm2Q5oDs8SoBWaKaZ29wR2ioSQ7X
LEeyXcAdA+ZjkPCnSC4ZHnle3sJfyeBl3Ql5Z0IfRuaGa8GpyEp42kDkm3Kz
RTU3yRq5a7wTrXsb3VlgBz/AV2DMYuwYwI52ZwO8JJvByiu7gf8Tq5aLpxeG
X00vMe41/BY3B9jIBW5WuSyyn2GZBs8tsTlMYuauoO4u32LYIsej4FnPz1q7
gmezZ0vo2GobkUbAaOqk3BhYzhheMHe2BRzqylaNfdfQnUFplc1hW2EqabZY
2Aq5DE+zjrehWQHv4s3FQzDMTjY5UD+ZBm7zbsttnjJr8kOGU2TyHtNW4Yzh
lssCsyqmYvgWylEgOZDuW9iV7jB4lrhRu8zCW40QxiprkNW6Ex/Lrq7NtWVJ
cAuavFXTZYhbb0qg2hxNDqFqlbqJSVN4rKbB4HO4vJ4l4r21BW73vWSCSDfk
JyIaeK9NZQMSqHtpAF+Fz20Lc4t/wzPyeziVpS1sZXIQWiXPEo4EyLVJZtss
T2FAPl64wHO7oSM46MigAxgow6sNtIa/hJte0WXu8rL9uvL792OabWoXwC7r
5OC5RX4Ao4P+N0/e6OuIKOBNN7YQiTc3VcEbCzOskQpkxnAop8DXlFpvs5rO
Em4yEZ8JqDv59vwKReM351dn3zlKxR2jWwFfScPpyHLXmy1QuhOdHeIbi4Aw
yY0Bk5XnyJu6MVkFE7K93BmuXgPnzRySztpRbQ1cG15slT3ZXjJG/kUsmba8
/77GbAr4YHZtP/LciHhwzVmlxKmvxCNVNYO2M0eRswuJFjjFNmsCz4bTQc7u
oTDBm7e1RcFKtwQVIK99oIYE9AgzuEFKj0gBD7WyoHTD7/wZlizFaXNgYnB6
jklPR5e48bUKeJgN2EekI/prhWtMM1AAYXIsicc4p7KCe4FvXCI7LOF1FVBU
nVW0bD8SLPoieHqeW1MBqYFSkuZWz5n0qQd130zGI8Ma36wqDQhd3QzZw0a1
rDprtrJD5bbBW0uDR0QOhFHb8Qg/h11focaUJxnwMYscjqmZlF0YGqU3MJHb
Eqaa31iwfEefAjOFT+E/vAJyIyZOSs6yIkUbR4kSbA9LOt7CXb+63FbwCZqe
qD7wkX6JJIWjE5Oi21WkgSDAAXpZB5qOh3w9VuYGWWf/C5gN0e0Rkqb5oZvB
VkdwQJ98kryFBZzB7tSj0Y/w1WSRVWvir9sNWmtM6ikI+RvihswF2D+2Rm29
ztYZcp0U1KU5Kia2ma88EeZo36HdZ/R208dNtoZ7egZ8AUgURyRmFz9sREmI
b7dX466tmjqgly7gFifAZMDU2DZ8f3Lb1IEqAnuAtCH3YJExL1wJvYA4LrZ8
j3/5RRwZoNbj/rHGRySdfK2Ksr+//SeEzJ35f8pkEUhUEkxZ7fkezMPiAnCa
sDC4AHhEvBFz2SMUtn5PaIG3eF50oH1n5mfoFf2pHHJl8x0RWBHqqmIiLoDj
wk2SW0QHTyzLmyg0sb7xcdUfy3ctMr+YNX741qoujhoGKNnwcr+zwGSa7YZs
UaBkNkTpuq7Rw0krZEvJ2U6112/wYWZgopuLkGaaJI8HPH4IOiqsHnjPRJW2
CUyFl/v+/VHP/l+o168snOfkpQX2wz7pw4uzl0e0nLV3uQBXru06K+JZsNJb
olUDJEZ6Kk6fflBtS2ylLXJ0pDpS3WBDd8V8BZZcCZyix7IUX0BOoge3JRpT
yDVgjYlZLiu7VB4EQsqC8mJqb1igIRLqkJHuCOSjLju0d7/eid+BPActOcqy
atKra+LhDpDQIP2g1ozXM7ybpkHWf49dx+Fw6jOD+5vCGssdGcfj1oV1z9d7
r+nzl5feesc7DYyuqNHPAI+TB4EOon3dIs8sXi5mN2i5rdds8sKq8LaJpBd9
vAl5sb73b9h/VL9Jw4tZ3Qx09UXWeNeT+qRIgQHBrLqvmFqqHpEy5vVcNGR1
O6KdYrl2Rcde5uVyl8A/f/mk8R+In+faggWKYZHk4MXby6uDMf+dvHxFP785
/+9vL96cP8efL787/eEH94M+cfndq7c/PPc/+W+evXrx4vzlc/4yfJq0Pnpx
+i8HLJ0PXr2+unj18vSHgx5mVsmGMZfewBax2Q361rzKZkzAX5+9Th49YW8U
hktAbNHPGBmBn5Ho+FUkNfmfsO07VKiApZGeibaF2YDqmrOxWq/K2yJBhZO8
NKB/idJr3234nHleCwPSH0SHOGpgi5lnitlC6qTQqPeVkVCF361tsypTMVRk
yo+PkWD7vFvshOoh95aDbMwRGhoPw0Dv3+uPj/GXQvL8umePHquxFhnj93Je
taxkVtnZmSiGN9s9eG0Ke8u7M0V978yZnsKQTkBYRY4FonXn3FQFBq8sqfpw
bnAGcJqGne+R/Qc3hpTBKYZs+lQPEG85aDE3ljxCCzxaGlV4Y8v7Fm2MuI5E
21yV5MtBZ0lhyR1bVh1XbMsQSpLktLsBoMeSH03tArVGQFACS4DtFdc1xV5R
w0P68dcfWC3yNXa+6HcP7XQ5HSdX5bVFOyR5IdL94vmRcziIHEABt61Dv5Db
DTFyb1F5VgeqyYj+D2aBtdVZ0kEC4rJAlxldNlLU/fg0qxqnpZq7ell4j9QP
He9SxnRFh0YmBl6KIXsEzx8JQHwjY3Q2sGs9MDECZx+dbfedKSwWt4qHaWxy
6IwKjGseqUCLnSlTXYS80mnthbVpzV6IebXbNC4ME78VBVSBXKchv080SyDh
Q1y4fWfQhMOPGlQw2CLaGCDaW+NmYtOjMU6GqYbvqZsEEGq22PF1o4siO0xT
7ZkV+QPI6QeK8Txr1F/Ak6PLHWscZ7R8vN+ghaIVgSqW93QCQYX3Y4xkQvyi
TC6Roiv4C16NR/2SzBN0Y6O+BoKcVEWUYeiAYSYGv3ujzmycPjk/HT3xTX5h
CrgFFWrDwFE2PVoSz5lH5OB1TTsHJ5LBZHRmF89RUuBBsBMgcrpPk2+2FX6M
LKFPFeOX0L2nzcYn8Jfr7ZoYf4l+7YbtgewGrDXUgeqVQSO0z8vfs/cRc20f
pZJzqg7rvulNad/ELhlQJbNIm/zll9rOJ5HzwZkCJDU+Ta6y+TWs7MNmJ851
YHs2X9CRkvjB16j/nJR6YbprUlgd0yfad94l+BU6/MDgqzUWyicYuZtIcrfm
hY4H57D1c6RQnedtt4ZuVIHk0b9p0xFTJHmAmt2G/DHxvuhNfA0DNaAoOnYU
7vUHmpm0bxd6SA29LzgdJlPdUrWRZlWWLpnRL81GI1KwB7q9qG92vfj0IJrR
vZ4Z0EdFpyhKfgB/L3rpEEMPXd4aovIUkjV27ZjeT9fAtT9z/9pkN8S2yYG3
DAT6OPzCT3PmGEcjd8agctZi2MxKCcXJNx7U4l3y4WT46PT0+di56lF/NAuM
SZHEqnhDgSoO9K3opjNZXh9MeenOD6g2gC6dJbwTxxoBnqlTrn+XkTkFUz4Z
kTQmqwsMExhZPX94f+BqLLI8tylKyrVB/u7tYWHZzPtNjmvyMTQUQH5Sh3ry
9Jh6GdorTswMbLQj8XJ6QSkhpSZDi3lO0Ypwi8nDskB2fIve4LZgDOTv6LJ3
S+habUllDPdAd4qDw8ry1BPc0o+nPqjHpiWwZTpaIP8bdKihkUF+U++zgUHR
zRlrn+xLE64Oogz/tcYgZob6Si5ufLYReUamn0+3X0VEu/cGjhNecVYN0I5Q
BZimwCZAQzwkhouKBeraOJe7rQScfWVvspo46swuUD9G5RhfMHl0fNS2ItLS
8mv/+IdkZ5uvkj/+KVnCXiFxgsDbZimjB8A2K29ZaydExjDP0IMVLVA84SgQ
4KArdjiSAC4XZAnU2yVIWsF8obQKiQ8VYGQSRk6FZqUUl5yCmr2hvWP+wa64
tOQrYMTdQQxFGfhXuIMzdIAVBW+is/eRXe95PSizqD6Wy8psQO9DRWKlccN4
Wlei1xFDF2YppqegW3p9tKYt11Fm6Dbj2ya82HCefVdcrYbQd0PzP8tBuUrO
dc8OQcvDFaFBVTCGYKkhEbbHjhLyavL3Ltz3toX7Jkt6pU9cKPBjYMNIM30D
qhzOTYMcDZUx8oimaHMZknritZeXOazFuryRXcNloXZICI45oUS2czELmXPN
bUYxp0+TU+SIBUEc8x2LW7OsQBmfELhIJDy5vflFm9zMuwrGpqyFcxe6yDGh
X5MG3Xe0fuHJoKhmN85jF9ijDtzi1GSxlt1u0E2B/6OpqPYCnqNBe7JBI4I0
Mo4ZZz8jM24PmjS32dx6FAtZilmx2TY4XyM+LWb5OeJX6EYL86WVncP5FehM
AYYOPOHS3U52cRc7Xc/NMWiSN2WWdslQdsnLbSQK8tSnoFmnW+AKliNhoLa/
MaQKkv4mxsiDQEd4MPb/BK3igVcrvo3Uigc9esWDI3ItWTgftCMXCGOoxRfF
5037jhZ2iReUpAEyt00Oy0ZH65TZJW8YrxZXhseDW0fOW4IKKL0Ky/VqGSsn
MgAyqOQvW6A5egO+T/aKuYmzreXjyrITG6lS5bruXFvXcNs/BR4+Gp2mLGiJ
A1eWr1pATxnCt+pt5Xhl5xQjoIR9tyFvQdo6XDEQ6Lm52TQI9AJTLECe0X7X
SIUghkFUm4LoYB7dkQ4dk6+W7evobRiMqYFh0vaTi2Nmydsi2Jk0BHnt14jp
27wlclzk64TROVIS2oiwi86j7MxDnbza/RVeGIcw8tLOO0+V3REgOPs52oJh
k3gN5s0M0Q7IAYHaiC7gGHJCX4l0FwxLKNv/+Kfp6GIRqmzwW9aJEMeB2q5X
KcWJiqKuZo4ovjVkthmF+Q3L2ZFEgtfZcoUOdyJoEWq6If593rnH/MMtHj6J
NN2siIEdoKmStDS5A8eYiA9R5B3jZoUFaiXdzb24RvaI9yOjw/QQi5SMpwHL
Gr32e6xp0Z1qiY4q2saocMeJqecUaL+i2IaiIQYAXahEF86biFhBDM073g3i
oKx4VaRc9U58nwOVYxPx194W/gs6xL6FT7b+C7AJZ7JEP9Pg9wMzJHmKZrqH
JdbJGikQmBujdDku6K7ZdEhRJSfNtvEKqs3pGChkiXc1+1lZpUMOif7pMVbu
eAiFRio8KZ+XlnWIDIiqSl6xfe+UzDJ56HysRZmw+e+UdwfvJH8l60D41LYJ
hiL6aY7U/0s2Lo+jcAwQvhP/SQjFw7umgU4GfZYeZ+NgU26HtxtMxzFrB5wM
5yu6Eqc2cZwQ71TnxYhyBYukFvSfIBHe7dSzwQg9Ulx88KFtM0XeTJED4oUj
adDd63Hg1A/ERs+hHOLJdraZf3nEdAecDrk7eqI8g6AQCsvWHVgSeV2OeRtY
fey6qoVfDt1AMLrAeCfUKPJt5QMqZGqQGHS/s2VRCiymdz1ZoeI4cPGekuYB
hNMoaZ9fmWXwlTB6YJAE1qhevmIUK7mhNRQM774VcOic4w6yRO9nwrHx6xQS
9h4PFjezvJxfY+SilNso3oTrorwtJnCvcisDwLyBQOj5CXF10twXBJBem3co
VHF6JAkYiMMbwm9IDuuf3/3u2RFGBlF3Ihx5Tjxmqs5I2rjau/rxPuSwwREI
pyz44tcUAI/gE6gTO/TOyuabGrEZwBh+tmKWOB2KJKIuoPJq0MZWE0VxoOPa
oAaEvuH/+l8mk9GLqxMKEJWoWiT1Z921fCaB3OCj0WTy3/B2vdq6/Y73TyCK
1iMrWO6i4NTgvX03Rx3VgNm+AQU8RPtsa4IQvLh6S5tPN/kQ9ISvz99coYWM
ccrHx4/RmVDrw0FOzpi8PluW7igBFW/xJWUNSsiCOELgo9pkeKYmPApaGUtq
EukB3BRYEQiLo6n6A17jSRSO4Dvu7w3/HqbcwpvkIA4a0jpS5Cam2qEX0SP6
UsTl2Agioe4xThTyscdhh7ziCrIKbKpi2aw68G9c28CXRfsj/WBOhvYhyCi8
Gvw1d7OJ2QdRV95YlymEW2DFnjMhIK4p4U7KxMZ8Op4M2RgmrrEukeXBG2Hv
qnhegxbsXVTOwwc0zh8whX+aqCYhX3D8BCUR84Lz+aqUU6+FNjExkR1dQ65+
ZQ90+HWI9CLO6YeUwMRMITZE5QPnRPFBr+Yckrw50rmRda1RSn01HwcKWO+T
pdRiB2bxfMrxNPECbjCXTMDSNBibkn41LNJ5l2Q1t7rt4hjFdApbr0A5ovk5
xcAbuwNrrRGpulP0v/pY+VKy37y2miJRsXwjW9ImAeBaIWoEE2wydFikXyYL
MC23jDJhfQEXtCbrFIS4mByI/OQIL4ciazY+MIBrTa2bSYM2O4bMLRaolYNu
hugEctsyNFvUX2TNFF1yZkTNIJ16j9qb0tckRkIeZ3L0UPxNvkBago9FowGT
HF7b3Zh9KEdiX24V0Ox9LJwsQpxPvGm6rh4rgcA0ThAPwszCrA9SBFGlpvQf
1B88EQa3ge53NGNag6QDduEJsKHPMzI5m526RzFmsCVKneGxw5LmEjPdbBh2
2Os7XWyLuerVzIAxuN6Iv0onqJuDhvJGTUCCog3s1SEnX6kvUtk5PUmuBRmY
QDsMWT9S3DKI1G3t94myZ9CD5CQAB6QLylo5BS6FyjrqMYLKCxfJ2g1HN9RX
XG8dNpQZsnMiIepWvPb+IRTWBRq2qDfWHurPnh80rrcVcl1M1gA+s96ISYMW
FN+NrFbkHeIB3iHjIqP7KKEjN5RPar0HiggoRrJ7jyATKwqXIfUehl4yjb9G
QQVy5+L3dK5lgWsWtOqlGNBPp8e4KQ4XdRTll9rkycNkhtL7BnhGsO5ocArz
7ICtkMPJb2+LJbFnNpw0r0i4LV2JtEv1AxImOfdAG7ZDB7ds7hW+RhQiYIQ+
NiDIA5+WH8XjiJeD8YAkhoesGpTwRZd2x6JX3BCNy8MqN+S4tngRqxIObsyv
ZDbIF5OpYmj+ykXIq81f8LsTfym4qIgR2U8raP9SfGbsaU9ygtK9txsJmvyX
5E5GPiHcA9/pfe9g0dWi9nFgQRJtdCO8O8HlKZQBvEvZEU2HJhdjy1jgsof8
ZdlQpjxFJfGAFoxDkaDBjWVHFUuoBDEQGqwPAnOPumlMboPgeVFRidRgn0vU
9KKpkKctjsJQqJQYP1FNVrHaqL6mueQ5LEAfU46H/JKTUeIzkfilKBCwE9uq
kBDFvELjHMHjBmaPAXNyxLkEEzdtHJuCExQH/dlWFKVT2D+Ft5pyMrPsvQbZ
LJQy+Q7n4WV1X0AsTvyJjzEM03XpCSPvCJWkz/xWioGhSyaQLt5hzrmWm9uT
pcXaNT81rJ5e+fAWOU8QAhAtl6i33q7Xhv2kZOdECyc5oACSaKf8wGROAv0B
BZmFaFzVLagx44hUWFtz4oCxnhz7GP3rv/7r6DcT+vObnv+CP78Z/mHym9Gv
cEumSfJrcgb/vYX/XsJ/b+A//PMSVRD88yvGDdawg78mP7B0/BU2cWFQCv/6
d5rH1dfPH9F7/X/vcC7hFv4q2b3wA1oi9NAhsENQjv5O88B9/eUk+aR7plwZ
43cH0YRe0ZkeAPOgNI0JOTl+d4D+G1sdiII6QAWcTETpZwy7zhhxq6BVue36
7cCtFFnZzvAaez3WO/zQ27DxIfyLRmMWpgIJXgEZoxlTIkQU3YZRHhy7NtlQ
x7l5xYizoplK8cvI/4FhBMqhv5CRRsnYPD+LAFTk0f2HQAonyfNS04yNMGj0
gjL/dpv01RHN+zTEHfVvtyRerzmgC7NMhX5vTL61aIXB1+AsZNd9hLRnOI2V
h9EUMrpgrMzFWmhgfBPu3RAnCN/pvjDIOjRlJAw8eJRPklwKtztk36z6hGGj
jtgAFugHTNWnKbiYqTp0h16P1VgQ6Yo6b3BetHcSEEK/cbzNM2Bdt1kKdKOe
rvnOnZlB1CGHjV1Qjjknp/Wh55IsNTC52Y5xTuehDfKuYXR6Sf0TDRCKeYW2
AdC+cyFG9QOihIo7YCmB8V5IygMdXwAJlDgtGiPNXDO1w8Cpx1CjBe28gA6Q
sYcQPBKM8TWaj6bJOZKFNrPw26MoQZ+1bm+/RbFI9cCbJCgS0QGABigJCerv
3doegRjRu25HTNyaZOBBP5QBI55elzZ035sTu+4lgfLF6b+wHVbs2C3Dm+fz
l/x71BGsvlNGXeFk40oaMcojnNCXBJsFukQGWGMIImvI7YPB1rLSq+ELdpg0
ZfQBBpkHWBOKBt4CmMVnGtiMFvsjW9Dq7BiIloguHqhAFaWXYFBKfemaHYbu
gWxtPSoZkeDOcE0Vb6Ffcy46wmLsZCUCUCdwdUVfGDv81ba24q1mZGGjc6kF
9/SWTJluFk8YdpkqjdJJBKjmsSRMhClqfS+5kISpRWOpwEmqdIcLprRMjFPs
hTuB9fyK5Na2th4MEMCoNpyPQAp+WI/EUKkNta271UEk7C0jCQrY4T67AMAW
a+uDHb/3qeDDbnVR+GE5HxiQR6TiUKDOISDKMErEJprzAXk4SIz+xado5p8k
rwMsK091/1wnGyws6b4hOtsdQP+ina6h1mrtvRqUqEdZJ3F6AleM0MIlQwCT
qKxFJ2xBQCmV2ygmHUDTZ2TsRa8E3k8g9QcI58IXwCVpxPc56MusBUeptY7a
6ReUoBVUEZEZfW93+6bkc1PutQJSoNfrrajm7N9SmzXPFpZ4U0/xmMB85xvP
roY8K+D86pVCLgNYAyeAJ9sN3lZJBpeBed0ttHIUblfikGckQdqjT6NEHBdV
Y4+fep7UUUgoFtpYtd/VhDa9BvSt3Jgwwb2uS9DTBuEgUy2Sp2epUXL2cTPn
ynyeuheN8UJAhMVgeQwSsN0QVz+TWcYu9P5tpQP4S+kfi9OlYNBcil5JCMaQ
ka1TmO0cy47g+uhVJdAbS3wBpDW9p4NnozMQVpRwhrewozivqj9BZahGp4+R
iiIIKpVL0VbXhbgVGUcuiSDheZiZXoL+JCaqJ4WlunDsOnaq+KitO44Jjg0T
ayPYhNfKXXx9jzol9+HEzPLx3y3HEQOa9igtNshnRCWjHvJS+iDC3lpFbYf4
F/jAXRD/o14LnFI/jBq/j6asioHQwayrmJIVYUPRlXeEj85/MiZ1QZDA/3tC
/PJTzUpLA7YpVk8fAYDS6J6btkcInPcwxEP+fc9s46nRJ+w1SB6wFvgTqI0g
T7QGjkl/MlWFmWDO/40RkV1y9vWrN3AvQU5g8WNSaI6nYarotpbn47CUoFQF
uTgs5Bg5SZIIrRka5DvvxPZnRP7qkw+QVmOKrsEUCNnqjx0D1hUFXwkIHsFI
/T6w/tjYTfJoaCCKgbnIGB8F+rO9erExu7w06bAHNTnMMKt0d6RSDuHAEwTl
uaC1Wp6xj4YUlCBOHofSyoJQNI+jgyL/vrMrw/16rdcs2NjvOxkVes+Op0+n
j+5z13qvmurOcyrV5Ij7fkfq8kIwkzWrqFDakk14+dZ33z//Jrw0Qk/+NI/D
MWpSQ3sH0TKUZGNvarsF0Xjx/YuJTFRc+7jZkt7qhaJPceVavp4mWOChOykc
ioECMysSFj3nLmpRSZStDb/G28uVLdk5sdnOcskvFvdLyl/PiqNQo3Anch+V
UyZ4Gr/6zL8a3xxrPH6Fz+GgMzv5zub5Gj695KyxS0QhNNPuyd+tSuqs2IpW
rvIAtWLlbTLCA5SIoa6sXwX5WPUfN8zoSXRbHNBy0IsVekQYM4JSTYieJ4no
wTAgJIR4SYQIr3wavRKdHHcBNmXEhx56H2KXFWN2H5gtC8974papFtKzaLaR
FP9Q0T3EW76YPr4fZ/EvCiPsIc++L5vzX3qM06Lh4misF+0wY8odSjEgBzvy
eXx+Uo0mPMQ+1FMbs7rvnPQsC06pHCKLW1P7e49RNFzPU5jhb7szRBLiIi4C
iGLw71zOSbTXuJ6kQ1pkjYIauWYXOcEeuIqz9yA8Li3z7MkjqcrioCK9KtEb
//4Zez0xVdbFdFth8+9ZU0Y5p7XvvMWnVhDXV+0zxkh97sJ5NHJAXMShR6jO
mnjOAtx4t1qnTxTcFjnVXle2bjRMLOgVTKm6xYQcLGe4NwA6CB4IXBzCx4mg
Izt11v4+bIRUKnAoOlLXTe3Bpe6qBWALn6RT2SXiUitlRKQa0c1u9XHACmGY
37TYItQ3GAxjyYvcuJQuGoGHrRSJMyNQMWWhOJmqGAshWzL3lLVwQmfWsv/2
ciYq2NFvrKk/mRTkMGkxBk+gkZsFt9EnPfrdpcvA3neV9VlUDM9bwYPXoVNL
ner6wEhxVbsJ6IKIDcDqjwQSesXz4SjdykjhXUc3bJ9TGnWtJrbmuqOZwSVY
+mrR9M9U5cwdZqUOxZIG7VaOk/3d7FbeJbFb327KOFVhwGg1DoDNPqF2nSjj
Aqanjjw4sKTpNnvRDIJWEu1P6/2yP5/eVFhcO1ornToxgWVwi2AnhIa6cFFc
xIBN2osFvUjL4DpcWAQ017K0tXhH7+u0GPAxaWFlb3jc29EoRqbMy8UWXT3z
WO8Q5jB0jimHXZhHWFfutRmIREklW1IlW17X2FsZK2XB+vZrs6z+Xiw+4A2S
+V5HEDL/MkkvtFzZa69T2W+q01coDTumbGpMMZbUdviHcZVuWztvqKJkpMI9
uY8K583TXtIL1eWBY/Iqu4ygdGa6t0VrJiorGVQ0Wl58NlEnEuTVQb3/5gOO
uz0IXoFAWxFdTLSYQjVSqlvxIU650OqWTdSdTX3Fbs63opd4M0S2kTh8Zj9K
se/WYfhAsgg1+55TdLr6k2CZ3qXgPS9KEsqItUgvZYPvnHzDothIxPAu+vzH
rEjL2zAkz3WxtZ5JkAzH26SByva1IuC4vrRXaIxdtru2e5DqvS3urZwliItS
DOIyypHlL8xLLvvcr9zGM6T6onEZeaIXt4Ui9R2SU82K448gyojjuTcL8Iht
ZT7Fug0Y8MS7jxe4yT3uLpTCxW2elRWMA0IGh3Y3oyg47h5bbU+mDx8mh18b
BzI8SmxVBXHp6PLgWCgOMPRIZtUL825yuvSGmncOIIqTv5tmZlmUxDHUY4jj
hKVb2PmKvQmcqo8S36YHGpTjai03gqqkKrjza1VIlltJ0Bf4U8ub1Jil2HNY
vabog4BQmxOqQCawFVoJqK6IBZn7TMjaBcjCM4gL98U5zwE4WaGWUVEB2QHs
YkMJ9VZdc5wQ22j6SwAUrkndCW8o7VbdJY40q+dUDWnlYRBIEwK9CskiiWji
UXL4tvDZ+B2iwFPxjj9Cj9B9zFrwPcSYtBRAOUbvMgyaGm20YGm4Wp8mv/BK
H5MEDg+HtBWVnsDTK9usFCPerUMqJf/JiAnQZGtTXbOYch1kWjJ1KBB9WrRr
9+OkOGsUI5eGG/UsqcsRGMJNUIk/qKNBQDP1AwSY8EVlGRVNvgeqkzVhkIKO
xSSPrEaQGmjPUmmGmU/9dhiOtSJ5/xIDGkMM3xXlcIkQ4QIj1ltVJB0VNSmG
1dodaECBrk4NjSS8LZRDTkdtC0ISUOzk0cpk3gWRFdp7IQ+K2XQHcaqH8M4n
9wdrTQVbieBAKREBGn9eLlGrEIGFqqiLqvY0NXz/nvHmyp03ZSNuZRHSFCGu
b23FZopANpk8Y7bRIgexIN/cwzy9EybjLVOp8u3jbPcygCOWQ4uth4VY3akX
xRt9J3ZOMfYfhlXlckambhfWasNXBzRl74abOyd9hJnpFyNck7oN94v2aVuz
tUdYruH9cuTqzEPKXlhnTVjaHF1muO9erbzXzosdHqnBHbiW9B+LawFhKmZW
E5bUhg1jtB6x0yEpQ81LFWQ7onyncV8u9aL0osGOxCcY+niVe92PQrPB43LA
Tw+ipnpGXTIbpqW+/VYE7hDAxWVGX6i7FBmxwwgLKlnBLqGA3EfuXHSBiCrJ
mOkEyjMv8StOr+4JqfdS6p2OoUeRekhVfA1Fa1H9a2mHQk1rc70/UTXwwIvb
k4ConLEbO042FcWSC04iqO0e7uODtZhx1CUGr3aJufA38Jehc388VSNhqBKO
xjgGAiFcz4TUpr6aJl0F8K6AWxeVHDsdaBC5w/Fd8YbscDfEYXv5t/eLhHmf
sigaaV/ypppypvCauB0o7NW68mEG3YHa/gfkp3DxkBi/NggddVxaKoj6ognB
JkWx8xhNMZCf0YUDayeEp92TosobWDgCdMn+kt04ToCy8ZHd1rawa4yJJ2ta
3+pLeGzvbM/R+a2+w38R4LTLPTfq47zvz6JtI3zP8fThU+yjSnELqgsYBA1J
8cZacctVfANEWqgXO+OKRXrBwmrPYVQwblu2Vt9kkGEgfVx8AFam6ow2h8Pf
qzV4Yc6OGA26RL/T9HqFK7G7kwhWSrTKsGuLwFOQ+/evQ4rR2f9gdtcKT/d9
qYflteIlXWmomIB7SEP1psWU4tEW7A/vu0DRq0K3QqYBAPsOXiWVB3kcTXVz
uSC+KmL/lpO4oqOWaG2riWs37Ba2WdkfeyPh3Lt+d8/vyO+KtsCk6bA0dxlM
jo1L/Svkfk4X//eU5cC/X6k53D060VBjKmgl5e1h+j4Icv8Eo49SRwLNuuUY
/zuJ+ftFS3qSC3qnNcfmaJgYL8W0umZWFAvvuyRZw9llgd0DpCKYWB/+7TKB
u+Vzx7olberflQV+MNCpS6ofVn0u3JUgAR4ZrwJdMLpTbjYuohKFuFusN66R
gG0byShlHJkQ0ZPpo+njqS8IkmCOlTbeaRVUMgxc0Ubxvh/nWDqWhgzGJedz
qUV0wTkee4u3aYVNqQrNNnFcTLKBcai4NH2mLUh9G1AtWTBYVxQm/UKZribP
fkIlDfrYLIbi+ynpU1B/P1UUkSZMnr7W3ARuP/TRjd7FduO6ZwQ8GsBnoLVe
cpEolF0xeGS8v1Ai+rqotInm/Gl0AFn4rbjMEtkO9L+5iEehRVF6mrV/YETv
QwM/oRLfIeGAE94vPOhV5MFaqa6qJjtDU8vlPl2ehjsZl9tY82XZWb0wd+1S
VGsnaxct+7g7Vv/NlyyCWPZdtYCdXHBXCtO7Vi/JxpEYoHCdgFYksQ27yllX
TtVlBYWAKCrZ7XBzcKSFlGvvdh3C+prt4U0SSbN6gzV5KI35PwQUzfyJhJ+D
A0nWaB1kKTk1pBceg/dSOoalXdYT+pNQFmBU4INvXQBwer8nOJ41sd+jZQwj
tKEtxXqSD/tAKtT0XMxATduruEwpP0Bpd1W42qCgAc7Dz0FqyUoBtChv25Nr
u+a175wp5nTECyTwwxZJcAGbVjPubpykj1K0o41UTm8rRIgaWHh6yaImYtHZ
SybjgovGl7F3WJuuOc+wlPwFZjjolydyKmQrgj6WsvcY7HGb72pGzsz8mlys
HMV0sNYsMFYUigWEWGlg7m47Sq0Mv2bt9Ke4Br+7kbyV+0JdNHqmIb4FjZny
rBLpZNKUS4pxcq8nl7d4cX88G1f0buXYtTKmOfeP9e5/kozD1y0I6n3TCpkQ
It389OwcuApcOKxaQ6fXSsTAb5xGxfC50szxw4doMbzdn4tJN0NrTXAdpygd
1CeU9mP7nGCQq3bvrXU+qQ/L+eZ2zHj/fD9FB9Kzu5A7tbG3eDg+Gthrhz1r
uVv3nZTbip94R3+6wNS0n14o0pzLIgZWJuJNnNXt2gRQBBzHQrR3UCzZrQPY
LmzNT5yvdwH8Fw+cPkI5/JPJlw+mEoo2le1xO2VwUhPt0TWRCiATN/5E4dV9
yaMdHByDOlozcmNREEli3mMu5ebcDKugBq5vRYhC3TqcZS+l9OZfC9TFHbaG
Pl2Zom4+OfswB8yLPe3Jp7EDo/taNOr8q6fRJrkzuvcm/edllLf3lDHuNLMA
kHXwe/zgAPMVtmvnzj4gpL5H+B/AqILa70X//798fFdqS/nUa84hoAij1Tt7
N9cxBO98jtuQgWWBAzn+E6ct18kXYL0/oruNPx3fkw19HDc0yaXTpX8fwqOe
Y4X2/Szyi+mz/zQWOcR24lQPEvdhne2oYLHI9JAfBr9/H5y+a2sYP6IWq2uN
fYdLICh3c4/ec6syD7KLgiT+q8iXbnNYakUGdElt5cbSHZR5aWy6D9yZNKvR
oBRwEGHTYoXebYCv4kbFT8mSq0vuPcItkbj+rja3cO1HqHbToBMDG2/D+UqC
FFeKdvYeh7ior2Md2e1YVkrr8UmrCG/LYy2RGufYacMdurlZeTysuSQdkwjV
06eC8T62E7jk/hYrrGUw7svouS9S2ZW0iZBiAQiU6jC4zpuecGJaVkz6NwHq
M4IK52AP5UQWZQ5fEv4ik6qy+pqcUerh8NEGjimD9cH1prFY70YKyLHtTaE2
XzrOocXIktK6/NOoEzZJzagHdmvPCEdYN/C6CVV/oQyGACApPt2wJjphDBlm
Jk26kAiJISpiP0n+CemdSrLixbzldtLw9apgrT9Hswlh4b2R9ABFHtn4axy1
jYgVl8JQC6BD7qyGHquamvFl1B6FkJpHvRg4QRZj+XzktHZtcGauLE5UhQDD
uIxPwj4e0Vw5/GrICoYDWAf5DOHtCfxk2BOI+XFwAajY+aosa+vwp+h+Eo8k
mUxDN6MkVCddKtlnMJMyhPh2TFyueRlSkpRAcpRZCwJNYa0OeuqmNaRnVFII
eoNdkeQy0JER42DnauAD7AJYPxTcjE608l7kPeXerf2dd+5kOGsrrcniuBYa
8L5nNPcFvtvcJ9pwvlGFm99nPuLYVtGPRpFrwMCL55aH+IJP5ezX3Et1LuDa
IoLrdgoDogCITVz2riLpUZFwAmgJGKQgMMj+t3m+ZcQlH8A84hTbdqGkLKxF
NNwh5NOkvy3wnrJndZKXEn+94Mytu5nP/yc85y52zA2YjWT3qR4xtFPEnhU8
Hbz+34FVqWGIzQ/NfHfH8TET4SqTBZeoW9s0wzRQqtEl39SgymCuOJN+WKxQ
am5XgSIl7b/VQox8xkFWR8AKFCc/pSqY3m8tBqf/CkHvqx1zq5/3Xn5cl7ZS
aLUrgm+ttEl1zKHQsyvskCMbL1i1oKei5I/e5Dx9N4Ufk4vTl6d9JgP6UN5r
EKuk6Op5mjVldZK8zi06JRX/f/DLL/9wef7DN+/fHwSoe3ieWUm3wyTnxlLT
DmedUvuLabvPtHb67UBq6DBw6lwSki4Y17sWNFvtrfFPdDlggpiNwJDQ7qGl
Iz6vvlb4oDJ7/0I5jWLr6gey8d9944FP28dtEE53cEbFN6m+DYk7zKE7L26y
qiy4I+vhWfnm/AhRdOL+CgbisoBUUl3/jHpqg3f/SdXTef9/9bXSuSr5G2c5
+8Lkd4/GRdC7Vc//AEc9+Wf486cPHe0YR1Oql7l9zGjh5vxyorXQe09osBb6
H/8wGn0jQZpB/JEQtPQeZ5pRInr65LdTP0R8l6VsdEhJFGzN5tfOwiMHV7Zc
4c3UR5iCzt9tKPDwxt5kFjQ6rPL4pXu+NazUUmBkmPRKCrtCIeqUFQXtQeXz
6bXWiG/7x4VfEKzPfcI0U0yqrftK3jSsNNyClZGFExXOvWv7nj354re4gace
0i4qJHdL9r2HDmg/MsqqorZjB7wl3DHZFFKUyEqTKRxCrHk2eTK4e/JyPACx
ZyqqE+965djwHTLvw2dPnz4+PgoD+wKVk5oS/jSkf1VtU3HAoa4p65Guc9QA
VvLuEM9muD/RynLZNIO9fjAc9JiK0NWqHj/imnTI/lzB/bwxn8mJ0FneSkss
+iIO5oo1hl/xMNygw6loElRLTWYzFivZKU1h1gEpkVJZAXSHmluOb8g3Jw4F
lvxkxuNcdPkEOLmlHiraoFDa4MFl5F4eA+phwCkDl+snH+b57+H+WsulJQCs
dCRTfn73rAYEwZ1RLDzUUFrEUuL07PyoRzJ8yq0wTpLQU4ifUgHDHwzY4SfI
bB+7z652G3h8BqPgR7qDJ8kE//mcyjATmZx8ZPQCqTcuQMzvEaFzkjh9ITns
L+kJd+wfilm9+bK1PA0t9CzvSWt5aIt/ljT3WOR3vdGHnirKrQDDgEr3EWsF
IUaBaFTHzrigb14utdzT5OHnFIWSstcHnWL3B65SBf66d1IHhIopGAJmGYz1
aXJKPP35y0u+jCQwg17Krsi5U+ODvj4tvCnvIodPfI+lVVhYUjqsoeWNvwgL
dXLLzjPOqLZp4OYuUHOJKneyccgosix6Nio9KwSqbwmgNAIbraZ+g5+dcF9J
41VndJ3RPpZwFDtuELt2hTstacJkz66pZ6Ka6DriUz6yTSqle7X0Y/DIkxP2
XsCcJQfOsWlN4NUDqIPj0j5RBQqhcqidZRKgktBPpz6h+p5oON7l7QblaC3H
HSd6a70m7bccwTvo6+e6nKGwAr0aE9G38o7C267qRgo27DFtWFAXiWq1OIwE
uVZjeGpQjmoanDBSDesHMMpnmBa3L0UybCfSGkXdXv19QqddosIletx0rCQG
Kz2WruJI2w0nq9eEDFNB5do6bIvAQRJsW5jssRYUSOyYcdYkjo4m7eGZq2qm
0D78JueuaJie9U5nn5FzYIuXc1k6ygRqB32zpPzBTPIda7iu3BMUK+3bfANW
ENx67PXcOjBUP7eFwz9IY5XBqnCdHeaGYl7LKgbpL9jwR7ThL8kpmKa5a7Um
2/nTdcbtZVGtij1MEcVEnYIGGjYg3rLZbbRGHjVtkCHd6YnSyPk8bAErLjCs
XRKyUO6SRiT3PCjJpqnjMDmEV7qaxXGZZNgQLowgvj1tveZVxGVZYoMWwrjN
7NwgxVPfN25dV2hKVu7KW/XXiI6mnHFbGcbcYNfkXbnl0mx0UYB2KMS+JgBE
7RLmKs5R+MAqqoMF+ZlJaln+afId90gsSt5zgs8VWIArp7MEyyBjAvrMeT6p
nj8u0eVCEQPWiBZ1viZREDdOcEyyDhJXEP0U441QnxoIOUuWHjXajSBJd2GR
EAPXAj7VrOCEwCk/zVOVf3wvtNUAdULuCetOHh3z6u6Skw/p4r0I/K0uttah
YGpostxSlxNs3kl1kFtlRY5wuG+APWF76Gwhdt6QI5RByZlrbU3xhpm1LqOB
30Furi8d/VGgccKC9aq89mVjaooG4J0VrOu6bOgmIh9CKHOavTtyu6myN63M
opmAVC7nRoLkzA19M6eJQwdOMB2RC+zNJN1frDLtKUG/IHlKr/ohq7X0Rie0
TQ7zKIrO+i7qoSqbGDugndKpmahIbBca3oMtoJxGD5CTQgBg2F77TH+xXOM2
T2VFGMzAh8tWFrBGeVBTlcJS/OQvpUSCCJaHFxOEyVLdvEAzIKASqipD1qm4
J1odHel0SAHVzciCHo9hriaH2oCktdG0s+0fuM50OBpeSRfIQq6AbgFtluMc
RGEzeinMtOOJuR6VkuNSh73N4Hl0LQb1kLm2WliWMWjK7Q3xhWKhYRpfc5ia
wgCiRsNzga9ithtUYMaRZ0DADZXr066kEdbhkTZSFTtwBPG1pqRSft0NyHYj
YAZu96EBLdlWmA96cXjTnftmzgm7qE4yxsl45QXeCCYCtja07wxyj0TL0gJr
r0S1PNhZ9BYC5RwUpbi1D3b6ycGYKJUbZea7qbQLB8rIQqal28NOSLo77fac
cghxZ85WICDb05STJkQn29ebkxZcqzPD64Rb2ttMmkJxMlJAgNL/kHt6Ch5F
XHE7dVWSqMfMGyR/bu6EBY2AsVDlrhL9ZnJErlxD5EOc3rNP6Me2CBWf99/Y
HfQejUGPW01B3wVO7b+xJ+j92oFGNKTe75j29ji+W83XFEHVT4dAYKzIno9H
nOO3JpOfGoRx/HOJnYq4TAeSG7tG5UvOO+oogou+keqDFeoJeEtmFvX5UgW+
VcAynlc7R8VVCuuL5mFvTfdxQJ8KBaK+ZmEdrhEy2tuMSmixsoWDxyPOHR5E
hhwdeg1fxRLF5pCb+Vx8IAn0ycy2vicX2csuPetoPGrFZ8ljbVy3U0b952GB
mFbRHbl0TTkesSnU9B2tFHpz/BPG5Dot8nuGJ0orWP+ORrqtdnYNDvCH7Noy
AtWEZThSWFtqOWDc+VqimTow65otXUNZgZ0dnvrW2U7lwFKS5I6nZp7odKYI
r5QE4872pOIyqHWPZuj6cJ1oOyLyIYlexifBqrMmXETEJouxvt07Rx403diL
ry+ZvOUwOANslUmjjQJeteSSvUTe8Ehuu70uJQGT1X+NxcCFrurohXsRF8TF
l5V1UWT6SsTFM2mLTkbmKekPGFEJAX4touJ0K04dzkBVa2VyuwvrIMlSaB+j
22XGWAYfLPElA6QVOaMOAkUm6NfLqLfeTrSnEotJK7rwcbkp1kBAr9PcpsBL
4lTAkjsJg8mzsb3A1dfc1lY8Hwi26GzN6b+4CoxZw/BdsmSSMy7ywdTKmtYV
hgmbqOg3qNwNfRp2Nfxau6eXrvMpBnNwrq9B6WyA43hUF2b5qo58Yx0CeiiB
J7JLvDUSljKhlrMI+5g7WGzmg0OOQ6ke7Hq9D/jRRScm6Bkygcjq0OpXZFJp
SpQot2KyB1Vj0bWCLinNk9Nmv41oMcgTUmu824eyWCkm2NIga9G3fK4peq++
BtPtevKjyyQ+DCoS+ndRyE4cZFjFqz6i6o3dt5c9dWJqHZTgeLKnt5aAY1z6
9mPOC/3ub8j3o1sjyCfZSEKIHUgU1L6z1ZxqIKlCx1VAa6kI1GhDSZycQCVm
VZYuWfYtzca3eejAQT546kQe2ivRhz/i1Emt38/SrbJLLfipCZ6haKV8QPi7
71qMPd6+jgqiPp0+fJwcYnY+Mqy3hasufxRnFLJ+3WqL1femAAiIYjq+t0Gt
S9NiC8r1ZnBbyCoNghfc8nbX4VNvC8KU7ekC0Hr/QIa4uKt6kuiR6buzCTso
oD8nKjjBJxCgFjsFPXwmPTd9ofR29gdKrY5VmCTJFTTJuL7yr6HEiqBwSKtA
8ts3F3RtFSQWUGyAeAyLC+Av4pNwzV3U727fSZdO4ijAcDDEwWKE9v9jbu6D
GnEQbL4Keb+mang4p/AEDk7C5dcub7N9sq5LAA6CbYPHBPLm0/rzn5vNT+hS
+fOfx46BG/It2WJyVU5euHl6QcKi7kgNBTFYFZoSHNaCumMyoNzjZDQrSbtL
2KAGcPcuh1XJ9hQalOabXC8l8PVM44prrvkYY7qzIkS6aDmWdglDgaq56uHa
4WKTcVIyu4mngbmCQY5xB6conUhMfe3bK5M61m4AGiR2MEQVHVhKm+TpD3sm
cCY7ZVL6em0PAp8/uTrn0okR+dW29n6xIAldj4C9DOhr9OX1lQKzWs/bYwV0
pkwOoprVrXbkLabmJJGMEU5ympwKNtto9p/4OTE21iH4eOSxW8AKa9iF86eY
FmPVcalB8KI1OS1riusKqrRHnaH0uF1yzkZ0Q0Yi4TGN1Rp2tIxWDYUZBodt
9S6Rogw9c4zThDR1wCAeW8oZbIDHiicrqpDdrtxrGte51kGEJJHkMAIIIYOm
TlO+MBypWewpIKw/R3pdpNKy4zoA9jvVqBEUMqOU8MVbaURmqP+vu5FioskR
umIjg3S7ErU7wJvRbaNQxLlT2s6LFEvKwF/IX0XwOW6HXCNQ0VxhHk6JguGY
bYNu/sEMvtWWnHhVpKyghoiWnoKbeUTxg7bZRUkhraDLcKxblgyQl6mwruIU
b2nlI11rVY0P28kESG0k7VqS5ITUxyx0s3aZFmlsGNSZjCdleevhLzgol1nB
0Qr1BPXKwIM4ffO8p77OnbuvV/6eQjZ+4zcf88Z6hbjNgJmx8RfnNUomhtwc
jQmvslD58UFbDdRasmeEI6oWk7timpyB+ipoW1c5nTIF2z6l4qUBTpTLt8NN
2taoQji+JZywCTpydxUN09VduWiIF5416+LwQVb51Yp8JdreVwCk5TETdH1t
o5HaNjV8hNZUIPacDuCiwCFX9GFXuW09+hT5rubaCacvJ8WbHeLdGUd1sXvt
g4k04MNLpuojR9Y9oaJ6Fl22SbKiy6q1EL20g2fwXLVQDVPFTSagXslCRo2k
ju8n/LKUgW7NTpQ1LchcMJ3MbNjhQDwtTukLS9KwXO+UFBJyGEsWlhg/krrk
eqiHDRfJ48f5U8LoEb65U+0rOMdQS0BjsUJ/ENdN2QAV0UzwamIQ9QK07aHO
gweUR9ys2IFXNStpy1f6gBeWKnh1ef4VojwI0cCOPtitGTktOeK9Cwaie+4y
nt2sv3/+DQJ1aGsYrIMfJYx4kc5MEYzrQf3lwDurbaFACBpD+Bv+KKHWhKND
cHacNByMgvIejTgy9NtoPVHVQmAMTtpZATzLbbUpowp5ezvFIZqQSvVQua0I
czPTXvRKSxpFBUGh4DUHUDHzquRGlISSlnCErM/pF/lO0hAlckkxE+IPXhds
dfZQQISh7tTXaOUFOZEow+X8qE7TlrFhp0HDnUxataClK11Nglr6XH8MFVNp
mRKG+zL0HnFKZ90AF5oQpVOF4o1pVqK8+Q4dueWQC3W1dBPQt6OSqPoekQss
kyiXtW2Dm5BJSLmxAomIm+7Q3qVZyjWdpGBVgJvl3MgXp2fJYYZd3ym7HheW
lhwYJ7cuQo7GToaRXnnNrcPipqRDeasqrYiLuY4jG1P31I6lZPOjsP6+FjxC
LjHb5jkICzYGa2vXdXBVOQCC3Ei8cmgSmMxluA6VZZBiSlMuu/9J8raogXsE
AE881prRIjlqw8Vgizu35hDG4uzUMqrViUi/14RHJTZAg04micu0qNVjRaNV
jfYyVMmsOocrCYqkxTfOZjRvDAqTAtNpvGO6wYuEKbwWYR+EwFQzcCcCKiCn
KKqOgH3AyJoP+D9qAF9x9IY5h6CihqqojhNQh1bNV1jCTYQdIYxy0r2zwpUa
Pda0FYdEGNhghAYswfDVjrdeD59ZSWDjYvAybaoaQTTwafKjFb+BZPEElRy4
eUMne4ft95CWBaCca8xRfI5jOPdsocJT+khQwk8uFeA48kZBRglyhiayM9PN
bFZxJUvfigZ1ASsNgqT3EqG9wHost1hnCytt4H2wWCMbI6Y0rvQio5NTuSbq
wa0nZAHkEzVOcioVEEUgUUmdm8YvgdEu6h0kLKNWeIC3oF1pH0ihRUHPcHIv
ng4ylBbOWb40h0uMKcwocFiWqSmflsWDhqN9ispghVNjf/yA9HzyHquGXnsk
++bhFST8Zef4fIlLknIReN9APKMGphjx5LA2uzGHo1E2vaO4skQRcWnc+lqV
YH7td9wbSomuLh3wCE8L5NRcM1/Xrowem81zTPHKbbrk7BRMsTT8WWrps/eI
TeDMKZv+DlE0UmlGowZU0LSyBDc2xTXYT7+8gG01Nk/e4N9VWmO1+Pdj/M0/
ZevkEj406XutGQeffvvX/10ZvKO5wZgp/EoVjIyRRJz2Cw8v4LRRgRBFlSrL
le1ABN4MQv+hdEW9jC1f1l1/f/Hy5avfnzoF4MyiJTd5iZoSUAKV9Tl7c3F1
cXl+xmFdUXi/O354/NA9cnnxzcXl5Du8EIffVpitRnFXev8XT4+fPT2Gk/m/
TsVRFIveAAA=

-->

</rfc>
