<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.21 (Ruby 3.3.6) -->
<?rfc tocindent="yes"?>
<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="pre5378Trust200902" docName="draft-ietf-httpbis-rfc6265bis-16" category="std" consensus="true" obsoletes="6265" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.25.0 -->
  <front>
    <title>Cookies: HTTP State Management Mechanism</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-rfc6265bis-16"/>
    <author initials="S." surname="Bingler" fullname="Steven Bingler" role="editor">
      <organization>Google LLC</organization>
      <address>
        <email>bingler@google.com</email>
      </address>
    </author>
    <author initials="M." surname="West" fullname="Mike West" role="editor">
      <organization>Google LLC</organization>
      <address>
        <email>mkwst@google.com</email>
        <uri>https://mikewest.org/</uri>
      </address>
    </author>
    <author initials="J." surname="Wilander" fullname="John Wilander" role="editor">
      <organization>Apple, Inc</organization>
      <address>
        <email>wilander@apple.com</email>
      </address>
    </author>
    <date/>
    <area>Applications and Real-Time</area>
    <workgroup>HTTP</workgroup>
    <abstract>
      <?line 221?>

<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>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-httpbis-rfc6265bis/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        HTTP Working Group mailing list (<eref target="mailto:ietf-http-wg@w3.org"/>),
        which is archived at <eref target="https://lists.w3.org/Archives/Public/ietf-http-wg/"/>.
        Working Group information can be found at <eref target="https://httpwg.org/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/httpwg/http-extensions/labels/6265bis"/>.</t>
    </note>
  </front>
  <middle>
    <?line 231?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>This document defines the HTTP Cookie and Set-Cookie header fields. Using
the Set-Cookie header field, an HTTP server can pass name/value pairs and
associated metadata (called cookies) to a user agent. When the user agent makes
subsequent requests to the server, the user agent uses the metadata and other
information to determine whether to return the name/value pairs in the Cookie
header field.</t>
      <t>Although simple on their surface, cookies have a number of complexities. For
example, the server indicates a scope for each cookie when sending it to the
user agent. The scope indicates the maximum amount of time in which the user
agent should return the cookie, the servers to which the user agent should
return the cookie, and the connection types for which the cookie is applicable.</t>
      <t>For historical reasons, cookies contain a number of security and privacy
infelicities. For example, a server can indicate that a given cookie is
intended for "secure" connections, but the Secure attribute does not provide
integrity in the presence of an active network attacker. Similarly, cookies
for a given host are shared across all the ports on that host, even though the
usual "same-origin policy" used by web browsers isolates content retrieved via
different ports.</t>
      <t>This specification applies to developers of both cookie-producing servers and
cookie-consuming user agents. <xref target="implementation-advisory"/> helps to clarify the
intended target audience for each implementation type.</t>
      <t>To maximize interoperability with user agents, servers SHOULD limit themselves
to the well-behaved profile defined in <xref target="sane-profile"/> when generating cookies.</t>
      <t>User agents MUST implement the more liberal processing rules defined in <xref target="ua-requirements"/>,
in order to maximize interoperability with existing servers that do not
conform to the well-behaved profile defined in <xref target="sane-profile"/>.</t>
      <t>This document specifies the syntax and semantics of these header fields as they are
actually used on the Internet. In particular, this document does not create
new syntax or semantics beyond those in use today. The recommendations for
cookie generation provided in <xref target="sane-profile"/> represent a preferred subset of current
server behavior, and even the more liberal cookie processing algorithm provided
in <xref target="ua-requirements"/> does not recommend all of the syntactic and semantic variations in
use today. Where some existing software differs from the recommended protocol
in significant ways, the document contains a note explaining the difference.</t>
      <t>This document obsoletes <xref target="RFC6265"/>.</t>
    </section>
    <section anchor="conventions">
      <name>Conventions</name>
      <section anchor="conformance-criteria">
        <name>Conformance Criteria</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD",
"SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be
interpreted as described in <xref target="RFC2119"/>.</t>
        <t>Requirements phrased in the imperative as part of algorithms (such as "strip any
leading space characters" or "return false and abort these steps") are to be
interpreted with the meaning of the key word ("MUST", "SHOULD", "MAY", etc.)
used in introducing the algorithm.</t>
        <t>Conformance requirements phrased as algorithms or specific steps can be
implemented in any manner, so long as the end result is equivalent. In
particular, the algorithms defined in this specification are intended to be
easy to understand and are not intended to be performant.</t>
      </section>
      <section anchor="syntax-notation">
        <name>Syntax Notation</name>
        <t>This specification uses the Augmented Backus-Naur Form (ABNF) notation of
<xref target="RFC5234"/>.</t>
        <t>The following core rules are included by reference, as defined in <xref target="RFC5234"/>,
Appendix B.1: ALPHA (letters), CR (carriage return), CRLF (CR LF), CTLs
(controls), DIGIT (decimal 0-9), DQUOTE (double quote), HEXDIG
(hexadecimal 0-9/A-F/a-f), LF (line feed), NUL (null octet), OCTET (any
8-bit sequence of data except NUL), SP (space), HTAB (horizontal tab),
CHAR (any <xref target="USASCII"/> character), VCHAR (any visible <xref target="USASCII"/> character),
and WSP (whitespace).</t>
        <t>The OWS (optional whitespace) and BWS (bad whitespace) rules are defined in
<xref section="5.6.3" sectionFormat="of" target="RFC9110"/>.</t>
      </section>
      <section anchor="terminology">
        <name>Terminology</name>
        <t>The terms "user agent", "client", "server", "proxy", and "origin server" have
the same meaning as in the HTTP/1.1 specification (<xref target="RFC9110"/>, Section 3).</t>
        <t>The request-host is the name of the host, as known by the user agent, to which
the user agent is sending an HTTP request or from which it is receiving an HTTP
response (i.e., the name of the host to which it sent the corresponding HTTP
request).</t>
        <t>The term request-uri refers to "target URI" as defined in <xref section="7.1" sectionFormat="of" target="RFC9110"/>.</t>
        <t>Two sequences of octets are said to case-insensitively match each other if and
only if they are equivalent under the i;ascii-casemap collation defined in
<xref target="RFC4790"/>.</t>
        <t>The term string means a sequence of non-NUL octets.</t>
        <t>The terms "active browsing context", "active document", "ancestor navigables",
"container document", "content navigable", "dedicated worker", "Document",
"inclusive ancestor navigables", "navigable", "opaque origin", "sandboxed
origin browsing context flag", "shared worker", "the worker's Documents",
"top-level traversable", and "WorkerGlobalScope" are defined in <xref target="HTML"/>.</t>
        <t>"Service Workers" are defined in the Service Workers specification
<xref target="SERVICE-WORKERS"/>.</t>
        <t>The term "origin", the mechanism of deriving an origin from a URI, and the "the
same" matching algorithm for origins are defined in <xref target="RFC6454"/>.</t>
        <t>"Safe" HTTP methods include <tt>GET</tt>, <tt>HEAD</tt>, <tt>OPTIONS</tt>, and <tt>TRACE</tt>, as defined
in <xref section="9.2.1" sectionFormat="of" target="RFC9110"/>.</t>
        <t>A domain's "public suffix" is the portion of a domain that is controlled by a
public registry, such as "com", "co.uk", and "pvt.k12.wy.us". A domain's
"registrable domain" is the domain's public suffix plus the label to its left.
That is, for <tt>https://www.site.example</tt>, the public suffix is <tt>example</tt>, and the
registrable domain is <tt>site.example</tt>. Whenever possible, user agents SHOULD
use an up-to-date public suffix list, such as the one maintained by the Mozilla
project at <xref target="PSL"/>.</t>
        <t>The term "request", as well as a request's "client", "current url", "method",
"target browsing context", and "url list", are defined in <xref target="FETCH"/>.</t>
        <t>The term "non-HTTP APIs" refers to non-HTTP mechanisms used to set and retrieve
cookies, such as a web browser API that exposes cookies to scripts.</t>
        <t>The term "top-level navigation" refers to a navigation of a top-level
traversable.</t>
      </section>
    </section>
    <section anchor="overview">
      <name>Overview</name>
      <t>This section outlines a way for an origin server to send state information to a
user agent and for the user agent to return the state information to the origin
server.</t>
      <t>To store state, the origin server includes a Set-Cookie header field in an HTTP
response. In subsequent requests, the user agent returns a Cookie request
header field to the origin server. The Cookie header field contains cookies the user agent
received in previous Set-Cookie header fields. The origin server is free to ignore
the Cookie header field or use its contents for an application-defined purpose.</t>
      <t>Origin servers MAY send a Set-Cookie response header field with any response. An
origin server can include multiple Set-Cookie header fields in a single response.
The presence of a Cookie or a Set-Cookie header field does not preclude HTTP
caches from storing and reusing a response.</t>
      <t>Origin servers SHOULD NOT fold multiple Set-Cookie header fields into a single
header field. The usual mechanism for folding HTTP headers fields (i.e., as
defined in <xref section="5.3" sectionFormat="of" target="RFC9110"/>) might change the semantics of the Set-Cookie header
field because the %x2C (",") character is used by Set-Cookie in a way that
conflicts with such folding.</t>
      <t>User agents MAY ignore Set-Cookie header fields based on response status codes or
the user agent's cookie policy (see <xref target="ignoring-cookies"/>).</t>
      <section anchor="examples">
        <name>Examples</name>
        <t>Using the Set-Cookie header field, a server can send the user agent a short string
in an HTTP response that the user agent will return in future HTTP requests that
are within the scope of the cookie. For example, the server can send the user
agent a "session identifier" named SID with the value 31d4d96e407aad42. The
user agent then returns the session identifier in subsequent requests.</t>
        <sourcecode type="example"><![CDATA[
== Server -> User Agent ==

Set-Cookie: SID=31d4d96e407aad42

== User Agent -> Server ==

Cookie: SID=31d4d96e407aad42
]]></sourcecode>
        <t>The server can alter the default scope of the cookie using the Path and
Domain attributes. For example, the server can instruct the user agent to
return the cookie to every path and every subdomain of site.example.</t>
        <sourcecode type="example"><![CDATA[
== Server -> User Agent ==

Set-Cookie: SID=31d4d96e407aad42; Path=/; Domain=site.example

== User Agent -> Server ==

Cookie: SID=31d4d96e407aad42
]]></sourcecode>
        <t>As shown in the next example, the server can store multiple cookies at the user
agent. For example, the server can store a session identifier as well as the
user's preferred language by returning two Set-Cookie header fields. Notice
that the server uses the Secure and HttpOnly attributes to provide
additional security protections for the more sensitive session identifier (see
<xref target="sane-set-cookie-semantics"/>).</t>
        <sourcecode type="example"><![CDATA[
== Server -> User Agent ==

Set-Cookie: SID=31d4d96e407aad42; Path=/; Secure; HttpOnly
Set-Cookie: lang=en-US; Path=/; Domain=site.example

== User Agent -> Server ==

Cookie: SID=31d4d96e407aad42; lang=en-US
]]></sourcecode>
        <t>Notice that the Cookie header field above contains two cookies, one named SID and
one named lang.</t>
        <t>Cookie names are case-sensitive, meaning that if a server sends the user agent
two Set-Cookie header fields that differ only in their name's case the user
agent will store and return both of those cookies in subsequent requests.</t>
        <sourcecode type="example"><![CDATA[
== Server -> User Agent ==

Set-Cookie: SID=31d4d96e407aad42
Set-Cookie: sid=31d4d96e407aad42

== User Agent -> Server ==

Cookie: SID=31d4d96e407aad42; sid=31d4d96e407aad42
]]></sourcecode>
        <t>If the server wishes the user agent to persist the cookie over
multiple "sessions" (e.g., user agent restarts), the server can specify an
expiration date in the Expires attribute. Note that the user agent might
delete the cookie before the expiration date if the user agent's cookie store
exceeds its quota or if the user manually deletes the server's cookie.</t>
        <sourcecode type="example"><![CDATA[
== Server -> User Agent ==

Set-Cookie: lang=en-US; Expires=Wed, 09 Jun 2021 10:18:14 GMT

== User Agent -> Server ==

Cookie: SID=31d4d96e407aad42; lang=en-US
]]></sourcecode>
        <t>Finally, to remove a cookie, the server returns a Set-Cookie header field with an
expiration date in the past. The server will be successful in removing the
cookie only if the Path and the Domain attribute in the Set-Cookie header field
match the values used when the cookie was created.</t>
        <sourcecode type="example"><![CDATA[
== Server -> User Agent ==

Set-Cookie: lang=; Expires=Sun, 06 Nov 1994 08:49:37 GMT

== User Agent -> Server ==

Cookie: SID=31d4d96e407aad42
]]></sourcecode>
      </section>
      <section anchor="implementation-advisory">
        <name>Which Requirements to Implement</name>
        <t>The upcoming two sections, <xref target="sane-profile"/> and <xref target="ua-requirements"/>, discuss
the set of requirements for two distinct types of implementations. This section
is meant to help guide implementers in determining which set of requirements
best fits their goals. Choosing the wrong set of requirements could result in a
lack of compatibility with other cookie implementations.</t>
        <t>It's important to note that being compatible means different things
depending on the implementer's goals. These differences have built up over time
due to both intentional and unintentional spec changes, spec interpretations,
and historical implementation differences.</t>
        <t>This section roughly divides implementers of the cookie spec into two types,
producers and consumers. These are not official terms and are only used here to
help readers develop an intuitive understanding of the use cases.</t>
        <section anchor="cookie-producing-implementations">
          <name>Cookie Producing Implementations</name>
          <t>An implementer should choose <xref target="sane-profile"/> whenever cookies are created and
will be sent to a user agent, such as a web browser. These implementations are
frequently referred to as servers by the spec but that term includes anything
which primarily produces cookies. Some potential examples:</t>
          <ul spacing="normal">
            <li>
              <t>Server applications hosting a website or API</t>
            </li>
            <li>
              <t>Programming languages or software frameworks that support cookies</t>
            </li>
            <li>
              <t>Integrated third-party web applications, such as a business management suite</t>
            </li>
          </ul>
          <t>All these benefit from not only supporting as many user agents as possible but
also supporting other servers. This is useful if a cookie is produced by a
software framework and is later sent back to a server application which needs
to read it. <xref target="sane-profile"/> advises best practices that help maximize this
sense of compatibility.</t>
          <t>See <xref target="languages-frameworks"/> for more details on programming languages and software
frameworks.</t>
        </section>
        <section anchor="cookie-consuming-implementations">
          <name>Cookie Consuming Implementations</name>
          <t>An implementer should choose <xref target="ua-requirements"/> whenever cookies are primarily
received from another source. These implementations are referred to as user
agents. Some examples:</t>
          <ul spacing="normal">
            <li>
              <t>Web browsers</t>
            </li>
            <li>
              <t>Tools that support stateful HTTP</t>
            </li>
            <li>
              <t>Programming languages or software frameworks that support cookies</t>
            </li>
          </ul>
          <t>Because user agents don't know which servers a user will access, and whether
or not that server is following best practices, users agents are advised to
implement a more lenient set of requirements and to accept some things that
servers are warned against producing. <xref target="ua-requirements"/> advises best
practices that help maximize this sense of compatibility.</t>
          <t>See <xref target="languages-frameworks"/> for more details on programming languages and software
frameworks.</t>
          <section anchor="languages-frameworks">
            <name>Programming Languages &amp; Software Frameworks</name>
            <t>A programming language or software framework with support for cookies could
reasonably be used to create an application that acts as a cookie producer,
cookie consumer, or both. Because a developer may want to maximize their
compatibility as either a producer or consumer, these languages or frameworks
should strongly consider supporting both sets of requirements, <xref target="sane-profile"/>
and <xref target="ua-requirements"/>, behind a compatibility mode toggle. This toggle should
default to <xref target="sane-profile"/>'s requirements.</t>
            <t>Doing so will reduce the chances that a developer's application can
inadvertently create cookies that cannot be read by other servers.</t>
          </section>
        </section>
      </section>
    </section>
    <section anchor="sane-profile">
      <name>Server Requirements</name>
      <t>This section describes the syntax and semantics of a well-behaved profile of the
Cookie and Set-Cookie header fields.</t>
      <section anchor="sane-set-cookie">
        <name>Set-Cookie</name>
        <t>The Set-Cookie HTTP response header field is used to send cookies from the server to
the user agent.</t>
        <section anchor="abnf-syntax">
          <name>Syntax</name>
          <t>Informally, the Set-Cookie response header field contains a cookie, which begins with a
name-value-pair, followed by zero or more attribute-value pairs. Servers
SHOULD NOT send Set-Cookie header fields that fail to conform to the following
grammar:</t>
          <sourcecode type="abnf"><![CDATA[
set-cookie        = set-cookie-string
set-cookie-string = BWS cookie-pair *( BWS ";" OWS cookie-av )
cookie-pair       = cookie-name BWS "=" BWS cookie-value
cookie-name       = token
cookie-value      = *cookie-octet / ( DQUOTE *cookie-octet DQUOTE )
cookie-octet      = %x21 / %x23-2B / %x2D-3A / %x3C-5B / %x5D-7E
                      ; US-ASCII characters excluding CTLs,
                      ; whitespace, DQUOTE, comma, semicolon,
                      ; and backslash
token             = <token, defined in [RFC9110], Section 5.6.2>

cookie-av         = expires-av / max-age-av / domain-av /
                    path-av / secure-av / httponly-av /
                    samesite-av / extension-av
expires-av        = "Expires" BWS "=" BWS sane-cookie-date
sane-cookie-date  =
    <IMF-fixdate, defined in [RFC9110], Section 5.6.7>
max-age-av        = "Max-Age" BWS "=" BWS non-zero-digit *DIGIT
non-zero-digit    = %x31-39
                      ; digits 1 through 9
domain-av         = "Domain" BWS "=" BWS domain-value
domain-value      = <subdomain>
                      ; see details below
path-av           = "Path" BWS "=" BWS path-value
path-value        = *av-octet
secure-av         = "Secure"
httponly-av       = "HttpOnly"
samesite-av       = "SameSite" BWS "=" BWS samesite-value
samesite-value    = "Strict" / "Lax" / "None"
extension-av      = *av-octet
av-octet          = %x20-3A / %x3C-7E
                      ; any CHAR except CTLs or ";"
]]></sourcecode>
          <t>Note that some of the grammatical terms above reference documents that use
different grammatical notations than this document (which uses ABNF from
<xref target="RFC5234"/>).</t>
          <t>Per the grammar above, servers SHOULD NOT produce nameless cookies (i.e.: an
empty cookie-name) as such cookies may be unpredictably serialized by UAs when
sent back to the server.</t>
          <t>The semantics of the cookie-value are not defined by this document.</t>
          <t>To maximize compatibility with user agents, servers that wish to store arbitrary
data in a cookie-value SHOULD encode that data, for example, using Base64
<xref target="RFC4648"/>.</t>
          <t>Per the grammar above, the cookie-value MAY be wrapped in DQUOTE characters.
Note that in this case, the initial and trailing DQUOTE characters are not
stripped. They are part of the cookie-value, and will be included in Cookie
header fields sent to the server.</t>
          <t>The domain-value is a subdomain as defined by <xref target="RFC1034"/>, Section 3.5, and
as enhanced by <xref target="RFC1123"/>, Section 2.1. Thus, domain-value is a string of
<xref target="USASCII"/> characters, such as one obtained by applying the "ToASCII" operation
defined in <xref section="4" sectionFormat="of" target="RFC3490"/>.</t>
          <t>The portions of the set-cookie-string produced by the cookie-av term are
known as attributes. To maximize compatibility with user agents, servers SHOULD
NOT produce two attributes with the same name in the same set-cookie-string.
(See <xref target="storage-model"/> for how user agents handle this case.)</t>
          <t>NOTE: The name of an attribute-value pair is not case sensitive. So while they
are presented here in CamelCase, such as "HttpOnly" or "SameSite", any case is
accepted. E.x.: "httponly", "Httponly", "hTTPoNLY", etc.</t>
          <t>Servers SHOULD NOT include more than one Set-Cookie header field in the same
response with the same cookie-name. (See <xref target="set-cookie"/> for how user agents
handle this case.)</t>
          <t>If a server sends multiple responses containing Set-Cookie header fields
concurrently to the user agent (e.g., when communicating with the user agent
over multiple sockets), these responses create a "race condition" that can lead
to unpredictable behavior.</t>
          <t>NOTE: Some existing user agents differ in their interpretation of two-digit
years. To avoid compatibility issues, servers SHOULD use the rfc1123-date
format, which requires a four-digit year.</t>
          <t>NOTE: Some user agents store and process dates in cookies as 32-bit UNIX time_t
values. Implementation bugs in the libraries supporting time_t processing on
some systems might cause such user agents to process dates after the year 2038
incorrectly.</t>
        </section>
        <section anchor="sane-set-cookie-semantics">
          <name>Semantics (Non-Normative)</name>
          <t>This section describes simplified semantics of the Set-Cookie header field. These
semantics are detailed enough to be useful for understanding the most common
uses of cookies by servers. The full semantics are described in <xref target="ua-requirements"/>.</t>
          <t>When the user agent receives a Set-Cookie header field, the user agent stores the
cookie together with its attributes. Subsequently, when the user agent makes
an HTTP request, the user agent includes the applicable, non-expired cookies
in the Cookie header field.</t>
          <t>If the user agent receives a new cookie with the same cookie-name,
domain-value, and path-value as a cookie that it has already stored, the
existing cookie is evicted and replaced with the new cookie. Notice that
servers can delete cookies by sending the user agent a new cookie with an
Expires attribute with a value in the past.</t>
          <t>Unless the cookie's attributes indicate otherwise, the cookie is returned only
to the origin server (and not, for example, to any subdomains), and it expires
at the end of the current session (as defined by the user agent). User agents
ignore unrecognized cookie attributes (but not the entire cookie).</t>
          <section anchor="attribute-expires">
            <name>The Expires Attribute</name>
            <t>The Expires attribute indicates the maximum lifetime of the cookie,
represented as the date and time at which the cookie expires. The user agent
may adjust the specified date and is not required to retain the cookie until
that date has passed. In fact, user agents often evict cookies due to memory
pressure or privacy concerns.</t>
          </section>
          <section anchor="attribute-max-age">
            <name>The Max-Age Attribute</name>
            <t>The Max-Age attribute indicates the maximum lifetime of the cookie,
represented as the number of seconds until the cookie expires. The user agent
may adjust the specified duration and is not required to retain the cookie for
that duration. In fact, user agents often evict cookies due to memory pressure
or privacy concerns.</t>
            <t>NOTE: Some existing user agents do not support the Max-Age attribute. User
agents that do not support the Max-Age attribute ignore the attribute.</t>
            <t>If a cookie has both the Max-Age and the Expires attribute, the Max-Age
attribute has precedence and controls the expiration date of the cookie. If a
cookie has neither the Max-Age nor the Expires attribute, the user agent
will retain the cookie until "the current session is over" (as defined by the
user agent).</t>
          </section>
          <section anchor="attribute-domain">
            <name>The Domain Attribute</name>
            <t>The Domain attribute specifies those hosts to which the cookie will be sent.
For example, if the value of the Domain attribute is "site.example", the user
agent will include the cookie in the Cookie header field when making HTTP requests to
site.example, www.site.example, and www.corp.site.example. (Note that a
leading %x2E ("."), if present, is ignored even though that character is not
permitted.)  If the server omits the Domain attribute, the user agent
will return the cookie only to the origin server.</t>
            <t>WARNING: Some existing user agents treat an absent Domain attribute as if the
Domain attribute were present and contained the current host name. For
example, if site.example returns a Set-Cookie header field without a Domain
attribute, these user agents will erroneously send the cookie to
www.site.example as well.</t>
            <t>The user agent will reject cookies unless the Domain attribute specifies a
scope for the cookie that would include the origin server. For example, the
user agent will accept a cookie with a Domain attribute of "site.example" or
of "foo.site.example" from foo.site.example, but the user agent will not accept
a cookie with a Domain attribute of "bar.site.example" or of
"baz.foo.site.example".</t>
            <t>NOTE: For security reasons, many user agents are configured to reject Domain
attributes that correspond to "public suffixes". For example, some user
agents will reject Domain attributes of "com" or "co.uk". (See <xref target="storage-model"/> for
more information.)</t>
          </section>
          <section anchor="attribute-path">
            <name>The Path Attribute</name>
            <t>The scope of each cookie is limited to a set of paths, controlled by the
Path attribute. If the server omits the Path attribute, the user agent will
use the "directory" of the request-uri's path component as the default value.
(See <xref target="cookie-path"/> for more details.)</t>
            <t>The user agent will include the cookie in an HTTP request only if the path
portion of the request-uri matches (or is a subdirectory of) the cookie's
Path attribute, where the %x2F ("/") character is interpreted as a directory
separator.</t>
            <t>Although seemingly useful for isolating cookies between different paths within
a given host, the Path attribute cannot be relied upon for security (see
<xref target="security-considerations"/>).</t>
          </section>
          <section anchor="attribute-secure">
            <name>The Secure Attribute</name>
            <t>The Secure attribute limits the scope of the cookie to "secure" channels
(where "secure" is defined by the user agent). When a cookie has the Secure
attribute, the user agent will include the cookie in an HTTP request only if
the request is transmitted over a secure channel (typically HTTP over Transport
Layer Security (TLS) <xref target="RFC2818"/>).</t>
          </section>
          <section anchor="attribute-httponly">
            <name>The HttpOnly Attribute</name>
            <t>The HttpOnly attribute limits the scope of the cookie to HTTP requests. In
particular, the attribute instructs the user agent to omit the cookie when
providing access to cookies via non-HTTP APIs.</t>
            <t>Note that the HttpOnly attribute is independent of the Secure attribute: a
cookie can have both the HttpOnly and the Secure attribute.</t>
          </section>
          <section anchor="attribute-samesite">
            <name>The SameSite Attribute</name>
            <t>The "SameSite" attribute limits the scope of the cookie such that it will only
be attached to requests if those requests are same-site, as defined by the
algorithm in <xref target="same-site-requests"/>. For example, requests for
<tt>https://site.example/sekrit-image</tt> will attach same-site cookies if and only if
initiated from a context whose "site for cookies" is an origin with a scheme and
registered domain of "https" and "site.example" respectively.</t>
            <t>If the "SameSite" attribute's value is "Strict", the cookie will only be sent
along with "same-site" requests. If the value is "Lax", the cookie will be sent
with same-site requests, and with "cross-site" top-level navigations, as
described in <xref target="strict-lax"/>. If the value is "None", the cookie will be sent
with same-site and cross-site requests. If the "SameSite" attribute's value is
something other than these three known keywords, the attribute's value will be
subject to a default enforcement mode that is equivalent to "Lax". If a user
agent uses "Lax-allowing-unsafe" enforcement (See <xref target="lax-allowing-unsafe"/>) then
this default enforcement mode will instead be equivalent to "Lax-allowing-unsafe".</t>
            <t>The "SameSite" attribute affects cookie creation as well as delivery. Cookies
which assert "SameSite=Lax" or "SameSite=Strict" cannot be set in responses to
cross-site subresource requests, or cross-site nested navigations. They can be
set along with any top-level navigation, cross-site or otherwise.</t>
          </section>
        </section>
        <section anchor="server-name-prefixes">
          <name>Cookie Name Prefixes</name>
          <t><xref target="weak-confidentiality"/> and <xref target="weak-integrity"/> of this document spell out some of the drawbacks of cookies'
historical implementation. In particular, it is impossible for a server to have
confidence that a given cookie was set with a particular set of attributes. In
order to provide such confidence in a backwards-compatible way, two common sets
of requirements can be inferred from the first few characters of the cookie's
name.</t>
          <t>The user agent requirements for the prefixes described below are detailed in
<xref target="ua-name-prefixes"/>.</t>
          <t>To maximize compatibility with user agents servers SHOULD use prefixes as
described below.</t>
          <section anchor="the-secure-prefix">
            <name>The "__Secure-" Prefix</name>
            <t>If a cookie's name begins with a case-sensitive match for the string
<tt>__Secure-</tt>, then the cookie will have been set with a <tt>Secure</tt> attribute.</t>
            <t>For example, the following <tt>Set-Cookie</tt> header field would be rejected by a conformant
user agent, as it does not have a <tt>Secure</tt> attribute.</t>
            <sourcecode type="example"><![CDATA[
Set-Cookie: __Secure-SID=12345; Domain=site.example
]]></sourcecode>
            <t>Whereas the following <tt>Set-Cookie</tt> header field would be accepted if set from a secure origin
(e.g. "https://site.example/"), and rejected otherwise:</t>
            <sourcecode type="example"><![CDATA[
Set-Cookie: __Secure-SID=12345; Domain=site.example; Secure
]]></sourcecode>
          </section>
          <section anchor="the-host-prefix">
            <name>The "__Host-" Prefix</name>
            <t>If a cookie's name begins with a case-sensitive match for the string
<tt>__Host-</tt>, then the cookie will have been set with a <tt>Secure</tt> attribute, a
<tt>Path</tt> attribute with a value of <tt>/</tt>, and no <tt>Domain</tt> attribute.</t>
            <t>This combination yields a cookie that hews as closely as a cookie can to
treating the origin as a security boundary. The lack of a <tt>Domain</tt> attribute
ensures that the cookie's <tt>host-only-flag</tt> is true, locking the cookie to a
particular host, rather than allowing it to span subdomains. Setting the <tt>Path</tt>
to <tt>/</tt> means that the cookie is effective for the entire host, and won't be
overridden for specific paths. The <tt>Secure</tt> attribute ensures that the cookie
is unaltered by non-secure origins, and won't span protocols.</t>
            <t>Ports are the only piece of the origin model that <tt>__Host-</tt> cookies continue
to ignore.</t>
            <t>For example, the following cookies would always be rejected:</t>
            <sourcecode type="example"><![CDATA[
Set-Cookie: __Host-SID=12345
Set-Cookie: __Host-SID=12345; Secure
Set-Cookie: __Host-SID=12345; Domain=site.example
Set-Cookie: __Host-SID=12345; Domain=site.example; Path=/
Set-Cookie: __Host-SID=12345; Secure; Domain=site.example; Path=/
]]></sourcecode>
            <t>While the following would be accepted if set from a secure origin (e.g.
"https://site.example/"), and rejected otherwise:</t>
            <sourcecode type="example"><![CDATA[
Set-Cookie: __Host-SID=12345; Secure; Path=/
]]></sourcecode>
          </section>
        </section>
      </section>
      <section anchor="sane-cookie">
        <name>Cookie</name>
        <section anchor="server-syntax">
          <name>Syntax</name>
          <t>The user agent sends stored cookies to the origin server in the Cookie header field.
If the server conforms to the requirements in <xref target="sane-set-cookie"/> (and the user agent
conforms to the requirements in <xref target="ua-requirements"/>), the user agent will send a Cookie
header field that conforms to the following grammar:</t>
          <sourcecode type="abnf"><![CDATA[
cookie        = cookie-string
cookie-string = cookie-pair *( ";" SP cookie-pair )
]]></sourcecode>
          <t>While <xref section="5.4" sectionFormat="of" target="RFC9110"/> does not define a length limit for header
fields it is likely that the web server's implementation does impose a limit;
many popular implementations have default limits of 8K. Servers SHOULD avoid
setting a large number of large cookies such that the final cookie-string
would exceed their header field limit. Not doing so could result in requests
to the server failing.</t>
          <t>Servers MUST be tolerant of multiple cookie headers. For example, an HTTP/2
<xref target="RFC9113"/> or HTTP/3 <xref target="RFC9114"/> client or intermediary might split a cookie
header to improve compression. Servers are free to determine what form this
tolerance takes. For example, the server could process each cookie header
individually or the server could concatenate all the cookie headers into one
and then process that final, single, header. The server should be mindful of
any header field limits when deciding which approach to take.</t>
          <t>Note: Since intermediaries can modify cookie headers they should also be
mindful of common server header field limits in order to avoid sending servers
headers that they cannot process. For example, concatenating multiple cookie
headers into a single header might exceed a server's size limit.</t>
        </section>
        <section anchor="semantics">
          <name>Semantics</name>
          <t>Each cookie-pair represents a cookie stored by the user agent. The
cookie-pair contains the cookie-name and cookie-value the user agent
received in the Set-Cookie header field.</t>
          <t>Notice that the cookie attributes are not returned. In particular, the server
cannot determine from the Cookie  field alone when a cookie will expire, for
which hosts the cookie is valid, for which paths the cookie is valid, or
whether the cookie was set with the Secure or HttpOnly attributes.</t>
          <t>The semantics of individual cookies in the Cookie header field are not defined by
this document. Servers are expected to imbue these cookies with
application-specific semantics.</t>
          <t>Although cookies are serialized linearly in the Cookie header field, servers SHOULD
NOT rely upon the serialization order. In particular, if the Cookie header field
contains two cookies with the same name (e.g., that were set with different
Path or Domain attributes), servers SHOULD NOT rely upon the order in which
these cookies appear in the header field.</t>
        </section>
      </section>
    </section>
    <section anchor="ua-requirements">
      <name>User Agent Requirements</name>
      <t>This section specifies the Cookie and Set-Cookie header fields in sufficient
detail that a user agent implementing these requirements precisely can
interoperate with existing servers (even those that do not conform to the
well-behaved profile described in <xref target="sane-profile"/>).</t>
      <t>A user agent could enforce more restrictions than those specified herein (e.g.,
restrictions specified by its cookie policy, described in <xref target="cookie-policy"/>).
However, such additional restrictions may reduce the likelihood that a user
agent will be able to interoperate with existing servers.</t>
      <section anchor="subcomponent-algorithms">
        <name>Subcomponent Algorithms</name>
        <t>This section defines some algorithms used by user agents to process specific
subcomponents of the Cookie and Set-Cookie header fields.</t>
        <section anchor="cookie-date">
          <name>Dates</name>
          <t>The user agent MUST use an algorithm equivalent to the following algorithm to
parse a cookie-date. Note that the various boolean flags defined as a part
of the algorithm (i.e., found-time, found-day-of-month, found-month,
found-year) are initially "not set".</t>
          <ol spacing="normal" type="1"><li>
              <t>Using the grammar below, divide the cookie-date into date-tokens.  </t>
              <sourcecode type="abnf"><![CDATA[
cookie-date     = *delimiter date-token-list *delimiter
date-token-list = date-token *( 1*delimiter date-token )
date-token      = 1*non-delimiter

delimiter       = %x09 / %x20-2F / %x3B-40 / %x5B-60 / %x7B-7E
non-delimiter   = %x00-08 / %x0A-1F / DIGIT / ":" / ALPHA
                  / %x7F-FF
non-digit       = %x00-2F / %x3A-FF

day-of-month    = 1*2DIGIT [ non-digit *OCTET ]
month           = ( "jan" / "feb" / "mar" / "apr" /
                    "may" / "jun" / "jul" / "aug" /
                    "sep" / "oct" / "nov" / "dec" ) *OCTET
year            = 2*4DIGIT [ non-digit *OCTET ]
time            = hms-time [ non-digit *OCTET ]
hms-time        = time-field ":" time-field ":" time-field
time-field      = 1*2DIGIT
]]></sourcecode>
            </li>
            <li>
              <t>Process each date-token sequentially in the order the date-tokens
appear in the cookie-date:  </t>
              <ol spacing="normal" type="1"><li>
                  <t>If the found-time flag is not set and the token matches the
 time production, set the found-time flag and set the hour-value,
 minute-value, and second-value to the numbers denoted by the digits
 in the date-token, respectively. Skip the remaining sub-steps and
 continue to the next date-token.</t>
                </li>
                <li>
                  <t>If the found-day-of-month flag is not set and the date-token matches
 the day-of-month production, set the found-day-of-month flag and set
 the day-of-month-value to the number denoted by the date-token. Skip
 the remaining sub-steps and continue to the next date-token.</t>
                </li>
                <li>
                  <t>If the found-month flag is not set and the date-token matches the
 month production, set the found-month flag and set the month-value
 to the month denoted by the date-token. Skip the remaining sub-steps
 and continue to the next date-token.</t>
                </li>
                <li>
                  <t>If the found-year flag is not set and the date-token matches the
 year production, set the found-year flag and set the year-value to
 the number denoted by the date-token. Skip the remaining sub-steps
 and continue to the next date-token.</t>
                </li>
              </ol>
            </li>
            <li>
              <t>If the year-value is greater than or equal to 70 and less than or equal to
99, increment the year-value by 1900.</t>
            </li>
            <li>
              <t>If the year-value is greater than or equal to 0 and less than or equal to
69, increment the year-value by 2000.  </t>
              <ol spacing="normal" type="1"><li>
                  <t>NOTE: Some existing user agents interpret two-digit years differently.</t>
                </li>
              </ol>
            </li>
            <li>
              <t>Abort these steps and fail to parse the cookie-date if:  </t>
              <ul spacing="normal">
                <li>
                  <t>at least one of the found-day-of-month, found-month, found-year, or
found-time flags is not set,</t>
                </li>
                <li>
                  <t>the day-of-month-value is less than 1 or greater than 31,</t>
                </li>
                <li>
                  <t>the year-value is less than 1601,</t>
                </li>
                <li>
                  <t>the hour-value is greater than 23,</t>
                </li>
                <li>
                  <t>the minute-value is greater than 59, or</t>
                </li>
                <li>
                  <t>the second-value is greater than 59.</t>
                </li>
              </ul>
              <t>
(Note that leap seconds cannot be represented in this syntax.)</t>
            </li>
            <li>
              <t>Let the parsed-cookie-date be the date whose day-of-month, month,
year, hour, minute, and second (in UTC) are the
day-of-month-value, the month-value, the year-value, the hour-value,
the minute-value, and the second-value, respectively. If no such date
exists, abort these steps and fail to parse the cookie-date.</t>
            </li>
            <li>
              <t>Return the parsed-cookie-date as the result of this algorithm.</t>
            </li>
          </ol>
        </section>
        <section anchor="canonicalized-host-names">
          <name>Canonicalized Host Names</name>
          <t>A canonicalized host name is the string generated by the following algorithm:</t>
          <ol spacing="normal" type="1"><li>
              <t>Convert the host name to a sequence of individual domain name labels.</t>
            </li>
            <li>
              <t>Convert each label that is not a Non-Reserved LDH (NR-LDH) label, to an
A-label (see <xref section="2.3.2.1" sectionFormat="of" target="RFC5890"/> for the former and latter), or
to a "punycode label" (a label resulting from the "ToASCII" conversion in
<xref section="4" sectionFormat="of" target="RFC3490"/>), as appropriate (see <xref target="idna-migration"/> of this
specification).</t>
            </li>
            <li>
              <t>Concatenate the resulting labels, separated by a %x2E (".") character.</t>
            </li>
          </ol>
        </section>
        <section anchor="domain-matching">
          <name>Domain Matching</name>
          <t>A string domain-matches a given domain string if at least one of the following
conditions hold:</t>
          <ul spacing="normal">
            <li>
              <t>The domain string and the string are identical. (Note that both the domain
string and the string will have been canonicalized to lower case at this
point.)</t>
            </li>
            <li>
              <t>All of the following conditions hold:  </t>
              <ul spacing="normal">
                <li>
                  <t>The domain string is a suffix of the string.</t>
                </li>
                <li>
                  <t>The last character of the string that is not included in the domain
string is a %x2E (".") character.</t>
                </li>
                <li>
                  <t>The string is a host name (i.e., not an IP address).</t>
                </li>
              </ul>
            </li>
          </ul>
        </section>
        <section anchor="cookie-path">
          <name>Paths and Path-Match</name>
          <t>The user agent MUST use an algorithm equivalent to the following algorithm to
compute the default-path of a cookie:</t>
          <ol spacing="normal" type="1"><li>
              <t>Let uri-path be the path portion of the request-uri if such a portion
exists (and empty otherwise).</t>
            </li>
            <li>
              <t>If the uri-path is empty or if the first character of the uri-path is
not a %x2F ("/") character, output %x2F ("/") and skip the remaining steps.</t>
            </li>
            <li>
              <t>If the uri-path contains no more than one %x2F ("/") character, output
%x2F ("/") and skip the remaining step.</t>
            </li>
            <li>
              <t>Output the characters of the uri-path from the first character up to, but
not including, the right-most %x2F ("/").</t>
            </li>
          </ol>
          <t>A request-path path-matches a given cookie-path if at least one of the
following conditions holds:</t>
          <ul spacing="normal">
            <li>
              <t>The cookie-path and the request-path are identical.  </t>
              <t>
Note that this differs from the rules in <xref target="RFC3986"/> for equivalence of the
path component, and hence two equivalent paths can have different cookies.</t>
            </li>
            <li>
              <t>The cookie-path is a prefix of the request-path, and the last character
of the cookie-path is %x2F ("/").</t>
            </li>
            <li>
              <t>The cookie-path is a prefix of the request-path, and the first character
of the request-path that is not included in the cookie-path is a %x2F
("/") character.</t>
            </li>
          </ul>
        </section>
      </section>
      <section anchor="same-site-requests">
        <name>"Same-site" and "cross-site" Requests</name>
        <t>Two origins are same-site if they satisfy the "same site" criteria defined in
<xref target="SAMESITE"/>. A request is "same-site" if the following criteria are true:</t>
        <ol spacing="normal" type="1"><li>
            <t>The request is not the result of a reload navigation triggered through a
user interface element (as defined by the user agent; e.g., a request
triggered by the user clicking a refresh button on a toolbar).</t>
          </li>
          <li>
            <t>The request's current url's origin is same-site with the request's
client's "site for cookies" (which is an origin), or if the request has no
client or the request's client is null.</t>
          </li>
        </ol>
        <t>Requests which are the result of a reload navigation triggered through a user
interface element are same-site if the reloaded document was originally
navigated to via a same-site request. A request that is not "same-site" is
instead "cross-site".</t>
        <t>The request's client's "site for cookies" is calculated depending upon its
client's type, as described in the following subsections:</t>
        <section anchor="document-requests">
          <name>Document-based requests</name>
          <t>The URI displayed in a user agent's address bar is the only security context
directly exposed to users, and therefore the only signal users can reasonably
rely upon to determine whether or not they trust a particular website. The
origin of that URI represents the context in which a user most likely believes
themselves to be interacting. We'll define this origin, the top-level
traversable's active document's origin, as the "top-level origin".</t>
          <t>For a document displayed in a top-level traversable, we can stop here: the
document's "site for cookies" is the top-level origin.</t>
          <t>For container documents, we need to audit the origins of each of a document's
ancestor navigables' active documents in order to account for the
"multiple-nested scenarios" described in <xref section="4" sectionFormat="of" target="RFC7034"/>. A document's
"site for cookies" is the top-level origin if and only if the top-level origin
is same-site with the document's origin, and with each of the document's
ancestor documents' origins. Otherwise its "site for cookies" is an origin set
to an opaque origin.</t>
          <t>Given a Document (<tt>document</tt>), the following algorithm returns its "site for
cookies":</t>
          <ol spacing="normal" type="1"><li>
              <t>Let <tt>top-document</tt> be the active document in <tt>document</tt>'s navigable's
top-level traversable.</t>
            </li>
            <li>
              <t>Let <tt>top-origin</tt> be the origin of <tt>top-document</tt>'s URI if <tt>top-document</tt>'s
sandboxed origin browsing context flag is set, and <tt>top-document</tt>'s origin
otherwise.</t>
            </li>
            <li>
              <t>Let <tt>documents</tt> be a list consisting of the active documents of
<tt>document</tt>'s inclusive ancestor navigables.</t>
            </li>
            <li>
              <t>For each <tt>item</tt> in <tt>documents</tt>:  </t>
              <ol spacing="normal" type="1"><li>
                  <t>Let <tt>origin</tt> be the origin of <tt>item</tt>'s URI if <tt>item</tt>'s sandboxed origin
browsing context flag is set, and <tt>item</tt>'s origin otherwise.</t>
                </li>
                <li>
                  <t>If <tt>origin</tt> is not same-site with <tt>top-origin</tt>, return an origin set to
an opaque origin.</t>
                </li>
              </ol>
            </li>
            <li>
              <t>Return <tt>top-origin</tt>.</t>
            </li>
          </ol>
          <t>Note: This algorithm only applies when the entire chain of documents from
<tt>top-document</tt> to <tt>document</tt> are all active.</t>
        </section>
        <section anchor="worker-requests">
          <name>Worker-based requests</name>
          <t>Worker-driven requests aren't as clear-cut as document-driven requests, as
there isn't a clear link between a top-level traversable and a worker.
This is especially true for Service Workers <xref target="SERVICE-WORKERS"/>, which may
execute code in the background, without any document visible at all.</t>
          <t>Note: The descriptions below assume that workers must be same-origin with
the documents that instantiate them. If this invariant changes, we'll need to
take the worker's script's URI into account when determining their status.</t>
          <section anchor="dedicated-and-shared-requests">
            <name>Dedicated and Shared Workers</name>
            <t>Dedicated workers are simple, as each dedicated worker is bound to one and only
one document. Requests generated from a dedicated worker (via <tt>importScripts</tt>,
<tt>XMLHttpRequest</tt>, <tt>fetch()</tt>, etc) define their "site for cookies" as that
document's "site for cookies".</t>
            <t>Shared workers may be bound to multiple documents at once. As it is quite
possible for those documents to have distinct "site for cookies" values, the
worker's "site for cookies" will be an origin set to an opaque origin in cases
where the values are not all same-site with the worker's origin, and the
worker's origin in cases where the values agree.</t>
            <t>Given a WorkerGlobalScope (<tt>worker</tt>), the following algorithm returns its "site
for cookies":</t>
            <ol spacing="normal" type="1"><li>
                <t>Let <tt>site</tt> be <tt>worker</tt>'s origin.</t>
              </li>
              <li>
                <t>For each <tt>document</tt> in <tt>worker</tt>'s Documents:  </t>
                <ol spacing="normal" type="1"><li>
                    <t>Let <tt>document-site</tt> be <tt>document</tt>'s "site for cookies" (as defined
in <xref target="document-requests"/>).</t>
                  </li>
                  <li>
                    <t>If <tt>document-site</tt> is not same-site with <tt>site</tt>, return an origin
