<?xml version='1.0' encoding='utf-8'?>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.3.37 -->
<!DOCTYPE rfc SYSTEM "rfc2629-xhtml.ent">
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-httpbis-bcp56bis-11" category="bcp" obsoletes="3205" updates="" submissionType="IETF" xml:lang="en" version="3">
  <!-- xml2rfc v2v3 conversion 3.6.0 -->
  <front>
    <title>Building Protocols with HTTP</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-bcp56bis-11"/>
    <author initials="M." surname="Nottingham" fullname="Mark Nottingham">
      <organization/>
      <address>
        <postal>
          <city>Prahran</city>
          <region>VIC</region>
          <country>Australia</country>
        </postal>
        <email>mnot@mnot.net</email>
        <uri>https://www.mnot.net/</uri>
      </address>
    </author>
    <date/>
    <area>Applications and Real-Time</area>
    <workgroup>HTTP</workgroup>
    <keyword>HTTP API</keyword>
    <abstract>
      <t>HTTP is often used as a substrate for other application protocols to create HTTP-based APIs. This document specifies best practices for writing specifications that use HTTP to define new application protocols, especially when they are defined for diverse implementation and broad deployment (e.g., in standards efforts).</t>
    </abstract>
    <note>
      <name>Note to Readers</name>
      <t><em>RFC EDITOR: please remove this section before publication</em></t>
      <t>Discussion of this draft takes place on the HTTP working group mailing list (ietf-http-wg@w3.org), which is archived at <eref target="https://lists.w3.org/Archives/Public/ietf-http-wg/">https://lists.w3.org/Archives/Public/ietf-http-wg/</eref>.</t>
      <t>Working Group information can be found at <eref target="http://httpwg.github.io/">http://httpwg.github.io/</eref>; source code and issues list for this draft can be found at <eref target="https://github.com/httpwg/http-extensions/labels/bcp56bis">https://github.com/httpwg/http-extensions/labels/bcp56bis</eref>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction" numbered="true" toc="default">
      <name>Introduction</name>
      <t>HTTP <xref target="I-D.ietf-httpbis-semantics" format="default"/> is often used as a substrate for applications other than Web browsing; this is sometimes referred to as creating "HTTP-based APIs", "REST APIs" or just "HTTP APIs". This is done for a variety of reasons, including:</t>
      <ul spacing="normal">
        <li>familiarity by implementers, specifiers, administrators, developers and users,</li>
        <li>availability of a variety of client, server and proxy implementations,</li>
        <li>ease of use,</li>
        <li>availability of Web browsers,</li>
        <li>reuse of existing mechanisms like authentication and encryption,</li>
        <li>presence of HTTP servers and clients in target deployments, and</li>
        <li>its ability to traverse firewalls.</li>
      </ul>
      <t>These protocols are often ad hoc; they are intended for only deployment by one or a few servers, and consumption by a limited set of clients. As a result, a body of practices and tools has arisen around defining HTTP-based APIs that favours these conditions.</t>
      <t>However, when such an application has multiple, separate implementations, is deployed on multiple uncoordinated servers, and is consumed by diverse clients -- as is often the case for HTTP APIs defined by standards efforts -- tools and practices intended for limited deployment can become unsuitable.</t>
      <t>This is largely because implementations (both client and server) will implement and evolve at different paces, and because deployments will often have different features and versions available. As a result, the designers of such an HTTP-based API will need to more carefully consider how extensibility of the service will be handled and how different deployment requirements will be accommodated.</t>
      <t>More generally, an application protocol using HTTP faces a number of design decisions, including:</t>
      <ul spacing="normal">
        <li>Should it define a new URI scheme? Use new ports?</li>
        <li>Should it use standard HTTP methods and status codes, or define new ones?</li>
        <li>How can the maximum value be extracted from the use of HTTP?</li>
        <li>How does it coexist with other uses of HTTP -- especially Web browsing?</li>
        <li>How can interoperability problems and "protocol dead ends" be avoided?</li>
      </ul>
      <t>This document contains best current practices for the specification of such applications. <xref target="used" format="default"/> defines when it applies; <xref target="overview" format="default"/> surveys the properties of HTTP that are important to preserve, and <xref target="bp" format="default"/> conveys best practices for the specifying them.</t>
      <t>It is written primarily to guide IETF efforts to define application protocols using HTTP for deployment on the Internet, but might be applicable in other situations. Note that the requirements herein do not necessarily apply to the development of generic HTTP extensions.</t>
      <section anchor="notational-conventions" numbered="true" toc="default">
        <name>Notational Conventions</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" format="default"/> <xref target="RFC8174" format="default"/> when, and only when, they appear in all capitals, as shown here.</t>
      </section>
    </section>
    <section anchor="used" numbered="true" toc="default">
      <name>Is HTTP Being Used?</name>
      <t>Different applications have different goals when using HTTP. The requirements in this document apply when a specification defines an application that:</t>
      <ul spacing="normal">
        <li>uses the transport port 80 or 443, or</li>
        <li>uses the URI scheme "http" or "https", or</li>
        <li>uses an ALPN protocol ID <xref target="RFC7301" format="default"/> that generically identifies HTTP (e.g., "http/1.1", "h2", "h2c"), or</li>
        <li>updates or modifies the IANA registries defined for HTTP.</li>
      </ul>
      <t>Additionally, when a specification is using HTTP, all of the requirements of the HTTP protocol suite are in force (in particular, <xref target="I-D.ietf-httpbis-semantics" format="default"/>, but also other specifications as appropriate).</t>
      <t>Note that this document is intended to apply to applications, not generic extensions to HTTP, which follow the requirements in the relevant specification. Furthermore, it is intended for applications defined by IETF specifications, although other standards organisations are encouraged to adhere to its requirements.</t>
      <section anchor="non-http-protocols" numbered="true" toc="default">
        <name>Non-HTTP Protocols</name>
        <t>A specification might not use HTTP according to the criteria above and still define an application that relies upon HTTP in some manner. For example, an application might wish to avoid re-specifying parts of the message format, but change other aspects of the protocol's operation; or, it might want to use a different set of methods.</t>
        <t>Doing so brings more freedom to modify protocol operations, but loses at least a portion of the benefits outlined above, as most HTTP implementations won't be easily adaptable to these changes, and as the protocol diverges from HTTP, the benefit of mindshare will be lost.</t>
        <t>Such specifications MUST NOT use HTTP's URI schemes, transport ports, ALPN protocol IDs or IANA registries; rather, they are encouraged to establish their own.</t>
      </section>
    </section>
    <section anchor="overview" numbered="true" toc="default">
      <name>What's Important About HTTP</name>
      <t>This section examines the characteristics of the HTTP protocol that are important to consider when using HTTP to define an application protocol.</t>
      <section anchor="generic-semantics" numbered="true" toc="default">
        <name>Generic Semantics</name>
        <t>Much of the value of HTTP is in its generic semantics -- that is, the protocol elements defined by HTTP are potentially applicable to every resource, not specific to a particular context. Application-specific semantics are best expressed in message content and in header fields, not status codes or methods -- although the latter do have generic semantics that relate to application state.</t>
        <t>This generic/application-specific split allows a HTTP message to be handled by software (e.g., HTTP servers, intermediaries, client implementations, and caches) without understanding the specific application. It also allows people to leverage their knowledge of HTTP semantics without special-casing them for a particular application.</t>
        <t>Therefore, applications that use HTTP MUST NOT re-define, refine or overlay the semantics of generic protocol elements such as methods, status codes or existing header fields. Instead, they should focus their specifications on protocol elements that are specific to that application; namely their HTTP resources.</t>
        <t>When writing a specification, it's often tempting to specify exactly how HTTP is to be implemented, supported and used. However, this can easily lead to an unintended profile of HTTP's behaviour. For example, it's common to see specifications with language like this:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
A `POST` request MUST result in a `201 Created` response.
]]></artwork>
        <t>This forms an expectation in the client that the response will always be <tt>201 Created</tt>, when in fact there are a number of reasons why the status code might differ in a real deployment; for example, there might be a proxy that requires authentication, or a server-side error, or a redirection. If the client does not anticipate this, the application's deployment is brittle.</t>
        <t>See <xref target="resource" format="default"/> for more details.</t>
      </section>
      <section anchor="links" numbered="true" toc="default">
        <name>Links</name>
        <t>Another common practice is assuming that the HTTP server's name space (or a portion thereof) is exclusively for the use of a single application. This effectively overlays special, application-specific semantics onto that space, precludes other applications from using it.</t>
        <t>As explained in <xref target="RFC8820" format="default"/>, such "squatting" on a part of the URL space by a standard usurps the server's authority over its own resources, can cause deployment issues, and is therefore bad practice in standards.</t>
        <t>Instead of statically defining URI components like paths, it is RECOMMENDED that applications using HTTP define and use links, to allow flexibility in deployment.</t>
        <t>Using runtime links in this fashion has a number of other benefits -- especially when an application is to have multiple implementations and/or deployments (as is often the case for those that are standardised).</t>
        <t>For example, navigating with a link allows a request to be routed to a different server without the overhead of a redirection, thereby supporting deployment across machines well.</t>
        <t>It also becomes possible to "mix and match" different applications on the same server, and offers a natural mechanism for extensibility, versioning and capability management, since the document containing the links can also contain information about their targets.</t>
        <t>Using links also offers a form of cache invalidation that's seen on the Web; when a resource's state changes, the application can change its link to it so that a fresh copy is always fetched.</t>
      </section>
      <section anchor="rich-functionality" numbered="true" toc="default">
        <name>Rich Functionality</name>
        <t>HTTP offers a number of features to applications, such as:</t>
        <ul spacing="normal">
          <li>Message framing</li>
          <li>Multiplexing (in HTTP/2)</li>
          <li>Integration with TLS</li>
          <li>Support for intermediaries (proxies, gateways, Content Delivery Networks)</li>
          <li>Client authentication</li>
          <li>Content negotiation for format, language, and other features</li>
          <li>Caching for server scalability, latency and bandwidth reduction, and reliability</li>
          <li>Granularity of access control (through use of a rich space of URLs)</li>
          <li>Partial content to selectively request part of a response</li>
          <li>The ability to interact with the application easily using a Web browser</li>
        </ul>
        <t>Applications that use HTTP are encouraged to utilise the various features that the protocol offers, so that their users receive the maximum benefit from it, and to allow it to be deployed in a variety of situations. This document does not require specific features to be used, since the appropriate design tradeoffs are highly specific to a given situation. However, following the practices in <xref target="bp" format="default"/> is a good starting point.</t>
      </section>
    </section>
    <section anchor="bp" numbered="true" toc="default">
      <name>Best Practices for Specifying the Use of HTTP</name>
      <t>This section contains best practices for specifying the use of HTTP by applications, including practices for specific HTTP protocol elements.</t>
      <section anchor="specifying-the-use-of-http" numbered="true" toc="default">
        <name>Specifying the Use of HTTP</name>
        <t>When specifying the use of HTTP, an application should use <xref target="I-D.ietf-httpbis-semantics" format="default"/> as the primary reference; it is not necessary to reference all of the specifications in the HTTP suite unless there are specific reasons to do so (e.g., a particular feature is called out).</t>
        <t>Because it is a hop-by-hop protocol, a HTTP connection can be handled by implementations that are not controlled by the application; for example, proxies, CDNs, firewalls and so on. Requiring a particular version of HTTP makes it difficult to use in these situations, and harms interoperability. Therefore, it is RECOMMENDED that applications using HTTP not specify a minimum version of HTTP to be used.</t>
        <t>However, if an application's deployment would benefit from the use of a particular version of HTTP (for example, HTTP/2's multiplexing), this ought be noted.</t>
        <t>Applications using HTTP MUST NOT specify a maximum version, to preserve the protocol's ability to evolve.</t>
        <t>When specifying examples of protocol interactions, applications should document both the request and response messages, with complete header sections, preferably in HTTP/1.1 format. For example:</t>
        <sourcecode type="http-message">
GET /thing HTTP/1.1
Host: example.com
Accept: application/things+json
User-Agent: Foo/1.0

</sourcecode>
        <sourcecode type="http-message">
HTTP/1.1 200 OK
Content-Type: application/things+json
Content-Length: 500
Server: Bar/2.2

[content here]
</sourcecode>
      </section>
      <section anchor="resource" numbered="true" toc="default">
        <name>Specifying Server Behaviour</name>
        <t>The most effective way to specify an application's server-side HTTP behaviours is in terms of the following protocol elements:</t>
        <ul spacing="normal">
          <li>Media types <xref target="RFC6838" format="default"/>, often based upon a format convention such as JSON <xref target="RFC8259" format="default"/>,</li>
          <li>HTTP header fields, as per <xref target="headers" format="default"/>, and</li>
          <li>The behaviour of resources, as identified by link relations <xref target="RFC8288" format="default"/>.</li>
        </ul>
        <t>By composing these protocol elements, an application can define a set of resources, identified by link relations, that implement specified behaviours, including:</t>
        <ul spacing="normal">
          <li>retrieval of their state using GET, in one or more formats identified by media type;</li>
          <li>resource creation or update using POST or PUT, with an appropriately identified request content format;</li>
          <li>data processing using POST and identified request and response content format(s); and</li>
          <li>Resource deletion using DELETE.</li>
        </ul>
        <t>For example, an application might specify:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
Resources linked to with the "example-widget" link relation type are
Widgets. The state of a Widget can be fetched in the
"application/example-widget+json" format, and can be updated by PUT
to the same link. Widget resources can be deleted.

The "Example-Count" response header field on Widget representations
indicates how many Widgets are held by the sender.