set to an opaque origin.</t>
                  </li>
                </ol>
              </li>
              <li>
                <t>Return <tt>site</tt>.</t>
              </li>
            </ol>
          </section>
          <section anchor="service-workers">
            <name>Service Workers</name>
            <t>Service Workers are more complicated, as they act as a completely separate
execution context with only tangential relationship to the Document which
registered them.</t>
            <t>How user agents handle Service Workers may differ, but user agents SHOULD
match the <xref target="SERVICE-WORKERS"/> specification.</t>
          </section>
        </section>
      </section>
      <section anchor="ignoring-cookies">
        <name>Ignoring Set-Cookie Header Fields</name>
        <t>User agents MAY ignore Set-Cookie header fields contained in responses with 100-level
status codes or based on its cookie policy (see <xref target="cookie-policy"/>).</t>
        <t>All other Set-Cookie header fields SHOULD be processed according to <xref target="set-cookie"/>.
That is, Set-Cookie header fields contained in responses with non-100-level status
codes (including those in responses with 400- and 500-level status codes)
SHOULD be processed unless ignored according to the user agent's cookie policy.</t>
      </section>
      <section anchor="ua-name-prefixes">
        <name>Cookie Name Prefixes</name>
        <t>User agents' requirements for cookie name prefixes differ slightly from
servers' (<xref target="server-name-prefixes"/>) in that UAs MUST match the prefix string
case-insensitively.</t>
        <t>The normative requirements for the prefixes are detailed in the storage model
algorithm defined in <xref target="storage-model"/>.</t>
        <t>This is because some servers will process cookies case-insensitively, resulting
in them unintentionally miscapitalizing and accepting miscapitalized prefixes.</t>
        <t>For example, if a server sends the following <tt>Set-Cookie</tt> header field</t>
        <artwork><![CDATA[
Set-Cookie: __SECURE-SID=12345
]]></artwork>
        <t>to a UA which checks prefixes case-sensitively it will accept this cookie and
the server would incorrectly believe the cookie is subject the same guarantees
as one spelled <tt>__Secure-</tt>.</t>
        <t>Additionally the server is vulnerable to an attacker that purposefully
miscapitalizes a cookie in order to impersonate a prefixed cookie. For example,
a site already has a cookie <tt>__Secure-SID=12345</tt> and by some means an attacker
sends the following <tt>Set-Cookie</tt> header field for the site to a UA which checks
prefixes case-sensitively.</t>
        <artwork><![CDATA[
Set-Cookie: __SeCuRe-SID=evil
]]></artwork>
        <t>The next time a user visits the site the UA will send both cookies:</t>
        <artwork><![CDATA[
Cookie: __Secure-SID=12345; __SeCuRe-SID=evil
]]></artwork>
        <t>The server, being case-insensitive, won't be able to tell the difference
between the two cookies allowing the attacker to compromise the site.</t>
        <t>To prevent these issues, UAs MUST match cookie name prefixes case-insensitive.</t>
        <t>Note: Cookies with different names are still considered separate by UAs. So
both <tt>__Secure-foo=bar</tt> and <tt>__secure-foo=baz</tt> can exist as distinct cookies
simultaneously and both would have the requirements of the <tt>__Secure-</tt> prefix
applied.</t>
        <t>The following are examples of <tt>Set-Cookie</tt> header fields that would be rejected
by a conformant user agent.</t>
        <sourcecode type="example"><![CDATA[
Set-Cookie: __Secure-SID=12345; Domain=site.example
Set-Cookie: __secure-SID=12345; Domain=site.example
Set-Cookie: __SECURE-SID=12345; Domain=site.example
Set-Cookie: __Host-SID=12345
Set-Cookie: __host-SID=12345; Secure
Set-Cookie: __host-SID=12345; Domain=site.example
Set-Cookie: __HOST-SID=12345; Domain=site.example; Path=/
Set-Cookie: __Host-SID=12345; Secure; Domain=site.example; Path=/
Set-Cookie: __host-SID=12345; Secure; Domain=site.example; Path=/
Set-Cookie: __HOST-SID=12345; Secure; Domain=site.example; Path=/
]]></sourcecode>
        <t>Whereas the following <tt>Set-Cookie</tt> header fields would be accepted if set from
a secure origin.</t>
        <sourcecode type="example"><![CDATA[
Set-Cookie: __Secure-SID=12345; Domain=site.example; Secure
Set-Cookie: __secure-SID=12345; Domain=site.example; Secure
Set-Cookie: __SECURE-SID=12345; Domain=site.example; Secure
Set-Cookie: __Host-SID=12345; Secure; Path=/
Set-Cookie: __host-SID=12345; Secure; Path=/
Set-Cookie: __HOST-SID=12345; Secure; Path=/
]]></sourcecode>
      </section>
      <section anchor="cookie-lifetime-limits">
        <name>Cookie Lifetime Limits</name>
        <t>When processing cookies with a specified lifetime, either with the Expires or
with the Max-Age attribute, the user agent MUST limit the maximum age of the
cookie. The limit SHOULD NOT be greater than 400 days (34560000 seconds) in the
future. The RECOMMENDED limit is 400 days in the future, but the user agent MAY
adjust the limit (see <xref target="cookie-policy"/>). Expires or Max-Age attributes that
specify a lifetime longer than the limit MUST be reduced to the limit.</t>
      </section>
      <section anchor="set-cookie">
        <name>The Set-Cookie Header Field</name>
        <t>When a user agent receives a Set-Cookie header field in an HTTP response, the
user agent MAY ignore the Set-Cookie header field in its entirety
(see <xref target="ignoring-cookies"/>).</t>
        <t>If the user agent does not ignore the Set-Cookie header field in its entirety,
the user agent MUST parse the field-value of the Set-Cookie header field as a
set-cookie-string (defined below).</t>
        <t>NOTE: The algorithm below is more permissive than the grammar in <xref target="sane-set-cookie"/>.
For example, the algorithm allows cookie-name to be comprised of cookie-octets
instead of being a token as specified in <xref target="sane-set-cookie"/> and the algorithm
accommodates some characters that are not cookie-octets according to the
grammar in <xref target="sane-set-cookie"/>. In addition, the algorithm below also strips
leading and trailing whitespace from the cookie name and value (but maintains
internal whitespace), whereas the grammar in <xref target="sane-set-cookie"/> forbids
whitespace in these positions. User agents use this algorithm so as to
interoperate with servers that do not follow the recommendations in <xref target="sane-profile"/>.</t>
        <t>NOTE: As set-cookie-string may originate from a non-HTTP API, it is not
guaranteed to be free of CTL characters, so this algorithm handles them
explicitly. Horizontal tab (%x09) is excluded from the CTL characters that
lead to set-cookie-string rejection, as it is considered whitespace, which is
handled separately.</t>
        <t>NOTE: The set-cookie-string may contain octet sequences that appear
percent-encoded as per <xref section="2.1" sectionFormat="of" target="RFC3986"/>. However, a user agent
MUST NOT decode these sequences and instead parse the individual octets
as specified in this algorithm.</t>
        <t>A user agent MUST use an algorithm equivalent to the following algorithm to
parse a set-cookie-string:</t>
        <ol spacing="normal" type="1"><li>
            <t>If the set-cookie-string contains a %x00-08 / %x0A-1F / %x7F character
(CTL characters excluding HTAB):
Abort these steps and ignore the set-cookie-string entirely.</t>
          </li>
          <li>
            <t>If the set-cookie-string contains a %x3B (";") character:  </t>
            <ol spacing="normal" type="1"><li>
                <t>The name-value-pair string consists of the characters up to, but not
including, the first %x3B (";"), and the unparsed-attributes consist of
the remainder of the set-cookie-string (including the %x3B (";") in
question).</t>
              </li>
            </ol>
            <t>
Otherwise:  </t>
            <ol spacing="normal" type="1"><li>
                <t>The name-value-pair string consists of all the characters contained in
the set-cookie-string, and the unparsed-attributes is the empty
string.</t>
              </li>
            </ol>
          </li>
          <li>
            <t>If the name-value-pair string lacks a %x3D ("=") character, then the name
string is empty, and the value string is the value of name-value-pair.  </t>
            <t>
Otherwise, the (possibly empty) name string consists of the characters up
to, but not including, the first %x3D ("=") character, and the (possibly
empty) value string consists of the characters after the first %x3D ("=")
character.</t>
          </li>
          <li>
            <t>Remove any leading or trailing WSP characters from the name string and the
value string.</t>
          </li>
          <li>
            <t>If the sum of the lengths of the name string and the value string is more
than 4096 octets, abort these steps and ignore the set-cookie-string entirely.</t>
          </li>
          <li>
            <t>The cookie-name is the name string, and the cookie-value is the value string.</t>
          </li>
        </ol>
        <t>The user agent MUST use an algorithm equivalent to the following algorithm to
parse the unparsed-attributes:</t>
        <ol spacing="normal" type="1"><li>
            <t>If the unparsed-attributes string is empty, skip the rest of these steps.</t>
          </li>
          <li>
            <t>Discard the first character of the unparsed-attributes (which will be a
%x3B (";") character).</t>
          </li>
          <li>
            <t>If the remaining unparsed-attributes contains a %x3B (";") character:  </t>
            <ol spacing="normal" type="1"><li>
                <t>Consume the characters of the unparsed-attributes up to, but not
including, the first %x3B (";") character.</t>
              </li>
            </ol>
            <t>
Otherwise:  </t>
            <ol spacing="normal" type="1"><li>
                <t>Consume the remainder of the unparsed-attributes.</t>
              </li>
            </ol>
            <t>
Let the cookie-av string be the characters consumed in this step.</t>
          </li>
          <li>
            <t>If the cookie-av string contains a %x3D ("=") character:  </t>
            <ol spacing="normal" type="1"><li>
                <t>The (possibly empty) attribute-name string consists of the characters
up to, but not including, the first %x3D ("=") character, and the
(possibly empty) attribute-value string consists of the characters
after the first %x3D ("=") character.</t>
              </li>
            </ol>
            <t>
Otherwise:  </t>
            <ol spacing="normal" type="1"><li>
                <t>The attribute-name string consists of the entire cookie-av string,
and the attribute-value string is empty.</t>
              </li>
            </ol>
          </li>
          <li>
            <t>Remove any leading or trailing WSP characters from the attribute-name
string and the attribute-value string.</t>
          </li>
          <li>
            <t>If the attribute-value is longer than 1024 octets, ignore the cookie-av
string and return to Step 1 of this algorithm.</t>
          </li>
          <li>
            <t>Process the attribute-name and attribute-value according to the
requirements in the following subsections. (Notice that attributes with
unrecognized attribute-names are ignored.)</t>
          </li>
          <li>
            <t>Return to Step 1 of this algorithm.</t>
          </li>
        </ol>
        <t>When the user agent finishes parsing the set-cookie-string, the user agent is
said to "receive a cookie" from the request-uri with name cookie-name,
value cookie-value, and attributes cookie-attribute-list. (See <xref target="storage-model"/>
for additional requirements triggered by receiving a cookie.)</t>
        <section anchor="ua-attribute-expires">
          <name>The Expires Attribute</name>
          <t>If the attribute-name case-insensitively matches the string "Expires", the
user agent MUST process the cookie-av as follows.</t>
          <ol spacing="normal" type="1"><li>
              <t>Let the expiry-time be the result of parsing the attribute-value as
cookie-date (see <xref target="cookie-date"/>).</t>
            </li>
            <li>
              <t>If the attribute-value failed to parse as a cookie date, ignore the
cookie-av.</t>
            </li>
            <li>
              <t>Let cookie-age-limit be the maximum age of the cookie (which SHOULD be 400 days
in the future or sooner, see <xref target="cookie-lifetime-limits"/>).</t>
            </li>
            <li>
              <t>If the expiry-time is more than cookie-age-limit, the user agent MUST set the
expiry time to cookie-age-limit in seconds.</t>
            </li>
            <li>
              <t>If the expiry-time is earlier than the earliest date the user agent can
represent, the user agent MAY replace the expiry-time with the earliest
representable date.</t>
            </li>
            <li>
              <t>Append an attribute to the cookie-attribute-list with an attribute-name
of Expires and an attribute-value of expiry-time.</t>
            </li>
          </ol>
        </section>
        <section anchor="ua-attribute-max-age">
          <name>The Max-Age Attribute</name>
          <t>If the attribute-name case-insensitively matches the string "Max-Age", the
user agent MUST process the cookie-av as follows.</t>
          <ol spacing="normal" type="1"><li>
              <t>If the attribute-value is empty, ignore the cookie-av.</t>
            </li>
            <li>
              <t>If the first character of the attribute-value is neither a DIGIT, nor a "-"
character followed by a DIGIT, ignore the cookie-av.</t>
            </li>
            <li>
              <t>If the remainder of attribute-value contains a non-DIGIT character, ignore
the cookie-av.</t>
            </li>
            <li>
              <t>Let delta-seconds be the attribute-value converted to a base 10 integer.</t>
            </li>
            <li>
              <t>Let cookie-age-limit be the maximum age of the cookie (which SHOULD be 400 days
or less, see <xref target="cookie-lifetime-limits"/>).</t>
            </li>
            <li>
              <t>Set delta-seconds to the smaller of its present value and cookie-age-limit.</t>
            </li>
            <li>
              <t>If delta-seconds is less than or equal to zero (0), let expiry-time be
the earliest representable date and time. Otherwise, let the expiry-time
be the current date and time plus delta-seconds seconds.</t>
            </li>
            <li>
              <t>Append an attribute to the cookie-attribute-list with an attribute-name
of Max-Age and an attribute-value of expiry-time.</t>
            </li>
          </ol>
        </section>
        <section anchor="the-domain-attribute">
          <name>The Domain Attribute</name>
          <t>If the attribute-name case-insensitively matches the string "Domain", the user
agent MUST process the cookie-av as follows.</t>
          <ol spacing="normal" type="1"><li>
              <t>Let cookie-domain be the attribute-value.</t>
            </li>
            <li>
              <t>If cookie-domain starts with %x2E ("."), let cookie-domain be cookie-domain
without its leading %x2E (".").</t>
            </li>
            <li>
              <t>Convert the cookie-domain to lower case.</t>
            </li>
            <li>
              <t>Append an attribute to the cookie-attribute-list with an attribute-name
of Domain and an attribute-value of cookie-domain.</t>
            </li>
          </ol>
        </section>
        <section anchor="the-path-attribute">
          <name>The Path Attribute</name>
          <t>If the attribute-name case-insensitively matches the string "Path", the user
agent MUST process the cookie-av as follows.</t>
          <ol spacing="normal" type="1"><li>
              <t>If the attribute-value is empty or if the first character of the
attribute-value is not %x2F ("/"):  </t>
              <ol spacing="normal" type="1"><li>
                  <t>Let cookie-path be the default-path.</t>
                </li>
              </ol>
              <t>
Otherwise:  </t>
              <ol spacing="normal" type="1"><li>
                  <t>Let cookie-path be the attribute-value.</t>
                </li>
              </ol>
            </li>
            <li>
              <t>Append an attribute to the cookie-attribute-list with an attribute-name
of Path and an attribute-value of cookie-path.</t>
            </li>
          </ol>
        </section>
        <section anchor="the-secure-attribute">
          <name>The Secure Attribute</name>
          <t>If the attribute-name case-insensitively matches the string "Secure", the
user agent MUST append an attribute to the cookie-attribute-list with an
attribute-name of Secure and an empty attribute-value.</t>
        </section>
        <section anchor="the-httponly-attribute">
          <name>The HttpOnly Attribute</name>
          <t>If the attribute-name case-insensitively matches the string "HttpOnly", the
user agent MUST append an attribute to the cookie-attribute-list with an
attribute-name of HttpOnly and an empty attribute-value.</t>
        </section>
        <section anchor="the-samesite-attribute">
          <name>The SameSite Attribute</name>
          <t>If the attribute-name case-insensitively matches the string "SameSite", the
user agent MUST process the cookie-av as follows:</t>
          <ol spacing="normal" type="1"><li>
              <t>Let <tt>enforcement</tt> be "Default".</t>
            </li>
            <li>
              <t>If cookie-av's attribute-value is a case-insensitive match for "None",
set <tt>enforcement</tt> to "None".</t>
            </li>
            <li>
              <t>If cookie-av's attribute-value is a case-insensitive match for "Strict",
set <tt>enforcement</tt> to "Strict".</t>
            </li>
            <li>
              <t>If cookie-av's attribute-value is a case-insensitive match for "Lax", set
<tt>enforcement</tt> to "Lax".</t>
            </li>
            <li>
              <t>Append an attribute to the cookie-attribute-list with an attribute-name
of "SameSite" and an attribute-value of <tt>enforcement</tt>.</t>
            </li>
          </ol>
          <section anchor="strict-lax">
            <name>"Strict" and "Lax" enforcement</name>
            <t>Same-site cookies in "Strict" enforcement mode will not be sent along with
top-level navigations which are triggered from a cross-site document context.
As discussed in <xref target="top-level-navigations"/>, this might or might not be compatible
with existing session management systems. In the interests of providing a
drop-in mechanism that mitigates the risk of CSRF attacks, developers may set
the <tt>SameSite</tt> attribute in a "Lax" enforcement mode that carves out an
exception which sends same-site cookies along with cross-site requests if and
only if they are top-level navigations which use a "safe" (in the <xref target="RFC9110"/>
sense) HTTP method. (Note that a request's method may be changed from POST
to GET for some redirects (see Sections <xref target="RFC9110" section="15.4.2" sectionFormat="bare"/> and <xref target="RFC9110" section="15.4.3" sectionFormat="bare"/> of <xref target="RFC9110"/>); in
these cases, a request's "safe"ness is determined based on the method of the
current redirect hop.)</t>
            <t>Lax enforcement provides reasonable defense in depth against CSRF attacks that
rely on unsafe HTTP methods (like <tt>POST</tt>), but does not offer a robust defense
against CSRF as a general category of attack:</t>
            <ol spacing="normal" type="1"><li>
                <t>Attackers can still pop up new windows or trigger top-level navigations in
order to create a "same-site" request (as described in <xref target="document-requests"/>), which
is only a speedbump along the road to exploitation.</t>
              </li>
              <li>
                <t>Features like <tt>&lt;link rel='prerender'&gt;</tt> <xref target="prerendering"/> can be exploited
to create "same-site" requests without the risk of user detection.</t>
              </li>
            </ol>
            <t>When possible, developers should use a session management mechanism such as
that described in <xref target="top-level-navigations"/> to mitigate the risk of CSRF more
completely.</t>
          </section>
          <section anchor="lax-allowing-unsafe">
            <name>"Lax-Allowing-Unsafe" enforcement</name>
            <t>As discussed in <xref target="unsafe-top-level-requests"/>, compatibility concerns may
necessitate the use of a "Lax-allowing-unsafe" enforcement mode that allows
cookies to be sent with a cross-site HTTP request if and only if it is a
top-level request, regardless of request method. That is, the
"Lax-allowing-unsafe" enforcement mode waives the requirement for the HTTP
request's method to be "safe" in the <tt>SameSite</tt> enforcement step of the
retrieval algorithm in <xref target="retrieval-algorithm"/>. (All cookies, regardless of
<tt>SameSite</tt> enforcement mode, may be set for top-level navigations, regardless of
HTTP request method, as specified in <xref target="storage-model"/>.)</t>
            <t>"Lax-allowing-unsafe" is not a distinct value of the <tt>SameSite</tt> attribute.
Rather, user agents MAY apply "Lax-allowing-unsafe" enforcement only to cookies
that did not explicitly specify a <tt>SameSite</tt> attribute (i.e., those whose
same-site-flag was set to "Default" by default). To limit the scope of this
compatibility mode, user agents which apply "Lax-allowing-unsafe" enforcement
SHOULD restrict the enforcement to cookies which were created recently.
Deployment experience has shown a cookie age of 2 minutes or less to be a
reasonable limit.</t>
            <t>If the user agent uses "Lax-allowing-unsafe" enforcement, it MUST apply the
following modification to the retrieval algorithm defined in
<xref target="retrieval-algorithm"/>:</t>
            <t>Replace the condition in the penultimate bullet point of step 1 of the retrieval
algorithm reading</t>
            <artwork><![CDATA[
 * The HTTP request associated with the retrieval uses a "safe"
   method.
]]></artwork>
            <t>with</t>
            <artwork><![CDATA[
 * At least one of the following is true:

   1.  The HTTP request associated with the retrieval uses a "safe"
       method.

   2.  The cookie's same-site-flag is "Default" and the amount of
       time elapsed since the cookie's creation-time is at most a
       duration of the user agent's choosing.
]]></artwork>
          </section>
        </section>
      </section>
      <section anchor="storage-model">
        <name>Storage Model</name>
        <t>The user agent stores the following fields about each cookie: name, value,
expiry-time, domain, path, creation-time, last-access-time,
persistent-flag, host-only-flag, secure-only-flag, http-only-flag,
and same-site-flag.</t>
        <t>When the user agent "receives a cookie" from a request-uri with name
cookie-name, value cookie-value, and attributes cookie-attribute-list, the
user agent MUST process the cookie as follows:</t>
        <ol spacing="normal" type="1"><li>
            <t>A user agent MAY ignore a received cookie in its entirety. See
<xref target="ignoring-cookies"/>.</t>
          </li>
          <li>
            <t>If cookie-name is empty and cookie-value is empty, abort these steps and
ignore the cookie entirely.</t>
          </li>
          <li>
            <t>If the cookie-name or the cookie-value contains a
%x00-08 / %x0A-1F / %x7F character (CTL characters excluding HTAB),
abort these steps and ignore the cookie entirely.</t>
          </li>
          <li>
            <t>If the sum of the lengths of cookie-name and cookie-value is more than
4096 octets, abort these steps and ignore the cookie entirely.</t>
          </li>
          <li>
            <t>Create a new cookie with name cookie-name, value cookie-value. Set the
creation-time and the last-access-time to the current date and time.</t>
          </li>
          <li>
            <t>If the cookie-attribute-list contains an attribute with an attribute-name
of "Max-Age":  </t>
            <ol spacing="normal" type="1"><li>
                <t>Set the cookie's persistent-flag to true.</t>
              </li>
              <li>
                <t>Set the cookie's expiry-time to attribute-value of the last
attribute in the cookie-attribute-list with an attribute-name of
"Max-Age".</t>
              </li>
            </ol>
            <t>
Otherwise, if the cookie-attribute-list contains an attribute with an
attribute-name of "Expires" (and does not contain an attribute with an
attribute-name of "Max-Age"):  </t>
            <ol spacing="normal" type="1"><li>
                <t>Set the cookie's persistent-flag to true.</t>
              </li>
              <li>
                <t>Set the cookie's expiry-time to attribute-value of the last
attribute in the cookie-attribute-list with an attribute-name of
"Expires".</t>
              </li>
            </ol>
            <t>
Otherwise:  </t>
            <ol spacing="normal" type="1"><li>
                <t>Set the cookie's persistent-flag to false.</t>
              </li>
              <li>
                <t>Set the cookie's expiry-time to the latest representable date.</t>
              </li>
            </ol>
          </li>
          <li>
            <t>If the cookie-attribute-list contains an attribute with an
attribute-name of "Domain":  </t>
            <ol spacing="normal" type="1"><li>
                <t>Let the domain-attribute be the attribute-value of the last
attribute in the cookie-attribute-list with both an
attribute-name of "Domain" and an attribute-value whose
length is no more than 1024 octets. (Note that a leading %x2E
("."), if present, is ignored even though that character is not
permitted.)</t>
              </li>
            </ol>
            <t>
Otherwise:  </t>
            <ol spacing="normal" type="1"><li>
                <t>Let the domain-attribute be the empty string.</t>
              </li>
            </ol>
          </li>
          <li>
            <t>If the domain-attribute contains a character that is not in the range of <xref target="USASCII"/>
characters, abort these steps and ignore the cookie entirely.</t>
          </li>
          <li>
            <t>If the user agent is configured to reject "public suffixes" and the
domain-attribute is a public suffix:  </t>
            <ol spacing="normal" type="1"><li>
                <t>If the domain-attribute is identical to the canonicalized
request-host:      </t>
                <ol spacing="normal" type="1"><li>
                    <t>Let the domain-attribute be the empty string.</t>
                  </li>
                </ol>
                <t>
Otherwise:      </t>
                <ol spacing="normal" type="1"><li>
                    <t>Abort these steps and ignore the cookie entirely.</t>
                  </li>
                </ol>
              </li>
            </ol>
            <t>
NOTE: This step prevents <tt>attacker.example</tt> from disrupting the integrity of
<tt>site.example</tt> by setting a cookie with a Domain attribute of "example".</t>
          </li>
          <li>
            <t>If the domain-attribute is non-empty:  </t>
            <ol spacing="normal" type="1"><li>
                <t>If the canonicalized request-host does not domain-match the
domain-attribute:      </t>
                <ol spacing="normal" type="1"><li>
                    <t>Abort these steps and ignore the cookie entirely.</t>
                  </li>
                </ol>
                <t>
Otherwise:      </t>
                <ol spacing="normal" type="1"><li>
                    <t>Set the cookie's host-only-flag to false.</t>
                  </li>
                  <li>
                    <t>Set the cookie's domain to the domain-attribute.</t>
                  </li>
                </ol>
              </li>
            </ol>
            <t>
Otherwise:  </t>
            <ol spacing="normal" type="1"><li>
                <t>Set the cookie's host-only-flag to true.</t>
              </li>
              <li>
                <t>Set the cookie's domain to the canonicalized request-host.</t>
              </li>
            </ol>
          </li>
          <li>
            <t>If the cookie-attribute-list contains an attribute with an
attribute-name of "Path", set the cookie's path to attribute-value of
the last attribute in the cookie-attribute-list with both an
attribute-name of "Path" and an attribute-value whose length is no
more than 1024 octets. Otherwise, set the cookie's path to the
default-path of the request-uri.</t>
          </li>
          <li>
            <t>If the cookie-attribute-list contains an attribute with an
attribute-name of "Secure", set the cookie's secure-only-flag to true.
Otherwise, set the cookie's secure-only-flag to false.</t>
          </li>
          <li>
            <t>If the request-uri does not denote a "secure" connection (as defined by the
user agent), and the cookie's secure-only-flag is true, then abort these
steps and ignore the cookie entirely.</t>
          </li>
          <li>
            <t>If the cookie-attribute-list contains an attribute with an
attribute-name of "HttpOnly", set the cookie's http-only-flag to true.
Otherwise, set the cookie's http-only-flag to false.</t>
          </li>
          <li>
            <t>If the cookie was received from a "non-HTTP" API and the cookie's
http-only-flag is true, abort these steps and ignore the cookie entirely.</t>
          </li>
          <li>
            <t>If the cookie's secure-only-flag is false, and the request-uri does not
denote a "secure" connection, then abort these steps and ignore the cookie
entirely if the cookie store contains one or more cookies that meet all of
the following criteria:  </t>
            <ol spacing="normal" type="1"><li>
                <t>Their name matches the name of the newly-created cookie.</t>
              </li>
              <li>
                <t>Their secure-only-flag is true.</t>
              </li>
              <li>
                <t>Their domain domain-matches the domain of the newly-created cookie, or
vice-versa.</t>
              </li>
              <li>
                <t>The path of the newly-created cookie path-matches the path of the
existing cookie.</t>
              </li>
            </ol>
            <t>
Note: The path comparison is not symmetric, ensuring only that a
newly-created, non-secure cookie does not overlay an existing secure
cookie, providing some mitigation against cookie-fixing attacks. That is,
given an existing secure cookie named 'a' with a path of '/login', a
non-secure cookie named 'a' could be set for a path of '/' or '/foo', but
not for a path of '/login' or '/login/en'.</t>
          </li>
          <li>
            <t>If the cookie-attribute-list contains an attribute with an
attribute-name of "SameSite", and an attribute-value of "Strict", "Lax", or
"None", set the cookie's same-site-flag to the attribute-value of the last
attribute in the cookie-attribute-list with an attribute-name of "SameSite".
Otherwise, set the cookie's same-site-flag to "Default".</t>
          </li>
          <li>
            <t>If the cookie's <tt>same-site-flag</tt> is not "None":  </t>
            <ol spacing="normal" type="1"><li>
                <t>If the cookie was received from a "non-HTTP" API, and the API was called
from a navigable's active document whose "site for cookies" is
not same-site with the top-level origin, then abort these steps and
ignore the newly created cookie entirely.</t>
              </li>
              <li>
                <t>If the cookie was received from a "same-site" request (as defined in
<xref target="same-site-requests"/>), skip the remaining substeps and continue
processing the cookie.</t>
              </li>
              <li>
                <t>If the cookie was received from a request which is navigating a