The "application/example-widget+json" format is a JSON [RFC8259]
format representing the state of a Widget. It contains links to
related information in the link indicated by the Link header field
value with the "example-other-info" link relation type.
]]></artwork>
        <t>Applications can also specify the use of URI Templates <xref target="RFC6570" format="default"/> to allow clients to generate URLs based upon runtime data.</t>
      </section>
      <section anchor="clients" numbered="true" toc="default">
        <name>Specifying Client Behaviour</name>
        <t>In general, applications using HTTP ought to align their expectations for client behaviour as closely as possible with that of Web browsers, to avoid interoperability issues when they are used.</t>
        <t>One way to do this is to define it in terms of <xref target="FETCH" format="default"/>, since that is the abstraction that browsers use for HTTP.</t>
        <t>Some client behaviours (e.g., automatic redirect handling) and extensions (e.g., Cookies) are not required by HTTP, but nevertheless have become very common. If their use is not explicitly specified by applications using HTTP, there may be confusion and interoperability problems. In particular:</t>
        <ul spacing="normal">
          <li>Redirect handling - Applications need to specify how redirects are expected to be handled; see <xref target="redirects" format="default"/>.</li>
          <li>Cookies - Applications using HTTP should explicitly reference the Cookie specification <xref target="I-D.ietf-httpbis-rfc6265bis" format="default"/> if they are required.</li>
          <li>Certificates - Applications using HTTP should specify that TLS certificates are to be checked according to <xref section="4.3.4" sectionFormat="comma" target="I-D.ietf-httpbis-semantics" format="default"/> when HTTPS is used.</li>
        </ul>
        <t>Applications using HTTP should not statically require HTTP features that are usually negotiated to be supported by clients. For example, requiring that clients support responses with a certain content-coding (<xref section="8.4.1" sectionFormat="comma" target="I-D.ietf-httpbis-semantics" format="default"/>) instead of negotiating for it (<xref section="12.5.3" sectionFormat="comma" target="I-D.ietf-httpbis-semantics" format="default"/>) means that otherwise conformant clients cannot interoperate with the application. Applications can encourage the implementation of such features, though.</t>
      </section>
      <section anchor="specifying-urls" numbered="true" toc="default">
        <name>Specifying URLs</name>
        <t>In HTTP, the server resources that clients interact with are identified with URLs <xref target="RFC3986" format="default"/>. As <xref target="RFC8820" format="default"/> explains, parts of the URL are designed to be under the control of the owner (also known as the "authority") of that server, to give them the flexibility in deployment.</t>
        <t>This means that in most cases, specifications for applications that use HTTP won't contain its URLs; while it is common practice for a specification of a single-deployment API to specify the path prefix "/app/v1" (for example), doing so in an IETF specification is inappropriate.</t>
        <t>Therefore, the specification writer needs some mechanism to allow clients to discovery an application's URLs. Additionally, they need to specify what URL scheme(s) the application should be used with, and whether to use a dedicated port, or reuse HTTP's port(s).</t>
        <section anchor="discovering-an-applications-urls" numbered="true" toc="default">
          <name>Discovering an Application's URLs</name>
          <t>Generally, a client will begin interacting with a given application server by requesting an initial document that contains information about that particular deployment, potentially including links to other relevant resources. Doing so assures that the deployment is as flexible as possible (potentially spanning multiple servers), allows evolution, and also gives the application the opportunity to tailor the 'discovery document' to the client.</t>
          <t>There are a few common patterns for discovering that initial URL.</t>
          <t>The most straightforward mechanism for URL discovery is to configure the client with (or otherwise convey to it) a full URL. This might be done in a configuration document, or through another discovery mechanism.</t>
          <t>However, if the client only knows the server's hostname and the identity of the application, there needs to be some way to derive the initial URL from that information.</t>
          <t>An application cannot define a fixed prefix for its URL paths; see <xref target="RFC8820" format="default"/>. Instead, a specification for such an application can use one of the following strategies:</t>
          <ul spacing="normal">
            <li>Register a Well-Known URI <xref target="RFC8615" format="default"/> as an entry point for that application. This provides a fixed path on every potential server that will not collide with other applications.</li>
            <li>Enable the server authority to convey a URL Template <xref target="RFC6570" format="default"/> or similar mechanism for generating a URL for an entry point. For example, this might be done in a configuration document or other artefact.</li>
          </ul>
          <t>Once the discovery document is located, it can be fetched, cached for later reuse (if allowed by its metadata), and used to locate other resources that are relevant to the application, using full URIs or URL Templates.</t>
          <t>In some cases, an application may not wish to use such a discovery document; for example, when communication is very brief, or when the latency concerns of doing so precludes the use of a discovery document. These situations can be addressed by placing all of the application's resources under a well-known location.</t>
        </section>
        <section anchor="scheme" numbered="true" toc="default">
          <name>Considering URI Schemes</name>
          <t>Applications that use HTTP will typically employ the "http" and/or "https" URI schemes. "https" is RECOMMENDED to provide authentication, integrity and confidentiality, as well as mitigate pervasive monitoring attacks <xref target="RFC7258" format="default"/>.</t>
          <t>However, application-specific schemes can also be defined. When defining an URI scheme for an application using HTTP, there are a number of tradeoffs and caveats to keep in mind:</t>
          <ul spacing="normal">
            <li>Unmodified Web browsers will not support the new scheme. While it is possible to register new URI schemes with Web browsers (e.g. registerProtocolHandler() in <xref target="HTML" format="default"/>, as well as several proprietary approaches), support for these mechanisms is not shared by all browsers, and their capabilities vary.</li>
            <li>Existing non-browser clients, intermediaries, servers and associated software will not recognise the new scheme. For example, a client library might fail to dispatch the request; a cache might refuse to store the response, and a proxy might fail to forward the request.</li>
            <li>Because URLs occur in HTTP artefacts commonly, often being generated automatically (e.g., in the <tt>Location</tt> response header field), it can be difficult to assure that the new scheme is used consistently.</li>
            <li>The resources identified by the new scheme will still be available using "http" and/or "https" URLs. Those URLs can "leak" into use, which can present security and operability issues. For example, using a new scheme to assure that requests don't get sent to a "normal" Web site is likely to fail.</li>
            <li>Features that rely upon the URL's origin <xref target="RFC6454" format="default"/>, such as the Web's same-origin policy, will be impacted by a change of scheme.</li>
            <li>HTTP-specific features such as cookies <xref target="I-D.ietf-httpbis-rfc6265bis" format="default"/>, authentication <xref target="I-D.ietf-httpbis-semantics" format="default"/>, caching <xref target="I-D.ietf-httpbis-cache" format="default"/>, HSTS <xref target="RFC6797" format="default"/>, and CORS <xref target="FETCH" format="default"/> might or might not work correctly, depending on how they are defined and implemented. Generally, they are designed and implemented with an assumption that the URL will always be "http" or "https".</li>
            <li>Web features that require a secure context <xref target="SECCTXT" format="default"/> will likely treat a new scheme as insecure.</li>
          </ul>
          <t>See <xref target="RFC7595" format="default"/> for more information about minting new URI schemes.</t>
        </section>
        <section anchor="transport-ports" numbered="true" toc="default">
          <name>Transport Ports</name>
          <t>Applications can use the applicable default port (80 for HTTP, 443 for HTTPS), or they can be deployed upon other ports. This decision can be made at deployment time, or might be encouraged by the application's specification (e.g., by registering a port for that application).</t>
          <t>If a non-default port is used, it needs to be reflected in the authority of all URLs for that resource; the only mechanism for changing a default port is changing the URI scheme (see <xref target="scheme" format="default"/>).</t>
          <t>Using a port other than the default has privacy implications (i.e., the protocol can now be distinguished from other traffic), as well as operability concerns (as some networks might block or otherwise interfere with it). Privacy implications should be documented in Security Considerations.</t>
          <t>See <xref target="RFC7605" format="default"/> for further guidance.</t>
        </section>
      </section>
      <section anchor="using-http-methods" numbered="true" toc="default">
        <name>Using HTTP Methods</name>
        <t>Applications that use HTTP MUST confine themselves to using registered HTTP methods such as GET, POST, PUT, DELETE, and PATCH.</t>
        <t>New HTTP methods are rare; they are required to be registered in the HTTP Method Registry with IETF Review (see <xref target="I-D.ietf-httpbis-semantics" format="default"/>), and are also required to be generic. That means that they need to be potentially applicable to all resources, not just those of one application.</t>
        <t>While historically some applications (e.g., <xref target="RFC4791" format="default"/>) have defined non-generic methods, <xref target="I-D.ietf-httpbis-semantics" format="default"/> now forbids this.</t>
        <t>When authors believe that a new method is required, they are encouraged to engage with the HTTP community early, and document their proposal as a separate HTTP extension, rather than as part of an application's specification.</t>
        <section anchor="get" numbered="true" toc="default">
          <name>GET</name>
          <t>GET is the most common and useful HTTP method; its retrieval semantics allow caching, side-effect free linking and underlies many of the benefits of using HTTP.</t>
          <t>A common use of GET is to perform queries, often using the query component of the URL; this is a familiar pattern from Web browsing, and the results can be cached, improving efficiency of an often expensive process.</t>
          <t>In some cases, however, GET might be unwieldy for expressing queries, because of the limited syntax of the URI; in particular, if binary data forms part of the query terms, it needs to be encoded to conform to URI syntax.</t>
          <t>While this is not an issue for short queries, it can become one for larger query terms, or ones which need to sustain a high rate of requests. Additionally, some HTTP implementations limit the size of URLs they support -- although modern HTTP software has much more generous limits than previously (typically, considerably more than 8000 octets, as required by <xref target="I-D.ietf-httpbis-semantics" format="default"/>.</t>
          <t>In these cases, an application using HTTP might consider using POST to express queries in the request's content; doing so avoids encoding overhead and URL length limits in implementations. However, in doing so it should be noted that the benefits of GET such as caching and linking to query results are lost. Therefore, applications using HTTP that feel a need to allow POST queries ought consider allowing both methods.</t>
          <t>Applications should not change their state or have other side effects that might be significant to the client, since implementations can and do retry HTTP GET requests that fail. Note that this does not include logging and similar functions; see <xref section="9.2.1" sectionFormat="comma" target="I-D.ietf-httpbis-semantics" format="default"/>.</t>
          <t>Finally, note that while HTTP allows GET requests to have content syntactically, this is done only to allow parsers to be generic; as per <xref section="9.3.1" sectionFormat="comma" target="I-D.ietf-httpbis-semantics" format="default"/>, content on a GET has no meaning, and will be either ignored or rejected by generic HTTP software.</t>
        </section>
        <section anchor="options" numbered="true" toc="default">
          <name>OPTIONS</name>
          <t>The OPTIONS method was defined for metadata retrieval, and is used both by WebDAV <xref target="RFC4918" format="default"/> and CORS <xref target="FETCH" format="default"/>. Because HTTP-based APIs often need to retrieve metadata about resources, it is often considered for their use.</t>
          <t>However, OPTIONS does have significant limitations:</t>
          <ul spacing="normal">
            <li>It isn't possible to link to the metadata with a simple URL, because OPTIONS is not the default GET method.</li>
            <li>OPTIONS responses are not cacheable, because HTTP caches operate on representations of the resource (i.e., GET and HEAD). If OPTIONS responses are cached separately, their interaction with HTTP cache expiry, secondary keys and other mechanisms needs to be considered.</li>
            <li>OPTIONS is "chatty" - always separating metadata out into a separate request increases the number of requests needed to interact with the application.</li>
            <li>Implementation support for OPTIONS is not universal; some servers do not expose the ability to respond to OPTIONS requests without significant effort.</li>
          </ul>
          <t>Instead of OPTIONS, one of these alternative approaches might be more appropriate:</t>
          <ul spacing="normal">
            <li>For server-wide metadata, create a well-known URI <xref target="RFC8615" format="default"/>, or using an already existing one if it's appropriate (e.g., HostMeta <xref target="RFC6415" format="default"/>).</li>
            <li>For metadata about a specific resource, create a separate resource and link to it using a Link response header field or a link serialised into the response's content. See <xref target="RFC8288" format="default"/>. Note that the Link header field is available on HEAD responses, which is useful if the client wants to discover a resource's capabilities before they interact with it.</li>
          </ul>
        </section>
      </section>
      <section anchor="using-http-status-codes" numbered="true" toc="default">
        <name>Using HTTP Status Codes</name>
        <t>HTTP status codes convey semantics both for the benefit of generic HTTP components -- such as caches, intermediaries, and clients -- and applications themselves. However, applications can encounter a number of pitfalls in their use.</t>
        <t>First, status codes are often generated by components other the the application itself. This can happen, for example, when network errors are encountered, a captive portal, proxy or Content Delivery Network is present, when a server is overloaded, or it thinks it is under attack. They can even be generated by generic client software when certain error conditions are encountered. As a result, if an application assigns specific semantics to one of these status codes, a client can be misled about its state, because the status code was generated by a generic component, not the application itself.</t>
        <t>Furthermore, mapping application errors to individual HTTP status codes one-to-one often leads to a situation where the finite space of applicable HTTP status codes is exhausted. This, in turn, leads to a number of bad practices -- including minting new, application-specific status codes, or using existing status codes even though the link between their semantics and the application's is tenuous at best.</t>
        <t>Instead, applications using HTTP should define their errors to use the most applicable status code, making generous use of the general status codes (200, 400 and 500) when in doubt. Importantly, they should not specify a one-to-one relationship between status codes and application errors, thereby avoiding the exhaustion issue outlined above.</t>
        <t>To distinguish between multiple error conditions that are mapped to the same status code, and to avoid the misattribution issue outlined above, applications using HTTP should convey finer-grained error information in the response's message content and/or header fields. <xref target="RFC7807" format="default"/> provides one way to do so.</t>
        <t>Because the set of registered HTTP status codes can expand, applications using HTTP should explicitly point out that clients ought to be able to handle all applicable status codes gracefully (i.e., falling back to the generic <tt>n00</tt> semantics of a given status code; e.g., <tt>499</tt> can be safely handled as <tt>400</tt> by clients that don't recognise it). This is preferable to creating a "laundry list" of potential status codes, since such a list won't be complete in the foreseeable future.</t>
        <t>Applications using HTTP MUST NOT re-specify the semantics of HTTP status codes, even if it is only by copying their definition. It is RECOMMENDED they require specific reason phrases to be used; the reason phrase has no function in HTTP, is not guaranteed to be preserved by implementations, and is not carried at all in the HTTP/2 <xref target="RFC7540" format="default"/> message format.</t>
        <t>Applications MUST only use registered HTTP status codes. As with methods, new HTTP status codes are rare, and required (by <xref target="I-D.ietf-httpbis-semantics" format="default"/>) to be registered with IETF Review. Similarly, HTTP status codes are generic; they are required (by <xref target="I-D.ietf-httpbis-semantics" format="default"/>) to be potentially applicable to all resources, not just to those of one application.</t>
        <t>When authors believe that a new status code is required, they are encouraged to engage with the HTTP community early, and document their proposal as a separate HTTP extension, rather than as part of an application's specification.</t>
        <section anchor="redirects" numbered="true" toc="default">
          <name>Redirection</name>
          <t>The 3xx series of status codes specified in <xref section="15.4" sectionFormat="comma" target="I-D.ietf-httpbis-semantics" format="default"/> direct the user agent to another resource to satisfy the request. The most common of these are 301, 302, 307 and 308, all of which use the Location response header field to indicate where the client should send the request to.</t>
          <t>There are two ways that this group of status codes differ:</t>
          <ul spacing="normal">
            <li>Whether they are permanent or temporary. Permanent redirects can be used to update links stored in the client (e.g., bookmarks), whereas temporary ones can not. Note that this has no effect on HTTP caching; it is completely separate.</li>
            <li>Whether they allow the redirected request to change the request method from POST to GET. Web browsers generally do change POST to GET for 301 and 302; therefore, 308 and 307 were created to allow redirection without changing the method.</li>
          </ul>
          <t>This table summarises their relationships:</t>
          <table align="center">
            <thead>
              <tr>
                <th align="left">&nbsp;</th>
                <th align="left">Permanent</th>
                <th align="left">Temporary</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">Allows changing the request method from POST to GET</td>
                <td align="left">301</td>
                <td align="left">302</td>
              </tr>
              <tr>
                <td align="left">Does not allow changing the request method</td>
                <td align="left">308</td>
                <td align="left">307</td>
              </tr>
            </tbody>
          </table>
          <t>As noted in <xref target="I-D.ietf-httpbis-semantics" format="default"/>, a user agent is allowed to automatically follow a 3xx redirect that has a Location response header field, even if they don't understand the semantics of the specific status code. However, they aren't required to do so; therefore, if an application using HTTP desires redirects to be automatically followed, it needs to explicitly specify the circumstances when this is required.</t>
          <t>Redirects can be cached (when appropriate cache directives are present), but beyond that they are not 'sticky' -- i.e., redirection of a URI will not result in the client assuming that similar URIs (e.g., with different query parameters) will also be redirected.</t>
          <t>Applications using HTTP are encouraged to specify that 301 and 302 responses change the subsequent request method from POST (but no other method) to GET, to be compatible with browsers.
Generally, when a redirected request is made, its header fields are copied from the original request's. However, they can be modified by various mechanisms; e.g., sent Authorization (<xref target="I-D.ietf-httpbis-semantics" format="default"/>) and Cookie (<xref target="I-D.ietf-httpbis-rfc6265bis" format="default"/>) header fields will change if the origin (and sometimes path) of the request changes. An application using HTTP should specify if any request header fields that it defines need to be modified or removed upon a redirect; however, this behaviour cannot be relied upon, since a generic client (like a browser) will be unaware of such requirements.</t>
        </section>
      </section>
      <section anchor="headers" numbered="true" toc="default">
        <name>Specifying HTTP Header Fields</name>
        <t>Applications often define new HTTP header fields. Typically, using HTTP header fields is appropriate in a few different situations:</t>
        <ul spacing="normal">
          <li>The field is useful to intermediaries (who often wish to avoid parsing message content), and/or</li>
          <li>The field is useful to generic HTTP software (e.g., clients, servers), and/or</li>
          <li>It is not possible to include their values in the message content (usually because a format does not allow it).</li>
        </ul>
        <t>When the conditions above are not met, it is usually better to convey application-specific information in other places; e.g., the message content or the URL query string.</t>
        <t>New header fields MUST be registered, as per <xref target="I-D.ietf-httpbis-semantics" format="default"/>.</t>
        <t>See <xref section="16.3.2" sectionFormat="comma" target="I-D.ietf-httpbis-semantics" format="default"/> for guidelines to consider when minting new header fields. <xref target="RFC8941" format="default"/> provides a common structure for new header fields, and avoids many issues in their parsing and handling; it is RECOMMENDED that new header fields use it.</t>
        <t>It is RECOMMENDED that header field names be short (even when field compression is used, there is an overhead) but appropriately specific. In particular, if a header field is specific to an application, an identifier for that application can form a prefix to the header field name, separated by a "-".</t>
        <t>For example, if the "example" application needs to create three header fields, they might be called "example-foo", "example-bar" and "example-baz". Note that the primary motivation here is to avoid consuming more generic field names, not to reserve a portion of the namespace for the application; see <xref target="RFC6648" format="default"/> for related considerations.</t>
        <t>The semantics of existing HTTP header fields MUST NOT be re-defined without updating their registration or defining an extension to them (if allowed). For example, an application using HTTP cannot specify that the <tt>Location</tt> header field has a special meaning in a certain context.</t>
        <t>See <xref target="caching" format="default"/> for the interaction between header fields and HTTP caching; in particular, request header fields that are used to "select" a response have impact there, and need to be carefully considered.</t>
        <t>See <xref target="state" format="default"/> for considerations regarding header fields that carry application state (e.g., Cookie).</t>
      </section>
      <section anchor="content" numbered="true" toc="default">
        <name>Defining Message Content</name>
        <t>Common syntactic conventions for message contents include JSON <xref target="RFC8259" format="default"/>, XML <xref target="XML" format="default"/>, and CBOR <xref target="RFC7049" format="default"/>. Best practices for their use are out of scope for this document.</t>
        <t>Applications should register distinct media types for each format they define; this makes it possible to identify them unambiguously and negotiate for their use. See <xref target="RFC6838" format="default"/> for more information.</t>
      </section>
      <section anchor="caching" numbered="true" toc="default">
        <name>Leveraging HTTP Caching</name>
        <t>HTTP caching <xref target="I-D.ietf-httpbis-cache" format="default"/> is one of the primary benefits of using HTTP for applications; it provides scalability, reduces latency and improves reliability. Furthermore, HTTP caches are readily available in browsers and other clients, networks as forward and reverse proxies, Content Delivery Networks and as part of server software.</t>
        <t>Even when an application using HTTP isn't designed to take advantage of caching, it needs to consider how caches will handle its responses, to preserve correct behaviour when one is interposed (whether in the network, server, client, or intervening infrastructure).</t>
        <section anchor="freshness" numbered="true" toc="default">
          <name>Freshness</name>
          <t>Assigning even a short freshness lifetime (<xref section="4.2" sectionFormat="comma" target="I-D.ietf-httpbis-cache" format="default"/>) -- e.g., 5 seconds -- allows a response to be reused to satisfy multiple clients, and/or a single client making the same request repeatedly. In general, if it is safe to reuse something, consider assigning a freshness lifetime.</t>
          <t>The most common method for specifying freshness is the max-age response directive (<xref section="5.2.2.1" sectionFormat="comma" target="I-D.ietf-httpbis-cache" format="default"/>). The Expires header field (<xref section="5.3" sectionFormat="comma" target="I-D.ietf-httpbis-cache" format="default"/>) can also be used, but it is not necessary; all modern cache implementations support Cache-Control, and specifying freshness as a delta is usually more convenient and less error-prone.</t>
          <t>It is not necessary to add the public response directive (<xref section="5.2.2.9" sectionFormat="comma" target="I-D.ietf-httpbis-cache" format="default"/>) to cache most responses; it is only necessary when it's desirable to store an authenticated response.</t>
          <t>In some situations, responses without explicit cache freshness directives will be stored and served using a heuristic freshness lifetime; see <xref section="4.2.2" sectionFormat="comma" target="I-D.ietf-httpbis-cache" format="default"/>. As the heuristic is not under control of the application, it is generally preferable to set an explicit freshness lifetime, or make the response explicitly uncacheable.</t>
          <t>If caching of a response is not desired, the appropriate response directive is "Cache-Control: no-store". Other directives are not necessary, and no-store only need be sent in situations where the response might be cached; see <xref section="3" sectionFormat="comma" target="I-D.ietf-httpbis-cache" format="default"/>. Note that "Cache-Control: no-cache" allows a response to be stored, just not reused by a cache without validation; it does not prevent caching (despite its name).</t>
          <t>For example, this response cannot be stored or reused by a cache:</t>
          <sourcecode type="http-message">
HTTP/1.1 200 OK
Content-Type: application/example+xml
Cache-Control: no-store

[content]
</sourcecode>
        </section>
        <section anchor="stale-responses" numbered="true" toc="default">
          <name>Stale Responses</name>
          <t>Authors should understand that stale responses (e.g., with "Cache-Control: max-age=0") can be reused by caches when disconnected from the origin server; this can be useful for handling network issues.</t>
          <t>If doing so is not suitable for a given response, the origin should use "Cache-Control: must-revalidate". See <xref section="4.2.4" sectionFormat="comma" target="I-D.ietf-httpbis-cache" format="default"/>, and also <xref target="RFC5861" format="default"/> for additional controls over stale content.</t>
          <t>Stale responses can be refreshed by assigning a validator, saving both transfer bandwidth and latency for large responses; see <xref target="I-D.ietf-httpbis-semantics" format="default"/>.</t>
        </section>
        <section anchor="caching-and-application-semantics" numbered="true" toc="default">
          <name>Caching and Application Semantics</name>
          <t>When an application has a need to express a lifetime that's separate from the freshness lifetime, this should be conveyed separately, either in the response's content or in a separate header field. When this happens, the relationship between HTTP caching and that lifetime need to be carefully considered, since the response will be used as long as it is considered fresh.</t>
          <t>In particular, application authors need to consider how responses that are not freshly obtained from the origin server should be handled; if they have a concept like a validity period, this will need to be calculated considering the age of the response (see <xref section="4.2.3" sectionFormat="comma" target="I-D.ietf-httpbis-cache" format="default"/>).</t>
          <t>One way to address this is to explicitly specify that all responses be fresh upon use.</t>
        </section>
        <section anchor="varying-content-based-upon-the-request" numbered="true" toc="default">
          <name>Varying Content Based Upon the Request</name>
          <t>If an application uses a request header field to change the response's header fields or content, authors should point out that this has implications for caching; in general, such resources need to either make their responses uncacheable (e.g., with the "no-store" cache-control directive defined in <xref section="5.2.2.3" sectionFormat="comma" target="I-D.ietf-httpbis-cache" format="default"/>) or send the Vary response header field (<xref section="12.5.5" sectionFormat="comma" target="I-D.ietf-httpbis-semantics" format="default"/>) on all responses from that resource (including the "default" response).</t>
          <t>For example, this response:</t>
          <sourcecode type="http-message">
HTTP/1.1 200 OK
Content-Type: application/example+xml
Cache-Control: max-age=60
ETag: "sa0f8wf20fs0f"
Vary: Accept-Encoding

[content]
</sourcecode>
          <t>can be stored for 60 seconds by both private and shared caches, can be revalidated with If-None-Match, and varies on the Accept-Encoding request header field.</t>
        </section>
      </section>
      <section anchor="state" numbered="true" toc="default">
        <name>Handling Application State</name>
        <t>Applications can use stateful cookies <xref target="I-D.ietf-httpbis-rfc6265bis" format="default"/> to identify a client and/or store client-specific data to contextualise requests.</t>
        <t>When used, it is important to carefully specify the scoping and use of cookies; if the application exposes sensitive data or capabilities (e.g., by acting as an ambient authority), exploits are possible. Mitigations include using a request-specific token to assure the intent of the client.</t>
      </section>
      <section anchor="multiplex" numbered="true" toc="default">
        <name>Making Multiple Requests</name>
        <t>Clients often need to send multiple requests to perform a task.</t>
        <t>In HTTP/1, parallel requests are most often supported by opening multiple connections. Application performance can be impacted when too many simultaneous connections are used, because connections' congestion control will not be coordinated. Furthermore, it can be difficult for applications to decide when and to select which connection to use to issue a given request, further impacting performance.</t>
        <t>HTTP/2 and HTTP/3 offer multiplexing to applications, removing the need to use multiple connections. However, application performance can still be significantly affected by how the server chooses to prioritize responses. Depending on the application, it might be best for the server to determine the priority of responses, or for the client to hint its priorities to the server (see, e.g., <xref target="I-D.ietf-httpbis-priority" format="default"/>).</t>
        <t>In all versions of HTTP, requests are made independently -- you can't rely on the relative order of two requests to guarantee processing order. This is because they might be sent over a multiplexed protocol by an intermediary, sent to different origin servers, or the server might even perform processing in a different order. If two requests need strict ordering, the only reliable way to assure the outcome is to issue the second request when the final response to the first has begun.</t>
        <t>Applications MUST NOT make assumptions about the relationship between separate requests on a single transport connection; doing so breaks many of the assumptions of HTTP as a stateless protocol, and will cause problems in interoperability, security, operability and evolution.</t>
      </section>
      <section anchor="client-auth" numbered="true" toc="default">
        <name>Client Authentication</name>
        <t>Applications can use HTTP authentication <xref target="I-D.ietf-httpbis-semantics" format="default"/> to identify clients. The Basic authentication scheme <xref target="RFC7617" format="default"/> MUST NOT be used unless the underlying transport is authenticated, integrity-protected and confidential (e.g., as provided the "HTTPS" URI scheme, or another using TLS). The Digest scheme <xref target="RFC7616" format="default"/> MUST NOT be used unless the underlying transport is similarly secure, or the chosen hash algorithm is not "MD5".</t>
        <t>With HTTPS, clients might also be authenticated using certificates <xref target="RFC5246" format="default"/>.</t>
        <t>When used, it is important to carefully specify the scoping and use of authentication; if the application exposes sensitive data or capabilities (e.g., by acting as an ambient authority), exploits are possible. Mitigations include using a request-specific token to assure the intent of the client.</t>
      </section>
      <section anchor="browser" numbered="true" toc="default">
        <name>Co-Existing with Web Browsing</name>
        <t>Even if there is not an intent for an application to be used with a Web browser, its resources will remain available to browsers and other HTTP clients.</t>
        <t>This means that all such applications that use HTTP need to consider how browsers will interact with them, particularly regarding security.</t>
        <t>For example, if an application's state can be changed using a POST request, a Web browser can easily be coaxed into cross-site request forgery (CSRF) from arbitrary Web sites.</t>
        <t>Or, if content returned from the application's resources is under control of an attacker (for example, part of the request is reflected in the response, or the response contains external information that might be under the control of the attacker), a cross-site scripting (XSS) attack is possible, whereby an attacker can inject code into the browser and access data and capabilities on that origin.</t>
        <t>This is only a small sample of the kinds of issues that applications using HTTP must consider. Generally, the best approach is to consider the application actually as a Web application, and to follow best practices for their secure development.</t>
        <t>A complete enumeration of such practices is out of scope for this document, but some considerations include:</t>
        <ul spacing="normal">
          <li>Using an application-specific media type in the Content-Type header field, and requiring clients to fail if it is not used.</li>
          <li>Using X-Content-Type-Options: nosniff <xref target="FETCH" format="default"/> to assure that content under attacker control can't be coaxed into a form that is interpreted as active content by a Web browser.</li>
          <li>Using Content-Security-Policy <xref target="CSP" format="default"/> to constrain the capabilities of active content (such as HTML <xref target="HTML" format="default"/>), thereby mitigating Cross-Site Scripting attacks.</li>
          <li>Using Referrer-Policy <xref target="REFERRER-POLICY" format="default"/> to prevent sensitive data in URLs from being leaked in the Referer request header field.</li>
          <li>Using the 'HttpOnly' flag on Cookies to assure that cookies are not exposed to browser scripting languages <xref target="I-D.ietf-httpbis-rfc6265bis" format="default"/>.</li>
          <li>Avoiding use of compression on any sensitive information (e.g., authentication tokens, passwords), as the scripting environment offered by Web browsers allows an attacker to repeatedly probe the compression space; if the attacker has access to the path of the communication, they can use this capability to recover that information.</li>
        </ul>
        <t>Depending on how they are intended to be deployed, specifications for applications using HTTP might require the use of these mechanisms in specific ways, or might merely point them out in Security Considerations.</t>
        <t>An example of a HTTP response from an application that does not intend for its content to be treated as active by browsers might look like this:</t>
        <sourcecode type="http-message">
HTTP/1.1 200 OK
Content-Type: application/example+json
X-Content-Type-Options: nosniff
Content-Security-Policy: default-src 'none'
Cache-Control: max-age=3600
Referrer-Policy: no-referrer

[content]
</sourcecode>
        <t>If an application has browser compatibility as a goal, client interaction ought to be defined in terms of <xref target="FETCH" format="default"/>, since that is the abstraction that browsers use for HTTP; it enforces many of these best practices.</t>
      </section>
      <section anchor="other-apps" numbered="true" toc="default">
        <name>Maintaining Application Boundaries</name>
        <t>Because the origin <xref target="RFC6454" format="default"/> is how many HTTP capabilities are scoped, applications also need to consider how deployments might interact with other applications (including Web browsing) on the same origin.</t>
        <t>For example, if Cookies <xref target="I-D.ietf-httpbis-rfc6265bis" format="default"/> are used to carry application state, they will be sent with all requests to the origin by default, unless scoped by path, and the application might receive cookies from other applications on the origin. This can lead to security issues, as well as collision in cookie names.</t>
        <t>One solution to these issues is to require a dedicated hostname for the application, so that it has a unique origin. However, it is often desirable to allow multiple applications to be deployed on a single hostname; doing so provides the most deployment flexibility and enables them to be "mixed" together (See <xref target="RFC8820" format="default"/> for details). Therefore, applications using HTTP should strive to allow multiple applications on an origin.</t>
        <t>To enable this, when specifying the use of Cookies, HTTP authentication realms <xref target="I-D.ietf-httpbis-semantics" format="default"/>, or other origin-wide HTTP mechanisms, applications using HTTP should not mandate the use of a particular name, but instead let deployments configure them. Consideration should be given to scoping them to part of the origin, using their specified mechanisms for doing so.</t>
        <t>Modern Web browsers constrain the ability of content from one origin to access resources from another, to avoid leaking private information. As a result, applications that wish to expose cross-origin data to browsers will need to implement the CORS protocol; see <xref target="FETCH" format="default"/>.</t>
      </section>
      <section anchor="server-push" numbered="true" toc="default">
        <name>Using Server Push</name>
        <t>HTTP/2 adds the ability for servers to "push" request/response pairs to clients in <xref section="8.2" sectionFormat="comma" target="RFC7540" format="default"/>. While server push seems like a natural fit for many common application semantics (e.g., "fanout" and publish/subscribe), a few caveats should be noted:</t>
        <ul spacing="normal">
          <li>Server push is hop-by-hop; that is, it is not automatically forwarded by intermediaries. As a result, it might not work easily (or at all) with proxies, reverse proxies, and Content Delivery Networks.</li>
          <li>Server push can have negative performance impact on HTTP when used incorrectly; in particular, if there is contention with resources that have actually been requested by the client.</li>
          <li>Server push is implemented differently in different clients, especially regarding interaction with HTTP caching, and capabilities might vary.</li>
          <li>APIs for server push are currently unavailable in some implementations, and vary widely in others. In particular, there is no current browser API for it.</li>
          <li>Server push is not supported in HTTP/1.1 or HTTP/1.0.</li>
          <li>Server push does not form part of the "core" semantics of HTTP, and therefore might not be supported by future versions of the protocol.</li>
        </ul>
        <t>Applications wishing to optimise cases where the client can perform work related to requests before the full response is available (e.g., fetching links for things likely to be contained within) might benefit from using the 103 (Early Hints) status code; see <xref target="RFC8297" format="default"/>.</t>
        <t>Applications using server push directly need to enforce the requirements regarding authority in <xref section="8.2" sectionFormat="comma" target="RFC7540" format="default"/>, to avoid cross-origin push attacks.</t>
      </section>
      <section anchor="versioning" numbered="true" toc="default">
        <name>Allowing Versioning and Evolution</name>
        <t>It's often necessary to introduce new features into application protocols, and change existing ones.</t>
        <t>In HTTP, backwards-incompatible changes are possible using a number of mechanisms:</t>
        <ul spacing="normal">
          <li>Using a distinct link relation type <xref target="RFC8288" format="default"/> to identify a URL for a resource that implements the new functionality.</li>
          <li>Using a distinct media type <xref target="RFC6838" format="default"/> to identify formats that enable the new functionality.</li>
          <li>Using a distinct HTTP header field to implement new functionality outside the message content.</li>
        </ul>
      </section>
    </section>
    <section anchor="iana-considerations" numbered="true" toc="default">
      <name>IANA Considerations</name>
      <t>This document has no requirements for IANA.</t>
    </section>
    <section anchor="security-considerations" numbered="true" toc="default">
      <name>Security Considerations</name>
      <t><xref target="state" format="default"/> discusses the impact of using stateful mechanisms in the protocol as ambient authority, and suggests a mitigation.</t>
      <t><xref target="scheme" format="default"/> requires support for 'https' URLs, and discourages the use of 'http' URLs, to provide authentication, integrity and confidentiality, as well as mitigate pervasive monitoring attacks.</t>
      <t><xref target="browser" format="default"/> highlights the implications of Web browsers' capabilities on applications that use HTTP.</t>
      <t><xref target="other-apps" format="default"/> discusses the issues that arise when applications are deployed on the same origin as Web sites (and other applications).</t>
      <t><xref target="server-push" format="default"/> highlights risks of using HTTP/2 server push in a manner other than specified.</t>
      <t>Applications that use HTTP in a manner that involves modification of implementations -- for example, requiring support for a new URI scheme, or a non-standard method -- risk having those implementations "fork" from their parent HTTP implementations, with the possible result that they do not benefit from patches and other security improvements incorporated upstream.</t>
      <section anchor="privacy-considerations" numbered="true" toc="default">
        <name>Privacy Considerations</name>
        <t>HTTP clients can expose a variety of information to servers. Besides information that's explicitly sent as part of an application's operation (for example, names and other user-entered data), and "on the wire" (which is one of the reasons https is recommended in <xref target="scheme" format="default"/>), other information can be gathered through less obvious means -- often by connecting activities of a user over time.</t>
        <t>This includes session information, tracking the client through fingerprinting, and mobile code.</t>
        <t>Session information includes things like the IP address of the client, TLS session tickets, Cookies, ETags stored in the client's cache, and other stateful mechanisms. Applications are advised to avoid using session mechanisms unless they are unavoidable or necessary for operation, in which case these risks needs to be documented. When they are used, implementations should be encouraged to allow clearing such state.</t>
        <t>Fingerprinting uses unique aspects of a client's messages and behaviours to connect disparate requests and connections. For example, the User-Agent request header field conveys specific information about the implementation; the Accept-Language request header field conveys the users' preferred language. In combination, a number of these markers can be used to uniquely identify a client, impacting its control over its data. As a result, applications are advised to specify that clients should only emit the information they need to function in requests.</t>
        <t>Finally, if an application exposes the ability to run mobile code, great care needs to be taken, since any ability to observe its environment can be used as an opportunity to both fingerprint the client and to obtain and manipulate private data (including session information). For example, access to high-resolution timers (even indirectly) can be used to profile the underlying hardware, creating a unique identifier for the system. Applications are advised to avoid allowing the use of mobile code where possible; when it cannot be avoided, the resulting system's security properties need be carefully scrutinised.</t>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="I-D.ietf-httpbis-semantics">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="Roy T. Fielding">
              <organization>Adobe</organization>
            </author>
            <author fullname="Mark Nottingham">
              <organization>Fastly</organization>
            </author>
            <author fullname="Julian Reschke">
              <organization>greenbytes GmbH</organization>
            </author>
            <date day="12" month="January" year="2021"/>
            <abstract>
              <t>   The Hypertext Transfer Protocol (HTTP) is a stateless application-
   level protocol for distributed, collaborative, hypertext information
   systems.  This document describes the overall architecture of HTTP,
   establishes common terminology, and defines aspects of the protocol
   that are shared by all versions.  In this definition are core
   protocol elements, extensibility mechanisms, and the "http" and
   "https" Uniform Resource Identifier (URI) schemes.

   This document obsoletes RFC 2818, RFC 7231, RFC 7232, RFC 7233, RFC
   7235, RFC 7538, RFC 7615, RFC 7694, and portions of RFC 7230.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-semantics-14"/>
        </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">
              <organization/>
            </author>
            <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="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <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="RFC7301">
          <front>
            <title>Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension</title>
            <author fullname="S. Friedl" initials="S." surname="Friedl">
              <organization/>
            </author>
            <author fullname="A. Popov" initials="A." surname="Popov">
              <organization/>
            </author>
            <author fullname="A. Langley" initials="A." surname="Langley">
              <organization/>
            </author>
            <author fullname="E. Stephan" initials="E." surname="Stephan">
              <organization/>
            </author>
            <date month="July" year="2014"/>
            <abstract>
              <t>This document describes a Transport Layer Security (TLS) extension for application-layer protocol negotiation within the TLS handshake. For instances in which multiple application protocols are supported on the same TCP or UDP port, this extension allows the application layer to negotiate which protocol will be used within the TLS connection.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7301"/>
          <seriesInfo name="DOI" value="10.17487/RFC7301"/>
        </reference>
        <reference anchor="RFC8820">
          <front>
            <title>URI Design and Ownership</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <date month="June" year="2020"/>
            <abstract>
              <t>Section 1.1.1 of RFC 3986 defines URI syntax as "a federated and extensible naming system wherein each scheme's specification may further restrict the syntax and semantics of identifiers using that scheme."  In other words, the structure of a URI is defined by its scheme. While it is common for schemes to further delegate their substructure to the URI's owner, publishing independent standards that mandate particular forms of substructure in URIs is often problematic.</t>
              <t>This document provides guidance on the specification of URI substructure in standards.</t>
              <t>This document obsoletes RFC 7320 and updates RFC 3986.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="190"/>
          <seriesInfo name="RFC" value="8820"/>
          <seriesInfo name="DOI" value="10.17487/RFC8820"/>
        </reference>
        <reference anchor="RFC6838">
          <front>
            <title>Media Type Specifications and Registration Procedures</title>
            <author fullname="N. Freed" initials="N." surname="Freed">
              <organization/>
            </author>
            <author fullname="J. Klensin" initials="J." surname="Klensin">
              <organization/>
            </author>
            <author fullname="T. Hansen" initials="T." surname="Hansen">
              <organization/>
            </author>
            <date month="January" year="2013"/>
            <abstract>
              <t>This document defines procedures for the specification and registration of media types for use in HTTP, MIME, and other Internet protocols.  This memo documents an Internet Best Current Practice.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="13"/>
          <seriesInfo name="RFC" value="6838"/>
          <seriesInfo name="DOI" value="10.17487/RFC6838"/>
        </reference>
        <reference anchor="RFC8288">
          <front>
            <title>Web Linking</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <date month="October" year="2017"/>
            <abstract>
              <t>This specification defines a model for the relationships between resources on the Web ("links") and the type of those relationships ("link relation types").</t>
              <t>It also defines the serialisation of such links in HTTP headers with the Link header field.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8288"/>
          <seriesInfo name="DOI" value="10.17487/RFC8288"/>
        </reference>
        <reference anchor="RFC3986">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee">
              <organization/>
            </author>
            <author fullname="R. Fielding" initials="R." surname="Fielding">
              <organization/>
            </author>
            <author fullname="L. Masinter" initials="L." surname="Masinter">
              <organization/>
            </author>
            <date month="January" year="2005"/>
            <abstract>
              <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource.  This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet.  The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier.  This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="66"/>
          <seriesInfo name="RFC" value="3986"/>
          <seriesInfo name="DOI" value="10.17487/RFC3986"/>
        </reference>
        <reference anchor="RFC8615">
          <front>
            <title>Well-Known Uniform Resource Identifiers (URIs)</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <date month="May" year="2019"/>
            <abstract>
              <t>This memo defines a path prefix for "well-known locations", "/.well-known/", in selected Uniform Resource Identifier (URI) schemes.</t>
              <t>In doing so, it obsoletes RFC 5785 and updates the URI schemes defined in RFC 7230 to reserve that space.  It also updates RFC 7595 to track URI schemes that support well-known URIs in their registry.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8615"/>
          <seriesInfo name="DOI" value="10.17487/RFC8615"/>
        </reference>
        <reference anchor="RFC6454">
          <front>
            <title>The Web Origin Concept</title>
            <author fullname="A. Barth" initials="A." surname="Barth">
              <organization/>
            </author>
            <date month="December" year="2011"/>
            <abstract>
              <t>This document defines the concept of an "origin", which is often used as the scope of authority or privilege by user agents.  Typically, user agents isolate content retrieved from different origins to prevent malicious web site operators from interfering with the operation of benign web sites.  In addition to outlining the principles that underlie the concept of origin, this document details how to determine the origin of a URI and how to serialize an origin into a string.  It also defines an HTTP header field, named "Origin", that indicates which origins are associated with an HTTP request.   [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6454"/>
          <seriesInfo name="DOI" value="10.17487/RFC6454"/>
        </reference>
        <reference anchor="RFC6648">
          <front>
            <title>Deprecating the "X-" Prefix and Similar Constructs in Application Protocols</title>
            <author fullname="P. Saint-Andre" initials="P." surname="Saint-Andre">
              <organization/>
            </author>
            <author fullname="D. Crocker" initials="D." surname="Crocker">
              <organization/>
            </author>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <date month="June" year="2012"/>
            <abstract>
              <t>Historically, designers and implementers of application protocols have often distinguished between standardized and unstandardized parameters by prefixing the names of unstandardized parameters with the string "X-" or similar constructs.  In practice, that convention causes more problems than it solves.  Therefore, this document deprecates the convention for newly defined parameters with textual (as opposed to numerical) names in application protocols. This memo documents an Internet Best Current Practice.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="178"/>
          <seriesInfo name="RFC" value="6648"/>
          <seriesInfo name="DOI" value="10.17487/RFC6648"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="HTML" target="https://html.spec.whatwg.org">
          <front>
            <title>HTML - Living Standard</title>
            <author>
              <organization>WHATWG</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="FETCH" target="https://fetch.spec.whatwg.org">
          <front>
            <title>Fetch - Living Standard</title>
            <author>
              <organization>WHATWG</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="RFC8259">
          <front>
            <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
            <author fullname="T. Bray" initials="T." role="editor" surname="Bray">
              <organization/>
            </author>
            <date month="December" year="2017"/>
            <abstract>
              <t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format.  It was derived from the ECMAScript Programming Language Standard.  JSON defines a small set of formatting rules for the portable representation of structured data.</t>
              <t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="90"/>
          <seriesInfo name="RFC" value="8259"/>
          <seriesInfo name="DOI" value="10.17487/RFC8259"/>
        </reference>
        <reference anchor="RFC6570">
          <front>
            <title>URI Template</title>
            <author fullname="J. Gregorio" initials="J." surname="Gregorio">
              <organization/>
            </author>
            <author fullname="R. Fielding" initials="R." surname="Fielding">
              <organization/>
            </author>
            <author fullname="M. Hadley" initials="M." surname="Hadley">
              <organization/>
            </author>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <author fullname="D. Orchard" initials="D." surname="Orchard">
              <organization/>
            </author>
            <date month="March" year="2012"/>
            <abstract>
              <t>A URI Template is a compact sequence of characters for describing a range of Uniform Resource Identifiers through variable expansion. This specification defines the URI Template syntax and the process for expanding a URI Template into a URI reference, along with guidelines for the use of URI Templates on the Internet.   [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6570"/>
          <seriesInfo name="DOI" value="10.17487/RFC6570"/>
        </reference>
        <reference anchor="I-D.ietf-httpbis-rfc6265bis">
          <front>
            <title>Cookies: HTTP State Management Mechanism</title>
            <author fullname="Mike West">
              <organization>Google, Inc</organization>
            </author>
            <author fullname="John Wilander">
              <organization>Apple, Inc</organization>
            </author>
            <date day="7" month="December" year="2020"/>
            <abstract>
              <t>   This document defines the HTTP Cookie and Set-Cookie header fields.
   These header fields can be used by HTTP servers to store state
   (called cookies) at HTTP user agents, letting the servers maintain a
   stateful session over the mostly stateless HTTP protocol.  Although
   cookies have many historical infelicities that degrade their security
   and privacy, the Cookie and Set-Cookie header fields are widely used
   on the Internet.  This document obsoletes RFC 6265.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-rfc6265bis-07"/>
        </reference>
        <reference anchor="RFC7258">
          <front>
            <title>Pervasive Monitoring Is an Attack</title>
            <author fullname="S. Farrell" initials="S." surname="Farrell">
              <organization/>
            </author>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig">
              <organization/>
            </author>
            <date month="May" year="2014"/>
            <abstract>
              <t>Pervasive monitoring is a technical attack that should be mitigated in the design of IETF protocols, where possible.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="188"/>
          <seriesInfo name="RFC" value="7258"/>
          <seriesInfo name="DOI" value="10.17487/RFC7258"/>
        </reference>
        <reference anchor="I-D.ietf-httpbis-cache">
          <front>
            <title>HTTP Caching</title>
            <author fullname="Roy T. Fielding">
              <organization>Adobe</organization>
            </author>
            <author fullname="Mark Nottingham">
              <organization>Fastly</organization>
            </author>
            <author fullname="Julian Reschke">
              <organization>greenbytes GmbH</organization>
            </author>
            <date day="12" month="January" year="2021"/>
            <abstract>
              <t>   The Hypertext Transfer Protocol (HTTP) is a stateless application-
   level protocol for distributed, collaborative, hypertext information
   systems.  This document defines HTTP caches and the associated header
   fields that control cache behavior or indicate cacheable response
   messages.

   This document obsoletes RFC 7234.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-cache-14"/>
        </reference>
        <reference anchor="RFC6797">
          <front>
            <title>HTTP Strict Transport Security (HSTS)</title>
            <author fullname="J. Hodges" initials="J." surname="Hodges">
              <organization/>
            </author>
            <author fullname="C. Jackson" initials="C." surname="Jackson">
              <organization/>
            </author>
            <author fullname="A. Barth" initials="A." surname="Barth">
              <organization/>
            </author>
            <date month="November" year="2012"/>
            <abstract>
              <t>This specification defines a mechanism enabling web sites to declare themselves accessible only via secure connections and/or for users to be able to direct their user agent(s) to interact with given sites only over secure connections.  This overall policy is referred to as HTTP Strict Transport Security (HSTS).  The policy is declared by web sites via the Strict-Transport-Security HTTP response header field and/or by other means, such as user agent configuration, for example. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6797"/>
          <seriesInfo name="DOI" value="10.17487/RFC6797"/>
        </reference>
        <reference anchor="SECCTXT" target="https://www.w3.org/TR/2016/CR-secure-contexts-20160915">
          <front>
            <title>Secure Contexts</title>
            <author fullname="Mike West" initials="M." surname="West">
              <organization/>
            </author>
            <date day="15" month="September" year="2016"/>
          </front>
          <seriesInfo name="World Wide Web Consortium CR" value="CR-secure-contexts-20160915"/>
        </reference>
        <reference anchor="RFC7595">
          <front>
            <title>Guidelines and Registration Procedures for URI Schemes</title>
            <author fullname="D. Thaler" initials="D." role="editor" surname="Thaler">
              <organization/>
            </author>
            <author fullname="T. Hansen" initials="T." surname="Hansen">
              <organization/>
            </author>
            <author fullname="T. Hardie" initials="T." surname="Hardie">
              <organization/>
            </author>
            <date month="June" year="2015"/>
            <abstract>
              <t>This document updates the guidelines and recommendations, as well as the IANA registration processes, for the definition of Uniform Resource Identifier (URI) schemes.  It obsoletes RFC 4395.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="35"/>
          <seriesInfo name="RFC" value="7595"/>
          <seriesInfo name="DOI" value="10.17487/RFC7595"/>
        </reference>
        <reference anchor="RFC7605">
          <front>
            <title>Recommendations on Using Assigned Transport Port Numbers</title>
            <author fullname="J. Touch" initials="J." surname="Touch">
              <organization/>
            </author>
            <date month="August" year="2015"/>
            <abstract>
              <t>This document provides recommendations to designers of application and service protocols on how to use the transport protocol port number space and when to request a port assignment from IANA.  It provides designer guidance to requesters or users of port numbers on how to interact with IANA using the processes defined in RFC 6335; thus, this document complements (but does not update) that document.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="165"/>
          <seriesInfo name="RFC" value="7605"/>
          <seriesInfo name="DOI" value="10.17487/RFC7605"/>
        </reference>
        <reference anchor="RFC4791">
          <front>
            <title>Calendaring Extensions to WebDAV (CalDAV)</title>
            <author fullname="C. Daboo" initials="C." surname="Daboo">
              <organization/>
            </author>
            <author fullname="B. Desruisseaux" initials="B." surname="Desruisseaux">
              <organization/>
            </author>
            <author fullname="L. Dusseault" initials="L." surname="Dusseault">
              <organization/>
            </author>
            <date month="March" year="2007"/>
            <abstract>
              <t>This document defines extensions to the Web Distributed Authoring and Versioning (WebDAV) protocol to specify a standard way of accessing, managing, and sharing calendaring and scheduling information based on the iCalendar format.  This document defines the "calendar-access" feature of CalDAV.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4791"/>
          <seriesInfo name="DOI" value="10.17487/RFC4791"/>
        </reference>
        <reference anchor="RFC4918">
          <front>
            <title>HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV)</title>
            <author fullname="L. Dusseault" initials="L." role="editor" surname="Dusseault">
              <organization/>
            </author>
            <date month="June" year="2007"/>
            <abstract>
              <t>Web Distributed Authoring and Versioning (WebDAV) consists of a set of methods, headers, and content-types ancillary to HTTP/1.1 for the management of resource properties, creation and management of resource collections, URL namespace manipulation, and resource locking (collision avoidance).</t>
              <t>RFC 2518 was published in February 1999, and this specification obsoletes RFC 2518 with minor revisions mostly due to interoperability experience.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4918"/>
          <seriesInfo name="DOI" value="10.17487/RFC4918"/>
        </reference>
        <reference anchor="RFC6415">
          <front>
            <title>Web Host Metadata</title>
            <author fullname="E. Hammer-Lahav" initials="E." role="editor" surname="Hammer-Lahav">
              <organization/>
            </author>
            <author fullname="B. Cook" initials="B." surname="Cook">
              <organization/>
            </author>
            <date month="October" year="2011"/>
            <abstract>
              <t>This specification describes a method for locating host metadata as well as information about individual resources controlled by the host.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6415"/>
          <seriesInfo name="DOI" value="10.17487/RFC6415"/>
        </reference>
        <reference anchor="RFC7807">
          <front>
            <title>Problem Details for HTTP APIs</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <author fullname="E. Wilde" initials="E." surname="Wilde">
              <organization/>
            </author>
            <date month="March" year="2016"/>
            <abstract>
              <t>This document defines a "problem detail" as a way to carry machine- readable details of errors in a HTTP response to avoid the need to define new error response formats for HTTP APIs.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7807"/>
          <seriesInfo name="DOI" value="10.17487/RFC7807"/>
        </reference>
        <reference anchor="RFC7540">
          <front>
            <title>Hypertext Transfer Protocol Version 2 (HTTP/2)</title>
            <author fullname="M. Belshe" initials="M." surname="Belshe">
              <organization/>
            </author>
            <author fullname="R. Peon" initials="R." surname="Peon">
              <organization/>
            </author>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
              <organization/>
            </author>
            <date month="May" year="2015"/>
            <abstract>
              <t>This specification describes an optimized expression of the semantics of the Hypertext Transfer Protocol (HTTP), referred to as HTTP version 2 (HTTP/2).  HTTP/2 enables a more efficient use of network resources and a reduced perception of latency by introducing header field compression and allowing multiple concurrent exchanges on the same connection.  It also introduces unsolicited push of representations from servers to clients.</t>
              <t>This specification is an alternative to, but does not obsolete, the HTTP/1.1 message syntax.  HTTP's existing semantics remain unchanged.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7540"/>
          <seriesInfo name="DOI" value="10.17487/RFC7540"/>
        </reference>
        <reference anchor="RFC8941">
          <front>
            <title>Structured Field Values for HTTP</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <author fullname="P-H. Kamp" initials="P-H." surname="Kamp">
              <organization/>
            </author>
            <date month="February" year="2021"/>
            <abstract>
              <t>This document describes a set of data types and associated algorithms that are intended to make it easier and safer to define and handle HTTP header and trailer fields, known as "Structured Fields", "Structured Headers", or "Structured Trailers". It is intended for use by specifications of new HTTP fields that wish to use a common syntax that is more restrictive than traditional HTTP field values.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8941"/>
          <seriesInfo name="DOI" value="10.17487/RFC8941"/>
        </reference>
        <reference anchor="XML" target="https://www.w3.org/TR/2008/REC-xml-20081126">
          <front>
            <title>Extensible Markup Language (XML) 1.0 (Fifth Edition)</title>
            <author fullname="Tim Bray" initials="T." surname="Bray">
              <organization/>
            </author>
            <author fullname="Jean Paoli" initials="J." surname="Paoli">
              <organization/>
            </author>
            <author fullname="Michael Sperberg-McQueen" initials="M." surname="Sperberg-McQueen">
              <organization/>
            </author>
            <author fullname="Eve Maler" initials="E." surname="Maler">
              <organization/>
            </author>
            <author fullname="FranÃ§ois Yergeau" initials="F." surname="Yergeau">
              <organization/>
            </author>
            <date day="26" month="November" year="2008"/>
          </front>
          <seriesInfo name="World Wide Web Consortium Recommendation" value="REC-xml-20081126"/>
        </reference>
        <reference anchor="RFC7049">
          <front>
            <title>Concise Binary Object Representation (CBOR)</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman">
              <organization/>
            </author>
            <date month="October" year="2013"/>
            <abstract>
              <t>The Concise Binary Object Representation (CBOR) is a data format whose design goals include the possibility of extremely small code size, fairly small message size, and extensibility without the need for version negotiation.  These design goals make it different from earlier binary serializations such as ASN.1 and MessagePack.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7049"/>
          <seriesInfo name="DOI" value="10.17487/RFC7049"/>
        </reference>
        <reference anchor="RFC5861">
          <front>
            <title>HTTP Cache-Control Extensions for Stale Content</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <date month="May" year="2010"/>
            <abstract>
              <t>This document defines two independent HTTP Cache-Control extensions that allow control over the use of stale responses by caches.  This  document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5861"/>
          <seriesInfo name="DOI" value="10.17487/RFC5861"/>
        </reference>
        <reference anchor="I-D.ietf-httpbis-priority">
          <front>
            <title>Extensible Prioritization Scheme for HTTP</title>
            <author fullname="Kazuho Oku">
              <organization>Fastly</organization>
            </author>
            <author fullname="Lucas Pardue">
              <organization>Cloudflare</organization>
            </author>
            <date day="11" month="January" year="2021"/>
            <abstract>
              <t>   This document describes a scheme for prioritizing HTTP responses.
   This scheme expresses the priority of each HTTP response using
   absolute values, rather than as a relative relationship between a
   group of HTTP responses.

   This document defines the Priority header field for communicating the
   initial priority in an HTTP version-independent manner, as well as
   HTTP/2 and HTTP/3 frames for reprioritizing the responses.  These
   share a common format structure that is designed to provide future
   extensibility.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-priority-03"/>
        </reference>
        <reference anchor="RFC7617">
          <front>
            <title>The 'Basic' HTTP Authentication Scheme</title>
            <author fullname="J. Reschke" initials="J." surname="Reschke">
              <organization/>
            </author>
            <date month="September" year="2015"/>
            <abstract>
              <t>This document defines the "Basic" Hypertext Transfer Protocol (HTTP) authentication scheme, which transmits credentials as user-id/ password pairs, encoded using Base64.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7617"/>
          <seriesInfo name="DOI" value="10.17487/RFC7617"/>
        </reference>
        <reference anchor="RFC7616">
          <front>
            <title>HTTP Digest Access Authentication</title>
            <author fullname="R. Shekh-Yusef" initials="R." role="editor" surname="Shekh-Yusef">
              <organization/>
            </author>
            <author fullname="D. Ahrens" initials="D." surname="Ahrens">
              <organization/>
            </author>
            <author fullname="S. Bremer" initials="S." surname="Bremer">
              <organization/>
            </author>
            <date month="September" year="2015"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) provides a simple challenge- response authentication mechanism that may be used by a server to challenge a client request and by a client to provide authentication information.  This document defines the HTTP Digest Authentication scheme that can be used with the HTTP authentication mechanism.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7616"/>
          <seriesInfo name="DOI" value="10.17487/RFC7616"/>
        </reference>
        <reference anchor="RFC5246">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.2</title>
            <author fullname="T. Dierks" initials="T." surname="Dierks">
              <organization/>
            </author>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <date month="August" year="2008"/>
            <abstract>
              <t>This document specifies Version 1.2 of the Transport Layer Security (TLS) protocol.  The TLS protocol provides communications security over the Internet.  The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5246"/>
          <seriesInfo name="DOI" value="10.17487/RFC5246"/>
        </reference>
        <reference anchor="CSP" target="https://www.w3.org/TR/2016/WD-CSP3-20160913">
          <front>
            <title>Content Security Policy Level 3</title>
            <author fullname="Mike West" initials="M." surname="West">
              <organization/>
            </author>
            <date day="13" month="September" year="2016"/>
          </front>
          <seriesInfo name="World Wide Web Consortium WD" value="WD-CSP3-20160913"/>
        </reference>
        <reference anchor="REFERRER-POLICY" target="https://www.w3.org/TR/2017/CR-referrer-policy-20170126">
          <front>
            <title>Referrer Policy</title>
            <author fullname="Jochen Eisinger" initials="J." surname="Eisinger">
              <organization/>
            </author>
            <author fullname="Emily Stark" initials="E." surname="Stark">
              <organization/>
            </author>
            <date day="26" month="January" year="2017"/>
          </front>
          <seriesInfo name="World Wide Web Consortium CR" value="CR-referrer-policy-20170126"/>
        </reference>
        <reference anchor="RFC8297">
          <front>
            <title>An HTTP Status Code for Indicating Hints</title>
            <author fullname="K. Oku" initials="K." surname="Oku">
              <organization/>
            </author>
            <date month="December" year="2017"/>
            <abstract>
              <t>This memo introduces an informational HTTP status code that can be used to convey hints that help a client make preparations for processing the final response.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8297"/>
          <seriesInfo name="DOI" value="10.17487/RFC8297"/>
        </reference>
        <reference anchor="RFC3205">
          <front>
            <title>On the use of HTTP as a Substrate</title>
            <author fullname="K. Moore" initials="K." surname="Moore">
              <organization/>
            </author>
            <date month="February" year="2002"/>
            <abstract>
              <t>Recently there has been widespread interest in using Hypertext Transfer Protocol (HTTP) as a substrate for other applications-level protocols. This document recommends technical particulars of such use, including use of default ports, URL schemes, and HTTP security mechanisms.  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="56"/>
          <seriesInfo name="RFC" value="3205"/>
          <seriesInfo name="DOI" value="10.17487/RFC3205"/>
        </reference>
      </references>
    </references>
    <section anchor="changes-from-rfc-3205" numbered="true" toc="default">
      <name>Changes from RFC 3205</name>
      <t><xref target="RFC3205" format="default"/> captured the Best Current Practice in the early 2000's, based on the concerns facing protocol designers at the time. Use of HTTP has changed considerably since then, and as a result this document is substantially different. As a result, the changes are too numerous to list individually.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAKvPUmAAA919a3PbWHbgd/0KhP4gKSFpSX60bW0yUcty2xu77bXU40ml
UtMgCZIYgwAHD8kaT+e373nfcwFK9kxlt2q3P7glCry499zzfk4mk702b4vs
RfJjlxeLvFwlH+qqreZV0SQ3ebtOXl9dfdhbVPMy3cBTizpdtpM8a5eTddtu
Z3kzmc23T57iD8fHe4u0hYe+vjy7uvhtbw6/rKr69kUCj+xVs6YqsjZrXiSP
To6e7O3l2/pF0tZd054cHT0/OtlL6yx9kZxtt0UOX82rsknScpF8zNJicpVv
sr2bqv68qqtu+4J39Tm7hY8W/d8+ZbPwS9PNmraGnYSPtnLA+PvJ2Yc3e3tN
C6/8Y1pUJZzjNmv2mk1at3/8c1fRzstqby/t2nVVv9hLJnsJ/JeX8Pm7afJz
1bYAvnW6oY8ZXO/S+nP/L1W9Ssv8L3TCF/TJPG8BSB/qdF2nJX1SZyv8a/L7
N+f8RNWVLULyrMPTFHlKH2ebNC9eJJuyav8V/5mWWUt/6Or8RYIX1Lx4+PDm
5maqf30IcC+XVb2B119n+PrXV+/e8jbatF5lbfjeut0U02abzac367S9WU1h
5/wgYwx+M5kkb/NrRJtLhFxaL+gJgxH+x3CSo8P1vD67+vQTfPbq4ur89e5X
L7N2vr7v3a/wgb//5Xt7k8kkSQk15u3eHiFA3iTVss3KpGuyRZIC9gXsSQBm
SdWuszpJA4IaKjVJWyVzwF94EteazFJcA1CqmSZXa1gZKKjbZGWb4KHyZZ41
ySxrWlgBNpDP4Vd8w02dI6roQ0oGLcAAd8WICq9aZMu8zJIyu9m9nXGS0RJp
UdwmN2s4E2z9NgEKk68u6HULwIEals032yLD3fEySHWzukoX8PC2qG5p3wfZ
dDUdA7onjQC7SbIlrNI2h1MBKCBZ9sef8Z+2+iPQ7QJW/+Pe3j9+fHWeXLx8
c/X+I1BfkQFsAMM31XUG2wLYNNmc3jvLYLks2XYzPdE/7u29zJt51zT492rJ
zxMTApz5DFDbFuk8Syo6IIMHuQTCkDhFghSCvxU5APvAGNfkZvWvN48Qqw7H
AKAckAkWTuv5GkACl98m/0NxEb/ZTPnhh2f8RPPwA23yoV/w4b8AHD7J23+i
txutwQbnKZ4Q4N6V4QVEZu0WEHwFzLabTfPq4b+cJk3V1XCsebXI6Dbypung
sHQIvDgHhp3L4r5lwXm1kVfQ/ybZF0BxBGfzsEhnWdE8VAaO28db3OSLRZHt
7T1I3gDTqRYd3Y4Qydev//Bm8nIaSYAG+FAJSNz89tu3iSj1/J0pCtC7RK6N
SHfTAPRO+YCIGtUma4H3N4Awy6yuYU1Af1iWiA0BPerR22icjD5eXF7xL0D1
yZ+AZ/Jj/JlQJBFlKZtKrtMaznSLOAYrN7A5xPV50aFMfAE4nCzTDaASPAZP
zW4DzQCOj42q8ed0scnLnI5c4e+L7Dorqi38je4SAAOfwoLpNeBmOoNF+b3R
JuZFDmvDwll9jUwHvgjU/eW2R6u0EBEUfAdW3rWuQVbeW2cdP599gV0iDDfZ
HK4gbzaIYp8z4qAZ3mjgB1k5r2+3+Csusa2zBj6hVQiwvE0+IG+9QVbBfN2x
EQRPuYAVcnhA9wg3CsBiVrTM6+wG2FYDyHi1hrc4Hovsi5ELWNO6mp8GrpbD
PZQLYWtVCVzPsS64LbxouuclsEzZ7Jh3C0DsNltmQLAYQGCTt7BSAxu3iwA2
foa4DOfuCriWNJlVC4JuYOC4WlvhRteI93Xe4E5rIkziugjqHrYya1+m10Dw
+AseGHa0yOlyAQavqxtAn3rMXLzpgFEBsXimjy/bwKZywAvEl21KtNbHE8J3
ggm8Gr6mX0m6cl6BFpSXKZ/awQa+wuCBPwBsVFzoBaMIbQLFIweeIyriHRi5
mcCBBQaSA5dgkDGCKyij69QLcTfKTA9YG26/6fI2nRUZYQwTdoF4B0gAz6Td
QMA1ycEMOI+cg17Nxz4ElbcowtOM+ddVAZIKrmmRL4EH4edbEDoCI32Fw3Fe
hYGyBrx2X1wC1+pqQRaEJqu5TLFwhBjLEKKLrMlXJdIWIJvef4xF/L4yY+a4
QRk6B6JYdij98QJzEMRAMDeJMP/AG/ANeHaAOq8CogRYAfD/BW0RvxR2726g
zv7cAam688I30zlcyaZCK2ABt/EOd7LKYPOoh4z7iKuEDXxLKQMogSgpKbvN
DPYMO+Tzw//meZPvYMuX66orAFVbVYpSUot++fgmaeZr2ODvkl8aVpW2iHK/
i76DN6dYyTsAebOuFnxB8Je2a0gMw3tRYQp6F3AUWgsIlNARIblJv+SbbgN8
vOgyBAjAG3EaEbmuNvSM8F58l359USHKA1ZXxJHZ7mLRCE83xmSBWJxa5wWm
3wjSTo3iRtkrwBlQa8NHGhnUF6CfAVtfgJDEq7uuAEsWvxMaMnUV0KdNwcZh
bXXe1Yz/kdZKSOQ11oCqTthPQXdApQCUBAZjwzwNDk6PZc0pPAFKIWBjdgNP
NR3Q5C1xRTwDnKjNHTSIcxLv3+DFggaC2E+SCb7HxPn162wLK8EhaKUdGnfY
+y0iIfy6Acx90yIXQW0caXhb52AF5gVJqlUHcEreXFy9MiYWFPLdtoHHb0Ii
oyLRW9/glYF1Nk5mXQv612rd0p3wanB5KEsZIZq87RSeqGkzGHCRiCLh0Qy+
s6hQJwd8heM2fARclEUuMRdSTXgvS6bVfM5bDYoiqvcPHuDr6M1pkZwjQEva
BonpBExpVLyBbkbvfrm8QiUM/5/8/P6KFbL/9cubjxcv8efL12dv39oP+sTl
6/e/vH0ZfgrfPH//7t3Fzy/5y/Bp0vvo3dm/j/i2R+8/XL15//PZ2xHpHhEe
I6LAoWesKtSAJi3rp0Da8zqfwS/wnR/PPyTHj1HJBZPl5Pj4OSAP//Ls+IfH
8AtiLL+MlAz+lbWQ7TZLa1wEqBMIcQtCCQ0xeEUDXLSkKyFIJiAUCcI/ZogX
wJ0Wv0u+PiDaQHtHuW2kKffkyKpKC6GfgF2o2PbwYAgHun76YtojWqXKHptG
BCNOS7wIsQZ4WtkgzRFHTZ4dIWt8/PgRskj/XODByQhtBdLG6SfU0sOz8MKz
tx9+DgLhzUuB+g+Pjo4B6oTjgpzE+4AEAfvIiiZIinFKaz88nh4jXqxP+N/5
6FBftkXJ1OAuQEjx14n8zn4+I5cL6Oz4mTeRCa57e2cLVslYkO0EX+4JfUxY
IAI2uhH5jLZtB0YVJhNFFl8L0vgAfgJVDjhVB9rM+FuGF7MOQIpKGUXsQkCN
dItctM4BBmixe+7hMSR36hfaWsovPDqOia0ouwicAp/j47NNvayKAsTSAAh5
KZ8V2XUanCK8+jR51dV4BtRkxigf8p5GGFGG0y+JK8cHx4sAgd6tVKIGHZQd
cY0CCIAPJg3o4elKTr5AksWf0Fjx+zeGWE7oHs1lCojSwwpm5ggt89+gllST
q1W4MPAfYEl5CgYR+kRY80CVSqXKkCARdIiq3bZibZAcM6gPA0bArQAMAU7Z
l3RDVkFvBd7UTd6s6Zwo+mHBiZODiHmGqxsUHivS6zepCCk0GOEjcYnhN8Pz
itb78AnqIfjOUwA33aW8W8Q1AiV1fE2MLlHCAM4vK/KHAeeu4YeGtdtlDbou
6lMVE/JtoCR7YcP7LCriMPADWMlAIMSyzJmESloJQMa9d21BeESXQHx7U8E3
GLg9++GmKvdJRMOiJFQX6ZZsELlSNJIIQGIkpE0EGLakVqiCoFrIFON2QyDI
QTVbI1aqdg1HaQEil6hY9ahbZa0hGYA+cF/YRMyy4YM+wyWu2GOEpwmAco3G
p9nZMYWAOgWHJjRaZzmo6zclS7hPgKKwhTemmZ3NAL4My68PTMcTZVP9f4iu
JIGIKODsqDrX6KOY38E3d+uAZvL05KNX1HabIkLYPwlju1T+CrYMQl32wOq9
6qHEnIhFKD80tkzmLW4xb8YxAmSFcELHvZg5oAMUODN8nySd0wER4AC5WzQP
yT/IXFhRgUjZiQxS3YE1T31IZWJPh03iK0kzzr6g9tywKqRET6uIKZyjFoNe
3QRkZ7EQMeCtJJKtYkGhe0B5Lx6+SEGbrlEnJWVmCC1lbOi+iAUOvcMMfPnm
w3TnueAzFIQgd9CQFJuOz8IKoNq36JAAI/0Gzy8KhPdljVlT3GQLdPohEYm/
YOBZITdSCqTWHJLthqjelej8RlkjZkW4J7ftafJGhLZseJtVW77qAu+aNk2k
9bmsbmDTK+9yU7jpO8U2nMzTRm0Z8W46rPBvJ929Jq/7OBaqccTB2AsICUbY
Mfpjc3aqITkX6a34EnRTzpwYYj0bh42iyniAQ+aajPANwFU2LXwiHKlhO34J
qksjcOoxRu9msLcb1/Ckwx8GGJxSCK+4lXUJDkp4KJg+IW/ReE1PF0RBt29u
sQy9iyztRcIip5u3sDa6V5SJiHVibmU4ZNNtka2JLwYNhGliDkHS2tDgFxlU
oD2PZAMsrzR1CU6/zAvDmn00goH8cjhHT0egLZP/pqStZlkfmOSXKECsdYiX
5CnGTYBxgPG1s+TXD+8vr34lTQnZCWENu7LILEp+PTk6Ts4pSrbAx0AglY1R
NWoXZAsAGwKBIEq1uBWZ8pyty99l2ZgWNylZ9/EbRE9HjRqgjd+rWcf27iVx
9sOjgsABEUVVYeWETwBPF85+PyXyMgjyG4L5Lh57YWukPjY93/qYvdLMciYo
tZKsrlFVos9rYD41S0fA/aWHBTmNkP0SveVbYpprFTQOkfcb73EAQM/QrUHu
0ku4469fFavB0FqSaURRwjbNC1V03+blZ9RtS1b3BEnUkUKRs6bpNsx05Ioc
K4UdIC0BOmGs7oA5kqhhBLNqeYiLZF/mBUjra6Q69c2IuwxABKsXWcw8CW8y
uJ55y98SVtQoK4y42i7ZB8JNSJ82N0b/EXoXs2YY7RVtjfWJHFWxM9zztkhJ
ggOCiKvg2ckRGmTE5EbNn7uU4v8jZEbMilWR+OXjWwEKRR7MEdk1Xb1tzDlL
EOSoNrltMSBEKutNGVjSmHhB3xctkUNz57fK75NZunA36KK66P5iLktuPCRE
NrothoGaJeAAUCCxU2IEgH/rRo0156EZ8NXIHWbaGHE3WAnwbExMjOzGZQFy
QLyY6M2yY8Eef6FV6q7E8CB/07wdy7RZa2jEEztfqan8sT+VjfpYL2S2TOqK
xUv6tgBs/mHk1WuSgzvDInCHTeYEkAA9B9aONnnEkEtg0ysOchLnTemUQbVR
PsuCowYNQOzWyJ6i8KFqCLgXRJ+13G7EYYSBoVrEcgff7FApnddVAzIbNB32
3mZFwb5S0mA4HgMqDDyUi7462uRf6HbBbpyvR25jcRiYodQQk6Adi48Nn6Yr
xKgJsF4LVArjddGMsYZTSB6TRrZVDzhQO0isDQdUc4xbkvOz5+NWRY1xCamJ
ziV/jWL56UygCZoBxzgbQ0n+OntidP/4TQomopYIK4EFkS+CNb+PNhCgisDh
UzY7VR+T0jc+gjpwsCt7bJ7Jn63ynKgScIV8F2g9M8ah4QzG2rza3hLTZrlJ
yTYUsEFe/xH9Nq+6cs7uLgCfRP7DZRg9WTRr4B4SBY/8hu/UfVCjebfCT4SW
viC80NGFL3h4cgh/Qlf4ii14xvqrt5cYsWGMpGuP1fLkAKUs6edALBmeaIz+
aTJaXmZFTibTz1mLeSENvuJcwn6RIMbP5UtltqrA+qIt4PvU7aGaj+Am8RKF
AH6d6GJFXxGya4BxpoqeaNaU81sOGsI/N/kCjgf01wn14R/QrSPfgCV/Aqsd
lXZNEJijG58QsgZ99qBd12RcmYysc3INpByYB+lC5/2Ayj8Qj1pypNwVJjOV
jahgSk27gu+iQ9mF6Qn0qEzR1fQxUBRR5u+pzzsAUXm3dTH0K3QtvLHJxNiu
QVltHK6phhF8PoSZY8NzpkvKs4CzzLP8OovCc+plIXGet2OJ3IvQyZWjWrSc
VD+Xm+FjMHG0zJQyUfeCheFJZUZqzcLzIueb1YhnW4PlA0djA30NWiXANjb2
V3CyMmzHGQfseFWO5gPrGhND+k9WVUVRTub12yon0br3IPkRMeJDFCm7jKJk
FFRVU/TrA1iy58yJA4dx0C0OuPmQKClCESexaO/ONTRYNTDyhJvdvWmx4O7e
ysBrKtYmPvKtLCjz92Hg8JZzlzBf5lQUJB+UI8KyJ3zcoGd+5S7JjQMGXVkg
QwiWjQFFzRr0eFVIGOLgiFwBgpOU5gGvxbyQrkU15EdNm2gZTdbVdjK7ncD/
DNBj9a3APZd65ZyK5vwrfV3JFB8EgPAxebTHTHqmlfH485c/w7+WJcTOcpC0
gPwfieaY97hTilpgGLahvMGcDTt8xhzRDGDMCDACZ96wTtE07QfWKdym3pO/
UfENjjtU/DFfjPIGelsNvMJnAuXLHmbGFt4NYWnE4yJD6h7QHEQwZ6G8H7KL
UFwfiuMBBQ9ZuZjzids7u+Ok5jtyx9U0CX792Mft+wEEJ3w4EWc6JFzZccPp
WMIIVFTJLfrdCSEb16ZkII1RIbdiSSwuBnEewiIk9NDwwTx29UwJv2vIdFwi
chRkrBD0jqfHoj5EzhZQi/7rv/6Lsp0nsvzeTxdXycN2rXDDr8KVN+0L/RJm
cu6dgQqwhc/cefhLzT/9CQgeVNCsnpyt4FQv4IUVrHJE7xq+z/Z3cnSUvP+3
PdF+Jle32+zu9fWpt1m5atcvkidHR3uXpOy8SH5M64cn05O9vf9QTQPJ4z/p
9X1mzN8BMSO+KBAh5obgjAIKvphtn9ykt96BNiAA70FhQaJLN+KhR6XRwghB
Pg4kh+isoF4mLcCiEav+6bNHz9CqZ6OOc68o+pbKDXOWScmiQvyb//Py/c/w
/d+hV+DkyXP4Pibq4PZ6fvQUXb8Aha/8OQV0OVHyisJCCibyWJnFj2amRsKJ
iZLSTx50QnTxR5w8g50jW79ls129w82OgMRA6iFTt8wqCc+5Ldz3/rEEPyyd
TrNkF+52+vlcdYaxJzCQ5KryWgwf5ilAJpSELgmdHA4k+PdhsbErPKVlNaea
EoeR6dWSECAro/MSP/zwy5WQOkNC9TKfdrAwVqGoznvAN8GS5PlD6Y7rutXJ
CTNcI2I38YIHzeGpIMJHPcEC7opOwCu/vHh7cXXRdx7sjPgK9YjDVhdkW5E1
b9PrR7LSBMwUMG9H8dUSWFGQ00Kf6JGG00/4skjS8OeWoc5mpkhZ+uLIs5n4
hcRuRmZ7sUFP6/Cl0RXDVXFRSBX8B7jPqb7aEFW/TLAjeYXfw/2OLuS951hj
MwoX4SkULXNbkpOfRaWRGqAFngJegw59UANvFSasu+MKMw2QYGDIv/87YcCa
GDGU/xB28p+0iPzZ9mXxpv5FULDJ1HJ2U7SV1BsVBFPv4xB1k+5dD2jHQI9w
BCFahgOjQxwiW3mCi+/Co77yYJ4XZfZOfUHX41UGixK0mbM+ffLDESYJqQGn
6cmYrEfJpy15WhvPtNVviMQ6NBXEQ+Clkyz6GzpHNad1fKd6x9oR7YhMOWJj
Lq7BJox48gN3x7oGTFjAuK9zpAlA03aQzR/SNwZZn1IyEhf/iCr5vjSBuqgS
rbUI0fG8jQTm169UqkU+bbFYGR9JZ5ciKstM0c3RlbkUqkvMTukfuTHDpGsr
RLy5eSTZjkCVk9OwQ5KRfOW8qj7nGHNVg0KMbgumcwZIiVoz7JRMJXLlSuY4
OYY4lqHBFXYbqIWGvv18nrfB7ua177h1CwClmHiOlLbsGq2fuDMrF2OaTicn
GfixD4JkEtdFaq63UgiyHYWbpDIRsvFTwSY7pbAehnzkWdQL/lEh2X+LQ2hR
mR1EgsWKWMAr9HKfgDwHVnK9nD89efoEfkQfxDKgpl4e7QdTfZfCUr+5qcAm
APuu3l4mc//1kPgJ0meOYi7Kv/r69W5DfgxqKiP24+mjqaZ/0rsvOd3vXstH
tqcpEhJFUc8QpwNHTi2m0I4eUyek3WCIBQMGWlFKJPNrM4BpOeWD8k2TbI2G
ExBO6NkWlWMyrwgqB98Hk2fTx9Pj3347xApYjRaZ61T8oMBIvnO145Ppk+kj
XG6TpeopILlxk7NWRJKpDMcCMYGgDYTVZjvdktNkIF3M20jP9qofNXdd7wbJ
Gvn5UEygUCF5EBK4xPEb9I7oJmL3KeUtBW2QPiM5xWr7o+fPngJ5YkWIjytq
xBENTp+kh7FEru+kehFFG8pD4RiUuI3l+eoGZFhyQIIWk0tKdVqNLNI4OuSH
09aiMihTxZ3KboX7QnTkD3TXiVlFaNVhNCzUzM2dRLwnB4VT7iwY0zYEK4yT
YHoDu1/6gWlOfhmUJmgweeK8JlhG08YqB4Y0yajPvyQjTDZ6eH08inwkh2OQ
n5KfmFPwcJiBytansyPirJuBn49ySuBmkMU3ktJpUa9dOs4ib+YVybKBUYwQ
AgSKcpeJ4fblBxZZczSaEgbB6hg494WbiT+KsJXVcuCJFAoJ2ZyZKovIdiiT
gUsOJQEFPz3gouEHQFAvZf8ct/PEKifY2/vJ1RCpCiFZkau8DK6eECllz3i0
f6bMmQU85H15mVN0xLxBTLGqJu+K+qWtd6IFJBpHmXvBca2qtsSMLOs5pBMl
luaKiRRRlCPO3QAaZYrDVAinIh74NzdbYI1U16kxa0lpOxxr9Bh9aV0IOxEX
QJg1g3snXkECpCu1WDPNC0nP2A/YpwDct7RmuihFd8m8wfpLJVPKBxTKXzgs
EGbB9wIYMHUeIVQ20ZaF79xgqkQcEUYUDjtinRZFR75CP7fLniE0OdCafhUx
1xlHudpD3GlX8Ns5xmNpPVQ0TCEhXVnKJ+T8hPAamkslZSZsyjbcc+m6zVFp
CfLkXgrIGgBAiTQUr1qr9AiVfO7eVBllNiIqBDIT1fsB1OJtdZBWdzHB3xAf
dZyBUwhlr/mFgEVSrhnxShb8RLucFqJaZxBiLpGvz58ptrOjzBXlNhmBZTZ0
4nF9+Qp0WNGfMYUZs3fAXCqKyb+RfEPbUTbx9PgJR2lIGWjhWij2JSkasd9e
7h/493W+oOJEOS2KB4x60rUa/SmjoWW4MJNiHUWBrklX2hfVxuGuL0pO8w1q
RMj5YTxG/EwJrmoDxyYwgi7f5MiVYroQO5hjI3TPKBmjs/d0yfZvwvkkdMcA
FRXT7cjK1ESLAY+gGt2KhASFTmIX0ZjzJKT6N20zFSAHGPrAO5foUksZpCka
8Ydjy5Gk7Fla3BhupI2xtSE8WHhVRDmswwv9v6F8VA9zzpBiahJVpu9tAxrD
W9cKC6oyJZzeAYtepItMDOSQwG6DBkHfmNV5tiT2ola9JRXAtcyJl2LFrMqS
kMsWBYCGWyDPXRT30htJFwtJCQd4Y68NQqEQooz1jQBoVjtTyhGasHpJV8Lc
hOT+uWTpa0bZJdcqJF8fsBLy271JA0RZ7e1WrCq8morVNik1k7QsKTfz1RBT
+7AfsauUygdZmjmlpSAlSs+AJfPelHM7Us6GopRmYKaYiIL+/OsUsxlBcAGH
rVjBadt0/lk9Vz+cPGHPvAmC3emKAhlzjM2sjcs0oWCYpealpa+6Eyr3qDl0
V/QzYl3eATldr7OUFc3PWbYlHT4vF8RmfymljG4ReaUC11PLE68Fa6Z5W7jn
oLP7dLFa+XZcwS0Ga/QO8gHZF7QA6zW5OeqDQ050wA5FFEkJ19NQWn2RsDoO
zKO+ZSc/5+9bzrUmoDaZ744hjiGqy2FXECqh5o0TuZzXIfkM3SrX8BLm8JrV
XsL1ytdUlR+WG/ieGqAWVnN2B1jNgoEZyLxalZow4wEdhwRUvyjyWY3nZva+
BG1O7IgtZun5SOgpfoly1vhZbCrQ0FU1bSUalboVRJOUpOd4bdXW3NIEEE00
ILO3ms+7WkOnJkjUqkPlX2JvVDarrt1FcB0SJwh9ivBlv74VrvPrbsf+oRc/
UUIAK+JBDw9gVdcP1xk1KPcLvt8rBofwwDgc1VuDLo+r/Kj6XhpACH3excPe
UpClUojhvkdFln7GgmeWM1p5iX+SgACGqDvjXUMfcQ9NNH3LbbYHDrlB6p+z
j2Wg+AqWpWkyKlFtLEZErg1mqeScIsxVpIgRBKtXkeurxj+TZ158GVg+Uecr
ImPScB4/eWxJ1eKpgDdg5Bc04ok8u62A0WGBrsA132y5/QLlV2vN4lLpY0+i
sZNhmpa+Zy6u0W/5Msf9pjm7vhDV684lX3DXg0Rz+NDry6tLhcAPz3+QsHBy
/v7jZXDLC7FhONSqTTHbETZfo5cXSQfMyIxrkTAvmmty44Zg5KUO1SfTxFnd
7mHxLvWeDgHTxrrpGOmg8tQr1BjUg9NdIMose3jB3tKUkTjTojaEyeXF+fnV
H67++dOj8+n5xwk/MJEHmsnJ0fHTo+ek6NPLFQcx/hujN4bRS/66FUWQeH7y
/Ikvihj6AkAUMj+P5ZWqOFdWdfkBqy53xLm6JvN6FHIAuI8UeRB97+DZkcVQ
xlhjb79dHoqhCTdjwU1JWCRCYt2Xyj01TVF6qOjzm3TBfW2CiwGDYuOASbMo
M3OYpbXf9Kw34b7kZWHRLPlYQaTG1hW6gd6gVooiMTq6cFli0N6KBRlUcGhD
eLyrjCDzgHmjvUwZ8im7MtC2jo0jYgu8zf4G7E9t3M7ggA1aUVR/O7Tkbzmp
62vGPhxeFusRQOu4TuecGmeocJBPs2mvRBQvCRRnFkykNnRgTmgrGXlDnaLI
OoxUHM/hzS7AkgSyWErJhNYbBrX8cxI5QkgPweAOE3XeHk6TD7t2HVyCakjw
pVyqvFEV34xcR1tPj5S2llztT51VUtiuONp/cTlkXCZ4r0FAeWakmJfsnm6y
4przbVmiKUJmvUY/yukpswTTNMacAsJ5FcxvP5wBo8WeCdlNr0sQ2pLwj2tF
ZlFIRVd7rU/g5COJpwJ0MQI1eY8/ZlgbrSh2b56pGL2kwaNd0Hu11F8i9QOk
nCM+8gHP7is4RnJy2T4oWaidHtexYElN3PWGsvNQuQd+gyYP62SEeJFvX/gE
48LjH55TIIl7nIg4Qn6gBaRWJvqtvFukF0CpWY7cAragyYLMIlDygAZ8rQU4
xLZ5bSR2hd7d5e7lCmNGFmSS/Fcy1QHbs7TmLlcL70xGawCNjapJC+mHqC3a
4jY7Y6m2Z7aBnEIT8ge5blG3DJE1gL57lEQocXmOtLCnVTwjy67w2HsqfS00
38pVhHOMgRUUDPovsgmn4lHrBXJoa5kNWfrUi4LyXgZtFZa+QQ32x5A9iTtC
d1yhvUxlMqBbsv2jfSSV/+IfbkPhmQt8hX6RqbVpVPcys0vfLMvsNClONWcH
e53GyOTQDYCZpchdc/Kw8EXwnjC4XpJpL3leQ4/QWi16PKAJ0668QavjVlw+
VG6P77Ezazc5OZv1Irwt2/RLOPGb06TXHiZfJrO8RKuO8s+4mNbXGjL0KKdj
IFIRzaXdiwRa8UeSd/Rio2oFM9edsv3AHts1ij07Rh616NMum9SVr453Qu0a
KU8FrRaLSwGPScnfiHUPSS2ZTGp49GNaBPidjToIgOxSzf9iVTFM4Grp+z4F
G4BDLRaoGdrcYXG+Zi2QmBJWpNDaDZMr3CTmszRogJpXamydKCgpeMMWMzz9
7OjoCMzdNms5idMnrnyDxTGmsWNit/PRZSAw3lk7DJeJiNyM0U8vLfTkIRjv
N5oWcBocipRq1DC6kCmhpYRIUKjlF5QWrJDB0Fx8H65ChbqTaey0dboEJZQH
48FzEqQlM8zEfMJXKz+CUzFyKWHj7VHbFJ+qf1fSFrfizLKCJEPmSoIIZAon
zu0yoKYag6As8tC4JlJVXCqIGKE+sxVogESfdnjDInDitiKujX2g7UWMPziu
rU8sJWb10Z88hiSPiM9LjxEEo9nw0oAUrPJk0BFKipk4komQXK0U5BpnWEql
oAV5vifZ4/n0BFNHMGc1FxIu7d0c0GcfEAcr4/1KPa7myRKHmrdKca1v7UvK
vt0icENyHUbK0WlIvf6+nT/CnY/t9ZQAjhtEJlFWpGWZjFE3RJbTzcLtVUjl
FBD/U6aOiajrnjIdFevc0u6SI6Dyi+osN2ncq0xjIUGmW903+asIQ2fUOfLl
2e9V+Xp+/AxjYQOvwtS8c/2etSwElUTkZVl4PdvGPkm8DeXQSjiyZ0u6815w
PSdhIN22x3ziLozg5IamZo3oiPKuZC1/JVVINybJAQ2RCTKsIHD1lSLcvNVG
Epwgjrlp+mDIprJ6JlQfUHEOq7KGSK7lRHOUMPs0ziEOfeIkw1vMQXwx3svr
i7OXh5SiuPvlEi1TvVIcNnnta2DCMAdx6AL7z2uUnRn2G0bF4TO2yAylrc7t
7XWFcH8eGgC2ETzetrejZKJ+HtkQd5iWK0DMIF+l04M1Dx74DNatSbzK9+gQ
2sd9MNLdW4iKG3sTJ3V5r37vqkF5Rzd7WpyyHqFud+mdCXCq1EkTapH4Amgr
4U5kl9aOx+EstwqNWyvIF8cupI35MwVqrSkVvYTARJABpEW4dCIigVdWc4yp
4wHjxzqUIIrEcSD8dxYIJy1M3L4YYYKvLG5DCx6K/S65P4yvU9WeSSBfwZpN
zVGLSx5OZVc9ppD6EkXtYmV7dBghlKDSXSrZ1Tf9lpPId2bq19ooocGeelhH
vGCM88GKoN5Mk+CUkEqZXmPVQa47GRrmsccGfECggSbdQAExuuL0Dux9F2Vu
xWX+UehIRiKQvhrjfN4O/SSX3LzmHLsoSdV+1FhJUgiCoUcSQVutuOZzkUhy
rT5AVfb6V7YjauU7wKNmjf6J2GujrhmnDKY7MzRLTuEIjGCbt0uq+szLSHC8
yuum7TWRCs3iQ6RodusPo066rM8/0C7OiqV4TXE7a+zuWo53ROrFncZde1wX
yZJcPhR0S7dEzNSgrhhLfAwWuqtJAUVFWT6EVqOcEIJSFFvcVICMCyJbsm64
+Qm7TDnwTmFm0nrZO5xdU+AshoXesuBlCCxSCoIkB9PBXE/6/hF7LcsHxakY
EQBGGLwWvuFbFfO+uN+2xSvVXZ03BfdnRBnSSkOMIGzbXvsmVI+i86bhxIoF
Y5P2O+4fEMs3It3AI8R+fMsDvnaSSIv8Ol90qfhY4o5mZTZpqwkfFnESm3Vx
24yQdIFwl5gqRvPbLLRycE654eLUOWkNIKCozRX1gEIC6WrAWPeiQEe+9w9R
achVdBGNu7IR+k3RmSmbuIj2RnjnewAiL50BnmeZkrBzO4lbJvZ2oXcoKzu0
uLG6hEPHIX3s/uR7yVDjN4XLUnQhJ5kDrts73vdnCzTj251fRgqA4rMenBwd
jZPHYNrjQZ4cHR1aA7JF1c2w/kq7VFpMzdcIWH20wxarpVznW4NbzOdiBiuH
DL18yGZXF5rgCScVoe8m7nqKiZaVjzbYKy2TdMAOLKUKyYOVs9Z6+XhwapMN
Klci4GPvXbAdZt2dG/rm/YpEw0uuJ6uaO3HxHnfUsjnpv6O9JYbae+0GJVbx
7OgHMJEsA7CKyqeaynVM4OQ9KZKN4w2xJOY+d/DWbx7R1dxwkqIlIauYtWoz
zCQQ+4cLfsh/vxu/gTcCB5AhEWJwoHAlVwYID71IZZm/lkdHv8b9Ha0BSVj1
NGGl8NfHz5//qoy7SZcYebW5Eg38GRcLhSx8Hk4nCNksFHnSkR5WXU/Hs/E/
aTIqUhB69S1NRxqRmhByMSNexT4SScSjWUrWx9eq+gVTUOtqMrLmkmXXcmT4
my0OQg9lQQQHrAEOjJk5kmZNgh2dFaShbLUdSS4TJ3LOQ32zo8dEFiqKes0/
ku26ZmPKukicChW4P6vfQv04mn8zVvNo1YFKDjQSgkXSqWFXgw/zN7A9XNc5
D9NCNHTRr4cnFmF/jHmrcYPpPqQJvASdrsnuJSvSRUg7tohRqRG7gXKIYTtt
uiTu14Nv+18Ph2G9fugOLAp2jiGX3/1ucz4No4Z/wx7+jrBddX/k7v5QmVeu
/p+Pl30Mje+o+YQWRLKn7dGXL2Q/clOR6P5CKSglJ31XcdsTqh6Uok5JxgUt
faVZU2WcqEwhENhtI4xEU+YowcwH9oLXAID/6Oh4DP+c4D8/EFgfHT2zQQRs
k6qM0rS4O4xo0WcphzpopWonSNllVkYJffClqNYDbJmE3EDBo8wj+foA5aaA
5Mf4pLVEilDbDIv+JMMcO+lWmLk4TT7Y56HsVfsDSAq4NHfg4htKV7QIvBxE
k1Wq6vMmxeZwYz4sppfpqzg6xbkY7cBFLsxTYqPail9CE6ehKo1kCwbCBZWn
w8O6QQl8INcgAgWehQ3sU/ECU3xTgzo/XVxN40RZm7+Euoqs4p4mkxYwR/Dl
5JQVR46UAP7I5z8kN3iv7KlxkRHXPtL8XlHSjDpOuRiQe+Q33WZD49G0abPX
ctGn+9fk7/nvrw4r/krZ+nyDf4X1zjiSEG3tG3CENRAuujbARn+G9V5a910O
ld+zrtsfwjP8/IOth41kOeyVf0fiYOq5R95YRQReSpQKK9M3UuJmVlZP2Mud
Ue/nAkFBIQxl7Sz0NR+qOK2rZfQkHjWtZsJmRS9kq5AeHeHe0JEQ9Y1tqJly
IH7Rfnecv59CNqjqZx47z2uQQXiyeWibwKpnKE3f+9jnNuJ7P2A/jfOOspdd
qONa5L64dQ65M8EsuyUfsqXkaCRhH0cefL7dJ9OcNHNPZ6R5ow/XJYBrk23H
3eKWzBqvo4IWYXwkmENLVg6dIoMCzMVqQU3abETjUb50jyo8VAKi6nzHaFwM
w/E2nBWK5FO2d5PnAXV1qCxMgX8+FKIdW5Ris4XdWfcMZYdTX0tqLVYHDBdr
n9IFtXVrYpuQAy7VNvcz3Tj7OC1C8LyP8urC0noJUPK0sWWIs6jxRMnUZ5zV
+BfJq/wGV+AeGdKFYefDPln5sHcmumftHbt0R0oOuL+eDmHFmrdDP9aIWiBx
R1pQvu+k116nBqLt0Hk03gxXH2pxYePz1Ax8FEHFAcLWg0sv8TRk3hD5huYq
UrNImFzk8k01CtO+M/SAB6Eq4hxaLLcr0xv2LbMl2ZsLFHcIoMO/5uO94uN9
faAtvnpUxI5BN2Fw2CcMFMCQW+LAGwMwj8M0lEaDZbeuK7TVeb3QsgULbEjI
QmNsrs/uzbqSTcaTgzCuzjG+yKXCyYkPafLWHW/YGflW7mR1Ma54Wdd7Y100
fcxX8xRYqaBmRJbW0vf3HGijDfUeWxu3RSzac+qI+UkL7rwjnKc1Cc/e4Pg+
8cHb0jTwxNVu7vKn9vxUkraNY62NIew6gARtMOuGGTfO7ClXkqQaYwRZ0JHR
6jrOfSvd6PK70zqOn04fTU8kq5fmJBY8zqc/ksenze/0uD17/vjYe9xSNXjg
kN2cmpbiOwbfl3xYTlOifERpg2QBI0VWbuvJ3XVUUR907xysz92BWpsQOfhG
ZEVhrTZVO3B23AGpUwQA/jsKKcoA1OlxYktzS1bMNpT8qkMe7hb1olP86fUP
YsVpEK6M+gZHbJryx6xUqd6ZpE/ii9ICUy3yFu/g4LxhArGEXEaTUb83nYgY
bQ82il5leppEhds1Zpz2bplkqoXEpXmttRtbVhWO/tNfZ2k94vmQ4ZO/jPpR
Xu3Vu6lAXeOt6E0Yp+NhyMTrquDF8bct8SRKEKB2poOBY/QYxXU07hp1vQ2V
8k+fPn4mtKTt2SydUPPpr/oquEVhdsgFc1MSJ5ho5pBNLEJ7OTgeZQyY9Ur0
JabmgxE02PjK7MP7Z885sSUSOdIQ27hoL8IvNlpkYoNmWklZum9l9KU1tiWm
uMCxXWdRToxGN3oaXrno2/Exhd2jt2iTNQTMiLusj1xHdU5m4qo0pnTmWE7H
GU5uJoWbj0MRTzlMjAx4Xyl3tdqxLXTFRuJHMg+jTmrSkSV5qTetjfs1UP31
gQgfUF3OhR9r9p3rftpIMlokrxqTzsOeqMkf3r3FT+B/VMwFXHXyZVNMTo6O
nh0fnzy1qrcf339Ux/HR4+ecorZroq+0cSM1rWu54K/aKsW5hu135GlaHTKH
wuataybKL8lSmm5JCgNbx0RNkohuLaYj7YR57C0TDKiRm1m+6jhnmHFAOn71
8uIkPyX0oN1ZkKaTenhqmJGYDiWAqxNKkLyQ76g+5KCExTyVQe5O7R+0byKh
agI8moRAMw+w7aibiMA592TS2wSE3iBQn0zHLvN0QcMXLRUH6NT8XiGRzRRJ
K31KG6tIZv8/z7UPTcbvGh+hwxzV1axzHkLS5oXJ+Lv5Hmcr+kZdbYrGxgI7
UqRcoWrFF951Ec1yF0iQXSLRPq7nsDSk1rXVllJQZw/RJim3SxqTYZ4bezI4
W5UVXgGaquFjyzjWSRxwYGbDyzo19exwyl72VzhwBHRArN2iPBBKFbjmnBbS
ipb6RFLkSzIzd7aMo9P6hnwnaMbiBB/iYE8kj1GmDtqEHGG7GrNR1qzOdQtr
G45IHNjmTYk5KLkAFtlWEVBnW/KIFrekh1ljUIvqYeyT9QFqAoKWNN9rSCA3
uKQ7gOF7H4kOrA6ReJBC+KoWAKVfJohMBgTzRX0PgJ9MTzhJ+5CjDheYLprF
zpDvW4ea+vnWFaznziiJZzAM4ZTiFVKGIeNyekntmsuJvA3b9lJbO5YQO+FB
WgPYIm3qjTNioCy0ckkASKhFKGUPTIAXlJnp+YN5DemC/Z/bblZwLuPfDePn
EtCTPgtV4zo1nvrYcNgAp5W01Pe/yS0ozj0Z0tKXomehtbQrUvIDDuK2kCgv
1UMqWwqQdN5MdYdIYIWAz1FhzdFcZx3Pbt2B1XcWCwzJHAmd4rpsbuialry7
yOp+a8PIumEAhihInEeAuRqcisEnHm6Vq6HTz3GzC+9F7krL/OZiZpWt0TAd
3TG7rhc2v8n8NDtwCLOqIyx/AUtMCORgv7xvubNY5GGOMFWUS/mKYhG1X2cn
Y176nj8h0heGHwQbC/3c33tvj+Is2h2HoC+M7mTVjFZjjlqzi7trrI8DoaVi
a5ilRdRi7hssyeLsQb6NA4D8lvpRtDyPcDBwjXS30Ijd/IWC49rH0O9i1ySH
75+sIG/+J1B29+645zBNQQYpoFS9bFNA349KuCBbJWivI2p8kCal9rNF5gjd
+//7dyNi45+PRofqtQ6nVp2Deg5h9jLNfhm6wkVZEHU4BGbR77ekcifpa1xa
yit1IiHyCWVh0m2nyzluyO08OecodJ3xbw0TegbHAkSa1JkgC5LPHX6tHRzo
sRogJMHYAHny7OmxqOKp1SIqI+IsXQG75pmDDde7BgMvcR3BK6cNyGZxGmiT
XluNGc3yxpGkYYoYCS/Rpq3S0osRJtt7QwjWl8sV1jnjyA/D/rRDv5VZi2LI
anFhGrQ6G3Qn2RyGMrt4LuFNqAlk/2mvxkWrqga5fc5Fmpc+gcQrL9I5S8L4
mN4tM/V2plxGNpPRlZ3tG/a7n/QVj67VfIUU++Hh0o0lDYQyKYQPC2/vhYhy
rIX+dR+RoRAQLhq/RMvizNRZy2mTu2nY3YI1EdeQMHkzUm4ysW0TCZkQ2lKL
86zOq4VcJgcrPZwKPIh3a6mGLSZQBK2D71cYHnFDDtfkXrrYJa7T/c4osGSq
BYDNBDs5ysTFBkQkvwfpittVS/FHqo77RRsYfWTzgFub9O3AzA/v7KfdRHke
htGxS6eqFcXHdvNyS70MUUtSifp2kPfI+bbMapGAljawMmJmQlMliJyDCiGn
/ERihRy8pqyw4JionhY0HHVC7k6l2qkvkz1B9U6Sg/B7HrG2K4/pb2k+/oTW
LXsYEBqiuuo8y5anU0qdYBgdcr9i8X9MZVDJ/fRo7+IqXb1IRk16tHx2szw5
WjZHy9EeAupFwiOkJhdSxD1QMDRpl5UexJWnR2Zdg4QiGURdbFquz5JueFoQ
ZFJNZa1mSC4nP2Nm+ztsMsfy9Joji0I0vY3tJBFxc71W/SESUOTS/PqAnaR3
NFuiP6Ia8r2NvSLXnZWkiJuA9Wr+LET0qN6NuTA6ozsqQgvNC0R+WnOjnMiT
CwPYEFQJEiUTY9KB9tzgDE45gvLjuAyAyhZR3AJvZVKj8stea8LQr0n6Z3NP
XPRNZjIjlVorHY6JY1a5FNWrY3OavON+lwRkdfGqCShHnrjo0+esjNrJsUM+
dPOwptF4ze/Y66LjYpWtYhDdZtKhL1rz4KO6ZOIP5uDx9ePaaQQuKW0+T62F
/8Nj6qmP0aQifIFqG9Aq5+WjOQzVNosbbYdpiE00d0DfidlFSiHWnI6TjaqK
I5ZNjqulZVZR+pStZ7GFUPHk/rqPv6wyru1QPmsJQqRC0dCLlIqEIr/qrgaI
w2b8FbUPW2Tq3BQYY4RDWw6GSZBaYlNJVUfQ2gmoY+v5xDBAEDoATdlH/fDE
QjEPH/GQ12gUIeFRNCuUckKULyse4EZ238+u8sPBRVmPRlfOi05nSvlkLJB2
eqowzddVJXn3wCaRfLD1iImUafLS9+Lb5bAwq5tmp2rkShtL401gZoYUNulL
bmUym3p/q9q+KUwLy0JQPUAi1p3xPt3yqGiNE2vPNOCN+jZWst6wvJRJjlbo
MO6RDzaay0vuQUjtMtFNe1t1COF96f5YqR5fcPEzoKs0pL2pIvK1igQ/ZY2e
DtUiribQBYrJ5yEVt4ZJ1Lhceq7NbnkkgCW+3I6ttWVIn4n040bb8CkA+W3k
41ZG4/ZJBolfirb9pndKwl1M6JjLI+QyJt28pBkyGCMpgn4buCmoftRzh7Vc
pj7eHApwk6nWQHopeWvB+8Kf1g0nic6yVVfurMjASDKphKHlYxMGo99RudYr
+W+4f4b42ltrlxjI1HWfmdVZ+jluM+VfrTU2HCRGMU/uXDewVjtyMGroAKZE
J0i4vnlj65k6jtrp0SAqHZ0gQkqGhZ312n/KxLAJitC7lBHe79/UNzRSR2wM
EHrowQQBCdtbTfoVas+9Y6xj83kAZHyGMcLSzYvrj+w2MBnFe5RdO2z0k7fM
CPuNsW2yl/XOZ3V9RN0rfUduoiCtgWDd4ertpQQeXuYo1QYHefp3HqTR0hxp
KGrUO8e6GHJjrIGlrZDHrTfqghq9e/kE01g+aRONS8tPE3rX4EbseufDRPOo
xH108vgpuVz+m1TB+Nr//9UIz6uJNdG2puA/SmM3nEPO4d/fJBDLYKjN+S7M
XSY99CzzUCenjWJcIcVYg6tiGxMjAX2DupRZABqXGAag2XkktDoci4QClIsS
7+5uudOxEzdcH7RE2Yydv4ikhmaIKHPbkZg1LJ5qOZuds93JOxFiPJSPbUpd
BDAucQWeVMg0vPSLNuKY14ArE+oNrfIIrmOFgfaD88uPrw7Z6k7rWd5SBYe2
kkbovecUN/Xx1RnWuXvv1V0jCaw5gosW4WmpVQIqPvHAcdc6z2WFD5rPBj+0
8JFokCuNEMJsqRqlrM/0jBt73TmlS3d3SO0QAtyaeZ1viQoO/nB5eSjP+X76
UsvEGo0dck4UgL2npIxPG6PorZGbez6naB+1baEZAI4/6N5ZCVJ01hglSN4N
4TOBUU8BVtyCBLRkY947Gh099Ybn/S7UrBFrX5ww4YeJos/ygBo42Es6AWJR
L/GRaErKZGZ3pRJJ5+kFqHRFtdW0oVAynJXdJtNEOckKD+vQrPT7cpA4FM69
I+OULmGePGvB2vPsyiEO6UmKl96D1KvqCSWvJJzCJDHq1m+ZCxRebbjNE7/9
DxO/6uQ9K14Yq2rAMnJzQiN+noYhyb45iSNENgJ6TILzsRMdNcoZKnXWsrM8
ZfehLkwBOcd8wp51x9qTePKBWsSjGD6//EDpZp9eTuDHR9ow/BHvH+8CZ01J
2ndEAsv++w+0Kw5OnLDBE4ehC4NMBaEdERVfIhVfGhXLXJCw748Ypa6z2u33
48Wri48fLz5OPrx/++b837Xvea1PcvN7PMYPR5Q1JwlA1zwDIJL6eSldspFr
8kAFnCMQ+Bq9n0pSdznhdJf45P5r0FLfA/HvJ8siJZtW54kO0IA/1ggEayQL
JzUdXytA0nTp6js8dLidM+1yYa6xkFpNDXBvHQQ8Hw7jZ73aTFoJTVhsmhsw
wBrusM3Kl+4wK6/zuip5/hEZdAvprueUAIlvOxZMyUCaNURWiFTXui1TgnDQ
4vSrFGNj5ixsm4dQLXWBMDTI1R2xHZy7zlLSwoybT+2Y9vXyzmEBpD0tLIij
Hee/Pcxx0JVUuxa0axtN1A7GrZQhcR1LiV1neuC4mXXEoIxK7ix3T/Pxs1LF
O2dm0GZMXLPK0dMI174ehM9u482U9hkSrVTGBt6ErnJFA95zAfjPQTK8jv+e
OACOCN/7BmPeu4MJvtAWh5Omnif7ZVVm+3cFFR49PTra6zElylJQ9jOIIwxD
X+RPUO1QCvTErkb5vKowBiW+Kp+m7fubuIDRf+d8akodyZAI5nEn6ybrKQbm
ms5JvesHIX6sOuymSJGFBzz3HECAxV6+RYyNNvkHG22C+7Xp8RJudjIHiY8U
iH7DGDI8d5oHYayDImBsIgzH0PnQlu+YfajOOcp9NM2vbzucf29IxWfJ35Ga
LvzL0swyHdrI4bngDXTgnN0qQo/VFcAgo+FlqQ4s7WuJyo/mGYt0PoSbshCB
SEdiMhBCizhstMUuceE/rOtGkxloCmAjhV78Iq4HkXB1I54lORcljXH5UsMc
W4ehhBGrNhNyRzUJNsZOtJyS8zNAPvy5C7sP3Zhdh9Yop5CL4Mx/3o8J+Kkj
3pWn2zr10+gkF7zVNEc3d8SPESYnG81C5G6B8p7RBscujuC3FScoH7jGjTwa
mQaJZjietDn8rpbPWpfa8jDM+49LeoSzeyrZJXFzqSZ2CahOsAlhjHc6/EBw
FJvdRBOV/duIRd4BN/qUdv4qMb95UqpUBABzZZUbCugG2nIZF+XnSrNSMHMi
bhKNVN1MY1HrEkY46INEIR4rvU5vXfNxtJ5VTC7rseK0AbpdwSaA/zvOEY7U
rVhpV2WnCu4CpurSWAZeOStUwVEgmgABexyKv1A/pkCVhL69yhT3QBz6cbRg
VprJsiEvW9BocW98nnB0S35mqw47NKtHW7O6tF+zbwd6ybGIDx289+sDaQ27
hd9+C7G1xaKJwLS0JrJE2iN8fKS89qEpSts05wfCVHPYhDRz8uPhKXGX5wZI
aARXxE1vGs0VKnHYU1ok2HeUylpQ+unUimh6sxa5icI+WsINdS0X9lEWdrN+
iN0DQD2fZeQuoVHDMr6w116eTOpLtykSvtvJ7HYC/ztVBWLsTOF+awkqH5Em
WFGhdL8hZtufyiVOMZw+zN6/Q5ZsVn4yqEfh2v47alKm/bNww9JrjICuOJTm
Y5pSfKa9am7U/4zeBh0Xtmu6hPlRhZRy7Sndm67KOWHqeJllIeqb2QQpc+kO
LsGPFLMoWcGj5S1oZsUamdQCRs7Nu5te59qXPdKs+HZsRiN1OA+kwDujpg9d
LZvpyqjkiFw3OxuhXVOyPtZB31ppdzMo2HUean2Jqck4lp4Njl3QcjM2WSU2
+0HUWvj5aPBFM2g4NulY8WhOyVqDvnWmN7E8dQiNqplPiOBeeVE8mEPUzLL6
gUTkixLJr8Bo2eQ61WLYdYoGGko8lchIi2JbFzcN7ZJ5fK9Pvg93JiyEpg2T
q4FaRIljrlz5cYUz8+NKVCAvD81ty+2SSVyEKTXHR4+SgwtyuL8GVGwO4/aI
jWs2jfP8dvdS8bjHyXJFGNgkZoq5prX7hKOBMBLtHubsZFskkBjj1SFFQuVM
h1z8ni9Wo08XGgsFIXNtf/oNy2b2Qz6Oq5vJ0azE6j+qrbdZf+zx81kYgjDa
UJqzIn1L8ibk7YypYSXy42aCXMxav0hnkig+FeZbWjvcoGN4V2so/iy423gh
TgH0qMocceoX3ssQs/HaIWOQxYlyCGlvj+eXpos0RXi669XOsRuVgPpXshoi
7DcLQ8S/7w2DQvFY6xgsgn4WGlHSDptSELYkb85+Put5XyRKYG3+pG9ahL0I
M/wqL3KHG2dvLxRBYwFC1+i4AJVrWpRqiX6xP8lzI3I79OOaUkjWrVacvmKu
W/KMhZl/uvkmmi2wT9Ms98m5Kq0NsUyC2iFFY7jpQX2u/b82eJqOoEHS32i6
UoHczGDo+9FEuvX+IAx0d7iS3uKcH4O78mEgbASXaPss59eoY9Oy537AE1tY
kNsUDY31Q74xp/1GR4Y3f+6VMYNe7HkvZeuAMCyz2s90NPOkz73joK3/tnhZ
gV9ipRY3MppbzKhf4jiZxK3mQ7jGI1vamzvKeRQ0OY+Kf7C+WYpFYUE8LWpn
LKjQDOm/dQSLfh5ZJJW7pSBx7Bqt5fK8jbVKH7LQ0ExmaESikoZMZz4+Hlwm
XAS+0X4BVY0t/CiRYtugh3XDHZZ0GmWfN/hAu7ZYrhquScBh32QKRlHYSi0e
aiVA7ol+lHa/iYoFuLXa3c1GecwLhRaiK+RmMOHQ2MNvknEPfbIBZZjjSHD9
JkdV7MBGSbhKfG7g25DrWBrUocnEjnkS+DaYdCxv84eSWP6KuqdSUk5N/dnJ
YVbNrqUrWcp4KDO3by0nC5kJerhDLIz7EXIwQUuWcwtfYsaJ9LgJmxhjVs7c
aqo1QVF2soTPMdrHbYIYLptqllMC54KH9A6WDO9zWhyt/uaDVYBEOSVjTDOy
3WHLPRrIZt4azKLf3Tp0X+ZfjD0WDwVOlALMLC1dXOfi+WTVSxU+3oQTViGZ
iUMvaHXAF3jmSO3UKkQzwzpq/a8jwNnbjLnnxOn8GJ8wsdUKofQ9jcxAjIuu
zYCO2/tJ/8siS4U9wYsJEjzcy10jV76IAzJFFtoK+hhMRZ1gMrFOBRrjR+zj
KfVxCqEIxpDX26u9yEDpAVo7W/mugpHGw+VlrkvScNKziscAE26mLUULbyVa
ef/6Iv9RmG4lbrKwQCfZhUDHOMZR8hOcjiqxsbT+TH6uXqtbAioamf1ChbHL
sNagFaWX0DSRlpM87nNf9XA2qpVSTiu4QQkgmc5bjNmomzfrO427mgibBDds
/KmZa95ZhVZfV3quME5WNNp7TuFlh+rYXCM0+itv/RrVjNtjICh8PNcDmBPg
KpK73Lka16XJOQHBPRuTvBIurGPmBTS9pWo3cx+S28/FW3YwyUEnJQv9ohIz
QfNC4wXAdutGOoxh52Y2GQ/7iALidZmLeeAyJNegKdxQO3TXV18oddAaDNSw
26ZFt++3mZsNR3Sar7sysfJVfzjVxgau9prW0XJ5xlCCFm2ByklFd9hS/i7J
JC1xd9mT8xoAhUMFqIJoAnINTUY0NM7FRiTdBAys5NHJ0RNUG9FGx59BZ8QR
Pl0t+avUcuhc/DQfJCyo4oF6mmP09mgfp7lSVWBlnQN5FPcynbMfWawQaQRT
03wTfJKEKDIty2lGe0lz76KZolZXKulMaSDkOMuIcl+7GeqF0jHe/Gk98udk
2GA4Y2EKZTihWtBWPDghTLspwKz8378xa7BH0AAA

-->

</rfc>