top-level traversable <xref target="HTML"/> (e.g. if the request's "reserved
client" is either <tt>null</tt> or an environment whose "target browsing
context"'s navigable is a top-level traversable), skip the remaining
substeps and continue processing the cookie.      </t>
                <t>
Note: Top-level navigations can create a cookie with any <tt>SameSite</tt>
value, even if the new cookie wouldn't have been sent along with
the request had it already existed prior to the navigation.</t>
              </li>
              <li>
                <t>Abort these steps and ignore the newly created cookie entirely.</t>
              </li>
            </ol>
          </li>
          <li>
            <t>If the cookie's "same-site-flag" is "None", abort these steps and ignore the
cookie entirely unless the cookie's secure-only-flag is true.</t>
          </li>
          <li>
            <t>If the cookie-name begins with a case-insensitive match for the string
"__Secure-", abort these steps and ignore the cookie entirely unless the
cookie's secure-only-flag is true.</t>
          </li>
          <li>
            <t>If the cookie-name begins with a case-insensitive match for the string
"__Host-", abort these steps and ignore the cookie entirely unless the
cookie meets all the following criteria:  </t>
            <ol spacing="normal" type="1"><li>
                <t>The cookie's secure-only-flag is true.</t>
              </li>
              <li>
                <t>The cookie's host-only-flag is true.</t>
              </li>
              <li>
                <t>The cookie-attribute-list contains an attribute with an attribute-name
of "Path", and the cookie's path is <tt>/</tt>.</t>
              </li>
            </ol>
          </li>
          <li>
            <t>If the cookie-name is empty and either of the following conditions are
true, abort these steps and ignore the cookie entirely:  </t>
            <ul spacing="normal">
              <li>
                <t>the cookie-value begins with a case-insensitive match for the string
"__Secure-"</t>
              </li>
              <li>
                <t>the cookie-value begins with a case-insensitive match for the string
"__Host-"</t>
              </li>
            </ul>
          </li>
          <li>
            <t>If the cookie store contains a cookie with the same name, domain,
host-only-flag, and path as the newly-created cookie:  </t>
            <ol spacing="normal" type="1"><li>
                <t>Let old-cookie be the existing cookie with the same name, domain,
host-only-flag, and path as the newly-created cookie. (Notice that this
algorithm maintains the invariant that there is at most one such
cookie.)</t>
              </li>
              <li>
                <t>If the newly-created cookie was received from a "non-HTTP" API and the
old-cookie's http-only-flag is true, abort these steps and ignore the
newly created cookie entirely.</t>
              </li>
              <li>
                <t>Update the creation-time of the newly-created cookie to match the
creation-time of the old-cookie.</t>
              </li>
              <li>
                <t>Remove the old-cookie from the cookie store.</t>
              </li>
            </ol>
          </li>
          <li>
            <t>Insert the newly-created cookie into the cookie store.</t>
          </li>
        </ol>
        <t>A cookie is "expired" if the cookie has an expiry date in the past.</t>
        <t>The user agent MUST evict all expired cookies from the cookie store if, at any
time, an expired cookie exists in the cookie store.</t>
        <t>At any time, the user agent MAY "remove excess cookies" from the cookie store
if the number of cookies sharing a domain field exceeds some
implementation-defined upper bound (such as 50 cookies).</t>
        <t>At any time, the user agent MAY "remove excess cookies" from the cookie store
if the cookie store exceeds some predetermined upper bound (such as 3000
cookies).</t>
        <t>When the user agent removes excess cookies from the cookie store, the user
agent MUST evict cookies in the following priority order:</t>
        <ol spacing="normal" type="1"><li>
            <t>Expired cookies.</t>
          </li>
          <li>
            <t>Cookies whose secure-only-flag is false, and which share a domain field
with more than a predetermined number of other cookies.</t>
          </li>
          <li>
            <t>Cookies that share a domain field with more than a predetermined number of
other cookies.</t>
          </li>
          <li>
            <t>All cookies.</t>
          </li>
        </ol>
        <t>If two cookies have the same removal priority, the user agent MUST evict the
cookie with the earliest last-access-time first.</t>
        <t>When "the current session is over" (as defined by the user agent), the user
agent MUST remove from the cookie store all cookies with the persistent-flag
set to false.</t>
      </section>
      <section anchor="retrieval-model">
        <name>Retrieval Model</name>
        <t>This section defines how cookies are retrieved from a cookie store in the form
of a cookie-string. A "retrieval" is any event which requires generating a
cookie-string. For example, a retrieval may occur in order to build a Cookie
header field for an HTTP request, or may be required in order to return a
cookie-string from a call to a "non-HTTP" API that provides access to cookies. A
retrieval has an associated URI, same-site status, and type, which
are defined below depending on the type of retrieval.</t>
        <section anchor="cookie">
          <name>The Cookie Header Field</name>
          <t>The user agent includes stored cookies in the Cookie HTTP request header field.</t>
          <t>A user agent MAY omit the Cookie header field in its entirety.  For example, the
user agent might wish to block sending cookies during "third-party" requests
from setting cookies (see <xref target="third-party-cookies"/>).</t>
          <t>If the user agent does attach a Cookie header field to an HTTP request, the
user agent MUST generate a single cookie-string and the user agent MUST compute
the cookie-string following the algorithm defined in <xref target="retrieval-algorithm"/>,
where the retrieval's URI is the request-uri, the retrieval's same-site status
is computed for the HTTP request as defined in <xref target="same-site-requests"/>, and the
retrieval's type is "HTTP".</t>
          <t>Note: Previous versions of this specification required that only one Cookie
header field be sent in requests. This is no longer a requirement. While this
specification requires that a single cookie-string be produced, some user agents
may split that string across multiple cookie header fields. For examples, see
<xref section="8.2.3" sectionFormat="of" target="RFC9113"/> and <xref section="4.2.1" sectionFormat="of" target="RFC9114"/>.</t>
        </section>
        <section anchor="non-http">
          <name>Non-HTTP APIs</name>
          <t>The user agent MAY implement "non-HTTP" APIs that can be used to access
stored cookies.</t>
          <t>A user agent MAY return an empty cookie-string in certain contexts, such as
when a retrieval occurs within a third-party context (see
<xref target="third-party-cookies"/>).</t>
          <t>If a user agent does return cookies for a given call to a "non-HTTP" API with
an associated Document, then the user agent MUST compute the cookie-string
following the algorithm defined in <xref target="retrieval-algorithm"/>, where the
retrieval's URI is defined by the caller (see <xref target="DOM-DOCUMENT-COOKIE"/>), the
retrieval's same-site status is "same-site" if the Document's "site for
cookies" is same-site with the top-level origin as defined in
<xref target="document-requests"/> (otherwise it is "cross-site"), and the retrieval's type
is "non-HTTP".</t>
        </section>
        <section anchor="retrieval-algorithm">
          <name>Retrieval Algorithm</name>
          <t>Given a cookie store and a retrieval, the following algorithm returns a
cookie-string from a given cookie store.</t>
          <ol spacing="normal" type="1"><li>
              <t>Let cookie-list be the set of cookies from the cookie store that meets all
of the following requirements:  </t>
              <ul spacing="normal">
                <li>
                  <t>Either:      </t>
                  <ul spacing="normal">
                    <li>
                      <t>The cookie's host-only-flag is true and the canonicalized
host of the retrieval's URI is identical to the cookie's domain.</t>
                    </li>
                  </ul>
                  <t>
Or:      </t>
                  <ul spacing="normal">
                    <li>
                      <t>The cookie's host-only-flag is false and the canonicalized
host of the retrieval's URI domain-matches the cookie's domain.</t>
                    </li>
                  </ul>
                  <t>
NOTE: (For user agents configured to reject "public suffixes") It's
possible that the public suffix list was changed since a cookie was
created. If this change results in a cookie's domain becoming a public
suffix then that cookie is considered invalid as it would have been
rejected during creation (See <xref target="storage-model"/> step 9). User agents
should be careful to avoid retrieving these invalid cookies even if they
domain-match the host of the retrieval's URI.</t>
                </li>
                <li>
                  <t>The retrieval's URI's path path-matches the cookie's path.</t>
                </li>
                <li>
                  <t>If the cookie's secure-only-flag is true, then the retrieval's URI must
denote a "secure" connection (as defined by the user agent).      </t>
                  <t>
NOTE: The notion of a "secure" connection is not defined by this document.
Typically, user agents consider a connection secure if the connection makes
use of transport-layer security, such as SSL or TLS, or if the host is
trusted. For example, most user agents consider "https" to be a scheme that
denotes a secure protocol and "localhost" to be trusted host.</t>
                </li>
                <li>
                  <t>If the cookie's http-only-flag is true, then exclude the cookie if the
retrieval's type is "non-HTTP".</t>
                </li>
                <li>
                  <t>If the cookie's same-site-flag is not "None" and the retrieval's same-site
status is "cross-site", then exclude the cookie unless all of the
following conditions are met:      </t>
                  <ul spacing="normal">
                    <li>
                      <t>The retrieval's type is "HTTP".</t>
                    </li>
                    <li>
                      <t>The same-site-flag is "Lax" or "Default".</t>
                    </li>
                    <li>
                      <t>The HTTP request associated with the retrieval uses a "safe" method.</t>
                    </li>
                    <li>
                      <t>The target browsing context of the HTTP request associated with the
retrieval is the active browsing context or a top-level traversable.</t>
                    </li>
                  </ul>
                </li>
              </ul>
            </li>
            <li>
              <t>The user agent SHOULD sort the cookie-list in the following order:  </t>
              <ul spacing="normal">
                <li>
                  <t>Cookies with longer paths are listed before cookies with shorter
paths.</t>
                </li>
                <li>
                  <t>Among cookies that have equal-length path fields, cookies with earlier
creation-times are listed before cookies with later creation-times.</t>
                </li>
              </ul>
              <t>
NOTE: Not all user agents sort the cookie-list in this order, but this order
reflects common practice when this document was written, and, historically,
there have been servers that (erroneously) depended on this order.</t>
            </li>
            <li>
              <t>Update the last-access-time of each cookie in the cookie-list to the
current date and time.</t>
            </li>
            <li>
              <t>Serialize the cookie-list into a cookie-string by processing each cookie
in the cookie-list in order:  </t>
              <ol spacing="normal" type="1"><li>
                  <t>If the cookies' name is not empty, output the cookie's name followed by
the %x3D ("=") character.</t>
                </li>
                <li>
                  <t>If the cookies' value is not empty, output the cookie's value.</t>
                </li>
                <li>
                  <t>If there is an unprocessed cookie in the cookie-list, output the
characters %x3B and %x20 ("; ").</t>
                </li>
              </ol>
            </li>
          </ol>
        </section>
      </section>
    </section>
    <section anchor="implementation-considerations">
      <name>Implementation Considerations</name>
      <section anchor="limits">
        <name>Limits</name>
        <t>Practical user agent implementations have limits on the number and size of
cookies that they can store. General-use user agents SHOULD provide each of the
following minimum capabilities:</t>
        <ul spacing="normal">
          <li>
            <t>At least 50 cookies per domain.</t>
          </li>
          <li>
            <t>At least 3000 cookies total.</t>
          </li>
        </ul>
        <t>User agents MAY limit the maximum number of cookies they store, and may evict
any cookie at any time (whether at the request of the user or due to
implementation limitations).</t>
        <t>Note that a limit on the maximum number of cookies also limits the total size of
the stored cookies, due to the length limits which MUST be enforced in
<xref target="set-cookie"/>.</t>
        <t>Servers SHOULD use as few and as small cookies as possible to avoid reaching
these implementation limits, minimize network bandwidth due to the
Cookie header field being included in every request, and to avoid reaching
server header field limits (See <xref target="server-syntax"/>).</t>
        <t>Servers SHOULD gracefully degrade if the user agent fails to return one or more
cookies in the Cookie header field because the user agent might evict any cookie
at any time.</t>
      </section>
      <section anchor="application-programming-interfaces">
        <name>Application Programming Interfaces</name>
        <t>One reason the Cookie and Set-Cookie header fields use such esoteric syntax is
that many platforms (both in servers and user agents) provide a string-based
application programming interface (API) to cookies, requiring
application-layer programmers to generate and parse the syntax used by the
Cookie and Set-Cookie header fields, which many programmers have done incorrectly,
resulting in interoperability problems.</t>
        <t>Instead of providing string-based APIs to cookies, platforms would be
well-served by providing more semantic APIs. It is beyond the scope of this
document to recommend specific API designs, but there are clear benefits to
accepting an abstract "Date" object instead of a serialized date string.</t>
      </section>
      <section anchor="idna-migration">
        <name>IDNA Dependency and Migration</name>
        <t>IDNA2008 <xref target="RFC5890"/> supersedes IDNA2003 <xref target="RFC3490"/>. However, there are
differences between the two specifications, and thus there can be differences
in processing (e.g., converting) domain name labels that have been registered
under one from those registered under the other. There will be a transition
period of some time during which IDNA2003-based domain name labels will exist
in the wild. User agents SHOULD implement IDNA2008 <xref target="RFC5890"/> and MAY
implement <xref target="UTS46"/> or <xref target="RFC5895"/> in order to facilitate their IDNA transition.
If a user agent does not implement IDNA2008, the user agent MUST implement
IDNA2003 <xref target="RFC3490"/>.</t>
      </section>
    </section>
    <section anchor="privacy-considerations">
      <name>Privacy Considerations</name>
      <t>Cookies' primary privacy risk is their ability to correlate user activity. This
can happen on a single site, but is most problematic when activity is tracked across different,
seemingly unconnected Web sites to build a user profile.</t>
      <t>Over time, this capability (warned against explicitly in <xref target="RFC2109"/> and all of its successors)
has become widely used for varied reasons including:</t>
      <ul spacing="normal">
        <li>
          <t>authenticating users across sites,</t>
        </li>
        <li>
          <t>assembling information on users,</t>
        </li>
        <li>
          <t>protecting against fraud and other forms of undesirable traffic,</t>
        </li>
        <li>
          <t>targeting advertisements at specific users or at users with specified attributes,</t>
        </li>
        <li>
          <t>measuring how often ads are shown to users, and</t>
        </li>
        <li>
          <t>recognizing when an ad resulted in a change in user behavior.</t>
        </li>
      </ul>
      <t>While not every use of cookies is necessarily problematic for privacy, their potential for abuse
has become a widespread concern in the Internet community and broader society. In response to these concerns, user agents
have actively constrained cookie functionality in various ways (as allowed and encouraged by
previous specifications), while avoiding disruption to features they judge desirable for the health
of the Web.</t>
      <t>It is too early to declare consensus on which specific mechanism(s) should be used to mitigate cookies' privacy impact; user agents' ongoing changes to how they are handled are best characterised as experiments that
can provide input into that eventual consensus.</t>
      <t>Instead, this document describes limited, general mitigations against the privacy risks associated
with cookies that enjoy wide deployment at the time of writing. It is expected that implementations
will continue to experiment and impose stricter, more well-defined limitations on cookies over
time. Future versions of this document might codify those mechanisms based upon deployment
experience. If functions that currently rely on cookies can be supported by separate, targeted
mechanisms, they might be documented in separate specifications and stricter limitations on cookies
might become feasible.</t>
      <t>Note that cookies are not the only mechanism that can be used to track users across sites, so while
these mitigations are necessary to improve Web privacy, they are not sufficient on their own.</t>
      <section anchor="third-party-cookies">
        <name>Third-Party Cookies</name>
        <t>A "third-party" or cross-site cookie is one that is associated with embedded content (such as
scripts, images, stylesheets, frames) that is obtained from a different server than the one that
hosts the primary resource (usually, the Web page that the user is viewing). Third-party cookies
are often used to correlate users' activity on different sites.</t>
        <t>Because of their inherent privacy issues, most user agents now limit third-party cookies in a
variety of ways. Some completely block third-party cookies by refusing to process third-party
Set-Cookie header fields and refusing to send third-party Cookie header fields. Some partition
cookies based upon the first-party context, so that different cookies are sent depending on the
site being browsed. Some block cookies based upon user agent cookie policy and/or user controls.</t>
        <t>While this document does not endorse or require a specific approach, it is RECOMMENDED that user
agents adopt a policy for third-party cookies that is as restrictive as compatibility constraints
permit. Consequently, resources cannot rely upon third-party cookies being treated consistently by
user agents for the foreseeable future.</t>
      </section>
      <section anchor="cookie-policy">
        <name>Cookie Policy</name>
        <t>User agents MAY enforce a cookie policy consisting of restrictions on how
cookies may be used or ignored (see <xref target="ignoring-cookies"/>).</t>
        <t>A cookie policy may govern which domains or parties, as in first and third parties
(see <xref target="third-party-cookies"/>), for which the user agent will allow cookie access.
The policy can also define limits on cookie size, cookie expiry (see
<xref target="cookie-lifetime-limits"/>), and the number of cookies per
domain or in total.</t>
        <t>The recommended cookie expiry upper limit is 400 days. User agents may set
a lower limit to enforce shorter data retention timelines, or set the limit higher
to support longer retention when appropriate (e.g., server-to-server
communication over HTTPS).</t>
        <t>The goal of a restrictive cookie policy is often to improve security or privacy.
User agents often allow users to change the cookie policy (see <xref target="user-controls"/>).</t>
      </section>
      <section anchor="user-controls">
        <name>User Controls</name>
        <t>User agents SHOULD provide users with a mechanism for managing the cookies
stored in the cookie store. For example, a user agent might let users delete
all cookies received during a specified time period or all the cookies related
to a particular domain. In addition, many user agents include a user interface
element that lets users examine the cookies stored in their cookie store.</t>
        <t>User agents SHOULD provide users with a mechanism for disabling cookies. When
cookies are disabled, the user agent MUST NOT include a Cookie header field in
outbound HTTP requests and the user agent MUST NOT process Set-Cookie header fields
in inbound HTTP responses.</t>
        <t>User agents MAY offer a way to change the cookie policy (see
<xref target="cookie-policy"/>).</t>
        <t>User agents MAY provide users the option of preventing persistent storage of
cookies across sessions. When configured thusly, user agents MUST treat all
received cookies as if the persistent-flag were set to false. Some popular
user agents expose this functionality via "private browsing" mode
<xref target="Aggarwal2010"/>.</t>
      </section>
      <section anchor="expiration-dates">
        <name>Expiration Dates</name>
        <t>Although servers can set the expiration date for cookies to the distant future,
most user agents do not actually retain cookies for multiple decades. Rather
than choosing gratuitously long expiration periods, servers SHOULD promote user
privacy by selecting reasonable cookie expiration periods based on the purpose
of the cookie. For example, a typical session identifier might reasonably be
set to expire in two weeks.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <section anchor="overview-1">
        <name>Overview</name>
        <t>Cookies have a number of security pitfalls. This section overviews a few of the
more salient issues.</t>
        <t>In particular, cookies encourage developers to rely on ambient authority for
authentication, often becoming vulnerable to attacks such as cross-site request
forgery <xref target="CSRF"/>. Also, when storing session identifiers in cookies, developers
often create session fixation vulnerabilities.</t>
        <t>Transport-layer encryption, such as that employed in HTTPS, is insufficient to
prevent a network attacker from obtaining or altering a victim's cookies because
the cookie protocol itself has various vulnerabilities (see "Weak Confidentiality"
and "Weak Integrity", below). In addition, by default, cookies do not provide
confidentiality or integrity from network attackers, even when used in conjunction
with HTTPS.</t>
      </section>
      <section anchor="ambient-authority">
        <name>Ambient Authority</name>
        <t>A server that uses cookies to authenticate users can suffer security
vulnerabilities because some user agents let remote parties issue HTTP requests
from the user agent (e.g., via HTTP redirects or HTML forms). When issuing
those requests, user agents attach cookies even if the remote party does not
know the contents of the cookies, potentially letting the remote party exercise
authority at an unwary server.</t>
        <t>Although this security concern goes by a number of names (e.g., cross-site
request forgery, confused deputy), the issue stems from cookies being a form of
ambient authority. Cookies encourage server operators to separate designation
(in the form of URLs) from authorization (in the form of cookies).
Consequently, the user agent might supply the authorization for a resource
designated by the attacker, possibly causing the server or its clients to
undertake actions designated by the attacker as though they were authorized by
the user.</t>
        <t>Instead of using cookies for authorization, server operators might wish to
consider entangling designation and authorization by treating URLs as
capabilities. Instead of storing secrets in cookies, this approach stores
secrets in URLs, requiring the remote entity to supply the secret itself.
Although this approach is not a panacea, judicious application of these
principles can lead to more robust security.</t>
      </section>
      <section anchor="clear-text">
        <name>Clear Text</name>
        <t>Unless sent over a secure channel (such as TLS), the information in the Cookie
and Set-Cookie header fields is transmitted in the clear.</t>
        <ol spacing="normal" type="1"><li>
            <t>All sensitive information conveyed in these header fields is exposed to an
eavesdropper.</t>
          </li>
          <li>
            <t>A malicious intermediary could alter the header fields as they travel in either
direction, with unpredictable results.</t>
          </li>
          <li>
            <t>A malicious client could alter the Cookie header fields before transmission,
with unpredictable results.</t>
          </li>
        </ol>
        <t>Servers SHOULD encrypt and sign the contents of cookies (using whatever format
the server desires) when transmitting them to the user agent (even when sending
the cookies over a secure channel). However, encrypting and signing cookie
contents does not prevent an attacker from transplanting a cookie from one user
agent to another or from replaying the cookie at a later time.</t>
        <t>In addition to encrypting and signing the contents of every cookie, servers that
require a higher level of security SHOULD use the Cookie and Set-Cookie
header fields only over a secure channel. When using cookies over a secure channel,
servers SHOULD set the Secure attribute (see <xref target="attribute-secure"/>) for every
cookie. If a server does not set the Secure attribute, the protection
provided by the secure channel will be largely moot.</t>
        <t>For example, consider a webmail server that stores a session identifier in a
cookie and is typically accessed over HTTPS. If the server does not set the
Secure attribute on its cookies, an active network attacker can intercept any
outbound HTTP request from the user agent and redirect that request to the
webmail server over HTTP. Even if the webmail server is not listening for HTTP
connections, the user agent will still include cookies in the request. The
active network attacker can intercept these cookies, replay them against the
server, and learn the contents of the user's email. If, instead, the server had
set the Secure attribute on its cookies, the user agent would not have
included the cookies in the clear-text request.</t>
      </section>
      <section anchor="session-identifiers">
        <name>Session Identifiers</name>
        <t>Instead of storing session information directly in a cookie (where it might be
exposed to or replayed by an attacker), servers commonly store a nonce (or
"session identifier") in a cookie. When the server receives an HTTP request
with a nonce, the server can look up state information associated with the
cookie using the nonce as a key.</t>
        <t>Using session identifier cookies limits the damage an attacker can cause if the
attacker learns the contents of a cookie because the nonce is useful only for
interacting with the server (unlike non-nonce cookie content, which might itself
be sensitive). Furthermore, using a single nonce prevents an attacker from
"splicing" together cookie content from two interactions with the server, which
could cause the server to behave unexpectedly.</t>
        <t>Using session identifiers is not without risk. For example, the server SHOULD
take care to avoid "session fixation" vulnerabilities. A session fixation attack
proceeds in three steps. First, the attacker transplants a session identifier
from his or her user agent to the victim's user agent. Second, the victim uses
that session identifier to interact with the server, possibly imbuing the
session identifier with the user's credentials or confidential information.
Third, the attacker uses the session identifier to interact with server
directly, possibly obtaining the user's authority or confidential information.</t>
      </section>
      <section anchor="weak-confidentiality">
        <name>Weak Confidentiality</name>
        <t>Cookies do not provide isolation by port. If a cookie is readable by a service
running on one port, the cookie is also readable by a service running on another
port of the same server. If a cookie is writable by a service on one port, the
cookie is also writable by a service running on another port of the same server.
For this reason, servers SHOULD NOT both run mutually distrusting services on
different ports of the same host and use cookies to store security-sensitive
information.</t>
        <t>Cookies do not provide isolation by scheme. Although most commonly used with
the http and https schemes, the cookies for a given host might also be
available to other schemes, such as ftp and gopher. Although this lack of
isolation by scheme is most apparent in non-HTTP APIs that permit access to
cookies (e.g., HTML's document.cookie API), the lack of isolation by scheme
is actually present in requirements for processing cookies themselves (e.g.,
consider retrieving a URI with the gopher scheme via HTTP).</t>
        <t>Cookies do not always provide isolation by path. Although the network-level
protocol does not send cookies stored for one path to another, some user
agents expose cookies via non-HTTP APIs, such as HTML's document.cookie API.
Because some of these user agents (e.g., web browsers) do not isolate resources
received from different paths, a resource retrieved from one path might be able
to access cookies stored for another path.</t>
      </section>
      <section anchor="weak-integrity">
        <name>Weak Integrity</name>
        <t>Cookies do not provide integrity guarantees for sibling domains (and their
subdomains). For example, consider foo.site.example and bar.site.example. The
foo.site.example server can set a cookie with a Domain attribute of
"site.example" (possibly overwriting an existing "site.example" cookie set by
bar.site.example), and the user agent will include that cookie in HTTP requests
to bar.site.example. In the worst case, bar.site.example will be unable to
distinguish this cookie from a cookie it set itself. The foo.site.example
server might be able to leverage this ability to mount an attack against
bar.site.example.</t>
        <t>Even though the Set-Cookie header field supports the Path attribute, the Path
attribute does not provide any integrity protection because the user agent
will accept an arbitrary Path attribute in a Set-Cookie header field. For
example, an HTTP response to a request for http://site.example/foo/bar can set
a cookie with a Path attribute of "/qux". Consequently, servers SHOULD NOT
both run mutually distrusting services on different paths of the same host and
use cookies to store security-sensitive information.</t>
        <t>An active network attacker can also inject cookies into the Cookie header field
sent to https://site.example/ by impersonating a response from
http://site.example/ and injecting a Set-Cookie header field. The HTTPS server
at site.example will be unable to distinguish these cookies from cookies that
it set itself in an HTTPS response. An active network attacker might be able
to leverage this ability to mount an attack against site.example even if
site.example uses HTTPS exclusively.</t>
        <t>Servers can partially mitigate these attacks by encrypting and signing the
contents of their cookies, or by naming the cookie with the <tt>__Secure-</tt> prefix.
However, using cryptography does not mitigate the issue completely because an
attacker can replay a cookie he or she received from the authentic site.example
server in the user's session, with unpredictable results.</t>
        <t>Finally, an attacker might be able to force the user agent to delete cookies by
storing a large number of cookies. Once the user agent reaches its storage
limit, the user agent will be forced to evict some cookies. Servers SHOULD NOT
rely upon user agents retaining cookies.</t>
      </section>
      <section anchor="reliance-on-dns">
        <name>Reliance on DNS</name>
        <t>Cookies rely upon the Domain Name System (DNS) for security. If the DNS is
partially or fully compromised, the cookie protocol might fail to provide the
security properties required by applications.</t>
      </section>
      <section anchor="samesite-cookies">
        <name>SameSite Cookies</name>
        <section anchor="defense-in-depth">
          <name>Defense in depth</name>
          <t>"SameSite" cookies offer a robust defense against CSRF attack when deployed in
strict mode, and when supported by the client. It is, however, prudent to ensure
that this designation is not the extent of a site's defense against CSRF, as
same-site navigations and submissions can certainly be executed in conjunction
with other attack vectors such as cross-site scripting or abuse of page
redirections.</t>
          <t>Understanding how and when a request is considered same-site is also important
in order to properly design a site for SameSite cookies. For example, if a
cross-site top-level request is made to a sensitive page that request will be
considered cross-site and <tt>SameSite=Strict</tt> cookies won’t be sent; that page’s
sub-resources requests, however, are same-site and would receive <tt>SameSite=Strict</tt>
cookies. Sites can avoid inadvertently allowing access to these sub-resources
by returning an error for the initial page request if it doesn’t include the
appropriate cookies.</t>
          <t>Developers are strongly encouraged to deploy the usual server-side defenses
(CSRF tokens, ensuring that "safe" HTTP methods are idempotent, etc) to mitigate
the risk more fully.</t>
          <t>Additionally, client-side techniques such as those described in
<xref target="app-isolation"/> may also prove effective against CSRF, and are certainly worth
exploring in combination with "SameSite" cookies.</t>
        </section>
        <section anchor="top-level-navigations">
          <name>Top-level Navigations</name>
          <t>Setting the <tt>SameSite</tt> attribute in "strict" mode provides robust defense in
depth against CSRF attacks, but has the potential to confuse users unless sites'
developers carefully ensure that their cookie-based session management systems
deal reasonably well with top-level navigations.</t>
          <t>Consider the scenario in which a user reads their email at MegaCorp Inc's
webmail provider <tt>https://site.example/</tt>. They might expect that clicking on an
emailed link to <tt>https://projects.example/secret/project</tt> would show them the
secret project that they're authorized to see, but if <tt>https://projects.example</tt>
has marked their session cookies as <tt>SameSite=Strict</tt>, then this cross-site
navigation won't send them along with the request. <tt>https://projects.example</tt>
will render a 404 error to avoid leaking secret information, and the user will
be quite confused.</t>
          <t>Developers can avoid this confusion by adopting a session management system that
relies on not one, but two cookies: one conceptually granting "read" access,
another granting "write" access. The latter could be marked as <tt>SameSite=Strict</tt>,
and its absence would prompt a reauthentication step before executing any
non-idempotent action. The former could be marked as <tt>SameSite=Lax</tt>, in
order to allow users access to data via top-level navigation, or
<tt>SameSite=None</tt>, to permit access in all contexts (including cross-site
embedded contexts).</t>
        </section>
        <section anchor="mashups-and-widgets">
          <name>Mashups and Widgets</name>
          <t>The <tt>Lax</tt> and <tt>Strict</tt> values for the <tt>SameSite</tt> attribute are inappropriate
for some important use-cases. In particular, note that content intended for
embedding in cross-site contexts (social networking widgets or commenting
services, for instance) will not have access to same-site cookies. Cookies
which are required in these situations should be marked with <tt>SameSite=None</tt>
to allow access in cross-site contexts.</t>
          <t>Likewise, some forms of Single-Sign-On might require cookie-based authentication
in a cross-site context; these mechanisms will not function as intended with
same-site cookies and will also require <tt>SameSite=None</tt>.</t>
        </section>
        <section anchor="server-controlled">
          <name>Server-controlled</name>
          <t>SameSite cookies in and of themselves don't do anything to address the
general privacy concerns outlined in <xref section="7.1" sectionFormat="of" target="RFC6265"/>. The "SameSite"
attribute is set by the server, and serves to mitigate the risk of certain kinds
of attacks that the server is worried about. The user is not involved in this
decision. Moreover, a number of side-channels exist which could allow a server
to link distinct requests even in the absence of cookies (for example, connection
and/or socket pooling between same-site and cross-site requests).</t>
        </section>
        <section anchor="reload-navigations">
          <name>Reload navigations</name>
          <t>Requests issued for reloads triggered through user interface elements (such as a
refresh button on a toolbar) are same-site only if the reloaded document was
originally navigated to via a same-site request. This differs from the handling
of other reload navigations, which are always same-site if top-level, since the
source navigable's active document is precisely the document being
reloaded.</t>
          <t>This special handling of reloads triggered through a user interface element
avoids sending <tt>SameSite</tt> cookies on user-initiated reloads if they were
withheld on the original navigation (i.e., if the initial navigation were
cross-site). If the reload navigation were instead considered same-site, and
sent all the initially withheld <tt>SameSite</tt> cookies, the security benefits of
withholding the cookies in the first place would be nullified. This is
especially important given that the absence of <tt>SameSite</tt> cookies withheld on a
cross-site navigation request may lead to visible site breakage, prompting the
user to trigger a reload.</t>
          <t>For example, suppose the user clicks on a link from <tt>https://attacker.example/</tt>
to <tt>https://victim.example/</tt>. This is a cross-site request, so <tt>SameSite=Strict</tt>
cookies are withheld. Suppose this causes <tt>https://victim.example/</tt> to appear
broken, because the site only displays its sensitive content if a particular
<tt>SameSite</tt> cookie is present in the request. The user, frustrated by the
unexpectedly broken site, presses refresh on their browser's toolbar. To now
consider the reload request same-site and send the initially withheld <tt>SameSite</tt>
cookie would defeat the purpose of withholding it in the first place, as the
reload navigation triggered through the user interface may replay the original
(potentially malicious) request. Thus, the reload request should be considered
cross-site, like the request that initially navigated to the page.</t>
          <t>Because requests issued for, non-user initiated, reloads attach all SameSite
cookies, developers should be careful and thoughtful about when to initiate a
reload in order to avoid a CSRF attack. For example, the page could only
initiate a reload if a CSRF token is present on the initial request.</t>
        </section>
        <section anchor="unsafe-top-level-requests">
          <name>Top-level requests with "unsafe" methods</name>
          <t>The "Lax" enforcement mode described in <xref target="strict-lax"/> allows a cookie to be
sent with a cross-site HTTP request if and only if it is a top-level navigation
with a "safe" HTTP method. Implementation experience shows that this is
difficult to apply as the default behavior, as some sites may rely on cookies
not explicitly specifying a <tt>SameSite</tt> attribute being included on top-level
cross-site requests with "unsafe" HTTP methods (as was the case prior to the
introduction of the <tt>SameSite</tt> attribute).</t>
          <t>For example, the concluding step of a login flow may involve a cross-site top-level
<tt>POST</tt> request to an endpoint; this endpoint expects a recently created cookie
containing transactional state information, necessary to securely complete the
login. For such a cookie, "Lax" enforcement is not appropriate, as it would
cause the cookie to be excluded due to the unsafe HTTP request method,
resulting in an unrecoverable failure of the whole login flow.</t>
          <t>The "Lax-allowing-unsafe" enforcement mode described in <xref target="lax-allowing-unsafe"/>
retains some of the protections of "Lax" enforcement (as compared to "None")
while still allowing recently created cookies to be sent cross-site with unsafe
top-level requests.</t>
          <t>As a more permissive variant of "Lax" mode, "Lax-allowing-unsafe" mode
necessarily provides fewer protections against CSRF. Ultimately, the provision
of such an enforcement mode should be seen as a temporary, transitional measure
to ease adoption of "Lax" enforcement by default.</t>
        </section>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="iana-cookie">
        <name>Cookie</name>
        <t>The HTTP Field Name Registry (see <xref target="HttpFieldNameRegistry"/>) needs to be
updated with the following registration:</t>
        <dl>
          <dt>Header field name:</dt>
          <dd>
            <t>Cookie</t>
          </dd>
          <dt>Applicable protocol:</dt>
          <dd>
            <t>http</t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>standard</t>
          </dd>
          <dt>Author/Change controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Specification document:</dt>
          <dd>
            <t>this specification (<xref target="cookie"/>)</t>
          </dd>
        </dl>
      </section>
      <section anchor="iana-set-cookie">
        <name>Set-Cookie</name>
        <t>The permanent message header field registry (see <xref target="HttpFieldNameRegistry"/>) needs to be
updated with the following registration:</t>
        <dl>
          <dt>Header field name:</dt>
          <dd>
            <t>Set-Cookie</t>
          </dd>
          <dt>Applicable protocol:</dt>
          <dd>
            <t>http</t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>standard</t>
          </dd>
          <dt>Author/Change controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Specification document:</dt>
          <dd>
            <t>this specification (<xref target="set-cookie"/>)</t>
          </dd>
        </dl>
      </section>
      <section anchor="cookie-attribute-registry">
        <name>Cookie Attribute Registry</name>
        <t>IANA is requested to create the "Cookie Attribute" registry, defining the
name space of attribute used to control cookies' behavior.
The registry should be maintained at
<eref target="https://www.iana.org/assignments/cookie-attribute-names">https://www.iana.org/assignments/cookie-attribute-names</eref>.</t>
        <section anchor="procedure">
          <name>Procedure</name>
          <t>Each registered attribute name is associated with a description, and a
reference detailing how the attribute is to be processed and stored.</t>
          <t>New registrations happen on a "RFC Required" basis (see Section 4.7 of
<xref target="RFC8126"/>). The attribute to be registered MUST match the <tt>extension-av</tt>
syntax defined in <xref target="abnf-syntax"/>. Note that attribute names are generally
defined in CamelCase, but technically accepted case-insensitively.</t>
        </section>
        <section anchor="registration">
          <name>Registration</name>
          <t>The "Cookie Attribute Registry" should be created with the registrations below:</t>
          <table>
            <thead>
              <tr>
                <th align="right">Name</th>
                <th align="left">Reference</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="right">Domain</td>
                <td align="left">
                  <xref target="attribute-domain"/> of this document</td>
              </tr>
              <tr>
                <td align="right">Expires</td>
                <td align="left">
                  <xref target="attribute-expires"/> of this document</td>
              </tr>
              <tr>
                <td align="right">HttpOnly</td>
                <td align="left">
                  <xref target="attribute-httponly"/> of this document</td>
              </tr>
              <tr>
                <td align="right">Max-Age</td>
                <td align="left">
                  <xref target="attribute-max-age"/> of this document</td>
              </tr>
              <tr>
                <td align="right">Path</td>
                <td align="left">
                  <xref target="attribute-path"/> of this document</td>
              </tr>
              <tr>
                <td align="right">SameSite</td>
                <td align="left">
                  <xref target="attribute-samesite"/> of this document</td>
              </tr>
              <tr>
                <td align="right">Secure</td>
                <td align="left">
                  <xref target="attribute-secure"/> of this document</td>
              </tr>
            </tbody>
          </table>
        </section>
      </section>
    </section>
  </middle>
  <back>
    <displayreference target="RFC9110" to="HTTP"/>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC1034">
          <front>
            <title>Domain names - concepts and facilities</title>
            <author fullname="P. Mockapetris" initials="P." surname="Mockapetris"/>
            <date month="November" year="1987"/>
            <abstract>
              <t>This RFC is the revised basic definition of The Domain Name System. It obsoletes RFC-882. This memo describes the domain style names and their used for host address look up and electronic mail forwarding. It discusses the clients and servers in the domain name system and the protocol used between them.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="13"/>
          <seriesInfo name="RFC" value="1034"/>
          <seriesInfo name="DOI" value="10.17487/RFC1034"/>
        </reference>
        <reference anchor="RFC1123">
          <front>
            <title>Requirements for Internet Hosts - Application and Support</title>
            <author fullname="R. Braden" initials="R." role="editor" surname="Braden"/>
            <date month="October" year="1989"/>
            <abstract>
              <t>This RFC is an official specification for the Internet community. It incorporates by reference, amends, corrects, and supplements the primary protocol standards documents relating to hosts. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="3"/>
          <seriesInfo name="RFC" value="1123"/>
          <seriesInfo name="DOI" value="10.17487/RFC1123"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC3490">
          <front>
            <title>Internationalizing Domain Names in Applications (IDNA)</title>
            <author initials="A." surname="Costello">
              <organization/>
            </author>
            <date year="2003" month="March"/>
          </front>
          <seriesInfo name="RFC" value="3490"/>
          <annotation>See <xref target="idna-migration"/> for an explanation why the normative reference to an obsoleted specification is needed.</annotation>
        </reference>
        <reference anchor="RFC4790">
          <front>
            <title>Internet Application Protocol Collation Registry</title>
            <author fullname="C. Newman" initials="C." surname="Newman"/>
            <author fullname="M. Duerst" initials="M." surname="Duerst"/>
            <author fullname="A. Gulbrandsen" initials="A." surname="Gulbrandsen"/>
            <date month="March" year="2007"/>
            <abstract>
              <t>Many Internet application protocols include string-based lookup, searching, or sorting operations. However, the problem space for searching and sorting international strings is large, not fully explored, and is outside the area of expertise for the Internet Engineering Task Force (IETF). Rather than attempt to solve such a large problem, this specification creates an abstraction framework so that application protocols can precisely identify a comparison function, and the repertoire of comparison functions can be extended in the future. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4790"/>
          <seriesInfo name="DOI" value="10.17487/RFC4790"/>
        </reference>
        <reference anchor="RFC5234">
          <front>
            <title>Augmented BNF for Syntax Specifications: ABNF</title>
            <author fullname="D. Crocker" initials="D." role="editor" surname="Crocker"/>
            <author fullname="P. Overell" initials="P." surname="Overell"/>
            <date month="January" year="2008"/>
            <abstract>
              <t>Internet technical specifications often need to define a formal syntax. Over the years, a modified version of Backus-Naur Form (BNF), called Augmented BNF (ABNF), has been popular among many Internet specifications. The current specification documents ABNF. It balances compactness and simplicity with reasonable representational power. The differences between standard BNF and ABNF involve naming rules, repetition, alternatives, order-independence, and value ranges. This specification also supplies additional rule definitions and encoding for a core lexical analyzer of the type common to several Internet specifications. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="68"/>
          <seriesInfo name="RFC" value="5234"/>
          <seriesInfo name="DOI" value="10.17487/RFC5234"/>
        </reference>
        <reference anchor="RFC5890">
          <front>
            <title>Internationalized Domain Names for Applications (IDNA): Definitions and Document Framework</title>
            <author fullname="J. Klensin" initials="J." surname="Klensin"/>
            <date month="August" year="2010"/>
            <abstract>
              <t>This document is one of a collection that, together, describe the protocol and usage context for a revision of Internationalized Domain Names for Applications (IDNA), superseding the earlier version. It describes the document collection and provides definitions and other material that are common to the set. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5890"/>
          <seriesInfo name="DOI" value="10.17487/RFC5890"/>
        </reference>
        <reference anchor="RFC6454">
          <front>
            <title>The Web Origin Concept</title>
            <author fullname="A. Barth" initials="A." surname="Barth"/>
            <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="RFC8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton"/>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <author fullname="T. Narten" initials="T." surname="Narten"/>
            <date month="June" year="2017"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters. To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper. For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed. This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="26"/>
          <seriesInfo name="RFC" value="8126"/>
          <seriesInfo name="DOI" value="10.17487/RFC8126"/>
        </reference>
        <reference anchor="RFC9110">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <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.</t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
        <reference anchor="USASCII">
          <front>
            <title>Coded Character Set -- 7-bit American Standard Code for Information Interchange</title>
            <author>
              <organization>American National Standards Institute</organization>
            </author>
            <date year="1986"/>
          </front>
          <seriesInfo name="ANSI" value="X3.4"/>
        </reference>
        <reference anchor="FETCH" target="https://fetch.spec.whatwg.org/">
          <front>
            <title>Fetch</title>
            <author initials="A." surname="van Kesteren" fullname="Anne van Kesteren">
              <organization>Mozilla</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="HTML" target="https://html.spec.whatwg.org/">
          <front>
            <title>HTML</title>
            <author initials="I." surname="Hickson" fullname="Ian Hickson">
              <organization>Google, Inc.</organization>
            </author>
            <author initials="S." surname="Pieters" fullname="Simon Pieters">
              <organization>Opera</organization>
            </author>
            <author initials="A." surname="van Kesteren" fullname="Anne van Kesteren">
              <organization>Mozilla</organization>
            </author>
            <author initials="P." surname="Jägenstedt" fullname="Philip Jägenstedt">
              <organization>Opera</organization>
            </author>
            <author initials="D." surname="Denicola" fullname="Domenic Denicola">
              <organization>Google, Inc.</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="DOM-DOCUMENT-COOKIE" target="https://html.spec.whatwg.org/#dom-document-cookie">
          <front>
            <title>HTML - Living Standard</title>
            <author>
              <organization>WHATWG</organization>
            </author>
            <date year="2021" month="May" day="18"/>
          </front>
        </reference>
        <reference anchor="SAMESITE" target="https://html.spec.whatwg.org/#same-site">
          <front>
            <title>HTML - Living Standard</title>
            <author>
              <organization>WHATWG</organization>
            </author>
            <date year="2021" month="January" day="26"/>
          </front>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC2818">
          <front>
            <title>HTTP Over TLS</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="May" year="2000"/>
            <abstract>
              <t>This memo describes how to use Transport Layer Security (TLS) to secure Hypertext Transfer Protocol (HTTP) connections over the Internet. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2818"/>
          <seriesInfo name="DOI" value="10.17487/RFC2818"/>
        </reference>
        <reference anchor="RFC3986">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee"/>
            <author fullname="R. Fielding" initials="R." surname="Fielding"/>
            <author fullname="L. Masinter" initials="L." surname="Masinter"/>
            <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="RFC6265">
          <front>
            <title>HTTP State Management Mechanism</title>
            <author fullname="A. Barth" initials="A." surname="Barth"/>
            <date month="April" year="2011"/>
            <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 2965. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6265"/>
          <seriesInfo name="DOI" value="10.17487/RFC6265"/>
        </reference>
        <reference anchor="RFC4648">
          <front>
            <title>The Base16, Base32, and Base64 Data Encodings</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
            <date month="October" year="2006"/>
            <abstract>
              <t>This document describes the commonly used base 64, base 32, and base 16 encoding schemes. It also discusses the use of line-feeds in encoded data, use of padding in encoded data, use of non-alphabet characters in encoded data, use of different encoding alphabets, and canonical encodings. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4648"/>
          <seriesInfo name="DOI" value="10.17487/RFC4648"/>
        </reference>
        <reference anchor="RFC5895">
          <front>
            <title>Mapping Characters for Internationalized Domain Names in Applications (IDNA) 2008</title>
            <author fullname="P. Resnick" initials="P." surname="Resnick"/>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <date month="September" year="2010"/>
            <abstract>
              <t>In the original version of the Internationalized Domain Names in Applications (IDNA) protocol, any Unicode code points taken from user input were mapped into a set of Unicode code points that "made sense", and then encoded and passed to the domain name system (DNS). The IDNA2008 protocol (described in RFCs 5890, 5891, 5892, and 5893) presumes that the input to the protocol comes from a set of "permitted" code points, which it then encodes and passes to the DNS, but does not specify what to do with the result of user input. This document describes the actions that can be taken by an implementation between receiving user input and passing permitted code points to the new IDNA protocol. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5895"/>
          <seriesInfo name="DOI" value="10.17487/RFC5895"/>
        </reference>
        <reference anchor="RFC7034">
          <front>
            <title>HTTP Header Field X-Frame-Options</title>
            <author fullname="D. Ross" initials="D." surname="Ross"/>
            <author fullname="T. Gondrom" initials="T." surname="Gondrom"/>
            <date month="October" year="2013"/>
            <abstract>
              <t>To improve the protection of web applications against clickjacking, this document describes the X-Frame-Options HTTP header field, which declares a policy, communicated from the server to the client browser, regarding whether the browser may display the transmitted content in frames that are part of other web pages.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7034"/>
          <seriesInfo name="DOI" value="10.17487/RFC7034"/>
        </reference>
        <reference anchor="RFC9113">
          <front>
            <title>HTTP/2</title>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson"/>
            <author fullname="C. Benfield" initials="C." role="editor" surname="Benfield"/>
            <date month="June" year="2022"/>
            <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 latency by introducing field compression and allowing multiple concurrent exchanges on the same connection.</t>
              <t>This document obsoletes RFCs 7540 and 8740.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9113"/>
          <seriesInfo name="DOI" value="10.17487/RFC9113"/>
        </reference>
        <reference anchor="RFC9114">
          <front>
            <title>HTTP/3</title>
            <author fullname="M. Bishop" initials="M." role="editor" surname="Bishop"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The QUIC transport protocol has several features that are desirable in a transport for HTTP, such as stream multiplexing, per-stream flow control, and low-latency connection establishment. This document describes a mapping of HTTP semantics over QUIC. This document also identifies HTTP/2 features that are subsumed by QUIC and describes how HTTP/2 extensions can be ported to HTTP/3.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9114"/>
          <seriesInfo name="DOI" value="10.17487/RFC9114"/>
        </reference>
        <reference anchor="UTS46" target="http://unicode.org/reports/tr46/">
          <front>
            <title>Unicode IDNA Compatibility Processing</title>
            <author initials="M." surname="Davis" fullname="Mark Davis">
              <organization/>
            </author>
            <author initials="M." surname="Suignard" fullname="Michel Suignard">
              <organization/>
            </author>
            <date year="2016" month="June"/>
          </front>
          <seriesInfo name="UNICODE" value="Unicode Technical Standards # 46"/>
        </reference>
        <reference anchor="CSRF" target="http://portal.acm.org/citation.cfm?id=1455770.1455782">
          <front>
            <title>Robust Defenses for Cross-Site Request Forgery</title>
            <author initials="A." surname="Barth" fullname="Adam Barth">
              <organization/>
            </author>
            <author initials="C." surname="Jackson">
              <organization/>
            </author>
            <author initials="J." surname="Mitchell">
              <organization/>
            </author>
            <date year="2008" month="October"/>
          </front>
          <seriesInfo name="DOI" value="10.1145/1455770.1455782"/>
          <seriesInfo name="ISBN" value="978-1-59593-810-7"/>
          <seriesInfo name="ACM" value="CCS '08: Proceedings of the 15th ACM conference on Computer and communications security (pages 75-88)"/>
        </reference>
        <reference anchor="Aggarwal2010" target="http://www.usenix.org/events/sec10/tech/full_papers/Aggarwal.pdf">
          <front>
            <title>An Analysis of Private Browsing Modes in Modern Browsers</title>
            <author initials="G." surname="Aggarwal">
              <organization/>
            </author>
            <author initials="E." surname="Burzstein">
              <organization/>
            </author>
            <author initials="C." surname="Jackson">
              <organization/>
            </author>
            <author initials="D." surname="Boneh">
              <organization/>
            </author>
            <date year="2010"/>
          </front>
        </reference>
        <reference anchor="app-isolation" target="http://www.collinjackson.com/research/papers/appisolation.pdf">
          <front>
            <title>App Isolation - Get the Security of Multiple Browsers with Just One</title>
            <author initials="E." surname="Chen" fullname="Eric Y. Chen">
              <organization/>
            </author>
            <author initials="J." surname="Bau" fullname="Jason Bau">
              <organization/>
            </author>
            <author initials="C." surname="Reis" fullname="Charles Reis">
              <organization/>
            </author>
            <author initials="A." surname="Barth" fullname="Adam Barth">
              <organization/>
            </author>
            <author initials="C." surname="Jackson" fullname="Collin Jackson">
              <organization/>
            </author>
            <date year="2011"/>
          </front>
        </reference>
        <reference anchor="prerendering" target="https://www.chromium.org/developers/design-documents/prerender">
          <front>
            <title>Chrome Prerendering</title>
            <author initials="C." surname="Bentzel" fullname="Chris Bentzel">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="I-D.ietf-httpbis-cookie-alone">
          <front>
            <title>Deprecate modification of 'secure' cookies from non-secure origins</title>
            <author fullname="Mike West" initials="M." surname="West">
              <organization>Google, Inc</organization>
            </author>
            <date day="5" month="September" year="2016"/>
            <abstract>
              <t>   This document updates RFC6265 by removing the ability for a non-
   secure origin to set cookies with a 'secure' flag, and to overwrite
   cookies whose 'secure' flag is set.  This deprecation improves the
   isolation between HTTP and HTTPS origins, and reduces the risk of
   malicious interference.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-cookie-alone-01"/>
        </reference>
        <reference anchor="I-D.ietf-httpbis-cookie-prefixes">
          <front>
            <title>Cookie Prefixes</title>
            <author fullname="Mike West" initials="M." surname="West">
              <organization>Google, Inc</organization>
            </author>
            <date day="23" month="February" year="2016"/>
            <abstract>
              <t>   This document updates RFC6265 by adding a set of restrictions upon
   the names which may be used for cookies with specific properties.
   These restrictions enable user agents to smuggle cookie state to the
   server within the confines of the existing "Cookie" request header
   syntax, and limits the ways in which cookies may be abused in a
   conforming user agent.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-cookie-prefixes-00"/>
        </reference>
        <reference anchor="I-D.ietf-httpbis-cookie-same-site">
          <front>
            <title>Same-Site Cookies</title>
            <author fullname="Mike West" initials="M." surname="West">
              <organization>Google, Inc</organization>
            </author>
            <author fullname="Mark Goodwin" initials="M." surname="Goodwin">
              <organization>Mozilla</organization>
            </author>
            <date day="20" month="June" year="2016"/>
            <abstract>
              <t>   This document updates RFC6265 by defining a "SameSite" attribute
   which allows servers to assert that a cookie ought not to be sent
   along with cross-site requests.  This assertion allows user agents to
   mitigate the risk of cross-origin information leakage, and provides
   some protection against cross-site request forgery attacks.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-cookie-same-site-00"/>
        </reference>
        <reference anchor="PSL" target="https://publicsuffix.org/list/">
          <front>
            <title>Public Suffix List</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="HttpFieldNameRegistry" target="https://www.iana.org/assignments/http-fields/">
          <front>
            <title>Hypertext Transfer Protocol (HTTP) Field Name Registry</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="SERVICE-WORKERS" target="https://www.w3.org/TR/service-workers/">
          <front>
            <title>Service Workers</title>
            <author initials="J." surname="Archibald" fullname="Jake Archibald">
              <organization/>
            </author>
            <author initials="M." surname="Kruisselbrink" fullname="Marijn Kruisselbrink">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="RFC2109">
          <front>
            <title>HTTP State Management Mechanism</title>
            <author fullname="D. Kristol" initials="D." surname="Kristol"/>
            <author fullname="L. Montulli" initials="L." surname="Montulli"/>
            <date month="February" year="1997"/>
            <abstract>
              <t>This document specifies a way to create a stateful session with HTTP requests and responses. It describes two new headers, Cookie and Set- Cookie, which carry state information between participating origin servers and user agents. The method described here differs from Netscape's Cookie proposal, but it can interoperate with HTTP/1.0 user agents that use Netscape's method. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2109"/>
          <seriesInfo name="DOI" value="10.17487/RFC2109"/>
        </reference>
      </references>
    </references>
    <?line 2527?>

<section anchor="changes-from-rfc-6265">
      <name>Changes from RFC 6265</name>
      <ul spacing="normal">
        <li>
          <t>Adds the same-site concept and the SameSite attribute.
(<xref target="same-site-requests"/> and <xref target="attribute-samesite"/>)</t>
        </li>
        <li>
          <t>Introduces cookie prefixes and prohibits nameless cookies from setting a
value that would mimic a cookie prefix. (<xref target="server-name-prefixes"/> and
<xref target="storage-model"/>)</t>
        </li>
        <li>
          <t>Prohibits non-secure origins from setting cookies with a <tt>Secure</tt> flag or
overwriting cookies with this flag. (<xref target="storage-model"/>)</t>
        </li>
        <li>
          <t>Limits maximum cookie size. (<xref target="storage-model"/>)</t>
        </li>
        <li>
          <t>Limits maximum values for max-age and expire. (<xref target="ua-attribute-expires"/> and <xref target="ua-attribute-max-age"/>)</t>
        </li>
        <li>
          <t>Includes the host-only-flag as part of a cookie’s uniqueness computation.
(<xref target="storage-model"/>)</t>
        </li>
        <li>
          <t>Considers potentially trustworthy origins as "secure". (<xref target="storage-model"/>)</t>
        </li>
        <li>
          <t>Improves cookie syntax
          </t>
          <ul spacing="normal">
            <li>
              <t>Treats Set-Cookie: token as creating the cookie ("", "token").
(<xref target="set-cookie"/>)</t>
            </li>
            <li>
              <t>Rejects cookies without a name nor value. (<xref target="storage-model"/>)</t>
            </li>
            <li>
              <t>Specifies how to serialize a nameless/valueless cookie. (<xref target="retrieval-algorithm"/>)</t>
            </li>
            <li>
              <t>Adjusts ABNF for cookie-pair and the Cookie header production to allow
for spaces. (<xref target="abnf-syntax"/>)</t>
            </li>
            <li>
              <t>Explicitly handle control characters. (<xref target="set-cookie"/> and <xref target="storage-model"/>)</t>
            </li>
            <li>
              <t>Specifies how to handle empty domain attributes. (<xref target="storage-model"/>)</t>
            </li>
            <li>
              <t>Requires ASCII characters for the domain attribute. (<xref target="storage-model"/>)</t>
            </li>
          </ul>
        </li>
        <li>
          <t>Refactors cookie retrieval algorithm to support non-HTTP APIs. (<xref target="non-http"/>)</t>
        </li>
        <li>
          <t>Specifies that the Set-Cookie line should not be decoded. (<xref target="set-cookie"/>)</t>
        </li>
        <li>
          <t>Adds an advisory section to assist implementers in deciding which requirements
to implement. (<xref target="implementation-advisory"/>)</t>
        </li>
        <li>
          <t>Advises against sending invalid cookies due to public suffix list changes.
(<xref target="retrieval-algorithm"/>)</t>
        </li>
        <li>
          <t>Removes the single cookie header requirement. (<xref target="cookie"/>)</t>
        </li>
        <li>
          <t>Address errata 3444 by updating the path-value andextension-av grammar,
errata 4148 by updating the day-of-month, year, and time grammar, and errata
3663 by adding the requested note. (<xref target="sane-set-cookie"/> and <xref target="cookie-path"/>)</t>
        </li>
      </ul>
    </section>
    <section numbered="false" anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>RFC 6265 was written by Adam Barth. This document is an update of RFC 6265,
adding features and aligning the specification with the reality of today’s
deployments. Here, we’re standing upon the shoulders of a giant since the
majority of the text is still Adam’s.</t>
      <t>Thank you to both Lily Chen and Steven Englehardt, editors emeritus, for their
significant contributions improving this draft.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA9y963LbSJYw+D+fAkHHrKUKkpbkS9muqf5GluUqdfv2WfLU
TExMtEASlNAmATYASmY5PE/zvcm+2J5r5kkAlGW7ajdi+0eXRQB5OXny3C+j
0cg1ebPIniaDo7L8kGf10+TXs7O3yWmTNlnyKi3Si2yZFU3yKptepkVeLwdu
Vk6LdAnfzKp03ozyrJmPLptmNcnrUTWfPjp49BD/uf/IzWCQp8mn54dnx5/d
FP64KKvN06RuZq6c1OUia3BC/MC5fFU9TVZV9vD+j4/PqnXdHOztPdk7cGmV
pU+Tw9VqkcMIeVnUSVrMkndZuhid5cvMXZfVh4uqXK946W6VP03+qymnwwT+
Ly9msPphUpdVU2XzGv61Wco/miqfwqNpuVyl8g/cKjzKi0VeZP/t6gam+nu6
KAvYxiarkzt/d/UyrZq//3Nd0tqL0rmrrFhnT12S2FUkSbNZwVe/wery4iL5
BZ/Br5clQg7BVT+9dw//e30xLquLe/BsmeaLp4mH5+j64t+u7+NDeJZW08vw
3SKvm3rMD+8dwqP8KqvvvV1PAEj37AA4bJWtyvDpRd5cridj2KzMTv8ZZR+b
rKgRvPcW6SRb1PfkHB1/MMrrep2N6BkfGT5z6bq5LKunbgTz5AUA5HScPIP9
LrIKfmE0OW0yAJH5uSoR47JZ3pT4J+wBMOt3OtynyS9lCa8lL18ewaOMQTLh
T//tgp7h2sOEr8bJb1nd+Nle5R8y/eWrJ1p+uK4bO02SrKs8AG8Jg1/D2Hxi
fg1/hTXkC8AVs+u/lpeF/fXGtSB6Z8PkpJiGtVzLt/+W4kNajSvKagmfXBG6
vXtxtL93/4H+c//gvvzzYH//ifzz/oMne/hPmPAqq6p8xohMv+jNPymarCpo
Jeki/x2x9XkJayiS17CTGrYYX7+dk+evD3cHNEadVUA08mJe8iw06dMEp6W/
mQLAVb4/2rtPvyjG8Nsj+a8A8u04eZEuGriaBPv4ya/lfL5Mi/j3w3FyVNZN
tliUPHwB4DzNsuTTp3xWpKNlflHRuj9/TuZlBc+T7OMKIEs/JteXm6S5zBIP
WLgt86zKimkG5APfVkI1S+pVNs3nAoYkr5Miy2bZbMyQfvAjQxr++fDAn8rD
x/7XRw8e6q+P9w8eyT+f7O/LASWzvIaFbTwBeX96eHp0cvI0OqyjEqZMji7T
CmhWVsFWm2Q0Sn4cTfImOVzCcUxh0adIuNIKXoTXad8ncES0RVg6HTiS84ts
2ykevj49eZr8x/3xA3OM+08eP+o5wxYq6xpeC0b5xdQwcQ37WDcZfPni+Ozo
V9lbWl1kTbhl86yZXo4R3OPry7QJBNKD4QW+0VmKIpMixhWs4m9wW/E85RHf
zcOiyPqexjt5Vf6eLxYpPPv17NXL/qVeNsvFjSvFT29e6Algdj79UJfxGk9g
efHvfeSLaMa4OyiQ4bfAB7KqjgY9zZdw/vGTeNg3q6xK/1xotoaGm/3X//v/
XAD3gUvWRCO/vcwX+arn8a3W/HycPM+KfFrKrDoqEDf8uf3wRvA+f/Nq9PzN
0ftXx6/PRkdv3vzt5PgrEOLOrFyOQGxao3wxmpKk1UaSZJS8zK+Q+Op9iQjo
wf5o7+Fo//FWXIJ5QNr49fDst1/gl9PDV8enJ2dftcgaoDOq8+ZblrY/OuiS
hr6luVwJkWdiB4/3Hyu7Agqj5BJEDPnng0cPHgd6+rD7wo+BDQI9vR/+Sb++
Pzt98KgLCIDDGhFgltH2UUqqmvpeUz14FN3gwXt+K0G2BwQVpMUmnwBiNpvk
bVVOsxoo58U2Qvr+9cnRm+fHZpgzkKThnxFhvJM8eDSIgLr/aLS3HaIq+TxP
r/L4hr9Kqw/m5/YHp+v8otADDCLT9DJb2GdHp+9e9EIMYZQuxul0SUCb5g3d
l/F0vvxf+ezn/QcPH/74496Y/vv4wILxXTkBoR4u3RyuMkgVyJSOqrKuR6eA
ciDP/3MN5CN5AcNm1SYWHh6P9ve+SO2fgVx+GROmWbo0P0cfHAHVSQN1jZ6B
OPcqbxAmiy2n+vwNcMd92Cds9F7fppPk5PTZ66fJkx9h7aOHTx4+uT96vL83
+lH569ErZOZHp8ndvcdPGY9ANiwu6qSck0Sy/7C5xNdALSlUIgHajfi3RsaP
ShBqLIjDIpjV2RSkVUDLnRWobXXy48PR48ckqB1eXKTVdboAvBJpYyskfxn7
t7sPjwHM6+p3IMV5D9xugikQ42egRl1GN+sQJEuQEDZ1Ttt+W+VXqHY+q8pr
vFPAM2Ysf+I/qoIfAOdqXZW9Pky9vr4er2sg8R8JU1EFgdsNINrfu9fAFbw3
Xy8Wf1+lwDvqe7rj8Wo2h8FA4gZ9B1gD8YJtowPvADXxH7xjUqiqrM5QUbsn
w8I4fhgZ2m8eROrkRB8Chf0FBDk891M9RADIq/WiyUH49xsHpQCw4q94kd4U
2c0HCWd1dNli1ccgmiX/aR608f5Zuo4++GsKe/O/tk/7XdaiPiiXLuDI/IM/
9JL6WQjw0SOPC/vw56rC+wIYAzjUzwDp+C5BycjXTMhmgB+Lkg4NUA7ooGfX
9T0/nD2+I/w6A5QNU918HLCXZzDc79miBbEKkD88ORk9H0cWFZYWRmyEuOEF
WOU8/5jVN73jOTy+9PZ0i0y7IjNCvZ7P5e6gtSFmiWxpAI6B74BwUDd4JX+F
AV7k2WKGeuO77AJ+rjax+vLrBmDcZB+b5KxKixoIG9K+poS7lOyg3rOb0Aik
eiY6xmDrIeagyNEa0xpPjQ+MDBpzHKbGZZ8ev/v3k6Pj0W9v3v3t+N3pdowQ
e8rZOyAT1VU+zUZoW0KcsHs45Wdk2VEpeuupw5Ui88wkXcQ896/ph6z1qM2r
/1at87rOFhNArg9tJp//o2i94EagB6YTgBdohs6dXQJeKRInM0COAi4mUhgy
8LG5j7gIqJAj+fMySwGXE4bdODm7BILmoh8TVO0mWQKkdZZMNjwYggupE2jM
dVNWGfw/0vEdEHIWGbIpMi3uJmnj6H34GBjYBRvbQLlukNjj0nQgtD40aIFI
eSig1fCsRvsUGTLwZbcEvX+x4ReA6NS8lpWgEwB+AYeyvrjU+ZPLFPT7ZVps
EoANrBOFMJRHM8DlvMkJPCnC6qKCHeMceRWYKoJqhRxquhnSYntB2IJWCsC4
zmcZrJMgBuvHT9nkkjUIYntM3iqK8qtDCXfM57rMZ7NF5twd/LQqZ+spso0/
5pTfI691zHt63xmiHcQcNOHACm4coeO9q3SxzuDvvCLTrIMH5TRP0WSyzJoU
SHPaRQU0rhg8GCe/AUuihYcf4aw+ZLWr15MapUP4oWIpkTAt4Muw/d26FiD4
+RECJfxSBf0Dj6IEkMFJLAFqyfVlhi/gj1XWrCteTWeHeWEOPzptOCqPcnW+
RL7Nx41YtK7m6TQbxriYJsV6OYHvgdejGXqRfSQ8HKMY7LKP6ZLMgmGnMPsM
xT0YAG7GFBgWydFZOlUsx20U8HaBwmSSNwIpZ0F9huPRx2E4glb6MV+ul0m6
LNeIjCCI5kt8CQYFFcFD2TGUa9gqUGoDLF7CMLrKMH/8dWK/dj1f41nx30WR
TfmggG2wyhDGkv0C/qdsnZwsMjgCgJy53rA6lGDqAHgYVShLgH3fHY8IAx1I
4g8ktRdBYcjEI00ucrR2+9XBOA1KCDNa/oCmygZmc7C2ydrIfoAWTVPl8FsG
NxtWXJQNUrUrICM02AUtVfBwhTIn6QZzvKVA+tGICaQFWReOBEJSVo3R8pMv
QDjbeEg4MofKci+BlhKxqkGCg7WmU1TNEri0PAuqxozNsEd8eZiQUV/QnTFs
DfAekIwBwL+ABa5KAOBm4JnFdTZJJirKsmQsJ8KXG7YNo86Sqzx1s3xOak/D
k4+F1sVGWDr5rOaLrBIcgmIClz3xkhHSS7wOipNIpeQhTF6vl/jQMKUxWo/x
qJGq0kyjdAYqdVltPn8G0rhY0ZRTAGg+JwNyOGUWLEAimOV0Lv5+xgMSSuOm
Sr52+e940YAW4RZSMS+QtB8xS93B6a9v3r98nizgQ0KdJYgBV3CmQhevQXUd
TTIkMojQ5TwHYsTcYYaY8+lTnRYEGXwCeyKqAXNkaCwHYAiOwALfh+mTV+9P
z8I+mGYgu1/kcJHg8FfeHJJUa9QDoinX6Qjpd17R1/Xnz0OAWlJWMya6XwAD
kMa6sYfIvLrE6+FQRwaqnnzj9sdtRipYJnSx3sChfSTiUGcgPzQgHYuaXre4
aZLSJxu8Sw4uI1yJraz/BJloBYOtAY+QaEasXG/+FChYk7kiu9Z1lJVZxiTb
lEQvy5ooNUwFUJilGybzVcZezZmYCABKgvn+tGFdQl36UaPKmMYgbVuRdwQJ
BDFl4hFAsvCaOiGJBPa8rJiOC5Fo4YmswKBLurgAmtFcLv1aXD/OBMD4rRGV
EqsJgQho4DQ6reQKLqpAIC+cgRFIHUj0UJULCFbOm2ukhUyCAGig6tHofkpG
K5IzcZ2oehBRAiBdp5uaOaA/S2E5yLNh4Rk7oPJChV6ldNOsg4dBHvz0SUye
hK13QP4o0KKBW4I/6W+Sa5DkHAEkQSNNcbQs+QDYCMwAcHOA93cw5P8mr9/Q
v98d/+/3J++On+O/T389fPnS/0PfYFozGDr5V/jy6M2rV8evn/PHrw7/c8CH
Pnjz9uzkzevDlwPmUnZHCFe4pROmmBUgFMqJKZKKegpcT5FQ3Ji023cGA5LV
ZZXW/BYCD6gRYTFKUzXdJ+KEik51slOvgfjCswE6/FewwI1bwJWlk16BTJZM
1ZlWD/BuDUQkmaeLmkXndAIcSG573WSrerC7ZR9EqVjwTOl8BS31DJIdfwYK
VQVc1kzHu24tW8tFylcc8RsCcNijrvpAk9YWAEguhGny6kWFc56Q85SoF8Gg
BcrTdZksSryWTADxkgENWC8aFLdwSpCISZQ8KVxMwzI7tSG5TQ/zrpjWM9sk
WIKwtsF/rtGkQtEXfABVRlc+fjuBk2dANGO6A6dMH1+XzGJ7JQavGhyuL2Tv
z0BEWtej1+m6QjFvmewcPnv9Yhdn5G/KuSOERL+uMAvk64tFec28EpbH/I63
NF2sZyzweGfykFHccCA/3tAdrlYor39Mno33nyaHL9/+epjsoFoMMNgdJkfv
UH2q4EJfZCJt068vXyQ78OzlC/zr7GXtdpDQVOUCP3p+8svJWbIzg70vgeLu
jZ7gj//7/ZuzY/i1XIOwnFAQC/z86/F/wOtu5xIEXPPBvcPRi3vpaA5v4FQY
EpPMs2wGf79+/zLZKdZId+HiNPDLm6OzY5gPb9dj8kWzysaCKalg2cdptmrw
U3j99C1cTLx9OP3Z4bNk5xKQ5ncklCBxppPdoTv69fAdDQjAElc4kH9/WeHD
fw+vgHCW45a2vOoQi37DSUF/AHJKM8tBvvntNNkpV+KsNs8J9Z7h00k6ix6E
ww5HCihyKtrKw/Gj8X3ct/j3mWTfSc5I0ywX5cWGp0bVEwhTkPCQHExBouV/
MUfFfwGz+bhR6irCtTwlTZK0d5S8PeFJvaaKivu9/fF+6yLsEAry8oaJLv2+
QkU07REpBnntdWGlaKwDwCwfivK6QFyP9buhV/xcS/HDKynqqZoVZDIkVcRr
WcnL6V3guRk7H+VtUBnrFbC9LNnJx9l42Lu0oHYSKoqwCjeVP6bZZTCaWreN
J+L3Djoh32CS9gci2b9/dzLo3GaF348A59bBn12X/jKQ2EhXhtGnTnMiZlOg
2yOQEDAEC3nZAklxA6snzYEMF0k+J72lLOBhPvdSpiHHTDaZLf6U1tM8H+HA
y3SVoK+Czz3CWIlb8USNto98EsCDmERmBnORC9CE8O7zFsYRFovqOVHnDal1
HwmR5ZEKAfQTQgOUdDi5q/wCdfcaJQwRlWAX9mXVEP27+COQWNK7ZwlbafG3
5/4jNyA6XJNg0DdXMohGK1cpbDPhu0WXD4A9KT+CICr3rb2xZL5IL+hNVpnD
KkgFob/u1okuibbXlKvRAhXVpKlS1GJkerrXbFD+ZVFO0sUpmmcGLRIDeIbu
eDqtQcsM3XmX7QnROzEFQIIVW8ZjNBh4WLBAI/GfRM9ButQrKdChe5vi5QgG
HASEQ6o0YGyOBX1UjPnjNikVYffBwwey1XQOQxClWGag6cxqZbLJ+S/HZ+fD
5PzX48Pn+F+WPE/PeRHnZ+8Oj47PLfN10XV9Mj7oXthDwD00QMPhDdgXkrAz
ZKCEEC0SLBjAlvllVkdztmYAD16wAJA6GaESVwbIViqPgi7ByD1ef1AcWF01
4w/7B+PrzXhdD8ZJWIsbyBCIMvKrX5BfcLTeZAUXgJ5T2CYSmhwIzyKbg8B0
xusd0jmcWzcIOojGYus659OPh4VJz8NzOW3XXR69GI3GZt4M9cRVWRPLHloD
h9g1SEMD3FqvRk05Qt9eawXokQqQxBWWRea9Bgx6/FWDjoB//gOOPIEtf/r0
9vRlC9OF4A8IUdB4QCK08gHEg8CURd1N1tUC/2SEpLvN7KGH/tHJwvu0bPy7
je0UC9daE5JaQvnDtydwuwMf8g/8lazZwIDeF7Q8kbDOpjTR9esAq9Qa4XBs
RlxQScuabHFsJcWxQB1bRUQ+MfSLiSfeAru21PzOt8N/4QzFIw32zRVSp+xa
xXS5kuW6WZATI0VVWmM2I5mHd4r6PbmZWhb91Ni6CRg4REsGiW38vcMQUtGs
YtlgY53xbw3NO8E+T3QJV7/FmcKqVizJkC2ox83RcWzwonF0GVnejPwQ8epl
ZWwO6luPt074s4/mdCyAMaqCmnuVl0BUbvQZtmGCFpSM1OX8ogDwuWbLUuCg
8OYjkRKWXysCpCECeaR3Z7WuEGvhYN7YCesENGpGkOgUvNwYzUkqO6oQ4TAO
CxfvgM38zHGWGpOxDQQJuy0pZD0MSpcoMtYrBMgKvw1ZjAMg4/kJcaYgFmZi
mCJXB/FivPdrNqeZidvACUYc1GFnt9oQXW3eUuzyouNmy3+QEPDIcGgVsmW4
WscTuT2tXa8M/bClPO0my/ziskk4YlmcS7EZtrt2x/CbZNOUzH3wzr98PDhK
dgbDwW5QDRE51TthxqAjRPKDxJGsy4B8jYTfECmV/bUN5IB4jOPboTlJxRrs
8RGpyRpRHglHWbUUpru1t5eSOwUUZw5vx3lgCRLcUQOgWM08ZmZb49LUfrTd
s2txnO5Mi+Sk6KmrGtEKXKBeYf3EQVqfXQPfVRqL4uG6Qc+W1fbYgu/YQ95c
isjKfkk5Vd5Zy/lmvKGdNTtd80CjBXLM/0FTPmjKqCTOktOT58FOx57d+/uz
B7Mnj7IHez+m6ezBAaG1ZSMNukeU+PIC2sPjLntIOBzJ//zP/+jq3c8/k1AO
r4/+khDmHNIEP//sXDijp7jIn9urcvi1+QZGkLHw6xu/hCUwGzeASxeNKItw
C1O07fXAPll7FHqbEqGcOUkO8V7Ktne0dUDAWppqPe1gSFN2nb/II1A63CQr
mU3+BMiKTInuWiNS/oHw/Ym2+PO9nyT95Wc7z/cC/7DGe3RdqGpWoAa5FadJ
yPCEWRmzuWVOXPk33gwaJe3DVSPmanAAKg/eu7MASrtGcyPZMPGQCAuuyxsY
/+sSCDLydlmmrMQbXNW5DWeKgWJv0I4RcAhPXp3c6WyWiznOe+bR3SL+ci/Q
kU/J20z69omk0olHC2RjHwen7INp5h+PQLzXn/xGo08RuD9nxej96Z+EcT+Z
KRj7+GwCoe4TNdJJeZUFaRAP22sPqF0F6slmKP0F5xrrgug31ufJpuVPZ+gt
k6wozwPnQQrekTpvwjVx/ZLbLGF7mMbZ4PTIMFPh+YYpEEeSO1H4sBUKFCCS
hw5UvWl/Pi23L9T57A8k9j/1j0d4cDK3V/M6ry878j5dRBDW8rqxhBmj7pyn
SMpeQTHdycYX42GspIBAUzXohWhTJLI/YZiNA4UzF+/zjLUvevkYfyZSJ4SB
6Eq/iEFSIYiQ6CC1S51kczxkcly1Z5m3BgnCFWGGQydFhiIviCfoHklRPLdf
AeFgnz7PW5st+rG+EU8sXRA4/PxbBjLa3pPkr+uCMm2S/b2n+4+f7j9Ifnl1
9kdSiBd5gdsasmq8LCk6rRvPZTTQbSqLKFTbTniV1hqCplgI93KSoViN0QAY
6pkXvAYRPTRiwZi+vTRCf7QlkmD/7F2iY9u6l/9EBbjWCESNpAPuyNEXs+85
0XCYp+sCDvMRYPRVsv/kyYNk7/HTB0+e3v/x+w6TDxAE/9/I4RF5y+E0T3y8
zqc724KaWDhcr6blUhl97aPTOhEhCPa+cB7MYJ2u65q9URwdEjmoiXHD2DOK
tECRkOL64LV4YbXExcoaHPwTuQfRJoy+Si7WwOTDRxnHZWosJ26BnT89i3AT
9DTNc9I/kGVclOmixpSIsvSy7nVVUqRRdwtTiXlkZzjgnFuk0w8awBkyw+gW
sONGQwFbWwRqjOQHfsacKt5c4WndJGMbIo+5yMQdE6LiUGO6QA16Jc600gdE
KFBgdNncGcUuhEATiT+drHPYxXolMdVYTWG25rgGZIvkbhdBDM98XdhfkJiL
To72RfzLh0LwFtntaoIxWyFwZj3jlhWwwrBCpLI5SoR1fNSxhqIzl4RahFFD
xzF/EuuXcJAf/KWQ0ICCcj7Ppzm6nMmHpbEGRGiIJlB4EGgqhHWVmDEk1DAh
5aZZs/QZQhZM3AeaHlAWqUkzv6Ny11sf23ESIwXoCYXdq8bYThE5s/6wPbKm
exUBBS+mWSSmeeIqnD2NXLS9RmGFUQtfKaJtXrFItJDQhorNzmntrUtieKdD
4bBWZNxoPA6m0WJDyOv4jq6qfJlW+YJkfDw0b4kcJ6cYmLUqCenglIT+1k+d
+0GpY2pLE6Drl+1fsCEUppF9H749wfcB6BdVuiQCp/oNR8dovNccHmfouBMJ
s16v8G76gFkY5ITibwm8sIdqNsLoFw5stQuxoJ2gCo3pCctQTaVeY5qtO+Tw
2hplliIDmsQWPcJMREFZgPjzKXPBOksw4Em8KAhrB1e9tN8w+ZGTEZLK9i5i
snPP4fFXAb54rbowocsB72HMbsX4NEHKx6bBzlkIAcYSCRSVincHpKpxDzdB
JpRhJGONZk6K3tNUDLp2PjAUY4gcahRZh96OkfHiBfEnOwqnKaUfSF0EHpHm
C4plXvUiBMUNyu5dGCO+wEc+avhrL3A3oLH3DvtLEczv7GEt5FDLdTXNbriq
7fsZFCG9VtFl+s1EZuPfZ2W5aN0Cn4hDFug/5kI9E/OsxepZWdxtKKzEM3GJ
2ubXiKSlJCuya00SNxw6+EuhOMb14OO0YgRjlaX2dwnVQsJEhFiIjYNZOXQ1
K3K6uT0yAYmhJa1p1XAwKXNntnD69aOlM63Q3p1eoI7dJD40fdyLGvZquC9e
jeT/06txJ8KHl/6j/wuwTdDhRUCHT3d6V4PO9765+7FKzfGMVLiPkOTBuSWY
+5FOgJJqxhrG2hB7bPmUGKbplKmqp4sqRgxVBVFJYogrQiEJszoZh9OQggDn
AjxBZDpzRiBuulhMhMmynG506idLaCM6D/OH6H4FgDkhL1gwp7iAfeJ3OSo6
hg2QLFdjyFELcbuivdsq2k8ywOgZQcauf4kVDZryAuslMYPhPzS9R03LAIf2
XHfraDGARc9LDr9W5wFCgyW9SwrhkUMKcL5bR2c4Ba0T1NjZFaaYkpAiZx08
m/A9vIVkYpIxTwJ2F/NJ9E2LbBGpUp/uROtvCawavnxzxkDan5rA0qKa0G7M
1uNA1/BUVhWMm6LLmVdiZ03si7ahA4VPzwsR797h3nJKCTuUiNtPd9JJMR/x
rmEBUmyI7QnxYvrXYSLk1ebAtH+SUXwQ2xQcWvdGpLKPMBlvKMSdhZbfs6pM
lJZ5U8DI5O6N5VxrZ3ygtO+bLY1zIItEOeIsE89ZHNGrtHrKVgKEhQsHksj/
fk6sBZq9aZ1f4C2MONXMJVh18sMO/TT4aUChqpoPfpXsOvuaTiK/UUAkfffz
wA5J4HD2Jf2wKT9khbOv6ZMf5EeK+kvuJTsaSBw/kB/9svhXGeNfPh7sw6fw
n/ujg2f8r+ej+4f0r/tHo4f828Pnox+PXdL7v5+S96cjCu41IfsYVgxqBYIO
Y6CHW78N8bsaB80V/1JMqlpiIaCy2P413kkUd+tFWl86AlX0xs/Jv9KPQxvY
81/iwv7vEF+LocEHf3EunGIYIWMzEf54D7nGCG4a/8GuL/p37wrRWcZvcnoh
/xtjulCN2P4dxuahlsTv+xKA8Kczi/ELHIghaxAhFtEf2Q8a+lz7B/iUZv/X
k1cvRvP844xiZ74Mpx//4gwUwipewY+HF1m8CoyKQgowmuUXoEf9QPHvrvVr
wph4f390/8nWo6ZX62Qf7jhZIZInLsDfLOO5hODZVciLfMnsHx5LvCPzL1sX
gO59lcUmwOiunZ6vxbcBWkDj2ek1njv8M3zxQ3rFd9IFLDHjsc9q4Cza+Ifq
yBo4izPhW/gRy/i0MUNe5TXFf+qXVIVzAOg3eJl+pP++LgtYhsXG7g70HxYi
QFH2DEW5gY6gIk25A5KTgJSDUn9+Gnh/mdjhSJoXaw6T+YZMWWIwIp9ZKBno
i4bwx8AvTR6r/VxzS+jFdo7UDvM+8pxiKgqxY5uCgk7Lt+K8F97DS+kkiCKH
E7mSfGNUJ0G5PMXhPCVb/XLVbCzr2CWbznoaiiegSItSdLGqMPC6IbEaKyNh
zUjmwO8Pa9JmXWQdCGLEWGMQWsE7Ec9R05zSBzIoGei0cmZ7rK69CbN0Hujw
CkUq0mqSN1VabRzlp1DMT7QUgSGcLEm55HSENzlk1nvdOULiWVpnjx5ISP2j
B48pmnPLGXX2jGFDE7Q6gzTLJFF4aeBzY4OTmk6FlkUeLS9yMpCRJloB5aAi
nu0xFLaOMuFgJrIfcBaBZs611yYqtpgRfW5TXvRVQKi9nbFz6BExzCmvwId0
mGSKyYaDv7GwaZSXMn44lOIScB6kDpiX9w/u25cPxvu4szUcf8+0LGdRTldP
rpAx3aGLu5yEgGJUNTbqIRiclfTtIClXkkbbH832QGLZsCSqD/GVAHJ/A7py
oDXHmTMBWkjGVNTAOfMmraNInG+5GxJ0bWkFmtJNcIaPl6IcIxIbNV4L/91Z
/tjtsM0BbxoycNQTF2JsuCyvI4MPnOZskQWUHu86XMvxU/ISamZPWvQK9VSH
FdOk0ePvow3QxIUSHw2bbRyb1CiLWY36iMFIEI/oEvmgfM/oiB94vjYknkGT
5LVjSw/en+PxR6CgA+WZGBH+q/n3Jahe5euXmt+JlpgOefaBpey0xmDnYqvr
0oI9JELFx2PI+DjRcwj6Ye8huL5DOOkEafgAAJ3a19Og6pBbtCgMoJSw+cVG
qYNx5EsIAflfTUk79OLpxkxkCPmq/ELqcvoh01iDOlqY2HmSQUVZvpj1xfHq
agZIMA/YUbppYGqZz2AfKxqeRunhka2SY1B8+EnsAKPbfS3Cp9tkacUXNL0q
81nrdlJ57W6BB41dreZTpHIsYHOcuqrIYkRB2jYv15WIujhbvAG77hAGIzn4
5KInJ6q3QtfJ/QPK5Hz/+uQ/yDn498axv3zcMnsnk/WFzzdc5BNgqjiEsUHx
5zbjH+glyVb1pm4yEKUkxpdMaXQb7Xo5OMwsNJ1r8CJuNDnYu//YwUXC/L4p
IJmaJ7yksfMaM9e08Ohu12xiYsK2WnaoqA8GlnXrQGzDfa2hFd5PvaUVhskK
Lp9SioESzet4O2NnIse61Q1djpLqF9Rs5uWjmmyskydLsLJh0p4xyq7vGPgA
YH0FmMT5cEO4RydFgVCrtmEbTXnBlZXoNqNuZRnWqY+zQmvR9dYqUK1c0c68
3r2Iv4eKQEPSDFmb9fYtFxVxSlpFnE7aQUIWDFiHQ+NDtlHdYaT6sQRlFDJr
YGZ5rgEeiDn7aJDcMAQZsM5TneCoy66AULF7F2tzLNKpLTwQ1qcRmbETAsme
hExF6BMwLYr9bm8XdIVOiJY8kVhqG+bj3PuCNI4gwdy1px9qJ5EJFsTzSDrm
9F+MN6KA+cVGy9vE2Rk7CAmQAVpyOZVvN5HDyCPIh9mopcVJTBlaAFX0lewu
jSXdiWXTGD6748QE/zsJ/F8XWCbkoiCtSDZitryDXnH2U+HMTV7pdnfVkXJm
AuEOPZQ/3Qnyj2xAbL3dE+mv6wW0K6OKXpGcP3S+wgvXjqCQcHaRzLgCGKpO
7bpbsgTNAPHsGfXEdPaPtYQPaiWdWRgy1/otRIBmkoyV5lHw1Rogs3Cqc2V0
QbDkHApdJ1icAzt2WBZRAkco+HJ4zJZglmUGstXG4SZrDEEGLJEiXygVTLOq
qC3oxb60BfRikhLQ67t/IOijsmQlSl0Ei++D/Voi8W4N/znloSD05dNvBXui
YHf9YP+iiEVRUd7L1/QBne+hU2EhFIa6+TNN1SGO4ccSuVfggHhHDrRoBIk7
7Fy8oX3NhYkIe5GLzMhMJDFJVKujN061lf+CC3JmQYX4DO2aCgmK37ImgyWa
mtN34zh5vU0FsTwz1ZrokkNnyaG5RBKS2X+HmCDLFeoEb9riWxg0gUE9rTqC
niWF6Kaxi3IhJEyUeZKAsxsmilWBTMj9IMDKBo2rhmY501YBgkUYkFl89psp
WunsbCDttLKtxdhCtaWrVfRojCKsLzLoKxj9y8eD42RnMB7s0paFmAxxZ4zc
s1advrSJk9/QHLTCqMkG9dndJIlDxMulBEp2gLcVrVoZPRTI1JuRCiLn4bvX
J69/uen6N6jFkfI/IdtS5wyx0Am7TzuPrrOg9vs7x+Yci+VUL4S15ajsZh5n
Gt0y9Llco9zEa3ExtFqBLgSwrKpA3S/X9WITUtm84OzaGKKZO2JH6ibcUZq7
EuJ1kL5uuGWpC5VE7exkMaXwAnsBWlnF7QQk116SRMWksRjZXQ/c0fguYiYk
/jgvy3H8gLzT7Z9DFc32CpAP8CrcrVYxAc25vRK0F8KD38ed1XgW9qI0xYJ9
2dFu0B7Je8U8v1h75kuH1kYZDVfwNWuoCE1UByHDEhHRCdSq6TuLZNEMVhjF
7WIZCjJ2cSGKYDLqmu4c2ahMojxaiTzJp5D8foKP2o+Qe59kaIvWYlwhlrKU
cDWNssLPqHSrLamBSMbR/4H9byNa8XsdnRGB49TEMpjlaDwAkWWgDMMUAsL0
uJRqii7hLIigiKQsES7Eabzd03vmYd/dECsEW9/17Wc0nSpJJg0CJ3CmHElr
1Vx3BbWOsgpWd90nfLAbqWauDa9rjn++pOTpF8Bo7rWTp1tV/NLEjw4q5wpe
bMiQFgojZxlGdnF8tZo7pElCqDsKTL25zrLCxLsTLkimsLNla4c9Jx0F+SxQ
Al7DqdFcoUmG5AbK3yMNnWK/nGZTC25L8mI/drM71QfetGr4EmJLWFBPgi1e
al8U+BLr7y1qt8OA9w/ym7VQMt1EImvjV+JuRv+vwzln8Itqz2ARf5YdOIcg
lQgE3Uqy02xW6PFcSKl4eotq/yPWupfpJqtCz4uds5enu1L98fH+49Yh+LTR
/mNQI7wcRDfJ9BZHEQls/eUNjabHic19GXSl1OX1/AbdopzfStHcFL7KMUWM
8Fd5mkQlX8bWC93074fuH2eAZEUTTJExBj4NygNafzjzQ1WaMKrIHu2vo1sg
7pBt90Ac/HIAJirg1kdAll81ihF+kt1nknEp60vlmCJR55q46X/hqmrS5mKY
dPWVUIBKit3KuyMd4vPnFk/1YyMH9JWSrBBwr84+wJijfAkIcC5yD603rCXk
ls65Gr3cKHbdNj7A25cXu6aNkUxkY1uJGISKOCLI1ACaJSmWUocpQ+EipMyT
hwqLhGEpoli4Qekim3LVuWD97Ds84IHekaqBG5G9zh+YKmUupTKitMiBB8XA
3jCrp+G4GAXSHVTH44hfD9NQKIe91DgNVS6XefrqFdVSeSQyiHMz2NEi/YjH
31kUhaTcelWkavhVdDf7BdiSX4QCyCUyVUJEMhJUsJIOe34/ZBuq69uiS34k
WSL2TyDxjyQrFVcyFOKmHOK+9OENUXVXYk14HGyAsGoxeSDw2SiVGMjRuqip
TJsdeEcDzzvvYVWXBmkix3ZsW5RwKEBnjNTNehbXWcD4BuKTgjAxbXzKL3kI
ySoWyiGArJtjxYmx6Pa1ZCmh6bFqwrA/U7SS9RH/rKFMQfZAMTYPhV7IAmAQ
Aw4GHlEmh8FkvOrhnQJ7Ks4s+krQhhTxpYpf4ZKhttGH9EM7Jqozam+P81qo
685b6SSETjISqMmp4RsMAXX/9Ok6Sz+MSI2ZcW4WcG+fGUoPfacC+JlofKu+
OlKKdRxfNavSawqyNM6tu25r/mCngjoXDMWESkmK4g4HPoaZS6XqqrUeQqtj
wzUlszVKWMP4qpRY59UJVoqS+vVSvUKjpvwkFFeE27rGVn8jk9J5nWJ8NNVZ
QL8exei7TsIp99vBbhSUzuNDs+d5hYms6KAJET4RNwWBnswaHWWjm5R7SYYS
PvZAGin6MPZYUtnQddpCic9fFZXV5+T2s0e0mRZgJZDB3//OAspoIHgamWvv
ckuaOGy8VYlCKqvqtiUS+9wPzCUPiw6xZ7kpo+4qHj3O+aPzSF7qFGUJOUjn
wXR03rIdkaWFFBak1hJypDHnKXAZm7mJVi/TJEC6yfSuxiau2+R0v2HMKd8/
uP/gYX8ZEgqIpDr5old81W40VIasaVmjQo5oCVJgjwJAREZpi1YDcdt5sHjS
9fS796aFWjSDPiDZr6BY/gkoRsN+J4IBONw5qrvn1tRpXbBABM7vSWXOokzO
eecxVlCIA1zTSS6dsDfSvyIy/11m1xQJMl2ALLrYRK5rJEyYF0JMVHzHIpSm
tR4xXv9JucY2p9KRQtPl0551OQDgulLLlyVkyTmq+iOKS8a6u+esfaJ3fVFO
P+j8QZFLjeImZgLQ7L00pVKDdEiqV2lhPMWYKBKakjGw0fcMUJU8/NYCSXAi
4QJPX89dvLtSKhsFVEptBK4tzdiBQbBNQuvzk5GD4dQ9+GQLdLA8wrqgcl5M
NVCPjC5YbaenvWr3ClQz31Jzn1QMPSS+r/Js6tmyHCrZAXluj8km4Q72Wqwz
54s83kwH9TumE+kCu2ZY4nfj3aa5/c2+8aG/4Te/1Ef3vvoLreZ0qwXdPILQ
XIlfNHD7KrrKgXXuD6Wr23ZjFx7kSQmz8plpUc6YCJc+a6wlpHDEIQfDhAy+
vgCQm6J5YsuwcFM/TiQIheY3UbTkjlpGjK/ry+N0Iqx2+81vUqa0J5hazf/x
TAEVepLO2glncbJZO9GslWSGCWanb6Nfdy0i2gKdGtTMBTqDHMK2FtgPqGgX
wJG4PxXFm5qqnLVI6ov8AzIVT86wioIvpdSuFVJmItrT8DjuT46cK6tyRUS+
nQRP7FQ1SzE7waof/82nAar8SfGYqElJ7YgFVnI2cRj8t6JgMFGxFF74hkYK
aL6kXEoKX8qrWDiixVB4FmxLUl7bdWVUH9SQJ0HgOcf2m0hi6uUzQZ63yKqU
rYCtyoFaf7XdxY5tvPcOnLaCuI+6WsW/3k/01wcYH0/1r6kYFhr8l9ksB44u
QZv1CsR8LxgoEiMnWKJSxOpAxbEEAficys11gW0XxpQQZkkao5Ndoa6GUYA3
FDwk+GmQqPUtCeZhXA7oZ1y8SwUz+y3GpKRNVlCY0iKKt9H6tVRlpiwyJySh
8BNynijiwlDq5A7lq6jWlaRrw3HBZmfo/ijnjhqSdvCDU2kS7McyCwWN0hXM
iJtDtACIiJX4aXKas67pD4e4ckpsG0uutXbSoAlBVkNlQ0AoCUsKCimtum9x
tnMbxzNrDKEody5MxVdlo4YRgVnrLAP4qflEjMEuOgFfXVkWxlgo9y0NJKRG
VZQvm2sFBDt3HFCEiZ0PxTIyrnCfjs+FC8Tar0PdRI82nF6b+rRqCf9ssRJb
Xpvt7/2BxN0ijt3YQs2d0qDJnh5ziopODiPcPG9YkNm1LCQ2nmZcNN5zjFyg
QCMKuhQbmQTqRFIx7DmfDU3rTvbj9b5EA0kTVqMbWYOM8VAgoerWEe3LMQtX
Pxjht8fvdBPQXJyAFlEwgAKLT0TuJny+ppIkrtrZ4uWhF5cu0bpHffQ9VTb1
yXVYER+bd96w7t50nooaD6+kNJgOKMkJFVGntg1tvm0C11catC8zSNI5OH6E
2uvp6XlvLjua4QQ7IQm7vSmM8T6Y8GhbWhcDHFPoUi8Ttq7QHVthr1XdoS2x
tdIA4paQAp+bSjVwEVEqMIY7Zguamhxt4LrKLaJv1u2ubkAhctK+ub6FNsdU
rb/TGHNHI760NLfEQsblC9yWJpmxWySq2LFLzVHM0plxitWeIxyw+CeawW1u
Ky4kxKKiJUl1EwyANe+Hl4Di5k2r8PmwvTqlv/SUlvdreZ1RQ2jO5wp1hKNp
MEzWVBchMTS/LMuZPR0bAIj6Fhps8Y5/Ef5SomM9CaEih74lXie3hBt2kxXc
NM7TkvRbcmCUhqBrx8/ijb+3wE2x+j+nOOVPdwSQGHra1cNIwJSGLMF5Gnti
Ys0kvNWUaIapQy1RmqNd0xW7c2JTiUkJ0h7Mggae4LclYxKSKCf7C8NLI4E5
GphGGF6t/56lm1E5H4EM01zqb/yH4z8wa2hX2vVR6ixcrwEFDGcNupD2x0kS
qudr/i6Zo4dSlNByeilwipIs/GtEpSAQyKiGee0M/7DvS047epww9Kky346w
U4x5RN+2H/9sfkEFbr93KFDi4o9VOdz/oaBeGjoFv+ZHCFn1e0+4XMfe6OAF
J9c/Gz3Y43Idz0aP+F8/PtOE+2hUHWJvtPeY3ts7HO3jKNyf8F4yeIo5/9Tz
cEu6Po3+YvTiRRhdizmE0XVlh/iebDiggG74gGf9LzPKD9y48L/pG/+yHxzU
4n+kBZUlmGcT+i8gAv03XeF/tyw6wfc29N4/1oX8d8HfrS9u/K7OVvReKWUR
ivKK/guawCDZlQXT55T6Fi334IcHX9giJSFE3wC9obuz/Rv/hv8G/xqxuIQH
uPVPP6U8TeKT0Pvh3AHct7dWeTP4KulhfElzKwKQ0zBcOBou5v/mvj1lvNj3
bvhANojiaF6E9lDCV3gBGkSHXFNhQJ9xtjT7V/GzvlG5BhQ/u8T8TE4K8wOB
7O0zmofyNqZ9qLbAxJWNEUgUsUSs10i4VokfSzYdQDKMozuS0w/5SgxWS0na
BRYy4rawGDyiI6k918+PESlhXCFtBy1YRnduG0zNyQpgA1DpsRljO4C7Uwmg
tw7WB9AOPMMOCVbRYFtgdktY3W/B6muBFGHfl6DTBQs9NHAIOyvDoy+BYxsY
/GC3B8eDFjiIln0jNOjb7cAIQ1tY4K8eJaJzvh1q/EGwALRQQJgVAQwuKH1d
3FVoKPkn6q8wzo97NLRE9scPafInT4YY1cn6Q3tk2M3+k709mPnBV8/8pYkf
fWHigz2aWKjwlxK/fGRxyKGn8UwRbApYewj7OGx36ObGb1K3jUXQjrg2F47w
Q4IJjiB5Upyrd3t9SZI02EWmCzn2Fv2vDT4P/XxbaBPaxD109xG+0Vnc349H
iI/NfPlor/VmYDydAz64H79q+VHn5YdPaKv2/Yhbdd+X8zbJSwDolU9ttHHa
IRPS9wsn1xBGyz+CQ34pN5eOcxZVGJtk/o5K3GR8biL7K7EYEkCGslfLdUGl
KJL3Z0e76g/tyJLKqVv0dNg6kWEvw28DOPRKtWBsc+0TbLzLKi3Vf8CR6Mqg
X/frMR+O5EcA57uQqtUDUYn1EIeEBnDZNvQUNpaCyIihWWSlQt8ghZBhGWQ8
WvPMJ1lpy1JxQ8Fdz7iettDZHjXyKetjR2WBlT0FsDqc5IuEHsXG2ifxr/Qe
tUBFnezADEWipjRHlfhHyhZKsFzEu4w0+lny8vmvgMDvRvDfXX5bssvpJA5H
PIC0ZQtFiO6b5rIPH2P1Hx8ZgHYYpHRITtOGu5kLCaH9DFbrYkNVp2hsTLyU
ZfKBIHi8vTaUIprStjhlkxe3rQ7RLoUQkTdhVWH4se8qNyvS0TK/4DSIELtH
o0X9g3eFex0Zv0lAGa7eiyBHdkyJIBrSFHIWQ+SaGiT4wF5Jt2BEI8ETqaig
7F+D9uSE5SUMre6l5Fqo0xeBwVLxixmVvk7IQRMP5G+l/Il2Agp0BHSOMjF9
HD1/z1DqHaMV4hPfDjh0rGNacYUhMosIyFcl8EGkgLhQrBff3lPS3ZNQ5559
SQoQ9dDV0lNSsCn6aoEQDHk+0avRTbEFwVpgMKCgabccu53Wvh5uuFh56GIW
yclbtOuhN1FyQyj0gMke/mtEyBOMWib17I8zaqHRbS34Li5mmogDm3hmoVrI
tdZVzo+FT9G/b8jawpgOMmDqS4bkczwCF+zzIRu7Qte0dInOh2FJ/KbvYsRh
o52zNZ+InaXhM+tkfQ0xbhd2bx8SA+0RipEhxUKun8d7E4C1xaWvbpqU1na7
iUXEfcOLJR7YiZP1q2lF1QbwrGHoknJLPVgY52Ea5vEVeh9HVJ8nLIws5Xqk
fNyIm23yZXB0C/FyWy96baiXHUfpTjR7TMH41lkjbK5Stan9XK0XWe3bsd9/
8viRcDB/TXyMGJOqKD+SRZtLjrO+Lu3dYhegz0UKOX7iwxn3b4zIAscJty8N
Pg+yVEy9aG1xZUMdLjqv75qyhTZ2zugcbqKdnYlxeSw9x5eBPQyUeCB5LpTW
YxNf3mnOEoVgdVKcgB5elxocGOdMCZ3YwC9NXs9ZKBtwmT8aelqhYTdPTQVf
B2LG4avj05OzY0yf8ZjPBRbCMvMO79KxSNqu1ko0zy6jNEMtlxOkUWxwvChT
mxgB3+cXFxQDqZV7U4IekX3SJudYCC6Txg43lvb5KWEnpm8Cz7KZn8F+MF3k
HIGKL89hjZdILhok7QV1QC8Xk7RSEm22hg3jQjf5u7WGtaHm44/DO1j9R+xI
oICcu3VfgpjUj7V5YiRfKvwVslRKpDTDaVyMWR//jmewpqoDHrEkHqXKvu1k
2MfWPZU+XJQRKaFNEkgwKIB3hlZhJ3OxJIWplGk3Sczipb2GEYJiaTDONrLX
SYIK2mDphz4VUFygOx3XE/pzkfsarbX+Y+xVJSmKxq8Z3xBqQ8l+y6cqIzMM
RtxI2mcnfrqj0InuOYz2/t0JtlxbLdINT2H9z1iQi+WpZJJWqp1x+yGN4JaU
RMe53fAk+4iBeARt6qLiCWEVei/yEPkFul+51QpS/NCTwxmnfhwBxiEgvp0L
0CIgDXUTZ+NIgyeOxJGLQxQXThY3bMJ5mLhyVqVGDSgMiG9LIOIEU8WvMupf
t6yzxRUHnE4krgrbr2Cnlt+yuyCHS6gjsU6ensUBn33lmipFbQw9xwhkjg3X
M7obvhJVexDytvjJQEKo04D2rVMMX5i5hgAa7f+7Im/7U2LRZuZ+rI1WL2uQ
JWjhlCpUuKZpikwqNoA8xCRaeYoWeCCKEKZ21MijwbOlKwvrre+2YdOKLptO
y3XRqO7sBhobNpLcuHoKymeVl7CLVoBAW/f9kaoKIyEwK7o9MFqpu73vuH7i
3XfsmrGqcIrfC5DyYLmr0B0nb1TypzCJLyUJo1uEDBZJuUr/uc7C4f5CYmjq
iUqyc67Tne+2g/aDCqSlcKLJnU5uNJ9zhI8fUfWf1nnjYYVpKcFGcEOYXS+e
Cz/1s/Ce/ByBJMRrgOGRPOTd31l5h2OZlB8xHp4HoK5YIn4TBVEnBRp06RA7
4wsmkAzYhDzL+7paf6C0WIxmptqeRS1WcI1zaN+KkmMIIlCREFnjez03S1Qg
irNEJDuHk1qeR+Cuz4NflFe3HY70tYGf/t2GmVf/bwE7HUOnMfDCEUSp9YtS
Y3p8w+z5D7UGVYT+1sfTcw0eBnuoHctH155Fxk8mABTUl9WhZKmk+4CYzvAK
B0f1+1tXAdOJwl/UfoyqJVH5aub0v5XVh6zq8vlr/t1weXlzVtF1tsUQMOOH
ErjQMj1d0x9eTmi9T4nxDVfHrulD/g7DDz/4kixb2A43z0x4bWOnzQbJkM2u
e5TviUhh/CRGsvKqayTUx+/+/eToePTbm3d/O353isXcmUsv043LPoIcQgUU
Zr7wGubTXlToahmGqlvFJpCUq5xTgDGeiwRXPUiNcVuxJi0prjV220qk5BWv
aokix0SkUVNtwVk6LeHNKDRiMKfYQJfi3KT6HBjdhHH5vlXqNckPwjodRnHT
lnhevE60Or1nhWGBEhEeutw2lFyAnfnWvoTl84wLUHKF2FNQGuGfHtR3Zvp4
BI9HNT22qBQ+V0CQSJ5LzoCGZ7TewqOmPL+EI+Q9n6RG8SF01qsPwe4vmUud
EXdQjj/n9rinBJL6fOjO/+PVSwz7lYHgup/Ps2Z6ubN7TjXWd4NghqDp4Yyp
tOW7UR7CBAuGnEcH7n/hN+kj1AMqpGi4wa6Mh5rh8k/q8xnlo3M4pMGfUq0g
0hO5Z8lcdZvrq3k06XnPByu2SF+H5FGhb+xL60KFJ2mFreHPSI16BBk/vRVj
onW1Zki6M1xUWWZkD8bNXxblJF2cUk2YnXMe7atEEGdBYUUQfEjsTEf1ixQR
IvDHQJCRR4bXVTyq28zSk9IwieXOfcp5MDvYuJ1Pn7raGwXcWi7Ymm0LM6SH
XTYYjPL9OCESirJBGkVpSotic/aRJeGINWTFRfvfgi+yajYb5GqaOoxkpMlI
uWSnkJB36t+nlW+odzbVjUSSyb1/QVvkxK5LtPaydd5LrRwIbirfEBF2GA/c
12qivXq822yF5CqC9hOJpg8t43u4VewYY/PcCWbBtroi/MoxuC84PvzTnVze
Ec8rkl9TUJrawkiJ2q1B5qGkZVRohEC4v7cnqihzCOKg1OiIRQq2R8RB1uoH
7MZWU7diLkizdTUSsj/JNFQZuRAwr4qri5etThQoJpAhZvhtG8R4Rb9JYYOO
N7njrfRCcbtfP4AviXw9bA3BcNp1fbuRkppaXDXaXGxCvNuC7NgmxrYLrXQq
akSYcLdbsUOGJgdZqNzB7SjqBbok4PqQ3Clh6XeTHQR+Tz2Xz7ssVaHh5FAS
CgO6i/Vbc0ixzgFIO1rpgCJwUKgqtLfCF4qLtIqJiF+RKk1yhrkp0BX102mV
o9QSBih3SANWbichSRDECjVe3mepd1Y/DO5qaQqwjNvcLzDJsZ6mq7xBX606
djn9mjLVzFNKpOCNttPf804vlZixbS2lQem97eIWx0fv3x2bFHiKoaXIgfeH
IjlPLzOspOMBH1eoQANGXKCVO7/41AHHQSm0Xl8EVttrqKXMuC1Iq9NCU5eS
DnSxTjElNcNS+9xPiQr/AJhMuRWkLD5RYyHt43375qv1AgVFyb7gJkAg+3OA
UZOs1hVaIrHjxcZFR2Gy+Kw1CeRJQI+SszwVOpqhF6ckujThcl7Sl+HSVr84
75YYOecukRtGRK4TYRbsvurYQ/EQXELf0bqtRzvuxZnsaP2OV5td5QtGmTON
SeQy/0y9UHXSEn25OLlxbp+uTkEPcqc4/dzdVHjlhrn5nLG7MFkJWtdz6Atm
+PSbJpPMXHUaTjOniimZ40xqmq/xQcYUjzYlpyOXy1xCo8iMTPWLAKJXErpI
jZ64JU+LKPZS3vbSvcJ5ZPPkgqcTvxbNqkG4avFRai3DgpF01MNWVo4gHlBu
XpY/T9KKEQ5+ru3Pv5+T9ZeiBUjbV8VC4OJAlwOKl2rV6VRPlK85KSPqBPJ0
XExS5trK3jm3MZsJGzCSehVazJP1aBuma2++dv0j16p/FHcf/t6qRvE39Td8
0ybCX19FpPXw8jaVS9ov3WLON6dn/+9VLrnNlr5qDa3Vf0X1lK+qWFXfXFrF
tUqrfD8GbjnfW2Hilm9vhZG3rIjTqutyu2P9qhPsrxjzUhulvOQ6Az6OSzuo
jLgAwWdpWGU6ikUpyalJJtVPh4n0zfDWDG2WgZnn+lunTUincAsxAy5tgk+0
xwuKsBIOo+IExdLRiyaZeZLFQdKgh2CEMegsAJ9He/A/DY8WwTxz8zUo5TLe
u+OjN69eHb9+fvxcxgYxyY+hDmT6oLcmPmiVzjSJ4SG2aX0GQl3AiCGNAb0h
R4YcHhakNIVLZRItVcK5tzNVmbRCgy+13asvU8Eg0+Real5/VbOyuLI1K4Od
rgVG624ub2zEiPjJRv9m4zR+tq3Sk+rcbSnmS+Z8/VRD14ePIdSbPhpFnU+2
jZxS94dO89EdHxeD1vHdse3HGdQzNp0D8pHhh5qI1OSJ8seuebP9lZXG3QJh
YXAS3lQhGWmk90RqyeRkvtAiodwKOoRuwAMWKFNJ4EttavmWMk8ayeWXgF0+
sQwKNxwkmd4EEHKmuNhKo2V0bALuC2DAEgyaqt4Gg7gnsEILNe2tfeeXqNVv
aG4fwvesnIovM0JQ+zFkChR8yQE4GKERRtiVsv/CO29ePKopk3xGVXJ1BbkW
KwbNLJeStdasxQ0XIocabC+l6rjd9PqogbNUMmB+LlIqHhJoJVL1qadsgUff
w7qn0S7a/iSSqMnUGWErsWtdWeyU4xXamWAjFTACfDs6exn3EC7bW2TTI8F0
6bKPaCTNMYEp+RVe+B2NXKDYpJNkBxOud8l19lHiA0NllmgWpr6ID1TCsLMz
FqQJqVJ1SBg9I5yYOttybQMblBBSJsPl7wefmOgS7siuuRh6RygfF3sMTdFy
zc20ifLAT1G+hOZKcKQpAkaKOVgq74jYIRudZdKWm1Jf/KTU4UwIQaCJJilE
iEWbJnTyWw7/hCIIHfiJn8JXqWuD10dJp71Z9JgZ34o63WkhCWMRN6M6fLb7
lHNWerOGDCvqroS5D+HDwa1XfP9ZsjP4ycauGgcKGR/QEkmUicsohUFqCnbX
uN2wnxCQTTcyuFCioGyOxw0LCJG660KynYwYI9NpgIVmanE8+cwkQHQ5pTUz
Z3bHxuFC7hzJmMG/ffDO1wPDFyYLALEG8mj5ndXeDAQJeqJ8gVYCRxzCv2WZ
C6rcTaf+HGDwcxy+32iUBH5t02Q0RSEsjhlVeBx+AwC0Jm9DlE9/RzyuGx56
l5ngbXBLwo08fm3Fq54t6vr97Jy1wSuINnXDEkJj4/ZUHKdrYsAfkLduWVLs
zyZRwQDthioX/IYFHcPgnpFYeKgDF4e3q5SwGL3ooODIarm2o198z1idI0QJ
URIgSeF58kjI8LYExtuSokfjKGjfJhiadYWzkfd8tmp7sd1a6X8I5d9y52Lq
33cpO5fEJLvU2vFFISek+TmawavevASf99IzlUSN+xgCSbXpkvDdmByErJst
pPWW7OAILgUH4fRm6vSM/W2soJN91kOO7Vo6XKBnKTKSZigLlqVXen6Tzram
PIPJdQ4pSyfz/lFiWHYoUIubdIhgaNRzO3LoARrD+RtIoh/phjXdkkCGKL6t
hPI2B8yq7K0AktkezeE0QgUXrzn270Xvrg8z/CaKHa+1L8+0f3qhkYJS7Xew
bIAx1ezvHTzwhNmQYL/39rza7rNMTgF9k/3eRPEfTW2f7lbYndpaV0eFxnnb
RZZjqmsSJThD19fKNBSD4vcIpW2T7nhB7JYRBz9m3j42yfI3bvS3nub1cyCN
Nab8Ic1QMbFHMmt9hl2A0pxbPopdy/seByZFzySNckREpxU9A9TyvWEMcm9k
CWDAgORtfSApzCqqrGdOJUqQ4nWzHUYMotwucmuD83VqFhF6nHeQl3fZcebb
4jCKpQOZZ9C185HVzOBluOFpLYhVj0McGdECHGzD1T0m7cwne8IdhJasLVNh
ITa5Uu29z6083vYocw6b8IUdrEMaB7CX1s6XXpnwc/3tQkzpupGuGVuHFskg
hMOotdlJ8FqwOCMtq8uyoBqMdn9t8z1t1TA7C1k1KRJNai+33xovVX0kTxqH
Ype277Bn9kthkWRfj0Xc1hKw4Gpujdj8Qy0N6VurmEo1CJ921F3n4X/i00Uq
ZSftdN75oHPEY5H3W0p3IDU/XK2obLztXCtiaO9d1t5QfVwEjtq3DG+NGWzI
Zq3jcIXVIbD1Ci+xP9dF9r1XWOb5viu8nQOKZN3H7+LruEWY7hlSG7SnXOdw
SN3Z02QwGsRanKxRK2PIy1tW0pG5RSZtz2/ERLRjckFAI5Tx8L4ejZ3igdAI
oPRNOtIiPZq1050Hi6hoz16MKQQJgnLlLkj2evgnURyAJQbh3YbC4G057WxI
a+ov08WCYZhzoV3qFC4UO9Tt9gsXYQYOIR4vqr5kK2b9nlVlsrO3O4TnTYt7
+APwdKV731m4w1tnTRyLLjeiwVTLkJziaIBktVjXrWUHKvj4jycq3lv4lURF
SsB4mvKdtIOHGwRq7L6N+yub5tX134hALeK36yatGvFLhyoofI6dcaMfCJia
34I4qipDGCZU4fHFkeIxo9oycsf/4LPWKt5bjzpakTnsuGX4dx41DvZ9B/0F
HvHFKioEjz52UNraIK0cAvW5m/owtqTMDTrslq/7sfIPPvK3WmrkxgOXDWzr
ov2dB87DbREL0m/cr2utBTajLZF5OEaFLpC3d6n+zm3qgH/+RqNm0LfYarcf
9PeeqDZt/TZRz2b9mF6ylJczeM6XatCh0ukVpud3b23aWbXp6yctgdkg0pkP
1XZ6IYht3zWZNlu+YTp5JWhV3zUhd2HWcrrd2agtsNTe/GMJi23cu5W8RAvS
JCUFAVfDof68tqHwpzumybNzvnqOjxsDDuaH6O9E7Nv6FrbpruvtMm0LpHir
iLb4Dr14fcKqJD+N3SGF7E7XlG5C4Qx+/JEZH3NkyQLF3W9KbYMjawxtZl27
SwH1YYLDLuBmcTfeTd1kS2pnS8dGQRiZmEBN03o3q2Al2Aoww2TWvF6ygQ0k
Y6q+IiUj85oaPB6dvnshYdc1tm6A9WNgB2dbUUWCS+xyKKdt+xxSbYvuAYY2
1dO0wjgvTvp12PiHsnkF5NI4rnO+pk1yT3duKe7gTHGHDZ/eDadLfiGsIIOd
r3fEEqJ9s/Y+f8aY/zrb5YgzbOpdzqLygb68ENxRfqx5ppwtLBjz9s3pGaZ3
/HJ8xv0iMRgJ8InKsdStypN1sv9w/GB8QNeA/nk/6ta2+xM6itltRBmaw2gZ
vJmCkpzqUJZlFnLGSHXjxWq4o2gcuqTkslyhrQ+OMDpBaZFchyowJOsgjPDQ
Z3CMcGMuUHltIvwhaHHBGFgAd/q2QAUYYA2X5BwhhVmj6KvwIXYlZUXBJssJ
Rj3KjC6eiIqyUVLyIsH0xYuy2oh2DStgznIoSQS11FehHKNyhQ6SIrsG1Cpm
GLRG9ny68luQhwV7n5NCfcgFkXwpIi1VtNOuD9SfKSoxPDguFqQhJo4BLtls
sl6uBPfpepYcL4QhSGXeaMYisMQXsArqL8qg/FfK+geY/3wX1FI4X1jt3b+c
w/z+T6AK2BuOO1TLgJzWGnbVs6faqzSWXhCzR3ybypI4vldypyMKIo3L1hJT
0yFogT5xGUWsaoDRYzEYt5BVSu4WitYlaOTJDmmsnvdgK/pDbUX/nlvRt9jP
otutHvhQl9zzo1FYXjjmYRJ31samaVnFLW1ckVEkdGOsk1x+hxbXmnkbaeW4
Sy3lIlFuxPC003EgnRJHK2Xa4to4HG6WGt4oL2LG3UVazchgIs3O8Xuljj4j
FAnLLVd+nVLcr3pExB3hU6hwna5DaHlrQruFdBt2ZCdB36zSuiqDu52BJGL8
/HRs/sHIP8Aotp3DhW871tq72zId7mmojIAyEMotlKQ9YHQivM9hX/RrK5cS
SHU/pH09ZJ9EFIUV93HvsXtHfZaHURY1Gr8xU2hzC2TkzG+fxyV3N5/RUkLk
ZBLiznulCCkby9m/VBTchUqIVIhGO8uhQKvaARpiRf3eBWQsTZx/TbUJtB5y
fBH5yOyOfb/G2+xZU421TZU4ngNMGtNxjcM0sKgCk9gZedq4Gv7zDIjwhj7B
znSAkFh/EzMXgWZemxZ+YnM9kHLktRpV5VqkzrBotX12o9jXmEz9xd1RBK3q
qpzhacqaUoNKSZ0P/XS7lywqN9l72Z5iecLgYPH1UvV2g56Cqb5LSq5bL9D8
RuWVERC1ceua+Z0tOEGmNza/JD+wrm/vW1rX5TTnEiahaKNuhEClsqLGDgjR
cySj+5EPb6phrY3PxQ5kwhm+dzHRguRvrVjJWHPXiNUjreUUro6PRFhStRoT
TZlIw5xska6Qz9XUrbSxAxMuY4NE9b+hYoHF+VI7ymxdpbZqcpxuf1mWNcc8
YM0KySp/RX3LUfuzRK/bbhpbfbbTxSQ1LJ2gsGKayj4lR/swkdL+xpI9lBLY
w4QLxEbbGlJp2hEmmNXcUmmIgdEYboLiHEJ0mMSN7oeSd2Z/wX7e5m/qRhuf
y5ZghIFJkYliCbwCEEcSaIdTs9lviCS4rS2na8g5bPtPxTOWJr5rakjxtiky
2KMzkwL43YwcFneDiUSjBsXc1W7YaiJU+2IVSeRue+xsjKLx29kJS9vltOO6
k+i7L4V8fyncmy1GX4yx7C7auOb7Qz/tVvpA5j34tIKvC/nsLgcNTUeqJqGu
Ja/0B730oOqY3IA+LiIiNrZutL2c3ozV51CLA6v6LV3hOK1x7Av2L/V2G0P/
aRRXeJdSJyzRoIVWa1s0r/OJdT6iv7ZrVFMQhMA2a5H5WnueJf9+T91w7fyb
4ddytqgN2wf8cKF8bwTQJJWvGUqXvfv/p7NQ+NzgWLrNHufpov6aTfKOmn4/
d3Cs/8HIIO7fltOMfGzcUCSMtCXK4XsPg0orpEX3284it9m7WXfR75kEs2Zm
wqRM6GbLwmhdxiEQlz3Q+Tzx4Up5qGqkDYSxUjcbXD2/kUQ4HYeyPpuGAyW3
odOXQM5818erPg6Y0PnCxLaENcVF9VnURespAvfTp/en1B3n8+c49Obb+NAT
E65vozWpTkV+sa44GoZT77CNz2SBrb6p4woVHzQB0Z3NcbcB+4kB4jaI4LFp
YwfPsGxzGX9WKuKhgBm0h285If20fdg63BfTy7qAxU81z1Ci4bUcS52ca/UW
LWJwzmLrLK+r9UobZ3PkERUs10q5tvDBOZXmyZrGRqSqVavdh5zupXxI/YD3
xjedAMZZEYy6BxY3+rFnEHiTbW7k0aMPRf4YON90dB0yHqsjbcq/lfqH4JM+
mH0N7+ku4EvsNZ57+wHguYZ2sH8g15FIlLrDRqkFSB/D98Fg1LvkW/nLtqXc
yFkijkLDbOEqRmrbujNP21pNkdQ0KyomQv7gz4C8DwnprLCtRgdEijDxll/q
HdgPbV2tBh1uNjURJVMLrwy3VUjKc7cDCecmeMay205c61uN2IMkxdLwNEnW
uBVZ2H/wZ5yGiVzpQDU2Ytz+NLrf+bN42NoDGXi9pUAMHQPN7R9gcn8HvjR/
aw4P4W8QGPYftRa15QhpE+G4+5BJLtZ2hOqiwE2r5Fh5WWmsh7ExLJw52SEr
LfAqniHy/GcZVwo2FKzb3SdOu8orVtht/I9iDP07uwa4qGlbEkcCtecRtt2C
sW+2LC8KL2i1Dww86aZZbVvXBAvGjqjY+dh3MCbTqCVxfaPEnb+a+As/vI/P
iDYcipb75lpplddl4Wv/bpZLtOpOh3CU9ZqiqNh/QsI/DRItakiyitSy0tQR
7yiH/S3STaLl4zhehKpFkewsUAkhIVzpkJ2lSNHUpS40BCRYErbYiR98ezQa
d0DrTqWrQpyYJXfTuyqjKdju3luUF3lxd6j762wofDrVol7qRrPDYD8N+M+8
LO/GHd7aL/J8/Db9+15W3MXL/eOfwsNCENz2CCgfEqaxWoKqEpfWw8Viw70I
R1/Sdr/X7GB2cwtG21miDdrbf9ylpOfxJ74kNkOhRxi/LV8IlBiZBL4/xVyB
oExpoZjQqaTT1YSlq97eLH6YnvrdOGm7q8xNlN2PZSg8XfmkRYdaWsDB7cCy
NSRl3q45gXV3Op3mMDKlr0HjehJYk3ZJD1aFUNQtLM+Q9i8vW5fqO6Gp05zi
2HSe/kYWnz79evbq5efPyQ72gGs1TcMIqUoaA/txuKMXucsl8ecc26WdI8VA
Aldc5VVZWKRo0uoC0F8bpISROApwYJvgsF2gd629wPWD9QL5RuAantMbuISh
Pj5aKdKgi43xwgemyV4isiflnkX6L5E4Y4HX0Ba3HVrpTyqcALw9Q4eyluUl
9kGVl3MKkxCBQhdtuPUX1eUvXZv9J10SNIhJECGBEuEvSWKGqwZJTCqM30ro
R0/WXpsHEemdZNSGS4N2tof64odS3Jv4hy9feYv137B2s7UvrL+jgX/v+qmU
5R+2epJxa19450vS7a32rOQ3er9l5+gVaP8oPxP+zxgqOkqm9iA9v4fR1Qcd
Vb3rMRW6d1N36lSTDr9Jl/J9rc0yWGb5VlSJkP3PGZ1RESB4v62atjSsmJrS
UAhi9mZKRAGrpq3oAAQad/itt2ogLVN8uZiJL9ybd2Pl44uL+NaFtAoz+Cbn
+L8QaOOrE4pRVxsoyTfcnsqHh1BV+fX00rBQmmq3I+X0Kme3NxGEi+Ph1zVH
3NpUECTAW4hqePvfr3zaeey9vkn1xFDWjlG59/OwKcMwpVZJ/LxTYZJQGckE
2pDgakgWYu+CqJ1Vz7eH/oUa7e7ooZwNWkYJqr9faHo/QUMDu1Iy5p5ddgsD
ZFcYTofUW0b1BozebcCUQ+oZVmwcR+zojOZwuA97pBCFjXAfMv62uexUAADh
kWCKSQuhM8WgfzVOZab1csLEVRePfbvYjyFmDK7niqNmM65W6qhlFwqdfNoq
sa9XWHiR+1jtSHx08nBPh979szYRgdkuFP08Js+gd3339/b2nFlhX3QTL6pu
rap/Uf1poows+mGnxAxJmORewsh9iVE6jtFKssuOZAwW979g8JO0lUtqAhgd
KN1EosbBJp+24BWQg5vzhIXcNwsh4tk3xa2H5wCV1hQkVocAZwkSNU0YfDsB
YiV0ROnCQ7K/mAcfQ+PraHfLY3RDdSghVxFjQMctUTuaH4BpEaA3DW5u/L3b
jxmC8P00Iw0ACEtthUw4CTRWY/WdO1hTSMIxNUQxRLWGIEXqlsn+Al40SorX
fj48UPnM5JdFFE3RuFo6SgcQ8Ua8uckhXmeZV/rGbhLug8GIKSH1vmcf69Ct
UaJSzqkJNaX6ulM4jKgNy2SdY/lpQU/X6XwSqnRL0gCanzkgXpYzi8bTZmfx
sjw8SHovu6yde8hoVhLjk4m1BuCYeH/hPyay9v27k6Ex33D3KBGnqbc35+Rw
zyNTUdt0BZd8KnydsyFkNpNlyzBqF0PnJXbjWLk6G5UOLC27EzTQwWyssIV+
p/AtkPtSI+Dl45uKk2s7PVPV24Z+co7idV6Tt3CyKKcfKF/P1u+fsRkbLnFe
zUbY8nsTUoccHam68fUTyYAzX9yq/joZpi89GsYb43ZDMRY2PYGs2skSU5Fg
TYssvmBeuWp/h8Z8zJg2GodibRl1runvh9UbAT80/Rz9C9pJNCTIiGdp2Hmv
jcuOIltonbMoncbEmbfadPWYAEMdQDsXoTyKe3QdfcOctxWQ/3JdJ2jjIr1R
S61FTfYCGaA7TD4PVAX6CIpmMOWh1e040e5hRakl8FKbPDROfrvMF1yo3PXO
rPWt+0+dm8ZRn4MhSzkmOcRRCuxqkYtSo5hCuVWhs+i0i5V1RGm5BI4LRbQf
jw9stud9qWtvOqGPQ51teOEBBUMjoXltKp5j1w2kk6jbdAkMxWGraNkiqAIT
yQhc11IbiOiqiwlSH6EJLSvZsBCDFDuKgnKBkouYSXH/kuB3ze0gArUmnsP8
mPKJDW3Qz4lsuJvJRtohGrJIL16Sr4idWVv5DNkyY96hvStNaeQtFCLpUAj3
HRQi9GN1PRSiJRdNuUCSkNfnb16Nnr85ev/q+PXZ6OjNm7+dHJN9vz1Wm4rQ
LTd+BFEInvc04PU95Kmf3JcdIzH9cb25scmO7youaYmDkMRoS4O3qRNSv3CQ
clGC1HbowW4ltwDr0OE2lhapT7b/4MsdbrcINYJysfoJGompCkPGwYkvo2wV
yH5J1jv1yeDp2EoYr8/We2TD0g/JMRn/NJLsh+RWls1gdeyNVqSvOvlYAVO7
QY86na8yRMO8+Zp1kXT+PQvriTPYsi4OdtxBam7TBm8XR7qbnDQSq+IzpL19
LA4hTdhBix5MKSnAyVfB4ii1KdUGFXqX8wdS4bLmsgyt3WDzTRAPyRLB0/JY
MreQtlQxstWCAm17i3wm7SlM/zn0BfFA2g1OpUI1Xm2pTsqBo092o44jsqRL
jQWYgkA+XzOlvirzmZ6i0NM68wvT22IcWFIbvx2yeRNWjOWanHUfqa29EyMS
meJ1gNsEEplYsD4Exa72soOvC02zOnKMw7gtGEqy8vrHyzUczgyJ7EYbw/N4
Z5sVXjdsy9q6E4Qx3A5Qh5SQD29d8g+W6YdMzlxS4JsqLWrsIz9apJtMoofI
/KD2pdPTl6hinr08HZoqX3SmaqMGwNZ0PSL9hmzQvYsdoPgEjEwSapMaznbJ
t9QeQJ341nIgMDbltFxwARvQjdIFrkCHkAUkErraixHbzNGED9JQxpL93EQh
9Qrnlv3142AnITQEYPRyVv+BXMsgIhiuvH3F4qTjoLOw+G0eJ8xoDQygfQPb
Ooh5rSfRlSrSYHWkEJViPvjW9Fufc2vGaoUHeIFV6MuXplJeFWYU5U9CVLrj
VtsiDNie2VIBJFu9LuOCg8RpOlZTNZYyB/aGUVyqKF5I4viwFuzKn2RzG2rI
faAuYbZM4/HoE0XJ5HBZGmMA8RtiI1SHcyTxzURnWYkaxkNLpV/X4x754rIW
1Mcv/obXxcTxdcneB0sitsMNbZQILm3cp387Osz5gsr9UFcy7HyIpznFKO6s
iMkpsfvrChNzChJvhwk8Bk4p1BWHY0eajbwwfbZ2sqoqpUHsrlirtPiProkN
zMYt1bHJYo3PkDPdiiCjTYeI8W05lg8wcbPKSQbrgRkpWy3Ne2NDXMwCcJqe
NagZkVG0EyxW303U2031JzgTuFw3q3UrfI1eMwV99RbiS9u7E3TCsGDCqHDk
DTNqPb7EhkWJexTLJIW29VuPwA6sCzbpxNQ2A4/jXz4e7GH/jIQqjt5JTiLn
EjXMQK7HcUJk3uYGns69ZTxNF5GVMvpc3ARcuFdNouJ4oOR2PPxy7qIbjrKY
1GFC3Sf5hYs3jZDn29smxEqsvIwQwjlMEYq8oFLE03SVUkkPbm2NKoOvxhB8
ZNS6zIvz0UvoqAqUqGzIkmu736Gdo9s7tOvho+2JrwphgCYjcow4tM/LeabB
UYc1kzPyzogWoPzBVkoAOj9bZ9RoLz4/WhGfxa6Y4tS8xYvVul9b10s9CuUE
WVPHjnZ6cqSBRvafoayESQeTaPmc3Q7aLVQKiYh+HzeQdKdCteSQ11wUf55d
s5pdc43nsMjaqEtB+geUQKuKyP49kIHVEobgboqsuS6rD8kEZrjOZ9jW22/E
9RmSuRel2OXJNoNt7TbBqkzkrrMaJsjxUAIg1X3ojVG9gbV+ZItVCx4XcPdQ
1VlgURv4Y+blZduiIs0XtXGimGh/f+Ni70Fre9N0rT2O2pZ+cb97jHUGY9kL
doj9w8Wy+rYqqd0kwusEixDOYflAQt4UmZSMs6tAsG1pbMpNJkm4z+oSw7RA
HSYwoTjPVg5cxgrYNzrGAKSUR5UHPoijGzKy6wlIKubaERXE4/7nsv6VWX+u
6092Dt+e7Bqv0lBsKHjI5mvRTXQM4sWl8S4Utp+hbIYsrJI6dAuoaKNH3ruZ
iMjvDA8e0LSssIYfigms+YvtNbTmlJpHMADcoyU5fUPnVZMcYMAkxmEDgwB6
bbztrrPFYsShtcLFZSTyTtcZdoGHg8ShxskJWfIm2aYUHSMuz+RFIcJr6RHq
XQhklJ1ldX6BNbRY1kLGicLeFAh5BQMXoKs21JSUG4KzLydJJ7CvFI0yz1M0
ZpYTMtGY3rOoz4nEMmN5xifOAr6fPH99mDxniaqYcvDcq/xCytp8upPPinS0
1B+wdQJ8cLC395jrSj58/GQPzRxr9C9n6OeT5/f5+f0H+Nw0z/Qbc7Mc6yBy
l8wJELFMTAToro88HOrCvFzX8rkY9M0ILo96b1OoNIrVVIUcftlVAxFJRYt0
ki2sZE4iZ5VdoGANTMGtuZlB4V3sGDYRnif8HFdLtlzSSKosNCtjFZ/UPqyo
k3NtSvK7EHMU6xGjv0JMULNnoTQuxfk4oXzwyyxuYyskNrhCeg+KjvfwPwO/
xYz0s9MHj+BZWflXH8Kf1p8NhAMvmYjWecVoEzY57vdNUAZ8Z0H9URb+PdeL
QSjkva3yqxRwtC3dHamguqryZVrhVeUXqVQi65qwZiUUdO2BqKCuJMtAPTRH
b/EZ1VID9LqkOtYoZ3iPGmrffDupnkzdKMlJkQywx0cGYksH5ojP1I2myNoM
gZVmSJMpxFcMRfDeb9mEpqhtQAItT1oHAwzeIAvWOCg0Xqp8uAF5K63QlqU5
T6YyHblf/hfA8mB/74kggRgskKQAX8J7U1b1rsOgArKhIorNKAq5Fl8rxj1S
xjIyvjq0XSO5NF2jgaShG4ut92riWbxz2tQQXwLZfzlZMAFHYiu1swp+H19B
mxPazZC4yUbmVbqecTFHkieZSmOFzgJJZkU5CQDsOdALHIKNFTTCjG5/Ld2g
0LOpBJcXWJJ0yv9mrd4XJgxVpHDMJWyarywGu5TzBs96xto4V7KDM+NNUA7M
D4n28+Jrzpll6UyM1yx2pWrRzhkAAHggRnlZUdwQentJ3yLhTCyHXv7Bni54
aHAmi02Eh3hUgv9DQfxViXE/wALYOziBwexBp3TU9QrzFxIp4akSFok9Bblw
lst1kUt49QTLtqLlspzmFGVxUvgO9iJ71pmOVUfmU0cEly0/C/J9IgMjM6wG
dMKt4G5edJMKwjx0wV+nm5pMwakotRTpDVdojTZ30nFX6q6POQjXowWIklCL
Z6K1GrjI31xrzZKa84/17CJLAnJppAEIL4vm0okGA/cVRQ2iBk1ZktmGiMss
my5SjqbGwOw1qZASVKf450vC7oAoF1wB6qL2BV+nhrQRSQMyCbD7yUL0Lox/
UZL9jPCJCMglNyTnmtHaRhv/PclspwjqXJ/WUp1RuqahSRhpoIqYeYEaucTK
pg1HY2FLGb/DIHMNW6YfLXJbs7KA4Qda1jgkatb+spO/yFDv2tgTuXJ4pHRn
xT/KDaEvWoW01KRonGr0QcsTBYXxWeFWieBynZZY83fEan1yEhcmFshwyPRy
RSGUlO6IAg0JgyQqqjfBKK948rpgjPZz3DznBTcn64SUeKixtjLFUpQbkT48
xtRS+nq9ohg83bULBTbJZaa3SGMg2KC1QD2Py1brukSYAhEOXRIs62q/9aFQ
UwB+mH/IiMVrnIQMQ6Zq+mnrBrLhRKC2BUROhySyBHeSNONI/7dxhkgdSQTD
YJtWDfhWyAfx4j6uBBSMKYNo2xFO4hxCZeliw9lXGHaJnNqS2I1fDvkZpzmX
jRXqC9wBtuAoeg4DO95SzIcanj/d6Qv3wGCUOOAMEzZDqePgvkQZVQsOtU3v
wGyz2SzjZDtck8YvO7yTK+qquQQagmBoNousvsyoIB5w3GUGdEnHLSfS0Vtc
/V6UEe008T3pdDUOnUK13maSyYC6Ap1G/XNdr9mpJlQU9MgL4y4mygazXuUZ
2sJ2xwI3jZVhVEGIMx/WM45lOqCKXhjDexKWnHOD3GdiJ2BqnmM86CW/4Ult
Xa8RNh2fWgG0VW1mnZURZ3ckLFHlH+Ja4+S0pKKAWqhbYg37vqdWlfN1Le1G
Q2FK/6rbambgJqjhY4xljCbp+0oWhy+wxuJXEugM+VAwpjkOWaL7IwWRFcD2
itbMAuLoUkcozGYocv2gF5OWwEDpmd52NuQdrEqQbkkYuachC7imqlzUXnxq
cSLVSGAxJRou4DuJHuHa9MyZQe4H4WZ6OZTgnHfHR29evTp+/fz4Oe80xGLD
HmflCo2SshoWFLpHGi6oL6lMHVQ5mjGqn87CEIhJXMqMez+jZQ5p99DfIiLb
uBnOFOQj6sElAnLjk14KiQFHBNw4i9Mq46BLCfQTlnuITQnxEsx5yzvVgN8R
7/xz16gsdtIQ2CEwkkUQOswDOIQTgNji0U8CrOl+oxNcqsFJ9Fe3juquTdyR
2XCMC+S8KoGxdk2iPyE89ZugS8s9tFK9MPrY3RjMOyTA8dAtrZYkCZJUvXmc
9KwxRTAqNKiNe11KKILxOWggVP57pv5BzTWSOEHvNmk3GgwhZF27OKCV01Ij
FAOvTgH2RYtlymYX0ZScBSMNS2vf/zA2QWgnlVQ6vAmNLD0uiNMUrVAUcoZa
CWIurH6BqQQU7KB1GPjrSxAJUG4qVUBRL234nNUrvLZAuamVLVt/xB7dlGzE
w2A+0mHEOopYQa7r013Z/kWZLthiZm9pjFDIDontGHlA4zeSoHqNo/sgCiPh
AgshyK9Y+TOxBDKFIBy+OFKaxtgN15CGPZJfscFp9FZ8DVuuJqPnpkZemlMu
Q5FexCn4PkC2L7GsnV/RMbRjMXOeb5Yhx3PW7eETHMUMlhq9m5tDisms8nnO
4dMFqQLkaKUbOl2DsqXeL9RDtRn0kO3KlsiJ00MX7G3iLhMTFRHqBcYb8uJx
i3mRRUuIwJJXMWC+9QBAHU3ZMuJzPTB1yFlmyu9ks3772es3Z2Z//akRrlw3
nMlmQzbqrTkBOKbKH9tkDke2+GhUtgPUPZ5GbX0DMtEXr0CgcMJj6Aq0R4xh
SzLoSmO/pGAj5cr59KdEQvSsA1dVAk7NEthHsY+XGHrQ6iGBECLWSsGprRLg
xOzFudUuV0vNEqIELJHAyhUic8SXgf6WtYgysWHkKk+TAZGbJoTQDKj1A4Du
8OIira7TxcHevphP73BuIBM/dBbUwC4XUlZV3UzkwLb9XPl1chuYojG+kCJs
C3OhWVIYuo6oPCu5Y8e0IZkfqTYHzIdodZ9fMAOJfIaYzx07HPfbliL66Dts
1nlDMSDEA+z6mGDUQ7+PcPOWpWgETuV60m8XYmU0fSUsx4uGjXtNrdYVHoma
gfirDkVsOHYwpPtRfPAcO3gzhfQTo5Cj6Xic2ku05RoU0yz7UJPl+1Q5TGz6
xjYC8mQ0jZ58pgNHczGqUd5Ezt6O1MgFnnet8gZwcaGpKJrkV8oQGCCGfmwJ
VWAXWEqFZkRRIhuQockhqsmb6GzTJHKEsSUiXU5oHDQic0Yrht5bkzJSc2ai
PsD3ar1AM5K6zqUxlwZQdjuqORjzAk2pnz5h5yR0Sh2C4DVk8YGikUw7unBc
JBuGIAG/AcfrkfIz+t08/8ioo8uT4A2UMFpRnwCVarPivemy2ai1RJsOsxiS
T7gYcmGMC03phLhR/XmOANCqtKyms9LOEW9AoJpMWC16wPPl3droCKQIO0uF
NfIT5MlsMadUQzXCtjbG0srgtyz9gMg5Z8ARhRpQJwh+dKK1cAdDzjncbfHq
0Ocm4I0QDyHxbhoPz/KrltilPbchUUutHzritXS0gmH+IYSULYoEY/H+CyYe
KiaiRhGMHNJhxhBBg6TKg4iEronR6eVybaBpkEI7E4vkJkzubTLVP/h2xQzb
+XQJw7FF6kW2IC9rQ74S5dxXL9lzsivcDYflKBP2bfLIMYuThMSesHO7yE0o
CfmhYLOzWpzquJE6+tnVF4FUXNImO+NlH7NqmmNPPE8RKFAjWRfXaEviExkb
/tUIzWJapk6Mi5LtKZbgoV+19g5iTya0IVciZIKcx3PCmVm2WjcbycTm06AG
lYxzsaqdEpBRtugQtbG3+QV6KKhFYQxAgWq22YgBlQMCiJw4beYooyfv372s
d8UexxP8LnkIrRdleSA6xYaE3vAYVLG4IVJrVM4qU+OD05WFaHy9cUMNaELV
du2reuk+K3I4cn0yimUgR3qTfmCPELK07WMzgZTjzjYsRuk62f2ju4pjQNa1
Tc6lvdjdDbvHEOUFOx9Dj26C4oLEdHM47E+N4IUrpxhceBOPCm2uNpaPKpPo
8gLvAWbSxPyG8FpNUtIUyJkXcXATwGOvEl4z9nabY+VPha6PW/fHz+P7rK1A
L5xm6RBdYsB6kP7bACO+3HBPQbQqpijEMfnDGv/kxkIpQdpc6uVkQntEUS1n
2ccGRHoOoSdbISnlPgMB9YMiW4S6G2cvT/UeGgdyFA3mbozDYr98UXOXAK/b
4mrG0uRngUKb1lOy01A0ycZ/VfeMzdK6JGtzRVsQuGpsVLsirKTW56CYLgSa
pIIugVIjWePqoMSr1d9obbvinaRo+AXF7VGeG9fhJVJPyEw8DYNtYdQp97SQ
lCmpwWHn56vYmbkXdhJvLvAjeWcYKoJsm7EVAihSj8TRXhQdbqHXdIdv7TVw
XXSBJ3wOzlATctCin4IjzvVY5RosVUeJWKSXBiTL30g9dT/y7ZrgJRXZJI0e
1x8oi/O78JZmL6MVLeGMM4AWaRFX/2fBrYjqfRAqceRDKV9X2FVuE5trEg6O
pfB/iWY08hUb4XoX34Y/xxvwoEGfkoa3ai1nq1wiqa9GizCBr1tDI12MVpwr
3wd6kVRi8t375tC1FD/VYbmemm3DyMa1UISOB/r8eZcYA+3eqU53ItFzhG16
qNuGHoq7q5SWsU7kVs/HWkRNg8UW6GFFD2ZZYh5VpEeaVLPrbLJM80UkjUqT
uLRPy8xD+RF2XNeqk2Iv3qkE4gcjqK8It2W/rgPKkktteF6VFprQ09FIkCkQ
qcPIRapm1WuJSvrkWvZpSSdn2ra+LUHOLcj4LY2TYyOwtt4SFkepNAVXueCv
XEjdqztiEp0ZN1pWW1srJFnWRhGB7nbg0GAZH42Lt5tJmAmLEAxn2z7yqy7p
1MVityPcKx7pUENBh/ZwL9OZ23pF2ufahgHxCgQeGhOcDyS3lNTy1RGldClc
uBeioOtJ0LIjga2jjRsuzIjAUW2ecO5wFYG88VEJzrBicvQhUPkuGmq8Gygc
pzEtNpoWj3W80VtdVm7QvV6DXTu/ECoD4NDZMK7Z4sT6S4NHR0JyE4yG3bvr
hqvJhV33ZdXJ3oOUzSum1uEfsg0ZS/ttGv6cTILELMVQgIhVUXld0lMlL9M/
IfyrOwjoz8MG4fOqcjKpY5ozARkNPHQDUjbDhRKPDI2ddUFtvzHfkweQkWU6
HzpOx83irOPCKiy57WKUTYVsc0k5KwwlH8vJY/qOPm0GDUdO0ZNoUG3KC05k
iVcgtOq6TPw+yqJub0RrLrGAFYCiVLzkoD/MI9W4pMVNJ1cr4dKW5RgkNe7U
ONLxmRs6UrAwzTzkdQzaFqtBx2SVHHbNWgwlR04BLJhHF73KpKgkLASdqMNY
bQvCTj+rYmsGJ/IlCGhDbESG80ar8AgT8TC3dmheIPMM51P0IH0Tjqp7TF5t
zZeTtVwo1zOI/1AI7RSr05FBg5ZvbVT2AqPTN69mLciQNYlX8eXVihNT6Z9Z
cjD1mYUF08mNy0Jy3Ge8Sz7duYafRy2j2+dgSo6tc4CX5cIrv2jmFPEphCph
fCkpB2SRwe3k08xV66KQ2BCUfPHLoZVrc8nl6v06MV+LlOzISSzckKr8ibWo
vRwMC+wO2F6Gay2j/6vuMpJtyyABj9Rt9gB0fBbodKPsHxg0Wa7FcYKeFky4
Z7JAs6Lo7ELcDU5YRzNSvQBJHLJGS+Zw3nPgaaaLMeM2B81VBNCULoYE8gB5
Xkr2M6o2RPps06xoPVSKQL6th5HkYOsX0fqZwhPsgaunVyDXqNGfAe2HUSPB
XGa5KFeUmxEbORYYCVjOXc82fFx/ulqlBFPMw4gqUXGFPgrNCfX5vB9RrIpo
bL1rqkkICmHeFW9W1tAHSizy471l0gxRK4VpnRuJ8fbZLiZHcwmM8MqvJFiu
TEmRlApveDrGUFIIqPV4t3v+6YLir/vvO1YFsYD2Qi+n8DvvUTBqRRF8peJT
x33R7dPGZHyXTMUyF7tF9XtcdnRQARu2H8bYxwDS8GrMiizgcqKgPEioWlXv
KkAYAlmIyXJx5WZzNbE8wNBYUNs1Mv2mfVAt4rjzxcr6AOUJDVdkUTruPS1K
wb2P5Aba7b+5WKfArZtMbiLyF7J2StTUjkQK5JWr1xP5dbclf3ikm5fl2LY8
5NSBtIp+ZE2p86qRilFRuUWDRDewAwySncAfYSQJAo8a/LQ+0EAOrHSxce11
mqiqtkKoqmBUWahouWxQ1Ots/USyuUoMPcNi7sPOS95OsC6E7rkZr39N5mlK
AzLmo8DiWHUXUy/VzGhDWZN6I6zDi4eXtuKoXKRHIXFqCTq7sWepgtqBFiDk
cdS1Ndtmk9W4LhaE3lLJ9tikgr+5cNLGuiYZsMXGYHAwwGxJBeYQf06ipJ1U
kxxE1GrTmpwVvC2rJpR3wd9fxLEvXHXPuJSI5T29d8/CCDs93QPAKZK7NpK3
1oMdEu79c/1x0A4K7QoQ7tYCRJtK9QoQ7pYCREu0PLzZIEQ8PS8oXzUYDkTi
74G5q0UjIPGhDUxkQ/kSPfNlIUWBw3GQTtd3BGwaozXwJ1vPG+8PGcpUEE85
lnz7PU3ie2qMPLHnkGyr0W1NuDE4T6ebAP66HZ4dvvG1Nzjei3h6XfQjaSu8
JiqEVFMGlzHxU84Qeq0J4XwOE29dIzTgmLZbol3LnOXD6zg0FL4t0mXL8O0l
mXPfPuMcJSfQWcfOm+7FiIzzYp756jJ4raOVioPXRur/P81d224cxxF9769Y
0A8Ukd1VbDOyQccBaFqCBVgXiDLyyiFnlhxzOUvM7IphJAH5jfxeviR9TlV1
11zW9luiJ0m7O9O3qq7rOapFiib0jq/G6ZLQ3rCivJMyWmcGWDaVZQKzKfVb
Z7zNw1SF9juJnBd1I00UPnQx0uNSdju4s9iihsm5loNgIbdC4tHjyuHl7E0z
fhbhISC3284K6wKDStOh08tqpugZSEgQjKGTxgh9x/lYleUKd2+YSSGZL5hU
EPN1XTTix/34+jxbPL5OvjLz4TWU3PkjsvmzJ/HrkgNImUqLiMdPgNOQjzYS
MUSxwDGJe4wuup7Tmsxd2RFAWmgvB28siS1Y4RVRDLYySAURhnOZ86w6N+Oz
sjoCAQD9sVpVDTECUagQb8qQOe5y0kTrLjUXW+pvTPZREGX6gNkxaSsTkBOp
hGZdofEDIH/m28Uk1lszKsMmuzkK+UXw7ttdqaeOlJBVSGQrvSS6xrW2LDxk
gE2wC+I8DrvJEc/ZyZRAWT0xGNXK7lKzlEoUJmC9lGhUmFzttnsKgsSu1vX4
EK8GlARMVJZJF5WVWF1qNxG6mYIlLHT3fkGZA0olS+shTguZzYQ+GGWemIUe
0HrYotwy+NZ8OT5EVGE+VZaMBzkdmCRePTu9XiFDlKeTAdfciO4A0kJrJt/y
uV8r8dqJcAc3fvdgzDWxsX0vTJEX6Ww+bJr//OvfW4PF/k597PiO+N8d/IxF
7nrJdUrpgLHPKC0W15XBVtXC4zeHrG3Ybk9bhEHRqFPZMi4dMkXCwE1A/HKV
9YYU2K8FpBpzL9p206Z+mqijGHTjmqV1ReM97x+ZenYgquAbGbJq+zEXTnK+
23ZDAAHX/Uy1DrFVzbsrLNm16KRBliLUhScU9+3mtkKGK/G0ctkVA5DGrAAB
ygvjA+6kdCv+Ynt15JuUGdsh1ALrPagZYf1p7lmuKVEPMpJon980NZbCFT7C
nbdmYQVXikuxSGGGz5/ZX0JJkLaLKio1baTqa4VGOp2zwEdbKSpGICJsEnT3
5u6yVtVDoR9rTeM8SGLx2mmYj18kcVk4zfMZ1lCuasschH2/4kCUqlRrZ8aH
gXqOi0CVPqWnFSfmRumtcos/OyFZuab1iIpQyb7Hw+AqcBV3lqcIinlmLZjJ
6lJEEotOs0tEGiU6XppdfFyx9qXMaIRWi2yKsZFRJY0O0Mu4qhrUlWJNJKGj
rRmI9hpuB3OZqG94VV0XZ5v2PrrNV4ddyvvq8rWzi0nH4IK2u/UrS5ZFXfV4
wd6msG3ge9i/3dxiGdPj4gvgIHTpkVJFZf9/oQqn0577O7vfUWml30lr+3jY
L1pjwZ/Biqz2v/OCiA13RXtbaQQmbYtrOBjpugS9W/ubK+Qtgfo93FqjKFLO
ie2yn8/+jZFR+7dVI4UKx38+Vh2Ykk3rqrjNFW7eSxwEVfAkpPGiGUT1JxWY
ff2X1bXGPvAljUOyH1MTffsOrdWyrGtxgMk03egWOK6gE0blWEp6rz70dasV
Owc4nwd6McyDheLy5wg3VfYFcR6jGiM2p2E96F5O7hqL2GBTF5cdOvr1hMHW
ZL9pfH2vOl5wprVAS2wbuY0eA8KiWXtrmaWFg9q73xvRz8U/LuZsHTKDw7ex
5ZuRLX0Iw07JPemg8zMBxouTuRlE0utGuYuETQG1rIox489uv6s9fu9IOlS/
mL0qupudUtv9vS6vK+A9YqIXmIWaIWp9EKsyt71OKmpefI27kAPdAzgsyRbD
QiwQuWNNZ6/9oXGoBZIyRpSKzZVIf8s87Dryvf02fab81+bsS5qcs5KUHjo1
twbNh3CONKPipoALdCRWmRVquL3K1lKyhMylUCXc9nmN1OypoxjI7ZcRS/TM
UF8Mdjikw5L3d2Kecfd+rm8rJeEm8oMh/JwzWb84j3bt4k2TGmekCq13RfXF
IUhtxuhd3+lMHJZGWiNrrpJuYN0npq5GyyVGprT3MjMpAxpMX80H8WitRROc
3WFol0u4p9SYh6VwSirmElmQR5CGsKG/KMvWSGENR8X6mgxuBxCq68y7YVwr
3ySmlWdfPfsL+l8gGtnscSFW1tJvc91aLjzi37seRE2y/hArUEKUeFjLjvRe
GvVJ6A65/CqeaQJKFZdxvA7TWR3BuvmwWX+w8wcIveqq7qi7XkUtt5Eh+U6m
qOUWWlzXSZBfbQqrbuVRtPAdYmS46CVId5V8GWtzkECB6V9fmLoaJDu0Wiwo
FkGU2ltc/JsNUycGbdd3Ucb9Sd1RYvRYb4rSW00hvLOxMTol+Z+W30M9c319
XUmXYstoe7+5dabNrV0uoy7i9beK5+gGd952ozBn2zjiy6I9GnhUTOSmrg+8
kyB1Gdo5CPcJb0gdtRg2uA4K9yRXG1cbIJqj/iBKEfRZ4g5sR0thdT8kDpSE
pHOUV/n2mSuvBE0xybklBvPDzuKoaRo1Eps4YJUWyqdP2NcRbOJL48BDwzJJ
2GTMgmWwb0OG/ca2JYF2TJcox9wtlCI3EvZaiB+5JQCbvEb5H9gGwbjFDbIp
GuCyLXFrF6/TZbWc21aaY+pNQTwpn8yjFAAb7YP0XhjI5FTUQnDQlD997d8I
L8FGO56wlS9pcCzhXm5WMsfNuhz0qSeId+I33K+LZC5dIoy5XrOxPDFshUr3
jrU+dotLwUHSUk7sJ/bEL3YvguIWyFx9+KzWDvGhFqhfwT+JNtxttEznatVZ
BJwnhZBFPEU09rD6w9JgBuB8coveTCeiTM1GwUpmuwWJs18UvI8jBVR9p0kY
yYoJZUXcl72BFUqnLdJydp5GSsRCphH2vpeX3P19VbThskWIYt5L42WNFPU2
4u8aek6xqWRqrXoAAWG0jSryVl/R83XsLgIU0g6ILDnOGXyh3kyGqMiQeFrH
GJXo1oQApZUDh52p2PgGJOAfcn2GkzI7Of0Lwxy035aixFDK8484QuLgYdMy
8YicGNXbCemZa6tJGIv9WLWl45eVG458LmJOqig88b1/qQXlyC/7rptPLkXm
ykmqxsndfMZaUbeFIsl5qXrXEtcjSp4DgWrH9+ucBSU6NdW986R8jaoxqjZb
/JA0mIuxjFl+xN/F2m35T1g/2sGySW/iDc0l8KFe8XoLHwaaKP1kpFFMHghK
yM+0ZaVs5CCglwS9Puxy8FXbPhKW1ktCZ7vGU4cQloT/s8gxssR/Jh6ZkJco
LoxA3m3KfgCQbErQK4s14MTFfnPU9KydlRtG8+VOT/W6CjDfpkyGjEDYTHuq
Vp89joMuhxwDGW+PkZ9k48otA+sGqmerCg3xZC20ljbnhPZJcaPfI+ivIj49
jL5A2KoM6CpwKY8S6Jh0XQcg7+wA0tmGCdtzsI+98C8ANx907HB0hS3Zmi9q
uDXl7sr1A06O6Gh4f8kNnhx8BjCY8VlvQKS3grGOpVA/oL+9eTIXb9+cv7/w
LSEIwTfl/aaWXAK68vSfGvzrKAlXEuTvE8Iz/2y1tChbLhRwY1ySP+9jA0pz
j6YEmVzF6nAuIqNie6fGqrEAWNNlDjfMPRNZyJegFwDjJCo9f4HsY18IZDsH
IOpsqQbq0weFUkCmctdaMRz4wuN/5h1ZZuldWHpkYafm96R5Pf7R589BErmd
r8FzNTwMA4zX6olBpykxnfA7HQUBeZUGnSJTBE7udacLSA3izpam3TG8MEqJ
kScUB4ipDoavOtRBEB6hkKSlDFfypdMrRYyWAYCvZABWFYCz/Px97H85+yVu
XTx/lbVw84fwiuE0yRFrxhuRb6EOrig7RLYICaLsae5wvIHKSqhj1pBUkHYJ
qYpwjzciwzYIDcvp69Mp8hWtqPn4RVyjwggz5CzxkAqLNNPx74iy3iYYrJ+i
ociP8al9iHa9hg0IcgvsSPvjyK08QSR/wsGchPCTLz0DFsBJOLHO4aDkDxAE
y+DjY9iqIZyTGQz/ZiK3aMv4Awbyn54JjlGK8bT41svn71/EX/W4es2rxOcT
JMJPDPIozk8bpVI1kq6dIxyR9cMZLBpuNY7T9aC6rv0fLKdr9fx/WFLP0XLk
j+Npui5tIULgCa5TolmhRQXkBStxMPztQVriuYD4mSNHAP/uvhA3Ml/NGa+U
UzNtdOjgv9/fVHnjfKy1bhSJtdiGv5oL9fDwsMTZWG7a66dFhyoAxnueaoQ0
97oS++Jvas29RQF5CVEPz2HLOnqDPFjjmhr2nxWq3O9zEodBJaFjiB/Gca6t
1mF749sLa1O8mQ5KsIFR2Qyw3+qhd8q6Hhb/wbsXZ7N3Gps+ADJTrRg0mVP6
G0QLSB7w7ZdfPQNuGD26PAR5v5swsbwyeeYFK1CgVhfFh4ug7CY9NuPislkl
qpvlzDEU9dZOfGGN1EZj3D3jLH68PpOaX2SemBTP7bn3vKnix4u6Se7t+jEF
CfMC6Z2891AfeC9Er0CX3/MrTWieKNafRBfjz6f4HNvW3/7zKXxapD8nf1r8
wT/xZ1aPhbf53mwpMAc1xRAgm28TQLO4xoOfCYpWN/k7/Aw68A2cgf7PIE/w
EaZ+h5+9ilf5adRJg5/d4Ya/rva+jVW8s9HcUG07PTP5WUoS9H+GqADMlH2D
1G7e4dusy316JUPchihKV7e4w88URJ7hI0gb0gWkFTstS21XcxmRRuuoJTqR
Rp1evQxQwYm90vFgCxX81NSO+LqX6lokxCWt6tQETFQfN/Uloj8QtLXvkuDQ
O63DABgz+OsonRIYuavvgPTbf+xS7gpma/DEhb1NhhpG5L4yyrd5GFFdaI+/
xDwGA/HhQ/pt/O7FjJiAmzb4NoXedwX8L35Lhjg1CmG3S3xo1spQ/7P6w79x
GVE90sKvQGHiU3bFYkrIZB97HyaZsJ2kjyKHZ0BzDQ60ot369mHUfUULHBVC
jWwriOe1qnzfbMzq7HoQUyx5Z/nPY9qUokucwHsX56VAu6aTJ5o+kN7zPXSo
B8Q80TgKqwMV9cf5aU8ODqIjwK+ArXA2tkn42Heklu56W4/YUCGXcEMKFhAs
To6Zj1DLCDh/uHY3mflJnwIpecqnOHnhA6cY4+2xp+WvOwQJTn94/cKhQEYV
VrdJ8vtF8/c5KGBZ4DCT6lpYRB3f2btD9V3Pc5RDWCuynZRoIJfDFdQj+AcX
RZ9LIktjW8p0L/uXV62OuA7nZy9felpKqyIYPmy/7MU7tZC6Uj0kmRs3rb9B
N6GRtNfcxsfif3Bj2RPzNFMWw3kPyAebGYAowyXhNjfIaE2YyKbryVkT/csN
MdfydnYdmUotHqYgiUjQlpnWyncsBkFLlq/zjX3ejYW9Jr8+/rvK3q9lyIZM
6Br0mKCYVy4UKow9h1s24o5yLskFYgNc9U6ym8Zy4KDJMjEfX7UtCmC+Pj4+
hk9MB8rUAMnU5Q6KJ8+bljMy3hXtPOjvj788/nb0+7J4XGxW8fw025v57LEq
NBdPqGR7guhqPiV8/ezZ11INlXJl2Z1BVYrsefQaFxNSlIQb9gn8pdnpFXD9
1lV5rbv58UTS7lX5/QEBbA8+B7MUPNkvBnFaFnezH6KGv7G8r8u5Iv4kjL1S
mcAnzIMOPLHyCGGVAyzq+3jOmFVkSCSC47KxgDhTpETB+akCGMQDrhiW0WpF
dmoMEBEhN9SKfcgFKSMsk3xX/Ko99RKoIrQJfE5GnDBVvJJRsqK5nT1udvQ1
0Iz1M+I8Z8IEVc7Ot6wyeI4DF/VIibLasqZCiGscX7HTap6tNFti7phvI8VE
VC+02AWDXNYFi9sWq+0y/BcQprPGSrUBAA==

-->

</rfc>
