<?xml version='1.0' encoding='utf-8'?>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.3.12 -->
<!DOCTYPE rfc SYSTEM "rfc2629-xhtml.ent">
<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-oauth-v2-1-02" category="std" obsoletes="" updates="" submissionType="IETF" xml:lang="en" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.2.1 -->
  <front>
    <title>The OAuth 2.1 Authorization Framework</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-v2-1-02"/>
    <author initials="D." surname="Hardt" fullname="Dick Hardt">
      <organization>SignIn.Org</organization>
      <address>
        <email>dick.hardt@gmail.com</email>
      </address>
    </author>
    <author initials="A." surname="Parecki" fullname="Aaron Parecki">
      <organization>Okta</organization>
      <address>
        <email>aaron@parecki.com</email>
        <uri>https://aaronparecki.com</uri>
      </address>
    </author>
    <author initials="T." surname="Lodderstedt" fullname="Torsten Lodderstedt">
      <organization>yes.com</organization>
      <address>
        <email>torsten@lodderstedt.net</email>
      </address>
    </author>
    <date year="2021" month="March" day="15"/>
    <area>Security</area>
    <workgroup>OAuth Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>The OAuth 2.1 authorization framework enables a third-party
application to obtain limited access to an HTTP service, either on
behalf of a resource owner by orchestrating an approval interaction
between the resource owner and an authorization service, or by allowing the
third-party application to obtain access on its own behalf.  This
specification replaces and obsoletes the OAuth 2.0 Authorization
Framework described in RFC 6749.</t>
    </abstract>
  </front>
  <middle>
    <section anchor="introduction" numbered="true" toc="default">
      <name>Introduction</name>
      <t>In the traditional client-server authentication model, the client
requests an access-restricted resource (protected resource) on the
server by authenticating with the server using the resource owner's
credentials.  In order to provide third-party applications access to
restricted resources, the resource owner shares its credentials with
the third party.  This creates several problems and limitations:</t>
      <ul spacing="normal">
        <li>Third-party applications are required to store the resource
owner's credentials for future use, typically a password in
clear-text.</li>
        <li>Servers are required to support password authentication, despite
the security weaknesses inherent in passwords.</li>
        <li>Third-party applications gain overly broad access to the resource
owner's protected resources, leaving resource owners without any
ability to restrict duration or access to a limited subset of
resources.</li>
        <li>Resource owners often reuse passwords with other unrelated 
services, despite best security practices. This password reuse means
a vulnerability or exposure in one service may have security 
implications in completely unrelated services.</li>
        <li>Resource owners cannot revoke access to an individual third party
without revoking access to all third parties, and must do so by
changing the third party's password.</li>
        <li>Compromise of any third-party application results in compromise of
the end-user's password and all of the data protected by that
password.</li>
      </ul>
      <t>OAuth addresses these issues by introducing an authorization layer 
and separating the role of the client from that of the resource 
owner. In OAuth, the client requests access to resources controlled 
by the resource owner and hosted by the resource server. 
Instead of using the resource owner's credentials to access protected 
resources, the client obtains an access token - a credential representing 
a specific set of access attributes such as scope and lifetime. Access 
tokens are issued to clients by an authorization server with the approval 
of the resource owner. The client uses the access token to access the 
protected resources hosted by the resource server.</t>
      <t>For example, an end-user (resource owner) can grant a printing
service (client) access to their protected photos stored at a photo-
sharing service (resource server), without sharing their username and
password with the printing service.  Instead, they authenticates
directly with a server trusted by the photo-sharing service
(authorization server), which issues the printing service delegation-
specific credentials (access token).</t>
      <t>This specification is designed for use with HTTP (<xref target="RFC7230" format="default"/>).  The
use of OAuth over any protocol other than HTTP is out of scope.</t>
      <t>Since the publication of the OAuth 2.0 Authorization Framework (<xref target="RFC6749" format="default"/>)
in October 2012, it has been updated by OAuth 2.0 for Native Apps (<xref target="RFC8252" format="default"/>),
OAuth Security Best Current Practice (<xref target="I-D.ietf-oauth-security-topics" format="default"/>),
and OAuth 2.0 for Browser-Based Apps (<xref target="I-D.ietf-oauth-browser-based-apps" format="default"/>).
The OAuth 2.0 Authorization Framework: Bearer Token Usage (<xref target="RFC6750" format="default"/>)
has also been updated with (<xref target="I-D.ietf-oauth-security-topics" format="default"/>). This
Standards Track specification consolidates the information in all of these
documents and removes features that have been found to be insecure
in <xref target="I-D.ietf-oauth-security-topics" format="default"/>.</t>
      <section anchor="roles" numbered="true" toc="default">
        <name>Roles</name>
        <t>OAuth defines four roles:</t>
        <dl newline="false" spacing="normal">
          <dt>"resource owner":</dt>
          <dd>
  An entity capable of granting access to a protected resource.
When the resource owner is a person, it is referred to as an
end-user. This is sometimes abbreviated as "RO".</dd>
          <dt>"resource server":</dt>
          <dd>
  The server hosting the protected resources, capable of accepting
and responding to protected resource requests using access tokens.
The resource server is often accessible via an API.
This is sometimes abbreviated as "RS".</dd>
          <dt>"client":</dt>
          <dd>
  An application making protected resource requests on behalf of the
resource owner and with its authorization.  The term "client" does
not imply any particular implementation characteristics (e.g.,
whether the application executes on a server, a desktop, or other
devices).</dd>
          <dt>"authorization server":</dt>
          <dd>
  The server issuing access tokens to the client after successfully
authenticating the resource owner and obtaining authorization.
This is sometimes abbreviated as "AS".</dd>
        </dl>
        <t>The interaction between the authorization server and resource server
is beyond the scope of this specification, however several extension have
been defined to provide an option for interoperability between resource
servers and authorization servers.  The authorization server
may be the same server as the resource server or a separate entity.
A single authorization server may issue access tokens accepted by
multiple resource servers.</t>
      </section>
      <section anchor="protocol-flow" numbered="true" toc="default">
        <name>Protocol Flow</name>
        <figure anchor="fig-protocol-flow">
          <name>Abstract Protocol Flow</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
     +--------+                               +---------------+
     |        |--(1)- Authorization Request ->|   Resource    |
     |        |                               |     Owner     |
     |        |<-(2)-- Authorization Grant ---|               |
     |        |                               +---------------+
     |        |
     |        |                               +---------------+
     |        |--(3)-- Authorization Grant -->| Authorization |
     | Client |                               |     Server    |
     |        |<-(4)----- Access Token -------|               |
     |        |                               +---------------+
     |        |
     |        |                               +---------------+
     |        |--(5)----- Access Token ------>|    Resource   |
     |        |                               |     Server    |
     |        |<-(6)--- Protected Resource ---|               |
     +--------+                               +---------------+
]]></artwork>
        </figure>
        <t>The abstract OAuth 2.1 flow illustrated in <xref target="fig-protocol-flow" format="default"/> describes the
interaction between the four roles and includes the following steps:</t>
        <ol spacing="normal" type="1"><li>The client requests authorization from the resource owner.  The
authorization request can be made directly to the resource owner
(as shown), or preferably indirectly via the authorization
server as an intermediary.</li>
          <li>The client receives an authorization grant, which is a
credential representing the resource owner's authorization,
expressed using one of two authorization grant types defined in this
specification or using an extension grant type.  The
authorization grant type depends on the method used by the
client to request authorization and the types supported by the
authorization server.</li>
          <li>The client requests an access token by authenticating with the
authorization server and presenting the authorization grant.</li>
          <li>The authorization server authenticates the client and validates
the authorization grant, and if valid, issues an access token.</li>
          <li>The client requests the protected resource from the resource
server and authenticates by presenting the access token.</li>
          <li>The resource server validates the access token, and if valid,
serves the request.</li>
        </ol>
        <t>The preferred method for the client to obtain an authorization grant
from the resource owner (depicted in steps (1) and (2)) is to use the
authorization server as an intermediary, which is illustrated in
<xref target="fig-authorization-code-flow" format="default"/> in <xref target="authorization-code-grant" format="default"/>.</t>
      </section>
      <section anchor="authorization-grant" numbered="true" toc="default">
        <name>Authorization Grant</name>
        <t>An authorization grant is a credential representing the resource
owner's authorization (to access its protected resources) used by the
client to obtain an access token.  This specification defines two
grant types - authorization code
and client credentials - as well as an extensibility
mechanism for defining additional types.</t>
        <section anchor="authorization-code" numbered="true" toc="default">
          <name>Authorization Code</name>
          <t>An authorization code is a temporary credential used to obtain an access token.
Instead of the client
requesting authorization directly from the resource owner, the client
directs the resource owner to an authorization server (via its
user-agent as defined in <xref target="RFC7231" format="default"/>), which in turn directs the
resource owner back to the client with the authorization code.
The client can then exchange the authorization code for an access token.</t>
          <t>Before directing the resource owner back to the client with the
authorization code, the authorization server authenticates the
resource owner, and may request the resource owner's consent or otherwise
inform them of the client's request. Because the resource owner
only authenticates with the authorization server, the resource
owner's credentials are never shared with the client, and the client
does not need to have knowledge of any additional authentication steps
such as multi-factor authentication or delegated accounts.</t>
          <t>The authorization code provides a few important security benefits,
such as the ability to authenticate the client, as well as the
transmission of the access token directly to the client without
passing it through the resource owner's user-agent and potentially
exposing it to others, including the resource owner.</t>
        </section>
        <section anchor="client-credentials" numbered="true" toc="default">
          <name>Client Credentials</name>
          <t>The client credentials or other forms of client authentication
(e.g. a <tt>client_secret</tt> or a private key used to sign a JWT)
can be used as an authorization grant when the authorization scope is
limited to the protected resources under the control of the client,
or to protected resources previously arranged with the authorization
server.  Client credentials are used as an authorization grant
typically when the client is acting on its own behalf (the client is
also the resource owner) or is requesting access to protected
resources based on an authorization previously arranged with the
authorization server.</t>
        </section>
      </section>
      <section anchor="access-token" numbered="true" toc="default">
        <name>Access Token</name>
        <t>Access tokens are credentials used to access protected resources.  An
access token is a string representing an authorization issued to the
client.  The string is considered opaque to the client, even if it has
a structure. Depending on the authorization server, the access token 
string may be parseable by the resource server.</t>
        <t>Access tokens represent specific scopes and durations of access, granted by the
resource owner, and enforced by the resource server and authorization server.</t>
        <t>The token may be used by the RS to retrieve the authorization information, 
or the token may self-contain the authorization information in a verifiable 
manner (i.e., a token string consisting of a signed data payload). One example 
of a token retrieval mechanism is Token Introspection <xref target="RFC7662" format="default"/>, in which the 
RS calls an endpoint on the AS to validate the token presented by the client. 
One example of a structured token format is <xref target="I-D.ietf-oauth-access-token-jwt" format="default"/>, 
a method of encoding access token data as a JSON Web Token <xref target="RFC7519" format="default"/>.</t>
        <t>Additional authentication credentials, which are beyond
the scope of this specification, may be required in order for the
client to use an access token. This is typically referred to as a sender-constrained
access token, such as Mutual TLS Access Tokens <xref target="RFC8705" format="default"/>.</t>
        <t>The access token provides an abstraction layer, replacing different
authorization constructs (e.g., username and password) with a single
token understood by the resource server.  This abstraction enables
issuing access tokens more restrictive than the authorization grant
used to obtain them, as well as removing the resource server's need
to understand a wide range of authentication methods.</t>
        <t>Access tokens can have different formats, structures, and methods of
utilization (e.g., cryptographic properties) based on the resource
server security requirements.  Access token attributes and the
methods used to access protected resources may be extended beyond
what is described in this specification.</t>
      </section>
      <section anchor="refresh-token" numbered="true" toc="default">
        <name>Refresh Token</name>
        <t>Refresh tokens are credentials used to obtain access tokens.  Refresh
tokens are issued to the client by the authorization server and are
used to obtain a new access token when the current access token
becomes invalid or expires, or to obtain additional access tokens
with identical or narrower scope (access tokens may have a shorter
lifetime and fewer permissions than authorized by the resource
owner).  Issuing a refresh token is optional at the discretion of the
authorization server, and may be issued based on properties of the client,
properties of the request, policies within the authorization server, or 
any other criteria.  If the authorization server issues a refresh
token, it is included when issuing an access token (i.e., step (2) in
<xref target="fig-refresh-token-flow" format="default"/>).</t>
        <t>A refresh token is a string representing the authorization granted to
the client by the resource owner.  The string is considered opaque to
the client. The refresh token may be an identifier used to retrieve the
authorization information or may encode this information into the 
string itself. Unlike access tokens, refresh tokens are
intended for use only with authorization servers and are never sent
to resource servers.</t>
        <figure anchor="fig-refresh-token-flow">
          <name>Refreshing an Expired Access Token</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
+--------+                                           +---------------+
|        |--(1)------- Authorization Grant --------->|               |
|        |                                           |               |
|        |<-(2)----------- Access Token -------------|               |
|        |               & Refresh Token             |               |
|        |                                           |               |
|        |                            +----------+   |               |
|        |--(3)---- Access Token ---->|          |   |               |
|        |                            |          |   |               |
|        |<-(4)- Protected Resource --| Resource |   | Authorization |
| Client |                            |  Server  |   |     Server    |
|        |--(5)---- Access Token ---->|          |   |               |
|        |                            |          |   |               |
|        |<-(6)- Invalid Token Error -|          |   |               |
|        |                            +----------+   |               |
|        |                                           |               |
|        |--(7)----------- Refresh Token ----------->|               |
|        |                                           |               |
|        |<-(8)----------- Access Token -------------|               |
+--------+           & Optional Refresh Token        +---------------+
]]></artwork>
        </figure>
        <t>The flow illustrated in <xref target="fig-refresh-token-flow" format="default"/> includes the following steps:</t>
        <ol spacing="normal" type="1"><li>The client requests an access token by authenticating with the
authorization server and presenting an authorization grant.</li>
          <li>The authorization server authenticates the client and validates
the authorization grant, and if valid, issues an access token
and optionally a refresh token.</li>
          <li>The client makes a protected resource request to the resource
server by presenting the access token.</li>
          <li>The resource server validates the access token, and if valid,
serves the request.</li>
          <li>Steps (3) and (4) repeat until the access token expires.  If the
client knows the access token expired, it skips to step (7);
otherwise, it makes another protected resource request.</li>
          <li>Since the access token is invalid, the resource server returns
an invalid token error.</li>
          <li>The client requests a new access token by presenting the refresh token
and providing client authentication if it has been issued credentials. The
client authentication requirements are based on the client type
and on the authorization server policies.</li>
          <li>The authorization server authenticates the client and validates
the refresh token, and if valid, issues a new access token (and,
optionally, a new refresh token).</li>
        </ol>
      </section>
      <section anchor="tls-version" numbered="true" toc="default">
        <name>TLS Version</name>
        <t>Whenever Transport Layer Security (TLS) is used by this
specification, the appropriate version (or versions) of TLS will vary
over time, based on the widespread deployment and known security
vulnerabilities.  Refer to <xref target="BCP195" format="default"/> for up to date recommendations on
transport layer security.</t>
        <t>Implementations MAY also support additional transport-layer security
mechanisms that meet their security requirements.</t>
      </section>
      <section anchor="http-redirections" numbered="true" toc="default">
        <name>HTTP Redirections</name>
        <t>This specification makes extensive use of HTTP redirections, in which
the client or the authorization server directs the resource owner's
user-agent to another destination.  While the examples in this
specification show the use of the HTTP 302 status code, any other
method available via the user-agent to accomplish this redirection, 
with the exception of HTTP 307, is allowed and is considered to be an 
implementation detail. See <xref target="redirect_307" format="default"/> for details.</t>
      </section>
      <section anchor="interoperability" numbered="true" toc="default">
        <name>Interoperability</name>
        <t>OAuth 2.1 provides a rich authorization framework with well-defined
security properties.</t>
        <t>This specification leaves a few required components partially or fully 
undefined (e.g., client registration, authorization server capabilities, 
endpoint discovery).  Some of these behaviors are defined in optional 
extensions which implementations can choose to use, such as:</t>
        <ul spacing="normal">
          <li>
            <xref target="RFC8414" format="default"/>: Authorization Server Metadata, defining an endpoint clients can use to look up the information needed to interact with a particular OAuth server</li>
          <li>
            <xref target="RFC7591" format="default"/>: Dynamic Client Registration, providing a mechanism for programmatically registering clients with an authorization server</li>
          <li>
            <xref target="RFC7592" format="default"/>: Dynamic Client Management, providing a mechanism for updating dynamically registered client information</li>
          <li>
            <xref target="RFC7662" format="default"/>: Token Introspection, defining a mechanism for resource servers to obtain information about access tokens</li>
        </ul>
        <t>Please refer to <xref target="extensions" format="default"/> for a list of current known extensions at 
the time of this publication.</t>
      </section>
      <section anchor="compatibility-with-oauth-20" numbered="true" toc="default">
        <name>Compatibility with OAuth 2.0</name>
        <t>OAuth 2.1 is compatible with OAuth 2.0 with the extensions and restrictions 
from known best current practices applied. Specifically, features not specified
in OAuth 2.0 core, such as PKCE, are required in OAuth 2.1. Additionally, 
some features available in OAuth 2.0, such as the Implicit or Resource Owner Credentials 
grant types, are not specified in OAuth 2.1. Furthermore, some behaviors 
allowed in OAuth 2.0 are restricted in OAuth 2.1, such as the strict string 
matching of redirect URIs required by OAuth 2.1.</t>
        <t>See <xref target="oauth-2-0-differences" format="default"/> for more details on the differences from OAuth 2.0.</t>
      </section>
      <section anchor="notational-conventions" numbered="true" toc="default">
        <name>Notational Conventions</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and
"OPTIONAL" in this document are to be interpreted as described in
BCP 14 <xref target="RFC2119" format="default"/> <xref target="RFC8174" format="default"/> when, and only when, they appear in all
capitals, as shown here.</t>
        <t>This specification uses the Augmented Backus-Naur Form (ABNF)
notation of <xref target="RFC5234" format="default"/>.  Additionally, the rule URI-reference is
included from "Uniform Resource Identifier (URI): Generic Syntax"
<xref target="RFC3986" format="default"/>.</t>
        <t>Certain security-related terms are to be understood in the sense
defined in <xref target="RFC4949" format="default"/>.  These terms include, but are not limited to,
"attack", "authentication", "authorization", "certificate",
"confidentiality", "credential", "encryption", "identity", "sign",
"signature", "trust", "validate", and "verify".</t>
        <t>The term "payload" is to be interpreted as described in Section 3.3 of <xref target="RFC7231" format="default"/>.</t>
        <t>Unless otherwise noted, all the protocol parameter names and values
are case sensitive.</t>
      </section>
    </section>
    <section anchor="client-registration" numbered="true" toc="default">
      <name>Client Registration</name>
      <t>Before initiating the protocol, the client must establish its registration with the
authorization server.  The means through which the client registers
with the authorization server are beyond the scope of this
specification but typically involve the client developer manually registering
the client at the authorization server's website after creating an account and agreeing
to the service's Terms of Service, or by using Dynamic Client Registration (<xref target="RFC7591" format="default"/>).</t>
      <t>Client registration does not require a direct interaction between the
client and the authorization server.  When supported by the
authorization server, registration can rely on other means for
establishing trust and obtaining the required client properties
(e.g., redirect URI, client type).  For example, registration can
be accomplished using a self-issued or third-party-issued assertion,
or by the authorization server performing client discovery using a
trusted channel.</t>
      <t>When registering a client, the client developer SHALL:</t>
      <ul spacing="normal">
        <li>specify the client type as described in <xref target="client-types" format="default"/>,</li>
        <li>provide client details needed by the grant type in use, 
such as redirect URIs as described in <xref target="redirection-endpoint" format="default"/>, and</li>
        <li>include any other information required by the authorization server
(e.g., application name, website, description, logo image, the
acceptance of legal terms).</li>
      </ul>
      <t>Dynamic Client Registration (<xref target="RFC7591" format="default"/>) defines a common general data model
for clients that may be used even with manual client registration.</t>
      <section anchor="client-types" numbered="true" toc="default">
        <name>Client Types</name>
        <t>OAuth 2.1 defines three client types based on their ability to authenticate securely
with the authorization server as well as the authorization server's assurance of the
client's identity.</t>
        <dl newline="false" spacing="normal">
          <dt>"confidential":</dt>
          <dd>
  Clients that have credentials and their identity has been confirmed by the AS are designated as "confidential clients"</dd>
          <dt>"credentialed":</dt>
          <dd>
  Clients that have credentials and their identity has been not been confirmed by the AS are designated as "credentialed clients"</dd>
          <dt>"public":</dt>
          <dd>
  Clients without credentials are called "public clients"</dd>
        </dl>
        <t>Any clients with credentials MUST take precautions to prevent leakage and abuse of their credentials.</t>
        <t>Authorization servers SHOULD consider the level of confidence in a client's identity
when deciding whether they allow such a client access to more critical functions,
such as the Client Credentials grant type.</t>
        <t>A single <tt>client_id</tt> MUST NOT be treated as more than one type of client.</t>
        <t>This specification has been designed around the following client profiles:</t>
        <dl newline="false" spacing="normal">
          <dt>"web application":</dt>
          <dd>
  A web application is a confidential client running on a web
server.  Resource owners access the client via an HTML user
interface rendered in a user-agent on the device used by the
resource owner.  The client credentials as well as any access
token issued to the client are stored on the web server and are
not exposed to or accessible by the resource owner.</dd>
          <dt>"browser-based application":</dt>
          <dd>
  A browser-based application is a public client in which the
client code is downloaded from a web server and executes within a
user-agent (e.g., web browser) on the device used by the resource
owner.  Protocol data and credentials are easily accessible (and
often visible) to the resource owner.  Since such applications
reside within the user-agent, they can make seamless use of the
user-agent capabilities when requesting authorization.</dd>
          <dt>"native application":</dt>
          <dd>
  A native application is a public client installed and executed on
the device used by the resource owner.  Protocol data and
credentials are accessible to the resource owner.  It is assumed
that any client authentication credentials included in the
application can be extracted.  On the other hand, dynamically
issued credentials such as access tokens or refresh tokens can
receive an acceptable level of protection.  At a minimum, these
credentials are protected from hostile servers with which the
application may interact.  On some platforms, these credentials
might be protected from other applications residing on the same
device.</dd>
        </dl>
      </section>
      <section anchor="client-identifier" numbered="true" toc="default">
        <name>Client Identifier</name>
        <t>The authorization server issues the registered client a client
identifier - a unique string representing the registration
information provided by the client.  The client identifier is not a
secret; it is exposed to the resource owner and MUST NOT be used
alone for client authentication.  The client identifier is unique to
the authorization server.</t>
        <t>The client identifier string size is left undefined by this
specification.  The client should avoid making assumptions about the
identifier size.  The authorization server SHOULD document the size
of any identifier it issues.</t>
        <t>Authorization servers SHOULD NOT allow clients to choose or influence their
<tt>client_id</tt> value. See <xref target="client-impersonating-resource-owner" format="default"/> for details.</t>
      </section>
      <section anchor="client-authentication" numbered="true" toc="default">
        <name>Client Authentication</name>
        <t>Confidential and credentialed clients establish a client authentication method
with the authorization server suitable for the
security requirements of the authorization server.  The authorization
server MAY accept any form of client authentication meeting its
security requirements.</t>
        <t>Confidential and credentialed clients are typically issued (or establish) a set of
client credentials used for authenticating with the authorization
server (e.g., password, public/private key pair).</t>
        <t>Authorization servers SHOULD use client authentication if possible.</t>
        <t>It is RECOMMENDED to use asymmetric (public-key based) methods for
client authentication such as mTLS <xref target="RFC8705" format="default"/> or "private_key_jwt"
<xref target="OpenID" format="default"/>.  When asymmetric methods for client authentication are
used, authorization servers do not need to store sensitive symmetric
keys, making these methods more robust against a number of attacks.</t>
        <t>The authorization server MAY establish a client authentication method
with public clients, which converts them to credentialed 
clients.  However, the authorization server MUST NOT rely on 
credentialed client authentication for the purpose of 
identifying the client.</t>
        <t>The client MUST NOT use more than one authentication method in each
request.</t>
        <section anchor="client-secret" numbered="true" toc="default">
          <name>Client Secret</name>
          <t>Clients in possession of a client secret, sometimes known as a client password,
MAY use the HTTP Basic
authentication scheme as defined in <xref target="RFC2617" format="default"/> to authenticate with
the authorization server.  The client identifier is encoded using the
<tt>application/x-www-form-urlencoded</tt> encoding algorithm per
Appendix B, and the encoded value is used as the username; the client
secret is encoded using the same algorithm and used as the
password.  The authorization server MUST support the HTTP Basic
authentication scheme for authenticating clients that were issued a
client secret.</t>
          <t>For example (with extra line breaks for display purposes only):</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
Authorization: Basic czZCaGRSa3F0Mzo3RmpmcDBaQnIxS3REUmJuZlZkbUl3
]]></artwork>
          <t>Alternatively, the authorization server MAY support including the
client credentials in the request-body using the following
parameters:</t>
          <dl newline="false" spacing="normal">
            <dt>"client_id":</dt>
            <dd>
  REQUIRED.  The client identifier issued to the client during
the registration process described by <xref target="client-identifier" format="default"/>.</dd>
            <dt>"client_secret":</dt>
            <dd>
  REQUIRED.  The client secret.</dd>
          </dl>
          <t>Including the client credentials in the request-body using the two
parameters is NOT RECOMMENDED and SHOULD be limited to clients unable
to directly utilize the HTTP Basic authentication scheme (or other
password-based HTTP authentication schemes).  The parameters can only
be transmitted in the request-body and MUST NOT be included in the
request URI.</t>
          <t>For example, a request to refresh an access token (<xref target="refreshing-an-access-token" format="default"/>) using
the body parameters (with extra line breaks for display purposes
only):</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
POST /token HTTP/1.1
Host: server.example.com
Content-Type: application/x-www-form-urlencoded

grant_type=refresh_token&refresh_token=tGzv3JOkF0XG5Qx2TlKWIA
&client_id=s6BhdRkqt3&client_secret=7Fjfp0ZBr1KtDRbnfVdmIw
]]></artwork>
          <t>The authorization server MUST require the use of TLS as described in
<xref target="tls-version" format="default"/> when sending requests using password authentication.</t>
          <t>Since this client authentication method involves a password, the
authorization server MUST protect any endpoint utilizing it against
brute force attacks.</t>
        </section>
        <section anchor="other-authentication-methods" numbered="true" toc="default">
          <name>Other Authentication Methods</name>
          <t>The authorization server MAY support any suitable authentication
scheme matching its security requirements.  When using other
authentication methods, the authorization server MUST define a
mapping between the client identifier (registration record) and
authentication scheme.</t>
          <t>Some additional authentication methods such as mTLS <xref target="RFC8705" format="default"/> 
and "private_key_jwt" <xref target="OpenID" format="default"/> are defined in the 
"<eref target="https://www.iana.org/assignments/oauth-parameters/oauth-parameters.xhtml#token-endpoint-auth-method">OAuth Token Endpoint Authentication Methods</eref>" registry,
and may be useful as generic client authentication methods beyond 
the specific use of protecting the token endpoint.</t>
        </section>
      </section>
      <section anchor="unregistered-clients" numbered="true" toc="default">
        <name>Unregistered Clients</name>
        <t>This specification does not exclude the use of unregistered clients.
However, the use of such clients is beyond the scope of this
specification and requires additional security analysis and review of
its interoperability impact.</t>
      </section>
    </section>
    <section anchor="protocol-endpoints" numbered="true" toc="default">
      <name>Protocol Endpoints</name>
      <t>The authorization process utilizes two authorization server endpoints
(HTTP resources):</t>
      <ul spacing="normal">
        <li>Authorization endpoint - used by the client to obtain
authorization from the resource owner via user-agent redirection.</li>
        <li>Token endpoint - used by the client to exchange an authorization
grant for an access token, typically with client authentication.</li>
      </ul>
      <t>As well as one client endpoint:</t>
      <ul spacing="normal">
        <li>Redirection endpoint - used by the authorization server to return
responses containing authorization credentials to the client via
the resource owner user-agent.</li>
      </ul>
      <t>Not every authorization grant type utilizes both endpoints.
Extension grant types MAY define additional endpoints as needed.</t>
      <section anchor="authorization-endpoint" numbered="true" toc="default">
        <name>Authorization Endpoint</name>
        <t>The authorization endpoint is used to interact with the resource
owner and obtain an authorization grant.  The authorization server
MUST first verify the identity of the resource owner.  The way in
which the authorization server authenticates the resource owner
(e.g., username and password login, session cookies) is beyond the
scope of this specification.</t>
        <t>The means through which the client obtains the location of the
authorization endpoint are beyond the scope of this specification,
but the location is typically provided in the service documentation,
or in the authorization server's metadata document (<xref target="RFC8414" format="default"/>).</t>
        <t>The endpoint URI MAY include an "application/x-www-form-urlencoded"
formatted (per Appendix B) query component (<xref target="RFC3986" format="default"/> Section 3.4),
which MUST be retained when adding additional query parameters.  The
endpoint URI MUST NOT include a fragment component.</t>
        <t>Since requests to the authorization endpoint result in user
authentication and the transmission of clear-text credentials (in the
HTTP response), the authorization server MUST require the use of TLS
as described in <xref target="tls-version" format="default"/> when sending requests to the
authorization endpoint.</t>
        <t>The authorization server MUST support the use of the HTTP <tt>GET</tt>
method <xref target="RFC7231" format="default"/> for the authorization endpoint and MAY support the
use of the <tt>POST</tt> method as well.</t>
        <t>The authorization server MUST ignore unrecognized request parameters.</t>
        <t>Request and response parameters
defined by this specification MUST NOT be included more than once. 
Parameters sent without a value MUST be treated as if they were
omitted from the request.</t>
        <section anchor="response-type" numbered="true" toc="default">
          <name>Response Type</name>
          <t>The authorization endpoint is used by the authorization code flow.
The client informs the authorization server of the desired response type
using the following parameter:</t>
          <dl newline="false" spacing="normal">
            <dt>"response_type":</dt>
            <dd>
  REQUIRED.  The value MUST be <tt>code</tt> for requesting an authorization
code as described by <xref target="authorization-request" format="default"/>, or a registered extension
value as described by <xref target="new-response-types" format="default"/>.</dd>
          </dl>
          <t>Extension response types MAY contain a space-delimited (%x20) list of
values, where the order of values does not matter (e.g., response
type <tt>a b</tt> is the same as <tt>b a</tt>).  The meaning of such composite
response types is defined by their respective specifications.</t>
          <t>Some extension response types are defined by (<xref target="OpenID" format="default"/>).</t>
          <t>If an authorization request is missing the <tt>response_type</tt> parameter,
or if the response type is not understood, the authorization server
MUST return an error response as described in <xref target="authorization-code-error-response" format="default"/>.</t>
        </section>
        <section anchor="redirection-endpoint" numbered="true" toc="default">
          <name>Redirection Endpoint</name>
          <t>After completing its interaction with the resource owner, the
authorization server directs the resource owner's user-agent back to
the client.  The authorization server redirects the user-agent to one of the
client's redirection endpoints previously established with the
authorization server during the client registration process.</t>
          <t>The redirect URI MUST be an absolute URI as defined by
<xref target="RFC3986" format="default"/> Section 4.3.  The endpoint URI MAY include an
"application/x-www-form-urlencoded" formatted (per Appendix B) query
component (<xref target="RFC3986" format="default"/> Section 3.4), which MUST be retained when adding
additional query parameters. The endpoint URI MUST NOT include a
fragment component.</t>
          <section anchor="endpoint-request-confidentiality" numbered="true" toc="default">
            <name>Endpoint Request Confidentiality</name>
            <t>The redirection endpoint SHOULD require the use of TLS as described
in <xref target="tls-version" format="default"/> when the requested response type is <tt>code</tt>,
or when the redirection request will result in the transmission of
sensitive credentials over an open network.
If TLS is not available, the authorization server
SHOULD warn the resource owner about the insecure endpoint prior to
redirection (e.g., display a message during the authorization
request).</t>
            <t>Lack of transport-layer security can have a severe impact on the
security of the client and the protected resources it is authorized
to access.  The use of transport-layer security is particularly
critical when the authorization process is used as a form of
delegated end-user authentication by the client (e.g., third-party
sign-in service).</t>
          </section>
          <section anchor="registration-requirements" numbered="true" toc="default">
            <name>Registration Requirements</name>
            <t>The authorization server MUST require all clients to register one or more
complete redirect URIs prior to utilizing the authorization endpoint.
The client MAY use the <tt>state</tt> request parameter to achieve per-request 
customization if needed.</t>
            <t>The authorization server MAY allow the client to register multiple
redirect URIs.</t>
            <t>Without requiring registration of redirect URIs, attackers can
use the authorization endpoint as an open redirector as
described in <xref target="open-redirectors" format="default"/>.</t>
          </section>
          <section anchor="dynamic-configuration" numbered="true" toc="default">
            <name>Dynamic Configuration</name>
            <t>If multiple redirect URIs have been registered the client MUST
include a redirect URI with the authorization request using the
<tt>redirect_uri</tt> request parameter.</t>
          </section>
          <section anchor="invalid-endpoint" numbered="true" toc="default">
            <name>Invalid Endpoint</name>
            <t>If an authorization request fails validation due to a missing,
invalid, or mismatching redirect URI, the authorization server
SHOULD inform the resource owner of the error and MUST NOT
automatically redirect the user-agent to the invalid redirect URI.</t>
          </section>
          <section anchor="endpoint-content" numbered="true" toc="default">
            <name>Endpoint Content</name>
            <t>The redirection request to the client's endpoint typically results in
an HTML document response, processed by the user-agent.  If the HTML
response is served directly as the result of the redirection request,
any script included in the HTML document will execute with full
access to the redirect URI and the credentials (e.g. authorization code) 
it contains. Additionally, the request URL containing the authorization code
may be sent in the HTTP Referer header to any embedded images, stylesheets 
and other elements loaded in the page.</t>
            <t>The client SHOULD NOT include any third-party scripts (e.g., third-
party analytics, social plug-ins, ad networks) in the redirection
endpoint response.  Instead, it SHOULD extract the credentials from
the URI and redirect the user-agent again to another endpoint without
exposing the credentials (in the URI or elsewhere).  If third-party
scripts are included, the client MUST ensure that its own scripts
(used to extract and remove the credentials from the URI) will
execute first.</t>
          </section>
        </section>
      </section>
      <section anchor="token-endpoint" numbered="true" toc="default">
        <name>Token Endpoint</name>
        <t>The token endpoint is used by the client to obtain an access token using
a grant such as those described in <xref target="obtaining-authorization" format="default"/> and
<xref target="refreshing-an-access-token" format="default"/>.</t>
        <t>The means through which the client obtains the location of the token
endpoint are beyond the scope of this specification, but the location
is typically provided in the service documentation and configured during
development of the client, or provided in the authorization server's metadata 
document (<xref target="RFC8414" format="default"/>) and fetched programmatically at runtime.</t>
        <t>The endpoint URI MAY include an <tt>application/x-www-form-urlencoded</tt>
formatted (per Appendix B) query component (<xref target="RFC3986" format="default"/> Section 3.4)
and MUST NOT include a fragment component.</t>
        <t>Since requests to the token endpoint result in the transmission of
clear-text credentials (in the HTTP request and response), the
authorization server MUST require the use of TLS as described in
<xref target="tls-version" format="default"/> when sending requests to the token endpoint.</t>
        <t>The client MUST use the HTTP <tt>POST</tt> method when making access token
requests.</t>
        <t>The authorization server MUST ignore unrecognized request parameters.</t>
        <t>Parameters sent without a value MUST be treated as if they were
omitted from the request. Request and response parameters
defined by this specification MUST NOT be included more than once.</t>
        <section anchor="token-endpoint-client-authentication" numbered="true" toc="default">
          <name>Client Authentication</name>
          <t>Confidential clients or other clients issued client credentials MUST
authenticate with the authorization server as described in
<xref target="client-authentication" format="default"/> when making requests to the token endpoint.  Client
authentication is used for:</t>
          <ul spacing="normal">
            <li>Enforcing the binding of refresh tokens and authorization codes to
the client they were issued to.  Client authentication is critical
when an authorization code is transmitted to the redirection
endpoint over an insecure channel.</li>
            <li>Recovering from a compromised client by disabling the client or
changing its credentials, thus preventing an attacker from abusing
stolen refresh tokens.  Changing a single set of client
credentials is significantly faster than revoking an entire set of
refresh tokens.</li>
            <li>Implementing authentication management best practices, which
require periodic credential rotation.  Rotation of an entire set
of refresh tokens can be challenging, while rotation of a single
set of client credentials is significantly easier.</li>
          </ul>
        </section>
      </section>
      <section anchor="access-token-scope" numbered="true" toc="default">
        <name>Access Token Scope</name>
        <t>The authorization and token endpoints allow the client to specify the
scope of the access request using the <tt>scope</tt> request parameter.  In
turn, the authorization server uses the <tt>scope</tt> response parameter to
inform the client of the scope of the access token issued.</t>
        <t>The value of the scope parameter is expressed as a list of space-
delimited, case-sensitive strings.  The strings are defined by the
authorization server.  If the value contains multiple space-delimited
strings, their order does not matter, and each string adds an
additional access range to the requested scope.</t>
        <artwork type="abnf" name="" align="left" alt=""><![CDATA[
    scope       = scope-token *( SP scope-token )
    scope-token = 1*( %x21 / %x23-5B / %x5D-7E )
]]></artwork>
        <t>The authorization server MAY fully or partially ignore the scope
requested by the client, based on the authorization server policy or
the resource owner's instructions.  If the issued access token scope
is different from the one requested by the client, the authorization
server MUST include the <tt>scope</tt> response parameter to inform the
client of the actual scope granted.</t>
        <t>If the client omits the scope parameter when requesting
authorization, the authorization server MUST either process the
request using a pre-defined default value or fail the request
indicating an invalid scope.  The authorization server SHOULD
document its scope requirements and default value (if defined).</t>
      </section>
    </section>
    <section anchor="obtaining-authorization" numbered="true" toc="default">
      <name>Obtaining Authorization</name>
      <t>To request an access token, the client obtains authorization from the
resource owner. OAuth defines two authorization grant types: authorization code
and client credentials.  It also provides an extension mechanism for defining additional grant types.</t>
      <section anchor="authorization-code-grant" numbered="true" toc="default">
        <name>Authorization Code Grant</name>
        <t>The authorization code grant type is used to obtain both access
tokens and refresh tokens.</t>
        <t>Since this is a redirect-based flow, the client must be capable of
initiating the flow with the resource owner's user-agent (typically a web
browser) and capable of being redirected back to from the authorization server.</t>
        <figure anchor="fig-authorization-code-flow">
          <name>Authorization Code Flow</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
+----------+
| Resource |
|   Owner  |
|          |
+----------+
     ^
     |
    (2)
+----|-----+          Client Identifier      +---------------+
|         -+----(1)-- & Redirect URI    ---->|               |
|  User-   |                                 | Authorization |
|  Agent  -+----(2)-- User authenticates --->|     Server    |
|          |                                 |               |
|         -+----(3)-- Authorization Code ---<|               |
+-|----|---+                                 +---------------+
  |    |                                         ^      v
 (1)  (3)                                        |      |
  |    |                                         |      |
  ^    v                                         |      |
+---------+                                      |      |
|         |>---(4)-- Authorization Code ---------'      |
|  Client |          & Redirect URI                     |
|         |                                             |
|         |<---(5)----- Access Token -------------------'
+---------+       (w/ Optional Refresh Token)

Note: The lines illustrating steps (1), (2), and (3) are broken into
two parts as they pass through the user-agent.
]]></artwork>
        </figure>
        <t>The flow illustrated in <xref target="fig-authorization-code-flow" format="default"/> includes the following steps:</t>
        <t>(1)  The client initiates the flow by directing the resource owner's
     user-agent to the authorization endpoint.  The client includes
     its client identifier, code challenge (derived from a generated code verifier), 
     optional requested scope, optional local state, and a
     redirect URI to which the authorization server will send the
     user-agent back once access is granted (or denied).</t>
        <t>(2)  The authorization server authenticates the resource owner (via
     the user-agent) and establishes whether the resource owner
     grants or denies the client's access request.</t>
        <t>(3)  Assuming the resource owner grants access, the authorization
     server redirects the user-agent back to the client using the
     redirect URI provided earlier (in the request or during
     client registration).  The redirect URI includes an
     authorization code and any local state provided by the client
     earlier.</t>
        <t>(4)  The client requests an access token from the authorization
     server's token endpoint by including the authorization code
     received in the previous step, and including its code verifier.
     When making the request, the
     client authenticates with the authorization server if it can.  The client
     includes the redirect URI used to obtain the authorization
     code for verification.</t>
        <t>(5)  The authorization server authenticates the client when possible, validates the
     authorization code, validates the code verifier, and ensures that the redirect URI
     received matches the URI used to redirect the client in
     step (3).  If valid, the authorization server responds back with
     an access token and, optionally, a refresh token.</t>
        <section anchor="authorization-request" numbered="true" toc="default">
          <name>Authorization Request</name>
          <t>To begin the authorization request, the client builds the authorization
request URI by adding parameters to the authorization server's
authorization endpoint URI. The client will eventually redirect the user-agent
to this URI to initiate the request, as described in <xref target="initiate-authorization-request" format="default"/>.</t>
          <t>Clients use a unique secret per authorization request to protect against authorization code
injection and CSRF attacks. The client first generates this secret, which it can
use at the time of redeeming the authorization code to prove that the client using the
authorization code is the same client that requested it.</t>
          <section anchor="initiate-authorization-request" numbered="true" toc="default">
            <name>Client Initiates the Authorization Request</name>
            <t>The client constructs the request URI by adding the following
parameters to the query component of the authorization endpoint URI
using the <tt>application/x-www-form-urlencoded</tt> format, per Appendix B:</t>
            <dl newline="false" spacing="normal">
              <dt>"response_type":</dt>
              <dd>
  REQUIRED.  Value MUST be set to <tt>code</tt>.</dd>
              <dt>"client_id":</dt>
              <dd>
  REQUIRED.  The client identifier as described in <xref target="client-identifier" format="default"/>.</dd>
              <dt>"code_challenge":</dt>
              <dd>
  REQUIRED or RECOMMENDED (see <xref target="authorization_codes" format="default"/>).  Code challenge.</dd>
              <dt>"code_challenge_method":</dt>
              <dd>
  OPTIONAL, defaults to <tt>plain</tt> if not present in the request.  Code
verifier transformation method is <tt>S256</tt> or <tt>plain</tt>.</dd>
              <dt>"redirect_uri":</dt>
              <dd>
  OPTIONAL.  As described in <xref target="redirection-endpoint" format="default"/>.</dd>
              <dt>"scope":</dt>
              <dd>
  OPTIONAL.  The scope of the access request as described by
<xref target="access-token-scope" format="default"/>.</dd>
              <dt>"state":</dt>
              <dd>
  OPTIONAL.  An opaque value used by the client to maintain
state between the request and callback.  The authorization
server includes this value when redirecting the user-agent back
to the client.</dd>
            </dl>
            <t>The <tt>code_verifier</tt> is a unique high-entropy cryptographically random string generated
for each authorization request, using the unreserved characters <tt>[A-Z] / [a-z] / [0-9] / "-" / "." / "_" / "~"</tt>, 
with a minimum length of 43 characters and a maximum length of 128 characters.</t>
            <t>The client stores the <tt>code_verifier</tt> temporarily, and calculates the
<tt>code_challenge</tt> which it uses in the authorization request.</t>
            <t>ABNF for <tt>code_verifier</tt> is as follows.</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
code-verifier = 43*128unreserved
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
ALPHA = %x41-5A / %x61-7A
DIGIT = %x30-39
]]></artwork>
            <t>NOTE: The code verifier SHOULD have enough entropy to make it
impractical to guess the value.  It is RECOMMENDED that the output of
a suitable random number generator be used to create a 32-octet
sequence.  The octet sequence is then base64url-encoded to produce a
43-octet URL-safe string to use as the code verifier.</t>
            <t>The client then creates a <tt>code_challenge</tt> derived from the code
verifier by using one of the following transformations on the code
verifier:</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
S256
  code_challenge = BASE64URL-ENCODE(SHA256(ASCII(code_verifier)))

plain
  code_challenge = code_verifier
]]></artwork>
            <t>If the client is capable of using <tt>S256</tt>, it MUST use <tt>S256</tt>, as
<tt>S256</tt> is Mandatory To Implement (MTI) on the server.  Clients are
permitted to use <tt>plain</tt> only if they cannot support <tt>S256</tt> for some
technical reason, for example constrained environments that do not have
a hashing function available, and know via out-of-band configuration or via 
Authorization Server Metadata (<xref target="RFC8414" format="default"/>) that the server supports <tt>plain</tt>.</t>
            <t>ABNF for <tt>code_challenge</tt> is as follows.</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
code-challenge = 43*128unreserved
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
ALPHA = %x41-5A / %x61-7A
DIGIT = %x30-39
]]></artwork>
            <t>The properties <tt>code_challenge</tt> and <tt>code_verifier</tt> are adopted from the OAuth 2.0 extension
known as "Proof-Key for Code Exchange", or PKCE (<xref target="RFC7636" format="default"/>) where this technique
was originally developed.</t>
            <t>Clients MUST use <tt>code_challenge</tt> and <tt>code_verifier</tt> and
authorization servers MUST enforce their use except under the conditions
described in <xref target="authorization_codes" format="default"/>. In this case, using and enforcing
<tt>code_challenge</tt> and <tt>code_verifier</tt> as described in the following is still
RECOMMENDED.</t>
            <t>The client directs the resource owner to the constructed URI using an
HTTP redirection, or by other means available to it via the user-agent.</t>
            <t>For example, the client directs the user-agent to make the following
HTTP request using TLS (with extra line breaks for display purposes
only):</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
GET /authorize?response_type=code&client_id=s6BhdRkqt3&state=xyz
    &redirect_uri=https%3A%2F%2Fclient%2Eexample%2Ecom%2Fcb
    &code_challenge=6fdkQaPm51l13DSukcAH3Mdx7_ntecHYd1vi3n0hMZY
    &code_challenge_method=S256 HTTP/1.1
Host: server.example.com
]]></artwork>
            <t>The authorization server validates the request to ensure that all
required parameters are present and valid.</t>
            <t>In particular, the authorization server MUST validate the <tt>redirect_uri</tt> 
in the request if present, ensuring that it matches one of the registered
redirect URIs previously established during client registration (<xref target="client-registration" format="default"/>). 
When comparing the two URIs the authorization server MUST using simple 
character-by-character string comparison as defined in <xref target="RFC3986" format="default"/>, Section 6.2.1.</t>
            <t>If the request is valid,
the authorization server authenticates the resource owner and obtains
an authorization decision (by asking the resource owner or by
establishing approval via other means).</t>
            <t>When a decision is established, the authorization server directs the
user-agent to the provided client redirect URI using an HTTP
redirection response, or by other means available to it via the
user-agent.</t>
          </section>
        </section>
        <section anchor="authorization-response" numbered="true" toc="default">
          <name>Authorization Response</name>
          <t>If the resource owner grants the access request, the authorization
server issues an authorization code and delivers it to the client by
adding the following parameters to the query component of the
redirect URI using the <tt>application/x-www-form-urlencoded</tt> format,
per Appendix B:</t>
          <dl newline="false" spacing="normal">
            <dt>"code":</dt>
            <dd>
  REQUIRED.  The authorization code generated by the
authorization server.  The authorization code MUST expire
shortly after it is issued to mitigate the risk of leaks.  A
maximum authorization code lifetime of 10 minutes is
RECOMMENDED.  The client MUST NOT use the authorization code
more than once.  If an authorization code is used more than
once, the authorization server MUST deny the request and SHOULD
revoke (when possible) all access tokens and refresh tokens previously issued based on
that authorization code.  The authorization code is bound to
the client identifier and redirect URI.</dd>
            <dt>"state":</dt>
            <dd>
  REQUIRED if the <tt>state</tt> parameter was present in the client
authorization request.  The exact value received from the
client.</dd>
          </dl>
          <t>For example, the authorization server redirects the user-agent by
sending the following HTTP response:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
HTTP/1.1 302 Found
Location: https://client.example.com/cb?code=SplxlOBeZQQYbYS6WxSbIA
          &state=xyz
]]></artwork>
          <t>The client MUST ignore unrecognized response parameters.  The
authorization code string size is left undefined by this
specification.  The client should avoid making assumptions about code
value sizes.  The authorization server SHOULD document the size of
any value it issues.</t>
          <t>The authorization server MUST associate the <tt>code_challenge</tt> and 
<tt>code_challenge_method</tt> values with the issued authorization code 
so the code challenge can be verified later.</t>
          <t>The exact method that the server uses to associate the <tt>code_challenge</tt> 
with the issued code is out of scope for this specification. The 
code challenge could be stored on the server and associated with the 
code there. The <tt>code_challenge</tt> and <tt>code_challenge_method</tt> values may 
be stored in encrypted form in the code itself, but the server 
MUST NOT include the <tt>code_challenge</tt> value in a response parameter 
in a form that entities other than the AS can extract.</t>
          <section anchor="authorization-code-error-response" numbered="true" toc="default">
            <name>Error Response</name>
            <t>If the request fails due to a missing, invalid, or mismatching
redirect URI, or if the client identifier is missing or invalid,
the authorization server SHOULD inform the resource owner of the
error and MUST NOT automatically redirect the user-agent to the
invalid redirect URI.</t>
            <t>An AS MUST reject requests without a <tt>code_challenge</tt> from public clients, 
and MUST reject such requests from other clients unless there is 
reasonable assurance that the client mitigates authorization code injection 
in other ways. See <xref target="authorization_codes" format="default"/> for details.</t>
            <t>If the server does not support the requested <tt>code_challenge_method</tt> transformation, 
the authorization endpoint MUST return the
authorization error response with <tt>error</tt> value set to
<tt>invalid_request</tt>.  The <tt>error_description</tt> or the response of
<tt>error_uri</tt> SHOULD explain the nature of error, e.g., transform
algorithm not supported.</t>
            <t>If the resource owner denies the access request or if the request
fails for reasons other than a missing or invalid redirect URI,
the authorization server informs the client by adding the following
parameters to the query component of the redirect URI using the
<tt>application/x-www-form-urlencoded</tt> format, per Appendix B:</t>
            <dl newline="false" spacing="normal">
              <dt>"error":</dt>
              <dd>
                <t>
  REQUIRED.  A single ASCII <xref target="USASCII" format="default"/> error code from the
following:

                </t>
                <dl newline="false" spacing="normal">
                  <dt>"invalid_request":</dt>
                  <dd>
        The request is missing a required parameter, includes an
invalid parameter value, includes a parameter more than
once, or is otherwise malformed.</dd>
                  <dt>"unauthorized_client":</dt>
                  <dd>
        The client is not authorized to request an authorization
code using this method.</dd>
                  <dt>"access_denied":</dt>
                  <dd>
        The resource owner or authorization server denied the
request.</dd>
                  <dt>"unsupported_response_type":</dt>
                  <dd>
        The authorization server does not support obtaining an
authorization code using this method.</dd>
                  <dt>"invalid_scope":</dt>
                  <dd>
        The requested scope is invalid, unknown, or malformed.</dd>
                  <dt>"server_error":</dt>
                  <dd>
        The authorization server encountered an unexpected
condition that prevented it from fulfilling the request.
(This error code is needed because a 500 Internal Server
Error HTTP status code cannot be returned to the client
via an HTTP redirect.)</dd>
                  <dt>"temporarily_unavailable":</dt>
                  <dd>
        The authorization server is currently unable to handle
the request due to a temporary overloading or maintenance
of the server.  (This error code is needed because a 503
Service Unavailable HTTP status code cannot be returned
to the client via an HTTP redirect.)</dd>
                </dl>
                <t>

Values for the <tt>error</tt> parameter MUST NOT include characters
outside the set %x20-21 / %x23-5B / %x5D-7E.</t>
              </dd>
              <dt>"error_description":</dt>
              <dd>
  OPTIONAL.  Human-readable ASCII <xref target="USASCII" format="default"/> text providing
additional information, used to assist the client developer in
understanding the error that occurred.
Values for the <tt>error_description</tt> parameter MUST NOT include
characters outside the set %x20-21 / %x23-5B / %x5D-7E.</dd>
              <dt>"error_uri":</dt>
              <dd>
  OPTIONAL.  A URI identifying a human-readable web page with
information about the error, used to provide the client
developer with additional information about the error.
Values for the <tt>error_uri</tt> parameter MUST conform to the
URI-reference syntax and thus MUST NOT include characters
outside the set %x21 / %x23-5B / %x5D-7E.</dd>
              <dt>"state":</dt>
              <dd>
  REQUIRED if a <tt>state</tt> parameter was present in the client
authorization request.  The exact value received from the
client.</dd>
            </dl>
            <t>For example, the authorization server redirects the user-agent by
sending the following HTTP response:</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
HTTP/1.1 302 Found
Location: https://client.example.com/cb?error=access_denied&state=xyz
]]></artwork>
          </section>
        </section>
        <section anchor="access-token-request" numbered="true" toc="default">
          <name>Access Token Request</name>
          <t>The client makes a request to the token endpoint by sending the
following parameters using the <tt>application/x-www-form-urlencoded</tt>
format per Appendix B with a character encoding of UTF-8 in the HTTP
request payload:</t>
          <dl newline="false" spacing="normal">
            <dt>"grant_type":</dt>
            <dd>
  REQUIRED.  Value MUST be set to <tt>authorization_code</tt>.</dd>
            <dt>"code":</dt>
            <dd>
  REQUIRED.  The authorization code received from the
authorization server.</dd>
            <dt>"redirect_uri":</dt>
            <dd>
  REQUIRED, if the <tt>redirect_uri</tt> parameter was included in the
authorization request as described in <xref target="authorization-request" format="default"/>, and their
values MUST be identical.</dd>
            <dt>"client_id":</dt>
            <dd>
  REQUIRED, if the client is not authenticating with the
authorization server as described in <xref target="token-endpoint-client-authentication" format="default"/>.</dd>
            <dt>"code_verifier":</dt>
            <dd>
  REQUIRED, if the <tt>code_challenge</tt> parameter was included in the authorization 
request. MUST NOT be used otherwise. The original code verifier string.</dd>
          </dl>
          <t>Confidential or credentialed clients MUST authenticate with the authorization 
server as described in <xref target="token-endpoint-client-authentication" format="default"/>.</t>
          <t>For example, the client makes the following HTTP request using TLS
(with extra line breaks for display purposes only):</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
POST /token HTTP/1.1
Host: server.example.com
Authorization: Basic czZCaGRSa3F0MzpnWDFmQmF0M2JW
Content-Type: application/x-www-form-urlencoded

grant_type=authorization_code&code=SplxlOBeZQQYbYS6WxSbIA
&redirect_uri=https%3A%2F%2Fclient%2Eexample%2Ecom%2Fcb
&code_verifier=3641a2d12d66101249cdf7a79c000c1f8c05d2aafcf14bf146497bed
]]></artwork>
          <t>The authorization server MUST:</t>
          <ul spacing="normal">
            <li>require client authentication for confidential and credentialed clients
(or clients with other authentication requirements),</li>
            <li>authenticate the client if client authentication is included,</li>
            <li>ensure that the authorization code was issued to the authenticated
confidential or credentialed client, or if the client is public, ensure that the
code was issued to <tt>client_id</tt> in the request,</li>
            <li>verify that the authorization code is valid,</li>
            <li>verify that the <tt>code_verifier</tt> parameter is present if and only if a
<tt>code_challenge</tt> parameter was present in the authorization request,</li>
            <li>if a <tt>code_verifier</tt> is present, verify the <tt>code_verifier</tt> by calculating
the code challenge from the received <tt>code_verifier</tt> and comparing it with
the previously associated <tt>code_challenge</tt>, after first transforming it
according to the <tt>code_challenge_method</tt> method specified by the client, and</li>
            <li>ensure that the <tt>redirect_uri</tt> parameter is present if the
<tt>redirect_uri</tt> parameter was included in the initial authorization
request as described in <xref target="initiate-authorization-request" format="default"/>, and if included ensure that
their values are identical.</li>
          </ul>
        </section>
        <section anchor="authorization-code-access-token-response" numbered="true" toc="default">
          <name>Access Token Response</name>
          <t>If the access token request is valid and authorized, the
authorization server issues an access token and optional refresh
token as described in <xref target="access-token-successful-response" format="default"/>.  If the request client
authentication failed or is invalid, the authorization server returns
an error response as described in <xref target="access-token-error-response" format="default"/>.</t>
          <t>An example successful response:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json
Cache-Control: no-store
Pragma: no-cache

{
  "access_token": "2YotnFZFEjr1zCsicMWpAA",
  "token_type": "Bearer",
  "expires_in": 3600,
  "refresh_token": "tGzv3JOkF0XG5Qx2TlKWIA",
  "example_parameter": "example_value"
}
]]></artwork>
        </section>
      </section>
      <section anchor="client-credentials-grant" numbered="true" toc="default">
        <name>Client Credentials Grant</name>
        <t>The client can request an access token using only its client
credentials (or other supported means of authentication) when the
client is requesting access to the protected resources under its
control, or those of another resource owner that have been previously
arranged with the authorization server (the method of which is beyond
the scope of this specification).</t>
        <t>The client credentials grant type MUST only be used by confidential
or credentialed clients.</t>
        <figure anchor="fig-client-credentials-flow">
          <name>Client Credentials Flow</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
     +---------+                                  +---------------+
     |         |                                  |               |
     |         |>--(1)- Client Authentication --->| Authorization |
     | Client  |                                  |     Server    |
     |         |<--(2)---- Access Token ---------<|               |
     |         |                                  |               |
     +---------+                                  +---------------+
]]></artwork>
        </figure>
        <t>The flow illustrated in <xref target="fig-client-credentials-flow" format="default"/> includes the following steps:</t>
        <t>(1)  The client authenticates with the authorization server and
     requests an access token from the token endpoint.</t>
        <t>(2)  The authorization server authenticates the client, and if valid,
     issues an access token.</t>
        <section anchor="authorization-request-and-response" numbered="true" toc="default">
          <name>Authorization Request and Response</name>
          <t>Since the client authentication is used as the authorization grant,
no additional authorization request is needed.</t>
        </section>
        <section anchor="client-credentials-access-token-request" numbered="true" toc="default">
          <name>Access Token Request</name>
          <t>The client makes a request to the token endpoint by adding the
following parameters using the <tt>application/x-www-form-urlencoded</tt>
format per Appendix B with a character encoding of UTF-8 in the HTTP
request payload:</t>
          <dl newline="false" spacing="normal">
            <dt>"grant_type":</dt>
            <dd>
  REQUIRED.  Value MUST be set to <tt>client_credentials</tt>.</dd>
            <dt>"scope":</dt>
            <dd>
  OPTIONAL.  The scope of the access request as described by
<xref target="access-token-scope" format="default"/>.</dd>
          </dl>
          <t>The client MUST authenticate with the authorization server as
described in <xref target="token-endpoint-client-authentication" format="default"/>.</t>
          <t>For example, the client makes the following HTTP request using
transport-layer security (with extra line breaks for display purposes
only):</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
POST /token HTTP/1.1
Host: server.example.com
Authorization: Basic czZCaGRSa3F0MzpnWDFmQmF0M2JW
Content-Type: application/x-www-form-urlencoded

grant_type=client_credentials
]]></artwork>
          <t>The authorization server MUST authenticate the client.</t>
        </section>
        <section anchor="access-token-response" numbered="true" toc="default">
          <name>Access Token Response</name>
          <t>If the access token request is valid and authorized, the
authorization server issues an access token as described in
<xref target="access-token-successful-response" format="default"/>.  A refresh token SHOULD NOT be included.  If the request
failed client authentication or is invalid, the authorization server
returns an error response as described in <xref target="access-token-error-response" format="default"/>.</t>
          <t>An example successful response:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json
Cache-Control: no-store
Pragma: no-cache

{
  "access_token": "2YotnFZFEjr1zCsicMWpAA",
  "token_type": "Bearer",
  "expires_in": 3600,
  "example_parameter": "example_value"
}
]]></artwork>
        </section>
      </section>
      <section anchor="extension-grants" numbered="true" toc="default">
        <name>Extension Grants</name>
        <t>The client uses an extension grant type by specifying the grant type
using an absolute URI (defined by the authorization server) as the
value of the <tt>grant_type</tt> parameter of the token endpoint, and by
adding any additional parameters necessary.</t>
        <t>For example, to request an access token using the Device Authorization Grant
as defined by <xref target="RFC8628" format="default"/> after the user has authorized the client on a separate device,
the client makes the following HTTP request using
TLS (with extra line breaks for display purposes only):</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
  POST /token HTTP/1.1
  Host: server.example.com
  Content-Type: application/x-www-form-urlencoded

  grant_type=urn%3Aietf%3Aparams%3Aoauth%3Agrant-type%3Adevice_code
  &device_code=GmRhmhcxhwEzkoEqiMEg_DnyEysNkuNhszIySk9eS
  &client_id=C409020731
]]></artwork>
        <t>If the access token request is valid and authorized, the
authorization server issues an access token and optional refresh
token as described in <xref target="access-token-successful-response" format="default"/>.  If the request failed client
authentication or is invalid, the authorization server returns an
error response as described in <xref target="access-token-error-response" format="default"/>.</t>
      </section>
    </section>
    <section anchor="issuing-an-access-token" numbered="true" toc="default">
      <name>Issuing an Access Token</name>
      <t>If the access token request is valid and authorized, the
authorization server issues an access token and optional refresh
token as described in <xref target="access-token-successful-response" format="default"/>.  If the request failed client
authentication or is invalid, the authorization server returns an
error response as described in <xref target="access-token-error-response" format="default"/>.</t>
      <section anchor="access-token-successful-response" numbered="true" toc="default">
        <name>Successful Response</name>
        <t>The authorization server issues an access token and optional refresh
token by creating an HTTP response body using the <tt>application/json</tt>
media type as defined by <xref target="RFC8259" format="default"/> with the following parameters
and an HTTP 200 (OK) status code:</t>
        <dl newline="false" spacing="normal">
          <dt>"access_token":</dt>
          <dd>
  REQUIRED.  The access token issued by the authorization server.</dd>
          <dt>"token_type":</dt>
          <dd>
  REQUIRED.  The type of the access token issued as described in
<xref target="access-token-types" format="default"/>.  Value is case insensitive.</dd>
          <dt>"expires_in":</dt>
          <dd>
  RECOMMENDED.  The lifetime in seconds of the access token.  For
example, the value <tt>3600</tt> denotes that the access token will
expire in one hour from the time the response was generated.
If omitted, the authorization server SHOULD provide the
expiration time via other means or document the default value.</dd>
          <dt>"refresh_token":</dt>
          <dd>
  OPTIONAL.  The refresh token, which can be used to obtain new
access tokens using the same authorization grant as described
in <xref target="refreshing-an-access-token" format="default"/>.</dd>
          <dt>"scope":</dt>
          <dd>
  OPTIONAL, if identical to the scope requested by the client;
otherwise, REQUIRED.  The scope of the access token as
described by <xref target="access-token-scope" format="default"/>.</dd>
        </dl>
        <t>The parameters are serialized into a JavaScript Object Notation (JSON)
structure by adding each parameter at the highest structure level.
Parameter names and string values are included as JSON strings.
Numerical values are included as JSON numbers.  The order of
parameters does not matter and can vary.</t>
        <t>The authorization server MUST include the HTTP <tt>Cache-Control</tt>
response header field <xref target="RFC7234" format="default"/> with a value of <tt>no-store</tt> in any
response containing tokens, credentials, or other sensitive
information, as well as the <tt>Pragma</tt> response header field <xref target="RFC7234" format="default"/>
with a value of <tt>no-cache</tt>.</t>
        <t>For example:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json
Cache-Control: no-store
Pragma: no-cache

{
  "access_token":"2YotnFZFEjr1zCsicMWpAA",
  "token_type":"Bearer",
  "expires_in":3600,
  "refresh_token":"tGzv3JOkF0XG5Qx2TlKWIA",
  "example_parameter":"example_value"
}
]]></artwork>
        <t>The client MUST ignore unrecognized value names in the response.  The
sizes of tokens and other values received from the authorization
server are left undefined.  The client should avoid making
assumptions about value sizes.  The authorization server SHOULD
document the size of any value it issues.</t>
      </section>
      <section anchor="access-token-error-response" numbered="true" toc="default">
        <name>Error Response</name>
        <t>The authorization server responds with an HTTP 400 (Bad Request)
status code (unless specified otherwise) and includes the following
parameters with the response:</t>
        <dl newline="false" spacing="normal">
          <dt>"error":</dt>
          <dd>
            <t>
  REQUIRED.  A single ASCII <xref target="USASCII" format="default"/> error code from the following:

            </t>
            <dl newline="false" spacing="normal">
              <dt>"invalid_request":</dt>
              <dd>
        The request is missing a required parameter, includes an
unsupported parameter value (other than grant type),
repeats a parameter, includes multiple credentials,
utilizes more than one mechanism for authenticating the
client, contains a <tt>code_verifier</tt> although no 
<tt>code_challenge</tt> was sent in the authorization request, 
or is otherwise malformed.</dd>
              <dt>"invalid_client":</dt>
              <dd>
        Client authentication failed (e.g., unknown client, no
client authentication included, or unsupported
authentication method).  The authorization server MAY
return an HTTP 401 (Unauthorized) status code to indicate
which HTTP authentication schemes are supported.  If the
client attempted to authenticate via the <tt>Authorization</tt>
request header field, the authorization server MUST
respond with an HTTP 401 (Unauthorized) status code and
include the <tt>WWW-Authenticate</tt> response header field
matching the authentication scheme used by the client.</dd>
              <dt>"invalid_grant":</dt>
              <dd>
        The provided authorization grant (e.g., authorization
code, resource owner credentials) or refresh token is
invalid, expired, revoked, does not match the redirect
URI used in the authorization request, or was issued to
another client.</dd>
              <dt>"unauthorized_client":</dt>
              <dd>
        The authenticated client is not authorized to use this
authorization grant type.</dd>
              <dt>"unsupported_grant_type":</dt>
              <dd>
        The authorization grant type is not supported by the
authorization server.</dd>
              <dt>"invalid_scope":</dt>
              <dd>
        The requested scope is invalid, unknown, malformed, or
exceeds the scope granted by the resource owner.</dd>
            </dl>
            <t>

Values for the <tt>error</tt> parameter MUST NOT include characters
outside the set %x20-21 / %x23-5B / %x5D-7E.</t>
          </dd>
          <dt>"error_description":</dt>
          <dd>
  OPTIONAL.  Human-readable ASCII <xref target="USASCII" format="default"/> text providing
additional information, used to assist the client developer in
understanding the error that occurred.
Values for the <tt>error_description</tt> parameter MUST NOT include
characters outside the set %x20-21 / %x23-5B / %x5D-7E.</dd>
          <dt>"error_uri":</dt>
          <dd>
  OPTIONAL.  A URI identifying a human-readable web page with
information about the error, used to provide the client
developer with additional information about the error.
Values for the <tt>error_uri</tt> parameter MUST conform to the
URI-reference syntax and thus MUST NOT include characters
outside the set %x21 / %x23-5B / %x5D-7E.</dd>
        </dl>
        <t>The parameters are included in the payload of the HTTP response
using the <tt>application/json</tt> media type as defined by <xref target="RFC7159" format="default"/>.  The
parameters are serialized into a JSON structure by adding each
parameter at the highest structure level.  Parameter names and string
values are included as JSON strings.  Numerical values are included
as JSON numbers.  The order of parameters does not matter and can
vary.</t>
        <t>For example:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
HTTP/1.1 400 Bad Request
Content-Type: application/json
Cache-Control: no-store
Pragma: no-cache

{
 "error":"invalid_request"
}
]]></artwork>
      </section>
    </section>
    <section anchor="refreshing-an-access-token" numbered="true" toc="default">
      <name>Refreshing an Access Token</name>
      <t>Authorization servers SHOULD determine, based on a risk assessment
and their own policies, whether to issue refresh tokens to a certain client.  If the
authorization server decides not to issue refresh tokens, the client
MAY obtain new access tokens by starting the OAuth flow over, for example
initiating a new authorization code request.  In such a case, the authorization
server may utilize cookies and persistent grants to optimize the user
experience.</t>
      <t>If refresh tokens are issued, those refresh tokens MUST be bound to
the scope and resource servers as consented by the resource owner.
This is to prevent privilege escalation by the legitimate client and
reduce the impact of refresh token leakage.</t>
      <section anchor="refresh-token-request" numbered="true" toc="default">
        <name>Refresh Token Request</name>
        <t>To use a refresh token to obtain a new access token, the
client makes a request to the token endpoint by adding the
following parameters using the <tt>application/x-www-form-urlencoded</tt>
format (per Appendix B) with a character encoding of UTF-8 in the HTTP
request payload:</t>
        <dl newline="false" spacing="normal">
          <dt>"grant_type":</dt>
          <dd>
  REQUIRED.  Value MUST be set to <tt>refresh_token</tt>.</dd>
          <dt>"refresh_token":</dt>
          <dd>
  REQUIRED.  The refresh token issued to the client.</dd>
          <dt>"scope":</dt>
          <dd>
  OPTIONAL.  The scope of the access request as described by
<xref target="access-token-scope" format="default"/>.  The requested scope MUST NOT include any scope
not originally granted by the resource owner, and if omitted is
treated as equal to the scope originally granted by the
resource owner.</dd>
        </dl>
        <t>Because refresh tokens are typically long-lasting credentials used to
request additional access tokens, the refresh token is bound to the
client to which it was issued. Confidential or credentialed clients
MUST authenticate with the authorization server as described in
<xref target="token-endpoint-client-authentication" format="default"/>.</t>
        <t>For example, the client makes the following HTTP request using
transport-layer security (with extra line breaks for display purposes
only):</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
POST /token HTTP/1.1
Host: server.example.com
Authorization: Basic czZCaGRSa3F0MzpnWDFmQmF0M2JW
Content-Type: application/x-www-form-urlencoded

grant_type=refresh_token&refresh_token=tGzv3JOkF0XG5Qx2TlKWIA
]]></artwork>
        <t>The authorization server MUST:</t>
        <ul spacing="normal">
          <li>require client authentication for confidential or credentialed clients</li>
          <li>authenticate the client if client authentication is included and
ensure that the refresh token was issued to the authenticated
client, and</li>
          <li>validate the refresh token.</li>
        </ul>
        <t>Authorization servers SHOULD utilize one of these methods to detect
refresh token replay by malicious actors for public clients:</t>
        <ul spacing="normal">
          <li>
            <em>Sender-constrained refresh tokens:</em> the authorization server
cryptographically binds the refresh token to a certain client
instance by utilizing <xref target="I-D.ietf-oauth-token-binding" format="default"/>, <xref target="RFC8705" format="default"/>,
<xref target="I-D.ietf-oauth-dpop" format="default"/>, or another suitable method.</li>
          <li>
            <em>Refresh token rotation:</em> the authorization server issues a new
refresh token with every access token refresh response.  The
previous refresh token is invalidated but information about the
relationship is retained by the authorization server.  If a
refresh token is compromised and subsequently used by both the
attacker and the legitimate client, one of them will present an
invalidated refresh token, which will inform the authorization
server of the breach.  The authorization server cannot determine
which party submitted the invalid refresh token, but it will
revoke the active refresh token.  This stops the attack at the
cost of forcing the legitimate client to obtain a fresh
authorization grant.</li>
        </ul>
        <t>Implementation note: the grant to which a refresh token belongs
may be encoded into the refresh token itself.  This can enable an
authorization server to efficiently determine the grant to which a
refresh token belongs, and by extension, all refresh tokens that
need to be revoked.  Authorization servers MUST ensure the
integrity of the refresh token value in this case, for example,
using signatures.</t>
      </section>
      <section anchor="refresh-token-response" numbered="true" toc="default">
        <name>Refresh Token Response</name>
        <t>If valid and authorized, the authorization server issues an access
token as described in <xref target="access-token-successful-response" format="default"/>.  If the request failed
verification or is invalid, the authorization server returns an error
response as described in <xref target="access-token-error-response" format="default"/>.</t>
        <t>The authorization server MAY issue a new refresh token, in which case
the client MUST discard the old refresh token and replace it with the
new refresh token.  The authorization server MAY revoke the old
refresh token after issuing a new refresh token to the client.  If a
new refresh token is issued, the refresh token scope MUST be
identical to that of the refresh token included by the client in the
request.</t>
        <t>Authorization servers MAY revoke refresh tokens automatically in case
of a security event, such as:</t>
        <ul spacing="normal">
          <li>password change</li>
          <li>logout at the authorization server</li>
        </ul>
        <t>Refresh tokens SHOULD expire if the client has been inactive for some
time, i.e., the refresh token has not been used to obtain new
access tokens for some time.  The expiration time is at the
discretion of the authorization server.  It might be a global value
or determined based on the client policy or the grant associated with
the refresh token (and its sensitivity).</t>
      </section>
    </section>
    <section anchor="accessing-protected-resources" numbered="true" toc="default">
      <name>Accessing Protected Resources</name>
      <t>The client accesses protected resources by presenting the access
token to the resource server.  The resource server MUST validate the
access token and ensure that it has not expired and that its scope
covers the requested resource.  The methods used by the resource
server to validate the access token (as well as any error responses)
are beyond the scope of this specification, but generally involve an
interaction or coordination between the resource server and the
authorization server, such as using Token Introspection <xref target="RFC7662" format="default"/>
or a structured access token format such as a JWT <xref target="I-D.ietf-oauth-access-token-jwt" format="default"/>.</t>
      <t>The method in which the client utilizes the access token to
authenticate with the resource server depends on the type of access
token issued by the authorization server.  Typically, it involves
using the HTTP <tt>Authorization</tt> request header field <xref target="RFC2617" format="default"/> with an
authentication scheme defined by the specification of the access
token type used, such as <tt>Bearer</tt>, defined below.</t>
      <section anchor="access-token-types" numbered="true" toc="default">
        <name>Access Token Types</name>
        <t>The access token type provides the client with the information
required to successfully utilize the access token to make a protected
resource request (along with type-specific attributes).  The client
MUST NOT use an access token if it does not understand the token
type.</t>
        <t>For example, the <tt>Bearer</tt> token type defined in this specification is utilized
by simply including the access token string in the request:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
GET /resource/1 HTTP/1.1
Host: example.com
Authorization: Bearer mF_9.B5f-4.1JqM
]]></artwork>
        <t>The above example is provided for illustration purposes only.</t>
        <t>Each access token type definition specifies the additional attributes
(if any) sent to the client together with the <tt>access_token</tt> response
parameter.  It also defines the HTTP authentication method used to
include the access token when making a protected resource request.</t>
      </section>
      <section anchor="bearer-tokens" numbered="true" toc="default">
        <name>Bearer Tokens</name>
        <t>A Bearer Token is a security token with the property that any party
in possession of the token (a "bearer") can use the token in any way
that any other party in possession of it can.  Using a bearer token
does not require a bearer to prove possession of cryptographic key material
(proof-of-possession).</t>
        <t>Bearer tokens may be extended to include proof-of-possession techniques
by other specifications.</t>
        <section anchor="authenticated-requests" numbered="true" toc="default">
          <name>Authenticated Requests</name>
          <t>This section defines two methods of sending Bearer tokens in resource
requests to resource servers. Clients MUST NOT use more than one method
to transmit the token in each request.</t>
          <section anchor="authorization-request-header-field" numbered="true" toc="default">
            <name>Authorization Request Header Field</name>
            <t>When sending the access token in the <tt>Authorization</tt> request header
field defined by HTTP/1.1 <xref target="RFC2617" format="default"/>, the client uses the <tt>Bearer</tt>
authentication scheme to transmit the access token.</t>
            <t>For example:</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
 GET /resource HTTP/1.1
 Host: server.example.com
 Authorization: Bearer mF_9.B5f-4.1JqM
]]></artwork>
            <t>The syntax of the <tt>Authorization</tt> header field for this scheme
follows the usage of the Basic scheme defined in Section 2 of
<xref target="RFC2617" format="default"/>.  Note that, as with Basic, it does not conform to the
generic syntax defined in Section 1.2 of <xref target="RFC2617" format="default"/> but is compatible
with the general authentication framework in HTTP 1.1 Authentication
<xref target="RFC7235" format="default"/>, although it does not follow the preferred
practice outlined therein in order to reflect existing deployments.
The syntax for Bearer credentials is as follows:</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
b64token    = 1*( ALPHA / DIGIT /
                 "-" / "." / "_" / "~" / "+" / "/" ) *"="
credentials = "Bearer" 1*SP b64token
]]></artwork>
            <t>Clients SHOULD make authenticated requests with a bearer token using
the <tt>Authorization</tt> request header field with the <tt>Bearer</tt> HTTP
authorization scheme.  Resource servers MUST support this method.</t>
          </section>
          <section anchor="form-encoded-body-parameter" numbered="true" toc="default">
            <name>Form-Encoded Body Parameter</name>
            <t>When sending the access token in the HTTP request payload, the
client adds the access token to the request-body using the
<tt>access_token</tt> parameter.  The client MUST NOT use this method unless
all of the following conditions are met:</t>
            <ul spacing="normal">
              <li>The HTTP request entity-header includes the <tt>Content-Type</tt> header
field set to <tt>application/x-www-form-urlencoded</tt>.</li>
              <li>The payload follows the encoding requirements of the
<tt>application/x-www-form-urlencoded</tt> content-type as defined by
HTML 4.01 <xref target="W3C.REC-html401-19991224" format="default"/>.</li>
              <li>The HTTP request payload is single-part.</li>
              <li>The content to be encoded in the payload MUST consist entirely
of ASCII <xref target="USASCII" format="default"/> characters.</li>
              <li>The HTTP request method is one for which the request-body has
defined semantics.  In particular, this means that the <tt>GET</tt>
method MUST NOT be used.</li>
            </ul>
            <t>The payload MAY include other request-specific parameters, in
which case the <tt>access_token</tt> parameter MUST be properly separated
from the request-specific parameters using <tt>&amp;</tt> character(s) (ASCII
code 38).</t>
            <t>For example, the client makes the following HTTP request using
transport-layer security:</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
POST /resource HTTP/1.1
Host: server.example.com
Content-Type: application/x-www-form-urlencoded

access_token=mF_9.B5f-4.1JqM
]]></artwork>
            <t>The <tt>application/x-www-form-urlencoded</tt> method SHOULD NOT be used
except in application contexts where participating clients do not
have access to the <tt>Authorization</tt> request header field.  Resource
servers MAY support this method.</t>
          </section>
        </section>
        <section anchor="the-www-authenticate-response-header-field" numbered="true" toc="default">
          <name>The WWW-Authenticate Response Header Field</name>
          <t>If the protected resource request does not include authentication
credentials or does not contain an access token that enables access
to the protected resource, the resource server MUST include the HTTP
<tt>WWW-Authenticate</tt> response header field; it MAY include it in
response to other conditions as well.  The <tt>WWW-Authenticate</tt> header
field uses the framework defined by HTTP/1.1 <xref target="RFC2617" format="default"/>.</t>
          <t>All challenges defined by this specification MUST use the auth-scheme
value <tt>Bearer</tt>.  This scheme MUST be followed by one or more
auth-param values.  The auth-param attributes used or defined by this
specification are as follows.  Other auth-param attributes MAY be
used as well.</t>
          <t>A <tt>realm</tt> attribute MAY be included to indicate the scope of
protection in the manner described in HTTP/1.1 <xref target="RFC2617" format="default"/>.  The
<tt>realm</tt> attribute MUST NOT appear more than once.</t>
          <t>The <tt>scope</tt> attribute is defined in <xref target="access-token-scope" format="default"/>.  The
<tt>scope</tt> attribute is a space-delimited list of case-sensitive scope
values indicating the required scope of the access token for
accessing the requested resource. <tt>scope</tt> values are implementation
defined; there is no centralized registry for them; allowed values
are defined by the authorization server.  The order of <tt>scope</tt> values
is not significant.  In some cases, the <tt>scope</tt> value will be used
when requesting a new access token with sufficient scope of access to
utilize the protected resource.  Use of the <tt>scope</tt> attribute is
OPTIONAL.  The <tt>scope</tt> attribute MUST NOT appear more than once.  The
<tt>scope</tt> value is intended for programmatic use and is not meant to be
displayed to end-users.</t>
          <t>Two example scope values follow; these are taken from the OpenID
Connect <xref target="OpenID.Messages" format="default"/> and the Open Authentication Technology
Committee (OATC) Online Multimedia Authorization Protocol <xref target="OMAP" format="default"/>
OAuth 2.0 use cases, respectively:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
scope="openid profile email"
scope="urn:example:channel=HBO&urn:example:rating=G,PG-13"
]]></artwork>
          <t>If the protected resource request included an access token and failed
authentication, the resource server SHOULD include the <tt>error</tt>
attribute to provide the client with the reason why the access
request was declined.  The parameter value is described in
<xref target="bearer-token-error-codes" format="default"/>.  In addition, the resource server MAY include the
<tt>error_description</tt> attribute to provide developers a human-readable
explanation that is not meant to be displayed to end-users.  It also
MAY include the <tt>error_uri</tt> attribute with an absolute URI
identifying a human-readable web page explaining the error.  The
<tt>error</tt>, <tt>error_description</tt>, and <tt>error_uri</tt> attributes MUST NOT
appear more than once.</t>
          <t>Values for the <tt>scope</tt> attribute (specified in Appendix A.4)
MUST NOT include characters outside the set %x21 / %x23-5B
/ %x5D-7E for representing scope values and %x20 for delimiters
between scope values.  Values for the <tt>error</tt> and <tt>error_description</tt>
attributes (specified in Appendixes A.7 and A.8) MUST
NOT include characters outside the set %x20-21 / %x23-5B / %x5D-7E.
Values for the <tt>error_uri</tt> attribute (specified in Appendix A.9 of)
MUST conform to the URI-reference syntax and thus MUST NOT
include characters outside the set %x21 / %x23-5B / %x5D-7E.</t>
          <t>For example, in response to a protected resource request without
authentication:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
HTTP/1.1 401 Unauthorized
WWW-Authenticate: Bearer realm="example"
]]></artwork>
          <t>And in response to a protected resource request with an
authentication attempt using an expired access token:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
HTTP/1.1 401 Unauthorized
WWW-Authenticate: Bearer realm="example",
                  error="invalid_token",
                  error_description="The access token expired"
]]></artwork>
        </section>
        <section anchor="bearer-token-error-codes" numbered="true" toc="default">
          <name>Error Codes</name>
          <t>When a request fails, the resource server responds using the
appropriate HTTP status code (typically, 400, 401, 403, or 405) and
includes one of the following error codes in the response:</t>
          <dl newline="false" spacing="normal">
            <dt>"invalid_request":</dt>
            <dd>
  The request is missing a required parameter, includes an
unsupported parameter or parameter value, repeats the same
parameter, uses more than one method for including an access
token, or is otherwise malformed.  The resource server SHOULD
respond with the HTTP 400 (Bad Request) status code.</dd>
            <dt>"invalid_token":</dt>
            <dd>
  The access token provided is expired, revoked, malformed, or
invalid for other reasons.  The resource SHOULD respond with
the HTTP 401 (Unauthorized) status code.  The client MAY
request a new access token and retry the protected resource
request.</dd>
            <dt>"insufficient_scope":</dt>
            <dd>
  The request requires higher privileges than provided by the
access token.  The resource server SHOULD respond with the HTTP
403 (Forbidden) status code and MAY include the <tt>scope</tt>
attribute with the scope necessary to access the protected
resource.</dd>
          </dl>
          <t>If the request lacks any authentication information (e.g., the client
was unaware that authentication is necessary or attempted using an
unsupported authentication method), the resource server SHOULD NOT
include an error code or other error information.</t>
          <t>For example:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
HTTP/1.1 401 Unauthorized
WWW-Authenticate: Bearer realm="example"
]]></artwork>
        </section>
      </section>
      <section anchor="error-response" numbered="true" toc="default">
        <name>Error Response</name>
        <t>If a resource access request fails, the resource server SHOULD inform
the client of the error. The method by which the resource server
does this is determined by the particular token type, such as the 
description of Bearer tokens in <xref target="bearer-token-error-codes" format="default"/>.</t>
        <section anchor="extension-token-types" numbered="true" toc="default">
          <name>Extension Token Types</name>
          <t><xref target="RFC6750" format="default"/> establishes a common registry in <eref target="https://tools.ietf.org/html/rfc6749#section-11.4">Section 11.4</eref> 
for error values to be shared among OAuth token authentication schemes.</t>
          <t>New authentication schemes designed primarily for OAuth token
authentication SHOULD define a mechanism for providing an error
status code to the client, in which the error values allowed are
registered in the error registry established by this specification.</t>
          <t>Such schemes MAY limit the set of valid error codes to a subset of
the registered values.  If the error code is returned using a named
parameter, the parameter name SHOULD be <tt>error</tt>.</t>
          <t>Other schemes capable of being used for OAuth token authentication,
but not primarily designed for that purpose, MAY bind their error
values to the registry in the same manner.</t>
          <t>New authentication schemes MAY choose to also specify the use of the
<tt>error_description</tt> and <tt>error_uri</tt> parameters to return error
information in a manner parallel to their usage in this
specification.</t>
        </section>
      </section>
      <section anchor="access-token-security-considerations" numbered="true" toc="default">
        <name>Access Token Security Considerations</name>
        <section anchor="security-threats" numbered="true" toc="default">
          <name>Security Threats</name>
          <t>The following list presents several common threats against protocols
utilizing some form of tokens.  This list of threats is based on NIST
Special Publication 800-63 <xref target="NIST800-63" format="default"/>.</t>
          <section anchor="token-manufacturemodification" numbered="true" toc="default">
            <name>Token manufacture/modification</name>
            <t>An attacker may generate a bogus
token or modify the token contents (such as the authentication or
attribute statements) of an existing token, causing the resource
server to grant inappropriate access to the client.  For example,
an attacker may modify the token to extend the validity period; a
malicious client may modify the assertion to gain access to
information that they should not be able to view.</t>
          </section>
          <section anchor="token-disclosure" numbered="true" toc="default">
            <name>Token disclosure</name>
            <t>Tokens may contain authentication and attribute
statements that include sensitive information.</t>
          </section>
          <section anchor="token-redirect" numbered="true" toc="default">
            <name>Token redirect</name>
            <t>An attacker uses a token generated for consumption
by one resource server to gain access to a different resource
server that mistakenly believes the token to be for it.</t>
          </section>
          <section anchor="token-replay" numbered="true" toc="default">
            <name>Token replay</name>
            <t>An attacker attempts to use a token that has already
been used with that resource server in the past.</t>
          </section>
        </section>
        <section anchor="threat-mitigation" numbered="true" toc="default">
          <name>Threat Mitigation</name>
          <t>A large range of threats can be mitigated by protecting the contents
of the token by using a digital signature.
Alternatively, a bearer token can contain a reference to
authorization information, rather than encoding the information
directly.  Such references MUST be infeasible for an attacker to
guess; using a reference may require an extra interaction between a
server and the token issuer to resolve the reference to the
authorization information.  The mechanics of such an interaction are
not defined by this specification.</t>
          <t>This document does not specify the encoding or the contents of the
token; hence, detailed recommendations about the means of
guaranteeing token integrity protection are outside the scope of this
document.  The token integrity protection MUST be sufficient to
prevent the token from being modified.</t>
          <t>To deal with token redirect, it is important for the authorization
server to include the identity of the intended recipients (the
audience), typically a single resource server (or a list of resource
servers), in the token.  Restricting the use of the token to a
specific scope is also RECOMMENDED.</t>
          <t>The authorization server MUST implement TLS.  Which version(s) ought
to be implemented will vary over time and will depend on the
widespread deployment and known security vulnerabilities at the time
of implementation.</t>
          <t>To protect against token disclosure, confidentiality protection MUST
be applied using TLS with a ciphersuite that provides
confidentiality and integrity protection.  This requires that the
communication interaction between the client and the authorization
server, as well as the interaction between the client and the
resource server, utilize confidentiality and integrity protection.
Since TLS is mandatory to implement and to use with this
specification, it is the preferred approach for preventing token
disclosure via the communication channel.  For those cases where the
client is prevented from observing the contents of the token, token
encryption MUST be applied in addition to the usage of TLS
protection.  As a further defense against token disclosure, the
client MUST validate the TLS certificate chain when making requests
to protected resources, including checking the Certificate Revocation
List (CRL) <xref target="RFC5280" format="default"/>.</t>
          <t>Cookies are typically transmitted in the clear.  Thus, any
information contained in them is at risk of disclosure.  Therefore,
Bearer tokens MUST NOT be stored in cookies that can be sent in the
clear, as any information in them is at risk of disclosure.
See "HTTP State Management Mechanism" <xref target="RFC6265" format="default"/> for security
considerations about cookies.</t>
          <t>In some deployments, including those utilizing load balancers, the
TLS connection to the resource server terminates prior to the actual
server that provides the resource.  This could leave the token
unprotected between the front-end server where the TLS connection
terminates and the back-end server that provides the resource.  In
such deployments, sufficient measures MUST be employed to ensure
confidentiality of the token between the front-end and back-end
servers; encryption of the token is one such possible measure.</t>
          <t>To deal with token capture and replay, the following recommendations
are made: First, the lifetime of the token MUST be limited; one means
of achieving this is by putting a validity time field inside the
protected part of the token.  Note that using short-lived (one hour
or less) tokens reduces the impact of them being leaked.  Second,
confidentiality protection of the exchanges between the client and
the authorization server and between the client and the resource
server MUST be applied.  As a consequence, no eavesdropper along the
communication path is able to observe the token exchange.
Consequently, such an on-path adversary cannot replay the token.
Furthermore, when presenting the token to a resource server, the
client MUST verify the identity of that resource server, as per
Section 3.1 of "HTTP Over TLS" <xref target="RFC2818" format="default"/>.  Note that the client MUST
validate the TLS certificate chain when making these requests to
protected resources.  Presenting the token to an unauthenticated and
unauthorized resource server or failing to validate the certificate
chain will allow adversaries to steal the token and gain unauthorized
access to protected resources.</t>
        </section>
        <section anchor="summary-of-recommendations" numbered="true" toc="default">
          <name>Summary of Recommendations</name>
          <section anchor="safeguard-bearer-tokens" numbered="true" toc="default">
            <name>Safeguard bearer tokens</name>
            <t>Client implementations MUST ensure that
bearer tokens are not leaked to unintended parties, as they will
be able to use them to gain access to protected resources.  This
is the primary security consideration when using bearer tokens and
underlies all the more specific recommendations that follow.</t>
          </section>
          <section anchor="validate-tls-certificate-chains" numbered="true" toc="default">
            <name>Validate TLS certificate chains</name>
            <t>The client MUST validate the TLS
certificate chain when making requests to protected resources.
Failing to do so may enable DNS hijacking attacks to steal the
token and gain unintended access.</t>
          </section>
          <section anchor="always-use-tls-https" numbered="true" toc="default">
            <name>Always use TLS (https)</name>
            <t>Clients MUST always use TLS
(https) or equivalent transport security when making requests with
bearer tokens.  Failing to do so exposes the token to numerous
attacks that could give attackers unintended access.</t>
          </section>
          <section anchor="dont-store-bearer-tokens-in-http-cookies" numbered="true" toc="default">
            <name>Don't store bearer tokens in HTTP cookies</name>
            <t>Implementations MUST NOT store
bearer tokens within cookies that can be sent in the clear (which
is the default transmission mode for cookies).  Implementations
that do store bearer tokens in cookies MUST take precautions
against cross-site request forgery.</t>
          </section>
          <section anchor="issue-short-lived-bearer-tokens" numbered="true" toc="default">
            <name>Issue short-lived bearer tokens</name>
            <t>Authorization servers SHOULD issue
short-lived (one hour or less) bearer tokens, particularly when
issuing tokens to clients that run within a web browser or other
environments where information leakage may occur.  Using
short-lived bearer tokens can reduce the impact of them being
leaked.</t>
          </section>
          <section anchor="issue-scoped-bearer-tokens" numbered="true" toc="default">
            <name>Issue scoped bearer tokens</name>
            <t>Authorization servers SHOULD issue bearer tokens
that contain an audience restriction, scoping their use to the
intended relying party or set of relying parties.</t>
          </section>
          <section anchor="dont-pass-bearer-tokens-in-page-urls" numbered="true" toc="default">
            <name>Don't pass bearer tokens in page URLs</name>
            <t>Bearer tokens MUST NOT be
passed in page URLs (for example, as query string parameters).
Instead, bearer tokens SHOULD be passed in HTTP message headers or
message bodies for which confidentiality measures are taken.
Browsers, web servers, and other software may not adequately
secure URLs in the browser history, web server logs, and other
data structures.  If bearer tokens are passed in page URLs,
attackers might be able to steal them from the history data, logs,
or other unsecured locations.</t>
          </section>
        </section>
        <section anchor="token-replay-prevention" numbered="true" toc="default">
          <name>Token Replay Prevention</name>
          <t>A sender-constrained access token scopes the applicability of an
access token to a certain sender.  This sender is obliged to
demonstrate knowledge of a certain secret as prerequisite for the
acceptance of that access token at the recipient (e.g., a resource server).</t>
          <t>Authorization and resource servers SHOULD use mechanisms for sender-
constrained access tokens to prevent token replay as described in
Section 4.8.1.1.2 of <xref target="I-D.ietf-oauth-security-topics" format="default"/>.
The use of Mutual TLS for OAuth 2.0 <xref target="RFC8705" format="default"/> is RECOMMENDED.</t>
          <t>It is RECOMMENDED to use end-to-end TLS.  If TLS traffic needs to be
terminated at an intermediary, refer to Section 4.11 of <xref target="I-D.ietf-oauth-security-topics" format="default"/>
for further security advice.</t>
        </section>
        <section anchor="access-token-privilege-restriction" numbered="true" toc="default">
          <name>Access Token Privilege Restriction</name>
          <t>The privileges associated with an access token SHOULD be restricted
to the minimum required for the particular application or use case.
This prevents clients from exceeding the privileges authorized by the
resource owner.  It also prevents users from exceeding their
privileges authorized by the respective security policy.  Privilege
restrictions also help to reduce the impact of access token leakage.</t>
          <t>In particular, access tokens SHOULD be restricted to certain resource
servers (audience restriction), preferably to a single resource
server.  To put this into effect, the authorization server associates
the access token with certain resource servers and every resource
server is obliged to verify, for every request, whether the access
token sent with that request was meant to be used for that particular
resource server.  If not, the resource server MUST refuse to serve
the respective request.  Clients and authorization servers MAY
utilize the parameters <tt>scope</tt> or <tt>resource</tt> as specified in
this document and <xref target="RFC8707" format="default"/>, respectively, to
determine the resource server they want to access.</t>
          <t>Additionally, access tokens SHOULD be restricted to certain resources
and actions on resource servers or resources.  To put this into
effect, the authorization server associates the access token with the
respective resource and actions and every resource server is obliged
to verify, for every request, whether the access token sent with that
request was meant to be used for that particular action on the
particular resource.  If not, the resource server must refuse to
serve the respective request.  Clients and authorization servers MAY
utilize the parameter <tt>scope</tt> and
<tt>authorization_details</tt> as specified in <xref target="I-D.ietf-oauth-rar" format="default"/> to
determine those resources and/or actions.</t>
        </section>
      </section>
    </section>
    <section anchor="extensibility" numbered="true" toc="default">
      <name>Extensibility</name>
      <section anchor="defining-access-token-types" numbered="true" toc="default">
        <name>Defining Access Token Types</name>
        <t>Access token types can be defined in one of two ways: registered in
the Access Token Types registry (following the procedures in
Section 11.1 of <xref target="RFC6749" format="default"/>), or by using a unique absolute URI as its name.</t>
        <t>Types utilizing a URI name SHOULD be limited to vendor-specific
implementations that are not commonly applicable, and are specific to
the implementation details of the resource server where they are
used.</t>
        <t>All other types MUST be registered.  Type names MUST conform to the
type-name ABNF.  If the type definition includes a new HTTP
authentication scheme, the type name SHOULD be identical to the HTTP
authentication scheme name (as defined by <xref target="RFC2617" format="default"/>).  The token type
<tt>example</tt> is reserved for use in examples.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
type-name  = 1*name-char
name-char  = "-" / "." / "_" / DIGIT / ALPHA
]]></artwork>
      </section>
      <section anchor="defining-new-endpoint-parameters" numbered="true" toc="default">
        <name>Defining New Endpoint Parameters</name>
        <t>New request or response parameters for use with the authorization
endpoint or the token endpoint are defined and registered in the
OAuth Parameters registry following the procedure in Section 11.2 of <xref target="RFC6749" format="default"/>.</t>
        <t>Parameter names MUST conform to the param-name ABNF, and parameter
values syntax MUST be well-defined (e.g., using ABNF, or a reference
to the syntax of an existing parameter).</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
param-name  = 1*name-char
name-char   = "-" / "." / "_" / DIGIT / ALPHA
]]></artwork>
        <t>Unregistered vendor-specific parameter extensions that are not
commonly applicable and that are specific to the implementation
details of the authorization server where they are used SHOULD
utilize a vendor-specific prefix that is not likely to conflict with
other registered values (e.g., begin with 'companyname_').</t>
      </section>
      <section anchor="defining-new-authorization-grant-types" numbered="true" toc="default">
        <name>Defining New Authorization Grant Types</name>
        <t>New authorization grant types can be defined by assigning them a
unique absolute URI for use with the <tt>grant_type</tt> parameter.  If the
extension grant type requires additional token endpoint parameters,
they MUST be registered in the OAuth Parameters registry as described
by Section 11.2 of <xref target="RFC6749" format="default"/>.</t>
      </section>
      <section anchor="new-response-types" numbered="true" toc="default">
        <name>Defining New Authorization Endpoint Response Types</name>
        <t>New response types for use with the authorization endpoint are
defined and registered in the Authorization Endpoint Response Types
registry following the procedure in Section 11.3 of <xref target="RFC6749" format="default"/>.  Response type
names MUST conform to the response-type ABNF.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
response-type  = response-name *( SP response-name )
response-name  = 1*response-char
response-char  = "_" / DIGIT / ALPHA
]]></artwork>
        <t>If a response type contains one or more space characters (%x20), it
is compared as a space-delimited list of values in which the order of
values does not matter.  Only one order of values can be registered,
which covers all other arrangements of the same set of values.</t>
        <t>For example, an extension can define and register the <tt>code other_token</tt>
response type.  Once registered, the same combination cannot be registered
as <tt>other_token code</tt>, but both values can be used to
denote the same response type.</t>
      </section>
      <section anchor="defining-additional-error-codes" numbered="true" toc="default">
        <name>Defining Additional Error Codes</name>
        <t>In cases where protocol extensions (i.e., access token types,
extension parameters, or extension grant types) require additional
error codes to be used with the authorization code grant error
response (<xref target="authorization-code-error-response" format="default"/>), the token error response (<xref target="access-token-error-response" format="default"/>), or the
resource access error response (<xref target="error-response" format="default"/>), such error codes MAY be
defined.</t>
        <t>Extension error codes MUST be registered (following the procedures in
Section 11.4 of <xref target="RFC6749" format="default"/>) if the extension they are used in conjunction with is a
registered access token type, a registered endpoint parameter, or an
extension grant type.  Error codes used with unregistered extensions
MAY be registered.</t>
        <t>Error codes MUST conform to the error ABNF and SHOULD be prefixed by
an identifying name when possible.  For example, an error identifying
an invalid value set to the extension parameter <tt>example</tt> SHOULD be
named <tt>example_invalid</tt>.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
error      = 1*error-char
error-char = %x20-21 / %x23-5B / %x5D-7E
]]></artwork>
      </section>
    </section>
    <section anchor="security-considerations" numbered="true" toc="default">
      <name>Security Considerations</name>
      <t>As a flexible and extensible framework, OAuth's security
considerations depend on many factors.  The following sections
provide implementers with security guidelines focused on the three
client profiles described in <xref target="client-types" format="default"/>: web application,
browser-based application, and native application.</t>
      <t>A comprehensive OAuth security model and analysis, as well as
background for the protocol design, is provided by
<xref target="RFC6819" format="default"/> and <xref target="I-D.ietf-oauth-security-topics" format="default"/>.</t>
      <section anchor="security-client-authentication" numbered="true" toc="default">
        <name>Client Authentication</name>
        <t>Authorization servers SHOULD use client authentication if possible.</t>
        <t>It is RECOMMENDED to use asymmetric (public-key based) methods for
client authentication such as mTLS <xref target="RFC8705" format="default"/> or
<tt>private_key_jwt</tt> <xref target="OpenID" format="default"/>. When asymmetric methods for client
authentication are used, authorization servers do not need to store
sensitive symmetric keys, making these methods more robust against a
number of attacks.</t>
        <t>Authorization server MUST only rely on client authentication if the
process of issuance/registration and distribution of the underlying
credentials ensures their confidentiality.</t>
        <t>When client authentication is not possible, the authorization server
SHOULD employ other means to validate the client's identity - for
example, by requiring the registration of the client redirect URI
or enlisting the resource owner to confirm identity.  A valid
redirect URI is not sufficient to verify the client's identity
when asking for resource owner authorization but can be used to
prevent delivering credentials to a counterfeit client after
obtaining resource owner authorization.</t>
        <t>The authorization server must consider the security implications of
interacting with unauthenticated clients and take measures to limit
the potential exposure of other credentials (e.g., refresh tokens)
issued to such clients.</t>
        <t>The privileges an authorization server associates with a certain
client identity MUST depend on the assessment of the overall process
for client identification and client credential lifecycle management.
For example, authentication of a dynamically registered client just
ensures the authorization server it is talking to the same client again.
In contrast, if there is a web application whose developer's identity
was verified, who signed a contract and is issued a client secret
that is only used in a secure backend service, the authorization
server might allow this client to access more sensible services
or to use the client credential grant type.</t>
        <section anchor="client-authentication-of-native-apps" numbered="true" toc="default">
          <name>Client Authentication of Native Apps</name>
          <t>Secrets that are statically included as part of an app distributed to
multiple users should not be treated as confidential secrets, as one
user may inspect their copy and learn the shared secret.  For this
reason, it is NOT
RECOMMENDED for authorization servers to require client
authentication of public native apps clients using a shared secret,
as this serves little value beyond client identification which is
already provided by the <tt>client_id</tt> request parameter.</t>
          <t>Authorization servers that still require a statically included shared
secret for native app clients MUST treat the client as a public
client (as defined in <xref target="client-types" format="default"/>), and not
accept the secret as proof of the client's identity.  Without
additional measures, such clients are subject to client impersonation
(see <xref target="native-app-client-impersonation" format="default"/>).</t>
        </section>
      </section>
      <section anchor="native-app-registration" numbered="true" toc="default">
        <name>Registration of Native App Clients</name>
        <t>Except when using a mechanism like Dynamic Client Registration
<xref target="RFC7591" format="default"/> to provision per-instance secrets, native apps are
classified as public clients, as defined in <xref target="client-types" format="default"/>;
they MUST be registered with the authorization server as
such.  Authorization servers MUST record the client type in the
client registration details in order to identify and process requests
accordingly.</t>
        <t>Authorization servers MUST require clients to register their complete
redirect URI (including the path component) and reject authorization
requests that specify a redirect URI that doesn't exactly match the
one that was registered; the exception is loopback redirects, where
an exact match is required except for the port URI component.</t>
        <t>For private-use URI scheme-based redirects, authorization servers
SHOULD enforce the requirement in <xref target="private-use-uri-scheme" format="default"/> that clients use
schemes that are reverse domain name based.  At a minimum, any
private-use URI scheme that doesn't contain a period character (<tt>.</tt>)
SHOULD be rejected.</t>
        <t>In addition to the collision-resistant properties, requiring a URI
scheme based on a domain name that is under the control of the app
can help to prove ownership in the event of a dispute where two apps
claim the same private-use URI scheme (where one app is acting
maliciously).  For example, if two apps claimed <tt>com.example.app</tt>,
the owner of <tt>example.com</tt> could petition the app store operator to
remove the counterfeit app.  Such a petition is harder to prove if a
generic URI scheme was used.</t>
        <t>Authorization servers MAY request the inclusion of other platform-
specific information, such as the app package or bundle name, or
other information that may be useful for verifying the calling app's
identity on operating systems that support such functions.</t>
      </section>
      <section anchor="client-impersonation" numbered="true" toc="default">
        <name>Client Impersonation</name>
        <t>A malicious client can impersonate another client and obtain access
to protected resources if the impersonated client fails to, or is
unable to, keep its client credentials confidential.</t>
        <t>The authorization server MUST authenticate the client whenever
possible.  If the authorization server cannot authenticate the client
due to the client's nature, the authorization server MUST require the
registration of any redirect URI used for receiving authorization
responses and SHOULD utilize other means to protect resource owners
from such potentially malicious clients.  For example, the
authorization server can engage the resource owner to assist in
identifying the client and its origin.</t>
        <t>The authorization server SHOULD enforce explicit resource owner
authentication and provide the resource owner with information about
the client and the requested authorization scope and lifetime.  It is
up to the resource owner to review the information in the context of
the current client and to authorize or deny the request.</t>
        <t>The authorization server SHOULD NOT process repeated authorization
requests automatically (without active resource owner interaction)
without authenticating the client or relying on other measures to
ensure that the repeated request comes from the original client and
not an impersonator.</t>
        <section anchor="native-app-client-impersonation" numbered="true" toc="default">
          <name>Impersonation of Native Apps</name>
          <t>As stated above, the authorization
server SHOULD NOT process authorization requests automatically
without user consent or interaction, except when the identity of the
client can be assured.  This includes the case where the user has
previously approved an authorization request for a given client id -
unless the identity of the client can be proven, the request SHOULD
be processed as if no previous request had been approved.</t>
          <t>Measures such as claimed <tt>https</tt> scheme redirects MAY be accepted by
authorization servers as identity proof.  Some operating systems may
offer alternative platform-specific identity features that MAY be
accepted, as appropriate.</t>
        </section>
      </section>
      <section anchor="access-tokens" numbered="true" toc="default">
        <name>Access Tokens</name>
        <t>Access token credentials (as well as any confidential access token
attributes) MUST be kept confidential in transit and storage, and
only shared among the authorization server, the resource servers the
access token is valid for, and the client to whom the access token is
issued.  Access token credentials MUST only be transmitted using TLS
as described in <xref target="tls-version" format="default"/> with server authentication as defined by
<xref target="RFC2818" format="default"/>.</t>
        <t>The authorization server MUST ensure that access tokens cannot be
generated, modified, or guessed to produce valid access tokens by
unauthorized parties.</t>
        <section anchor="access-token-privilege-restriction-1" numbered="true" toc="default">
          <name>Access Token Privilege Restriction</name>
          <t>The client SHOULD request access tokens with the minimal scope
necessary.  The authorization server SHOULD take the client identity
into account when choosing how to honor the requested scope and MAY
issue an access token with less rights than requested.</t>
          <t>The privileges associated with an access token SHOULD be restricted to
the minimum required for the particular application or use case. This
prevents clients from exceeding the privileges authorized by the
resource owner. It also prevents users from exceeding their privileges
authorized by the respective security policy. Privilege restrictions
also help to reduce the impact of access token leakage.</t>
          <t>In particular, access tokens SHOULD be restricted to certain resource
servers (audience restriction), preferably to a single resource
server. To put this into effect, the authorization server associates
the access token with certain resource servers and every resource
server is obliged to verify, for every request, whether the access
token sent with that request was meant to be used for that particular
resource server. If not, the resource server MUST refuse to serve the
respective request. Clients and authorization servers MAY utilize the
parameters <tt>scope</tt> or <tt>resource</tt> as specified in
<xref target="RFC8707" format="default"/>, respectively, to determine the
resource server they want to access.</t>
        </section>
        <section anchor="access-token-replay-prevention" numbered="true" toc="default">
          <name>Access Token Replay Prevention</name>
          <t>Additionally, access tokens SHOULD be restricted to certain resources
and actions on resource servers or resources. To put this into effect,
the authorization server associates the access token with the
respective resource and actions and every resource server is obliged
to verify, for every request, whether the access token sent with that
request was meant to be used for that particular action on the
particular resource. If not, the resource server must refuse to serve
the respective request. Clients and authorization servers MAY utilize
the parameter <tt>scope</tt> and <tt>authorization_details</tt> as specified in
<xref target="I-D.ietf-oauth-rar" format="default"/> to determine those resources and/or actions.</t>
          <t>Authorization and resource servers SHOULD use mechanisms for
sender-constrained access tokens to prevent token replay as described
in (#pop_tokens). A sender-constrained access token scopes the applicability
of an access
token to a certain sender. This sender is obliged to demonstrate knowledge
of a certain secret as prerequisite for the acceptance of that access token at
the recipient (e.g., a resource server). The use of Mutual TLS for OAuth 2.0
<xref target="RFC8705" format="default"/> is RECOMMENDED.</t>
        </section>
      </section>
      <section anchor="refresh-tokens" numbered="true" toc="default">
        <name>Refresh Tokens</name>
        <t>Authorization servers MAY issue refresh tokens to clients.</t>
        <t>Refresh tokens MUST be kept confidential in transit and storage, and
shared only among the authorization server and the client to whom the
refresh tokens were issued.  The authorization server MUST maintain
the binding between a refresh token and the client to whom it was
issued.  Refresh tokens MUST only be transmitted using TLS as
described in <xref target="tls-version" format="default"/> with server authentication as defined by
<xref target="RFC2818" format="default"/>.</t>
        <t>The authorization server MUST verify the binding between the refresh
token and client identity whenever the client identity can be
authenticated.  When client authentication is not possible, the
authorization server SHOULD issue sender-constrained refresh tokens
or use refresh token rotation as described in (#refreshing-an-access-token).</t>
        <t>The authorization server MUST ensure that refresh tokens cannot be
generated, modified, or guessed to produce valid refresh tokens by
unauthorized parties.</t>
      </section>
      <section anchor="client-impersonating-resource-owner" numbered="true" toc="default">
        <name>Client Impersonating Resource Owner</name>
        <t>Resource servers may make access control decisions based on the
identity of the resource owner as communicated in the <tt>sub</tt> claim
returned by the authorization server in a token introspection
response <xref target="RFC7662" format="default"/> or other mechanisms.  If a client is able to
choose its own <tt>client_id</tt> during registration with the authorization
server, then there is a risk that it can register with the same <tt>sub</tt>
value as a privileged user.  A subsequent access token obtained under
the client credentials grant may be mistaken for an access token
authorized by the privileged user if the resource server does not
perform additional checks.</t>
        <t>Authorization servers SHOULD NOT allow clients to influence their
<tt>client_id</tt> or <tt>sub</tt> value or any other claim if that can cause
confusion with a genuine resource owner.  Where this cannot be
avoided, authorization servers MUST provide other means for the
resource server to distinguish between access tokens authorized by a
resource owner from access tokens authorized by the client itself.</t>
      </section>
      <section anchor="protecting-redirect-based-flows" numbered="true" toc="default">
        <name>Protecting Redirect-Based Flows</name>
        <t>When comparing client redirect URIs against pre-registered URIs,
authorization servers MUST utilize exact string matching. This measure
contributes to the prevention of leakage of authorization codes and
access tokens (see (#insufficient_uri_validation)). It can also help to
detect mix-up attacks (see (#mix_up)).</t>
        <t>Clients MUST NOT expose URLs that forward the user's browser to
arbitrary URIs obtained from a query parameter ("open redirector").
Open redirectors can enable exfiltration of authorization codes and
access tokens, see (#open_redirector_on_client).</t>
        <t>Clients MUST prevent Cross-Site Request Forgery (CSRF). In this
context, CSRF refers to requests to the redirection endpoint that do
not originate at the authorization server, but a malicious third party
(see Section 4.4.1.8. of <xref target="RFC6819" format="default"/> for details). Clients that have
ensured that the authorization server supports the <tt>code_challenge</tt> parameter MAY
rely the CSRF protection provided by that mechanism. In OpenID Connect flows,
the <tt>nonce</tt> parameter provides CSRF protection. Otherwise, one-time
use CSRF tokens carried in the <tt>state</tt> parameter that are securely
bound to the user agent MUST be used for CSRF protection (see
(#csrf_countermeasures)).</t>
        <t>In order to prevent mix-up attacks (see (#mix_up)), clients MUST only process redirect
responses of the authorization server they sent the respective request
to and from the same user agent this authorization request was
initiated with. Clients MUST store the authorization server they sent
an authorization request to and bind this information to the user
agent and check that the authorization request was received from the
correct authorization server. Clients MUST ensure that the subsequent
access token request, if applicable, is sent to the same authorization
server. Clients SHOULD use distinct redirect URIs for each
authorization server as a means to identify the authorization server a
particular response came from.</t>
        <t>An AS that redirects a request potentially containing user credentials
MUST avoid forwarding these user credentials accidentally (see
<xref target="redirect_307" format="default"/> for details).</t>
        <section anchor="loopback-redirect-considerations-in-native-apps" numbered="true" toc="default">
          <name>Loopback Redirect Considerations in Native Apps</name>
          <t>Loopback interface redirect URIs use the <tt>http</tt> scheme (i.e., without
Transport Layer Security (TLS)).  This is acceptable for loopback
interface redirect URIs as the HTTP request never leaves the device.</t>
          <t>Clients should open the network port only when starting the
authorization request and close it once the response is returned.</t>
          <t>Clients should listen on the loopback network interface only, in
order to avoid interference by other network actors.</t>
          <t>While redirect URIs using localhost (i.e.,
<tt>http://localhost:{port}/{path}</tt>) function similarly to loopback IP
redirects described in <xref target="loopback-interface-redirection" format="default"/>, the use of <tt>localhost</tt> is NOT
RECOMMENDED.  Specifying a redirect URI with the loopback IP literal
rather than <tt>localhost</tt> avoids inadvertently listening on network
interfaces other than the loopback interface.  It is also less
susceptible to client-side firewalls and misconfigured host name
resolution on the user's device.</t>
        </section>
        <section anchor="redirect_307" numbered="true" toc="default">
          <name>HTTP 307 Redirect</name>
          <t>An AS which redirects a request that potentially contains user
credentials MUST NOT use the HTTP 307 status code for
redirection.  If an HTTP redirection (and not, for example,
JavaScript) is used for such a request, AS SHOULD use HTTP status
code 303 "See Other".</t>
          <t>At the authorization endpoint, a typical protocol flow is that the AS
prompts the user to enter their credentials in a form that is then
submitted (using the HTTP POST method) back to the authorization
server.  The AS checks the credentials and, if successful, redirects
the user agent to the client's redirect URI.</t>
          <t>If the status code 307 were used for redirection, the user agent 
would send the user credentials via HTTP POST to the client.</t>
          <t>This discloses the sensitive credentials to the client.  If the
relying party is malicious, it can use the credentials to impersonate
the user at the AS.</t>
          <t>The behavior might be unexpected for developers, but is defined in
<xref target="RFC7231" format="default"/>, Section 6.4.7.  This status code does not require the user
agent to rewrite the POST request to a GET request and thereby drop
the form data in the POST request body.</t>
          <t>In the HTTP standard <xref target="RFC7231" format="default"/>, only the status code 303
unambigiously enforces rewriting the HTTP POST request to an HTTP GET
request.  For all other status codes, including the popular 302, user
agents can opt not to rewrite POST to GET requests and therefore to
reveal the user credentials to the client.  (In practice, however,
most user agents will only show this behaviour for 307 redirects.)</t>
          <t>Therefore, the RECOMMENDED status code for HTTP redirects is 303.</t>
        </section>
      </section>
      <section anchor="authorization_codes" numbered="true" toc="default">
        <name>Authorization Codes</name>
        <t>The transmission of authorization codes MUST be made over a secure
channel, and the client MUST require the use of TLS with its
redirect URI if the URI identifies a network resource.  Since
authorization codes are transmitted via user-agent redirections, they
could potentially be disclosed through user-agent history and HTTP
referrer headers.</t>
        <t>Authorization codes MUST be short lived and single-use.  If the
authorization server observes multiple attempts to exchange an
authorization code for an access token, the authorization server
SHOULD attempt to revoke all refresh and access tokens already granted
based on the compromised authorization code.</t>
        <t>If the client can be authenticated, the authorization servers MUST
authenticate the client and ensure that the authorization code was
issued to the same client.</t>
        <t>Clients MUST prevent injection (replay) of authorization codes into the
authorization response by attackers. To this end, using <tt>code_challenge</tt> and
<tt>code_verifier</tt> is REQUIRED for clients and authorization servers MUST enforce
their use, unless both of the following criteria are met:</t>
        <ul spacing="normal">
          <li>The client is a confidential client.</li>
          <li>In the specific deployment and the specific request, there is reasonable
assurance for authorization server that the client implements the OpenID
Connect <tt>nonce</tt> mechanism properly.</li>
        </ul>
        <t>In this case, using and enforcing <tt>code_challenge</tt> and <tt>code_verifier</tt> is still RECOMMENDED.</t>
        <t>The <tt>code_challenge</tt> or OpenID Connect <tt>nonce</tt> value MUST be
transaction-specific and securely bound to the client and the user agent in
which the transaction was started. If a transaction leads to an error, fresh
values for <tt>code_challenge</tt> or <tt>nonce</tt> MUST be chosen.</t>
        <t>Historic note: Although PKCE <xref target="RFC7636" format="default"/> was originally designed as a mechanism
to protect native apps, this advice applies to all kinds of OAuth clients,
including web applications and other confidential clients.</t>
        <t>Clients SHOULD use code challenge methods that
do not expose the <tt>code_verifier</tt> in the authorization request.
Otherwise, attackers that can read the authorization request (cf.
Attacker A4 in (#secmodel)) can break the security provided
by this mechanism. Currently, <tt>S256</tt> is the only such method.</t>
        <t>When an authorization code arrives at the token endpoint, the 
authorization server MUST do the following check:</t>
        <ol spacing="normal" type="1"><li>If there was a <tt>code_challenge</tt> in the authorization request for which this 
code was issued, there must be a <tt>code_verifier</tt> in the token request, and it 
MUST be verified according to the steps in <xref target="access-token-request" format="default"/>.
(This is no change from the current behavior in <xref target="RFC7636" format="default"/>.)</li>
          <li>If there was no <tt>code_challenge</tt> in the authorization request, any request to 
the token endpoint containing a <tt>code_verifier</tt> MUST be rejected.</li>
        </ol>
        <t>Authorization servers MUST support the <tt>code_challenge</tt> and <tt>code_verifier</tt> parameters.</t>
        <t>Authorization servers MUST provide a way to detect their support for
the <tt>code_challenge</tt> mechanism. To this end, they MUST either (a) publish the element
<tt>code_challenge_methods_supported</tt> in their AS metadata (<xref target="RFC8414" format="default"/>)
containing the supported <tt>code_challenge_method</tt>s (which can be used by
the client to detect support) or (b) provide a
deployment-specific way to ensure or determine support by the AS.</t>
      </section>
      <section anchor="request-confidentiality" numbered="true" toc="default">
        <name>Request Confidentiality</name>
        <t>Access tokens, refresh tokens, authorization codes, and client
credentials MUST NOT be transmitted in the clear.</t>
        <t>The <tt>state</tt> and <tt>scope</tt> parameters SHOULD NOT include sensitive
client or resource owner information in plain text, as they can be
transmitted over insecure channels or stored insecurely.</t>
      </section>
      <section anchor="ensuring-endpoint-authenticity" numbered="true" toc="default">
        <name>Ensuring Endpoint Authenticity</name>
        <t>In order to prevent man-in-the-middle attacks, the authorization
server MUST require the use of TLS with server authentication as
defined by <xref target="RFC2818" format="default"/> for any request sent to the authorization and
token endpoints.  The client MUST validate the authorization server's
TLS certificate as defined by <xref target="RFC6125" format="default"/> and in accordance with its
requirements for server identity authentication.</t>
      </section>
      <section anchor="credentials-guessing-attacks" numbered="true" toc="default">
        <name>Credentials-Guessing Attacks</name>
        <t>The authorization server MUST prevent attackers from guessing access
tokens, authorization codes, refresh tokens, resource owner
passwords, and client credentials.</t>
        <t>The probability of an attacker guessing generated tokens (and other
credentials not intended for handling by end-users) MUST be less than
or equal to 2^(-128) and SHOULD be less than or equal to 2^(-160).</t>
        <t>The authorization server MUST utilize other means to protect
credentials intended for end-user usage.</t>
      </section>
      <section anchor="phishing-attacks" numbered="true" toc="default">
        <name>Phishing Attacks</name>
        <t>Wide deployment of this and similar protocols may cause end-users to
become inured to the practice of being redirected to websites where
they are asked to enter their passwords.  If end-users are not
careful to verify the authenticity of these websites before entering
their credentials, it will be possible for attackers to exploit this
practice to steal resource owners' passwords.</t>
        <t>Service providers should attempt to educate end-users about the risks
phishing attacks pose and should provide mechanisms that make it easy
for end-users to confirm the authenticity of their sites.  Client
developers should consider the security implications of how they
interact with the user-agent (e.g., external, embedded), and the
ability of the end-user to verify the authenticity of the
authorization server.</t>
        <t>To reduce the risk of phishing attacks, the authorization servers
MUST require the use of TLS on every endpoint used for end-user
interaction.</t>
      </section>
      <section anchor="fake-external-user-agents-in-native-apps" numbered="true" toc="default">
        <name>Fake External User-Agents in Native Apps</name>
        <t>The native app that is initiating the authorization request has a
large degree of control over the user interface and can potentially
present a fake external user-agent, that is, an embedded user-agent
made to appear as an external user-agent.</t>
        <t>When all good actors are using external user-agents, the advantage is
that it is possible for security experts to detect bad actors, as
anyone faking an external user-agent is provably bad.  On the other
hand, if good and bad actors alike are using embedded user-agents,
bad actors don't need to fake anything, making them harder to detect.
Once a malicious app is detected, it may be possible to use this
knowledge to blacklist the app's signature in malware scanning
software, take removal action (in the case of apps distributed by app
stores) and other steps to reduce the impact and spread of the
malicious app.</t>
        <t>Authorization servers can also directly protect against fake external
user-agents by requiring an authentication factor only available to
true external user-agents.</t>
        <t>Users who are particularly concerned about their security when using
in-app browser tabs may also take the additional step of opening the
request in the full browser from the in-app browser tab and complete
the authorization there, as most implementations of the in-app
browser tab pattern offer such functionality.</t>
      </section>
      <section anchor="malicious-external-user-agents-in-native-apps" numbered="true" toc="default">
        <name>Malicious External User-Agents in Native Apps</name>
        <t>If a malicious app is able to configure itself as the default handler
for <tt>https</tt> scheme URIs in the operating system, it will be able to
intercept authorization requests that use the default browser and
abuse this position of trust for malicious ends such as phishing the
user.</t>
        <t>This attack is not confined to OAuth; a malicious app configured in
this way would present a general and ongoing risk to the user beyond
OAuth usage by native apps.  Many operating systems mitigate this
issue by requiring an explicit user action to change the default
handler for <tt>http</tt> and <tt>https</tt> scheme URIs.</t>
      </section>
      <section anchor="csrf_countermeasures" numbered="true" toc="default">
        <name>Cross-Site Request Forgery</name>
        <t>An attacker might attempt to inject a request to the redirect URI of
the legitimate client on the victim's device, e.g., to cause the
client to access resources under the attacker's control. This is a
variant of an attack known as Cross-Site Request Forgery (CSRF).</t>
        <t>The traditional countermeasure are CSRF tokens that are bound to the
user agent and passed in the <tt>state</tt> parameter to the authorization
server as described in <xref target="RFC6819" format="default"/>. The same protection is provided by
the <tt>code_verifier</tt> parameter or the OpenID Connect <tt>nonce</tt> value.</t>
        <t>When using <tt>code_verifier</tt> instead of <tt>state</tt> or <tt>nonce</tt> for CSRF protection, it is
important to note that:</t>
        <ul spacing="normal">
          <li>Clients MUST ensure that the AS supports the <tt>code_challenge_method</tt> 
intended to be used by the client. If an authorization server does not support the requested method,
<tt>state</tt> or <tt>nonce</tt> MUST be used for CSRF protection instead.</li>
          <li>If <tt>state</tt> is used for carrying application state, and integrity of
its contents is a concern, clients MUST protect <tt>state</tt> against
tampering and swapping. This can be achieved by binding the
contents of state to the browser session and/or signed/encrypted
state values <xref target="I-D.bradley-oauth-jwt-encoded-state" format="default"/>.</li>
        </ul>
        <t>AS therefore MUST provide a way to detect their supported code challenge methods
either via AS metadata according to <xref target="RFC8414" format="default"/> or provide a
deployment-specific way to ensure or determine support.</t>
      </section>
      <section anchor="clickjacking" numbered="true" toc="default">
        <name>Clickjacking</name>
        <t>As described in Section 4.4.1.9 of <xref target="RFC6819" format="default"/>, the authorization
request is susceptible to clickjacking. An attacker can use this
vector to obtain the user's authentication credentials, change the
scope of access granted to the client, and potentially access the
user's resources.</t>
        <t>Authorization servers MUST prevent clickjacking attacks. Multiple
countermeasures are described in <xref target="RFC6819" format="default"/>, including the use of the
X-Frame-Options HTTP response header field and frame-busting
JavaScript. In addition to those, authorization servers SHOULD also
use Content Security Policy (CSP) level 2 <xref target="CSP-2" format="default"/> or greater.</t>
        <t>To be effective, CSP must be used on the authorization endpoint and,
if applicable, other endpoints used to authenticate the user and
authorize the client (e.g., the device authorization endpoint, login
pages, error pages, etc.). This prevents framing by unauthorized
origins in user agents that support CSP. The client MAY permit being
framed by some other origin than the one used in its redirection
endpoint. For this reason, authorization servers SHOULD allow
administrators to configure allowed origins for particular clients
and/or for clients to register these dynamically.</t>
        <t>Using CSP allows authorization servers to specify multiple origins in
a single response header field and to constrain these using flexible
patterns (see <xref target="CSP-2" format="default"/> for details). Level 2 of this standard provides
a robust mechanism for protecting against clickjacking by using
policies that restrict the origin of frames (using <tt>frame-ancestors</tt>)
together with those that restrict the sources of scripts allowed to
execute on an HTML page (by using <tt>script-src</tt>). A non-normative
example of such a policy is shown in the following listing:</t>
        <t><tt>
HTTP/1.1 200 OK
Content-Security-Policy: frame-ancestors https://ext.example.org:8000
Content-Security-Policy: script-src 'self'
X-Frame-Options: ALLOW-FROM https://ext.example.org:8000
...
</tt></t>
        <t>Because some user agents do not support <xref target="CSP-2" format="default"/>, this technique
SHOULD be combined with others, including those described in
<xref target="RFC6819" format="default"/>, unless such legacy user agents are explicitly unsupported
by the authorization server. Even in such cases, additional
countermeasures SHOULD still be employed.</t>
      </section>
      <section anchor="code-injection-and-input-validation" numbered="true" toc="default">
        <name>Code Injection and Input Validation</name>
        <t>A code injection attack occurs when an input or otherwise external
variable is used by an application unsanitized and causes
modification to the application logic.  This may allow an attacker to
gain access to the application device or its data, cause denial of
service, or introduce a wide range of malicious side-effects.</t>
        <t>The authorization server and client MUST sanitize (and validate when
possible) any value received - in particular, the value of the
<tt>state</tt> and <tt>redirect_uri</tt> parameters.</t>
      </section>
      <section anchor="open-redirectors" numbered="true" toc="default">
        <name>Open Redirectors</name>
        <t>The following attacks can occur when an AS or client has an open
redirector. An open redirector is an endpoint that forwards a user's
browser to an arbitrary URI obtained from a query parameter.</t>
        <section anchor="open_redirector_on_client" numbered="true" toc="default">
          <name>Client as Open Redirector</name>
          <t>Clients MUST NOT expose open redirectors. Attackers may use open
redirectors to produce URLs pointing to the client and utilize them to
exfiltrate authorization codes and access tokens, as described in
(#redir_uri_open_redir). Another abuse case is to produce URLs that
appear to point to the client. This might trick users into trusting the URL
and follow it in their browser. This can be abused for phishing.</t>
          <t>In order to prevent open redirection, clients should only redirect if
the target URLs are whitelisted or if the origin and integrity of a
request can be authenticated. Countermeasures against open redirection
are described by OWASP <xref target="owasp_redir" format="default"/>.</t>
        </section>
        <section anchor="authorization-server-as-open-redirector" numbered="true" toc="default">
          <name>Authorization Server as Open Redirector</name>
          <t>Just as with clients, attackers could try to utilize a user's trust in
the authorization server (and its URL in particular) for performing
phishing attacks. OAuth authorization servers regularly redirect users
to other web sites (the clients), but must do so in a safe way.</t>
          <t><xref target="authorization-code-error-response" format="default"/> already prevents open redirects by
stating that the AS MUST NOT automatically redirect the user agent in case
of an invalid combination of <tt>client_id</tt> and <tt>redirect_uri</tt>.</t>
          <t>However, an attacker could also utilize a correctly registered
redirect URI to perform phishing attacks. The attacker could, for
example, register a client via dynamic client registration <xref target="RFC7591" format="default"/>
and intentionally send an erroneous authorization request, e.g., by
using an invalid scope value, thus instructing the AS to redirect the
user agent to its phishing site.</t>
          <t>The AS MUST take precautions to prevent this threat. Based on its risk
assessment, the AS needs to decide whether it can trust the redirect
URI and SHOULD only automatically redirect the user agent if it trusts
the redirect URI. If the URI is not trusted, the AS MAY inform the
user and rely on the user to make the correct decision.</t>
        </section>
      </section>
      <section anchor="authorization-server-mix-up-mitigation-in-native-apps" numbered="true" toc="default">
        <name>Authorization Server Mix-Up Mitigation in Native Apps</name>
        <t>(TODO: merge this with the regular mix-up section when it is brought in)</t>
        <t>To protect against a compromised or malicious authorization server
attacking another authorization server used by the same app, it is
REQUIRED that a unique redirect URI is used for each authorization
server used by the app (for example, by varying the path component),
and that authorization responses are rejected if the redirect URI
they were received on doesn't match the redirect URI in an outgoing
authorization request.</t>
        <t>The native app MUST store the redirect URI used in the authorization
request with the authorization session data (i.e., along with <tt>state</tt>
and other related data) and MUST verify that the URI on which the
authorization response was received exactly matches it.</t>
        <t>The requirement of <xref target="native-app-registration" format="default"/>, specifically that authorization
servers reject requests with URIs that don't match what was
registered, is also required to prevent such attacks.</t>
      </section>
      <section anchor="native-apps-embedded-user-agents" numbered="true" toc="default">
        <name>Embedded User Agents in Native Apps</name>
        <t>Embedded user-agents are a technically possible method for authorizing native
apps.  These embedded user-agents are unsafe for use by third parties
to the authorization server by definition, as the app that hosts the
embedded user-agent can access the user's full authentication
credential, not just the OAuth authorization grant that was intended
for the app.</t>
        <t>In typical web-view-based implementations of embedded user-agents,
the host application can record every keystroke entered in the login
form to capture usernames and passwords, automatically submit forms
to bypass user consent, and copy session cookies and use them to
perform authenticated actions as the user.</t>
        <t>Even when used by trusted apps belonging to the same party as the
authorization server, embedded user-agents violate the principle of
least privilege by having access to more powerful credentials than
they need, potentially increasing the attack surface.</t>
        <t>Encouraging users to enter credentials in an embedded user-agent
without the usual address bar and visible certificate validation
features that browsers have makes it impossible for the user to know
if they are signing in to the legitimate site; even when they are, it
trains them that it's OK to enter credentials without validating the
site first.</t>
        <t>Aside from the security concerns, embedded user-agents do not share
the authentication state with other apps or the browser, requiring
the user to log in for every authorization request, which is often
considered an inferior user experience.</t>
      </section>
      <section anchor="other-recommendations" numbered="true" toc="default">
        <name>Other Recommendations</name>
        <t>Authorization servers SHOULD NOT allow clients to influence their
<tt>client_id</tt> or <tt>sub</tt> value or any other claim if that can cause
confusion with a genuine resource owner (see (#client_impersonating)).</t>
      </section>
    </section>
    <section anchor="native-applications" numbered="true" toc="default">
      <name>Native Applications</name>
      <t>Native applications are clients installed and executed on the device
used by the resource owner (i.e., desktop application, native mobile
application).  Native applications require special consideration
related to security, platform capabilities, and overall end-user
experience.</t>
      <t>The authorization endpoint requires interaction between the client
and the resource owner's user-agent. The best current practice is to
perform the OAuth authorization request in an external user-agent
(typically the browser) rather than an embedded user-agent (such as
one implemented with web-views).</t>
      <t>The native application can capture the
response from the authorization server using a redirect URI
with a scheme registered with the operating system to invoke the
client as the handler, manual copy-and-paste of the credentials,
running a local web server, installing a user-agent extension, or
by providing a redirect URI identifying a server-hosted
resource under the client's control, which in turn makes the
response available to the native application.</t>
      <t>Previously, it was common for native apps to use embedded user-agents
(commonly implemented with web-views) for OAuth authorization
requests.  That approach has many drawbacks, including the host app
being able to copy user credentials and cookies as well as the user
needing to authenticate from scratch in each app.  See <xref target="native-apps-embedded-user-agents" format="default"/>
for a deeper analysis of the drawbacks of using embedded user-agents
for OAuth.</t>
      <t>Native app authorization requests that use the browser are more
secure and can take advantage of the user's authentication state.
Being able to use the existing authentication session in the browser
enables single sign-on, as users don't need to authenticate to the
authorization server each time they use a new app (unless required by
the authorization server policy).</t>
      <t>Supporting authorization flows between a native app and the browser
is possible without changing the OAuth protocol itself, as the OAuth
authorization request and response are already defined in terms of
URIs.  This encompasses URIs that can be used for inter-app
communication.  Some OAuth server implementations that assume all
clients are confidential web clients will need to add an
understanding of public native app clients and the types of redirect
URIs they use to support this best practice.</t>
      <section anchor="using-inter-app-uri-communication-for-oauth-in-native-apps" numbered="true" toc="default">
        <name>Using Inter-App URI Communication for OAuth in Native Apps</name>
        <t>Just as URIs are used for OAuth on the web to initiate
the authorization request and return the authorization response to
the requesting website, URIs can be used by native apps to initiate
the authorization request in the device's browser and return the
response to the requesting native app.</t>
        <t>By adopting the same methods used on the web for OAuth, benefits seen
in the web context like the usability of a single sign-on session and
the security of a separate authentication context are likewise gained
in the native app context.  Reusing the same approach also reduces
the implementation complexity and increases interoperability by
relying on standards-based web flows that are not specific to a
particular platform.</t>
        <t>Native apps MUST use an external
user-agent to perform OAuth authorization requests.  This is achieved
by opening the authorization request in the browser (detailed in
<xref target="authorization-request-native-app" format="default"/>) and using a redirect URI that will return the
authorization response back to the native app (defined in <xref target="authorization-response-native-app" format="default"/>).</t>
      </section>
      <section anchor="authorization-request-native-app" numbered="true" toc="default">
        <name>Initiating the Authorization Request from a Native App</name>
        <t>Native apps needing user authorization create an authorization
request URI with the authorization code grant type per <xref target="authorization-code-grant" format="default"/>
using a redirect URI capable of being received by the native app.</t>
        <t>The function of the redirect URI for a native app authorization
request is similar to that of a web-based authorization request.
Rather than returning the authorization response to the OAuth
client's server, the redirect URI used by a native app returns the
response to the app.  Several options for a redirect URI that will
return the authorization response to the native app in different
platforms are documented in <xref target="authorization-response-native-app" format="default"/>.  Any redirect URI that allows
the app to receive the URI and inspect its parameters is viable.</t>
        <t>After constructing the authorization request URI, the app uses
platform-specific APIs to open the URI in an external user-agent.
Typically, the external user-agent used is the default browser, that
is, the application configured for handling <tt>http</tt> and <tt>https</tt> scheme
URIs on the system; however, different browser selection criteria and
other categories of external user-agents MAY be used.</t>
        <t>This best practice focuses on the browser as the RECOMMENDED external
user-agent for native apps.  An external user-agent designed
specifically for user authorization and capable of processing
authorization requests and responses like a browser MAY also be used.
Other external user-agents, such as a native app provided by the
authorization server may meet the criteria set out in this best
practice, including using the same redirect URI properties, but
their use is out of scope for this specification.</t>
        <t>Some platforms support a browser feature known as "in-app browser
tabs", where an app can present a tab of the browser within the app
context without switching apps, but still retain key benefits of the
browser such as a shared authentication state and security context.
On platforms where they are supported, it is RECOMMENDED, for
usability reasons, that apps use in-app browser tabs for the
authorization request.</t>
      </section>
      <section anchor="authorization-response-native-app" numbered="true" toc="default">
        <name>Receiving the Authorization Response in a Native App</name>
        <t>There are several redirect URI options available to native apps for
receiving the authorization response from the browser, the
availability and user experience of which varies by platform.</t>
        <t>To fully support native apps, authorization servers MUST offer
at least the three redirect URI options described in the following
subsections to native apps.  Native apps MAY use whichever redirect
option suits their needs best, taking into account platform-specific
implementation details.</t>
        <section anchor="private-use-uri-scheme" numbered="true" toc="default">
          <name>Private-Use URI Scheme Redirection</name>
          <t>Many mobile and desktop computing platforms support inter-app
communication via URIs by allowing apps to register private-use URI
schemes (sometimes colloquially referred to as "custom URL schemes")
like <tt>com.example.app</tt>.  When the browser or another app attempts to
load a URI with a private-use URI scheme, the app that registered it
is launched to handle the request.</t>
          <t>To perform an authorization request with a private-use URI
scheme redirect, the native app launches the browser with a standard
authorization request, but one where the redirect URI utilizes a
private-use URI scheme it registered with the operating system.</t>
          <t>When choosing a URI scheme to associate with the app, apps MUST use a
URI scheme based on a domain name under their control, expressed in
reverse order, as recommended by Section 3.8 of <xref target="RFC7595" format="default"/> for
private-use URI schemes.</t>
          <t>For example, an app that controls the domain name <tt>app.example.com</tt>
can use <tt>com.example.app</tt> as their scheme.  Some authorization
servers assign client identifiers based on domain names, for example,
<tt>client1234.usercontent.example.net</tt>, which can also be used as the
domain name for the scheme when reversed in the same manner.  A
scheme such as <tt>myapp</tt>, however, would not meet this requirement, as
it is not based on a domain name.</t>
          <t>When there are multiple apps by the same publisher, care must be
taken so that each scheme is unique within that group.  On platforms
that use app identifiers based on reverse-order domain names, those
identifiers can be reused as the private-use URI scheme for the OAuth
redirect to help avoid this problem.</t>
          <t>Following the requirements of Section 3.2 of <xref target="RFC3986" format="default"/>, as there is
no naming authority for private-use URI scheme redirects, only a
single slash (<tt>/</tt>) appears after the scheme component.  A complete
example of a redirect URI utilizing a private-use URI scheme is:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
com.example.app:/oauth2redirect/example-provider
]]></artwork>
          <t>When the authorization server completes the request, it redirects to
the client's redirect URI as it would normally.  As the
redirect URI uses a private-use URI scheme, it results in the
operating system launching the native app, passing in the URI as a
launch parameter.  Then, the native app uses normal processing for
the authorization response.</t>
        </section>
        <section anchor="claimed-https-scheme-uri-redirection" numbered="true" toc="default">
          <name>Claimed "https" Scheme URI Redirection</name>
          <t>Some operating systems allow apps to claim <tt>https</tt> scheme <xref target="RFC7230" format="default"/>
URIs in the domains they control.  When the browser encounters a
claimed URI, instead of the page being loaded in the browser, the
native app is launched with the URI supplied as a launch parameter.</t>
          <t>Such URIs can be used as redirect URIs by native apps.  They are
indistinguishable to the authorization server from a regular web-
based client redirect URI.  An example is:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
https://app.example.com/oauth2redirect/example-provider
]]></artwork>
          <t>As the redirect URI alone is not enough to distinguish public native
app clients from confidential web clients, it is REQUIRED in
<xref target="native-app-registration" format="default"/> that the client type be recorded during client
registration to enable the server to determine the client type and
act accordingly.</t>
          <t>App-claimed <tt>https</tt> scheme redirect URIs have some advantages
compared to other native app redirect options in that the identity of
the destination app is guaranteed to the authorization server by the
operating system.  For this reason, native apps SHOULD use them over
the other options where possible.</t>
        </section>
        <section anchor="loopback-interface-redirection" numbered="true" toc="default">
          <name>Loopback Interface Redirection</name>
          <t>Native apps that are able to open a port on the loopback network
interface without needing special permissions (typically, those on
desktop operating systems) can use the loopback interface to receive
the OAuth redirect.</t>
          <t>Loopback redirect URIs use the <tt>http</tt> scheme and are constructed with
the loopback IP literal and whatever port the client is listening on.</t>
          <t>That is, <tt>http://127.0.0.1:{port}/{path}</tt> for IPv4, and
<tt>http://[::1]:{port}/{path}</tt> for IPv6.  An example redirect using the
IPv4 loopback interface with a randomly assigned port:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
http://127.0.0.1:51004/oauth2redirect/example-provider
]]></artwork>
          <t>An example redirect using the IPv6 loopback interface with a randomly
assigned port:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
http://[::1]:61023/oauth2redirect/example-provider
]]></artwork>
          <t>The authorization server MUST allow any port to be specified at the
time of the request for loopback IP redirect URIs, to accommodate
clients that obtain an available ephemeral port from the operating
system at the time of the request.</t>
          <t>Clients SHOULD NOT assume that the device supports a particular
version of the Internet Protocol.  It is RECOMMENDED that clients
attempt to bind to the loopback interface using both IPv4 and IPv6
and use whichever is available.</t>
        </section>
      </section>
    </section>
    <section anchor="browser-based-apps" numbered="true" toc="default">
      <name>Browser-Based Apps</name>
      <t>Browser-based apps are are clients that run in a web browser, typically
written in JavaScript, also known as "single-page apps". These types of apps
have particular security considerations similar to native apps.</t>
      <t>TODO: Bring in the normative text of the browser-based apps BCP when it is finalized.</t>
    </section>
    <section anchor="oauth-2-0-differences" numbered="true" toc="default">
      <name>Differences from OAuth 2.0</name>
      <t>This draft consolidates the functionality in OAuth 2.0 <xref target="RFC6749" format="default"/>,
OAuth 2.0 for Native Apps (<xref target="RFC8252" format="default"/>),
Proof Key for Code Exchange (<xref target="RFC7636" format="default"/>),
OAuth 2.0 for Browser-Based Apps (<xref target="I-D.ietf-oauth-browser-based-apps" format="default"/>),
OAuth Security Best Current Practice (<xref target="I-D.ietf-oauth-security-topics" format="default"/>),
and Bearer Token Usage (<xref target="RFC6750" format="default"/>).</t>
      <t>Where a later draft updates or obsoletes functionality found in the original
<xref target="RFC6749" format="default"/>, that functionality in this draft is updated with the normative
changes described in a later draft, or removed entirely.</t>
      <t>A non-normative list of changes from OAuth 2.0 is listed below:</t>
      <ul spacing="normal">
        <li>The authorization code grant is extended with the functionality from PKCE (<xref target="RFC7636" format="default"/>)
such that the default method of using the authorization code grant according
to this specification requires the addition of the PKCE parameters</li>
        <li>Redirect URIs must be compared using exact string matching
as per Section 4.1.3 of <xref target="I-D.ietf-oauth-security-topics" format="default"/></li>
        <li>The Implicit grant (<tt>response_type=token</tt>) is omitted from this specification
as per Section 2.1.2 of <xref target="I-D.ietf-oauth-security-topics" format="default"/></li>
        <li>The Resource Owner Password Credentials grant is omitted from this specification
as per Section 2.4 of <xref target="I-D.ietf-oauth-security-topics" format="default"/></li>
        <li>Bearer token usage omits the use of bearer tokens in the query string of URIs
as per Section 4.3.2 of <xref target="I-D.ietf-oauth-security-topics" format="default"/></li>
        <li>Refresh tokens should either be sender-constrained or one-time use
as per Section 4.12.2 of <xref target="I-D.ietf-oauth-security-topics" format="default"/></li>
      </ul>
    </section>
    <section anchor="iana-considerations" numbered="true" toc="default">
      <name>IANA Considerations</name>
      <t>This document does not require any IANA actions.</t>
      <t>All referenced registries are defined by RFC6749 and related documents that this 
work is based upon. No changes to those registries are required by this specification.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC2119" target="https://www.rfc-editor.org/info/rfc2119" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.2119.xml">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author initials="S." surname="Bradner" fullname="S. Bradner">
              <organization/>
            </author>
            <date year="1997" month="March"/>
            <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="RFC2617" target="https://www.rfc-editor.org/info/rfc2617" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.2617.xml">
          <front>
            <title>HTTP Authentication: Basic and Digest Access Authentication</title>
            <author initials="J." surname="Franks" fullname="J. Franks">
              <organization/>
            </author>
            <author initials="P." surname="Hallam-Baker" fullname="P. Hallam-Baker">
              <organization/>
            </author>
            <author initials="J." surname="Hostetler" fullname="J. Hostetler">
              <organization/>
            </author>
            <author initials="S." surname="Lawrence" fullname="S. Lawrence">
              <organization/>
            </author>
            <author initials="P." surname="Leach" fullname="P. Leach">
              <organization/>
            </author>
            <author initials="A." surname="Luotonen" fullname="A. Luotonen">
              <organization/>
            </author>
            <author initials="L." surname="Stewart" fullname="L. Stewart">
              <organization/>
            </author>
            <date year="1999" month="June"/>
            <abstract>
              <t>This document provides the specification for HTTP's authentication framework, the original Basic authentication scheme and a scheme based on cryptographic hashes, referred to as "Digest Access Authentication". [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2617"/>
          <seriesInfo name="DOI" value="10.17487/RFC2617"/>
        </reference>
        <reference anchor="RFC2818" target="https://www.rfc-editor.org/info/rfc2818" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.2818.xml">
          <front>
            <title>HTTP Over TLS</title>
            <author initials="E." surname="Rescorla" fullname="E. Rescorla">
              <organization/>
            </author>
            <date year="2000" month="May"/>
            <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="RFC3629" target="https://www.rfc-editor.org/info/rfc3629" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.3629.xml">
          <front>
            <title>UTF-8, a transformation format of ISO 10646</title>
            <author initials="F." surname="Yergeau" fullname="F. Yergeau">
              <organization/>
            </author>
            <date year="2003" month="November"/>
            <abstract>
              <t>ISO/IEC 10646-1 defines a large character set called the Universal Character Set (UCS) which encompasses most of the world's writing systems.  The originally proposed encodings of the UCS, however, were not compatible with many current applications and protocols, and this has led to the development of UTF-8, the object of this memo.  UTF-8 has the characteristic of preserving the full US-ASCII range, providing compatibility with file systems, parsers and other software that rely on US-ASCII values but are transparent to other values.  This memo obsoletes and replaces RFC 2279.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="63"/>
          <seriesInfo name="RFC" value="3629"/>
          <seriesInfo name="DOI" value="10.17487/RFC3629"/>
        </reference>
        <reference anchor="RFC3986" target="https://www.rfc-editor.org/info/rfc3986" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.3986.xml">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author initials="T." surname="Berners-Lee" fullname="T. Berners-Lee">
              <organization/>
            </author>
            <author initials="R." surname="Fielding" fullname="R. Fielding">
              <organization/>
            </author>
            <author initials="L." surname="Masinter" fullname="L. Masinter">
              <organization/>
            </author>
            <date year="2005" month="January"/>
            <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="RFC4949" target="https://www.rfc-editor.org/info/rfc4949" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.4949.xml">
          <front>
            <title>Internet Security Glossary, Version 2</title>
            <author initials="R." surname="Shirey" fullname="R. Shirey">
              <organization/>
            </author>
            <date year="2007" month="August"/>
            <abstract>
              <t>This Glossary provides definitions, abbreviations, and explanations of terminology for information system security. The 334 pages of entries offer recommendations to improve the comprehensibility of written material that is generated in the Internet Standards Process (RFC 2026). The recommendations follow the principles that such writing should (a) use the same term or definition whenever the same concept is mentioned; (b) use terms in their plainest, dictionary sense; (c) use terms that are already well-established in open publications; and (d) avoid terms that either favor a particular vendor or favor a particular technology or mechanism over other, competing techniques that already exist or could be developed.  This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="FYI" value="36"/>
          <seriesInfo name="RFC" value="4949"/>
          <seriesInfo name="DOI" value="10.17487/RFC4949"/>
        </reference>
        <reference anchor="RFC5234" target="https://www.rfc-editor.org/info/rfc5234" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.5234.xml">
          <front>
            <title>Augmented BNF for Syntax Specifications: ABNF</title>
            <author initials="D." surname="Crocker" fullname="D. Crocker" role="editor">
              <organization/>
            </author>
            <author initials="P." surname="Overell" fullname="P. Overell">
              <organization/>
            </author>
            <date year="2008" month="January"/>
            <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="RFC6125" target="https://www.rfc-editor.org/info/rfc6125" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.6125.xml">
          <front>
            <title>Representation and Verification of Domain-Based Application Service Identity within Internet Public Key Infrastructure Using X.509 (PKIX) Certificates in the Context of Transport Layer Security (TLS)</title>
            <author initials="P." surname="Saint-Andre" fullname="P. Saint-Andre">
              <organization/>
            </author>
            <author initials="J." surname="Hodges" fullname="J. Hodges">
              <organization/>
            </author>
            <date year="2011" month="March"/>
            <abstract>
              <t>Many application technologies enable secure communication between two entities by means of Internet Public Key Infrastructure Using X.509 (PKIX) certificates in the context of Transport Layer Security (TLS). This document specifies procedures for representing and verifying the identity of application services in such interactions.   [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6125"/>
          <seriesInfo name="DOI" value="10.17487/RFC6125"/>
        </reference>
        <reference anchor="RFC6749" target="https://www.rfc-editor.org/info/rfc6749" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.6749.xml">
          <front>
            <title>The OAuth 2.0 Authorization Framework</title>
            <author initials="D." surname="Hardt" fullname="D. Hardt" role="editor">
              <organization/>
            </author>
            <date year="2012" month="October"/>
            <abstract>
              <t>The OAuth 2.0 authorization framework enables a third-party application to obtain limited access to an HTTP service, either on behalf of a resource owner by orchestrating an approval interaction between the resource owner and the HTTP service, or by allowing the third-party application to obtain access on its own behalf.  This specification replaces and obsoletes the OAuth 1.0 protocol described in RFC 5849.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6749"/>
          <seriesInfo name="DOI" value="10.17487/RFC6749"/>
        </reference>
        <reference anchor="RFC6750" target="https://www.rfc-editor.org/info/rfc6750" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.6750.xml">
          <front>
            <title>The OAuth 2.0 Authorization Framework: Bearer Token Usage</title>
            <author initials="M." surname="Jones" fullname="M. Jones">
              <organization/>
            </author>
            <author initials="D." surname="Hardt" fullname="D. Hardt">
              <organization/>
            </author>
            <date year="2012" month="October"/>
            <abstract>
              <t>This specification describes how to use bearer tokens in HTTP requests to access OAuth 2.0 protected resources.  Any party in possession of a bearer token (a "bearer") can use it to get access to the associated resources (without demonstrating possession of a cryptographic key).  To prevent misuse, bearer tokens need to be protected from disclosure in storage and in transport.   [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6750"/>
          <seriesInfo name="DOI" value="10.17487/RFC6750"/>
        </reference>
        <reference anchor="RFC5280" target="https://www.rfc-editor.org/info/rfc5280" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.5280.xml">
          <front>
            <title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
            <author initials="D." surname="Cooper" fullname="D. Cooper">
              <organization/>
            </author>
            <author initials="S." surname="Santesson" fullname="S. Santesson">
              <organization/>
            </author>
            <author initials="S." surname="Farrell" fullname="S. Farrell">
              <organization/>
            </author>
            <author initials="S." surname="Boeyen" fullname="S. Boeyen">
              <organization/>
            </author>
            <author initials="R." surname="Housley" fullname="R. Housley">
              <organization/>
            </author>
            <author initials="W." surname="Polk" fullname="W. Polk">
              <organization/>
            </author>
            <date year="2008" month="May"/>
            <abstract>
              <t>This memo profiles the X.509 v3 certificate and X.509 v2 certificate revocation list (CRL) for use in the Internet.  An overview of this approach and model is provided as an introduction.  The X.509 v3 certificate format is described in detail, with additional information regarding the format and semantics of Internet name forms.  Standard certificate extensions are described and two Internet-specific extensions are defined.  A set of required certificate extensions is specified.  The X.509 v2 CRL format is described in detail along with standard and Internet-specific extensions.  An algorithm for X.509 certification path validation is described.  An ASN.1 module and examples are provided in the appendices.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5280"/>
          <seriesInfo name="DOI" value="10.17487/RFC5280"/>
        </reference>
        <reference anchor="RFC7159" target="https://www.rfc-editor.org/info/rfc7159" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7159.xml">
          <front>
            <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
            <author initials="T." surname="Bray" fullname="T. Bray" role="editor">
              <organization/>
            </author>
            <date year="2014" month="March"/>
            <abstract>
              <t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format.  It was derived from the ECMAScript Programming Language Standard.  JSON defines a small set of formatting rules for the portable representation of structured data.</t>
              <t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7159"/>
          <seriesInfo name="DOI" value="10.17487/RFC7159"/>
        </reference>
        <reference anchor="RFC7231" target="https://www.rfc-editor.org/info/rfc7231" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7231.xml">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</title>
            <author initials="R." surname="Fielding" fullname="R. Fielding" role="editor">
              <organization/>
            </author>
            <author initials="J." surname="Reschke" fullname="J. Reschke" role="editor">
              <organization/>
            </author>
            <date year="2014" month="June"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless \%application- level protocol for distributed, collaborative, hypertext information systems.  This document defines the semantics of HTTP/1.1 messages, as expressed by request methods, request header fields, response status codes, and response header fields, along with the payload of messages (metadata and body content) and mechanisms for content negotiation.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7231"/>
          <seriesInfo name="DOI" value="10.17487/RFC7231"/>
        </reference>
        <reference anchor="RFC7234" target="https://www.rfc-editor.org/info/rfc7234" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7234.xml">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Caching</title>
            <author initials="R." surname="Fielding" fullname="R. Fielding" role="editor">
              <organization/>
            </author>
            <author initials="M." surname="Nottingham" fullname="M. Nottingham" role="editor">
              <organization/>
            </author>
            <author initials="J." surname="Reschke" fullname="J. Reschke" role="editor">
              <organization/>
            </author>
            <date year="2014" month="June"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless \%application- level protocol for distributed, collaborative, hypertext information systems.  This document defines HTTP caches and the associated header fields that control cache behavior or indicate cacheable response messages.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7234"/>
          <seriesInfo name="DOI" value="10.17487/RFC7234"/>
        </reference>
        <reference anchor="RFC7595" target="https://www.rfc-editor.org/info/rfc7595" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7595.xml">
          <front>
            <title>Guidelines and Registration Procedures for URI Schemes</title>
            <author initials="D." surname="Thaler" fullname="D. Thaler" role="editor">
              <organization/>
            </author>
            <author initials="T." surname="Hansen" fullname="T. Hansen">
              <organization/>
            </author>
            <author initials="T." surname="Hardie" fullname="T. Hardie">
              <organization/>
            </author>
            <date year="2015" month="June"/>
            <abstract>
              <t>This document updates the guidelines and recommendations, as well as the IANA registration processes, for the definition of Uniform Resource Identifier (URI) schemes.  It obsoletes RFC 4395.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="35"/>
          <seriesInfo name="RFC" value="7595"/>
          <seriesInfo name="DOI" value="10.17487/RFC7595"/>
        </reference>
        <reference anchor="RFC8174" target="https://www.rfc-editor.org/info/rfc8174" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.8174.xml">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author initials="B." surname="Leiba" fullname="B. Leiba">
              <organization/>
            </author>
            <date year="2017" month="May"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC8252" target="https://www.rfc-editor.org/info/rfc8252" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.8252.xml">
          <front>
            <title>OAuth 2.0 for Native Apps</title>
            <author initials="W." surname="Denniss" fullname="W. Denniss">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="J. Bradley">
              <organization/>
            </author>
            <date year="2017" month="October"/>
            <abstract>
              <t>OAuth 2.0 authorization requests from native apps should only be made through external user-agents, primarily the user's browser.  This specification details the security and usability reasons why this is the case and how native apps and authorization servers can implement this best practice.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="212"/>
          <seriesInfo name="RFC" value="8252"/>
          <seriesInfo name="DOI" value="10.17487/RFC8252"/>
        </reference>
        <reference anchor="RFC8259" target="https://www.rfc-editor.org/info/rfc8259" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.8259.xml">
          <front>
            <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
            <author initials="T." surname="Bray" fullname="T. Bray" role="editor">
              <organization/>
            </author>
            <date year="2017" month="December"/>
            <abstract>
              <t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format.  It was derived from the ECMAScript Programming Language Standard.  JSON defines a small set of formatting rules for the portable representation of structured data.</t>
              <t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="90"/>
          <seriesInfo name="RFC" value="8259"/>
          <seriesInfo name="DOI" value="10.17487/RFC8259"/>
        </reference>
        <reference anchor="I-D.ietf-oauth-security-topics" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-oauth-security-topics.xml" target="http://www.ietf.org/internet-drafts/draft-ietf-oauth-security-topics-16.txt">
          <front>
            <title>OAuth 2.0 Security Best Current Practice</title>
            <author initials="T" surname="Lodderstedt" fullname="Torsten Lodderstedt">
              <organization/>
            </author>
            <author initials="J" surname="Bradley" fullname="John Bradley">
              <organization/>
            </author>
            <author initials="A" surname="Labunets" fullname="Andrey Labunets">
              <organization/>
            </author>
            <author initials="D" surname="Fett" fullname="Daniel Fett">
              <organization/>
            </author>
            <date month="October" day="5" year="2020"/>
            <abstract>
              <t>This document describes best current security practice for OAuth 2.0. It updates and extends the OAuth 2.0 Security Threat Model to incorporate practical experiences gathered since OAuth 2.0 was published and covers new threats relevant due to the broader application of OAuth 2.0.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-security-topics-16"/>
        </reference>
        <reference anchor="BCP195">
          <front>
            <title>Recommendations for Secure Use of Transport Layer Security (TLS)</title>
            <author initials="Y." surname="Sheffer">
              <organization/>
            </author>
            <author initials="R." surname="Holz">
              <organization/>
            </author>
            <author initials="P." surname="Saint-Andre">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="USASCII">
          <front>
            <title>Coded Character Set -- 7-bit American Standard Code for Information Interchange, ANSI X3.4</title>
            <author initials="A.N.S." surname="Institute" fullname="American National Standards Institute">
              <organization/>
            </author>
            <date year="1986"/>
          </front>
        </reference>
        <reference anchor="W3C.REC-html401-19991224" target="https://www.w3.org/TR/1999/REC-html401-19991224" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml4/reference.W3C.REC-html401-19991224.xml">
          <front>
            <title>HTML 4.01 Specification</title>
            <author initials="D." surname="Raggett" fullname="Dave Raggett">
              <organization/>
            </author>
            <author initials="A." surname="Hors" fullname="Arnaud Le Hors">
              <organization/>
            </author>
            <author initials="I." surname="Jacobs" fullname="Ian Jacobs">
              <organization/>
            </author>
            <date month="December" day="24" year="1999"/>
          </front>
          <seriesInfo name="World Wide Web Consortium Recommendation" value="REC-html401-19991224"/>
        </reference>
        <reference anchor="W3C.REC-xml-20081126" target="https://www.w3.org/TR/2008/REC-xml-20081126" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml4/reference.W3C.REC-xml-20081126.xml">
          <front>
            <title>Extensible Markup Language (XML) 1.0 (Fifth Edition)</title>
            <author initials="T." surname="Bray" fullname="Tim Bray">
              <organization/>
            </author>
            <author initials="J." surname="Paoli" fullname="Jean Paoli">
              <organization/>
            </author>
            <author initials="M." surname="Sperberg-McQueen" fullname="Michael Sperberg-McQueen">
              <organization/>
            </author>
            <author initials="E." surname="Maler" fullname="Eve Maler">
              <organization/>
            </author>
            <author initials="F." surname="Yergeau" fullname="FranÃ§ois Yergeau">
              <organization/>
            </author>
            <date month="November" day="26" year="2008"/>
          </front>
          <seriesInfo name="World Wide Web Consortium Recommendation" value="REC-xml-20081126"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC6265" target="https://www.rfc-editor.org/info/rfc6265" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.6265.xml">
          <front>
            <title>HTTP State Management Mechanism</title>
            <author initials="A." surname="Barth" fullname="A. Barth">
              <organization/>
            </author>
            <date year="2011" month="April"/>
            <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="RFC6819" target="https://www.rfc-editor.org/info/rfc6819" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.6819.xml">
          <front>
            <title>OAuth 2.0 Threat Model and Security Considerations</title>
            <author initials="T." surname="Lodderstedt" fullname="T. Lodderstedt" role="editor">
              <organization/>
            </author>
            <author initials="M." surname="McGloin" fullname="M. McGloin">
              <organization/>
            </author>
            <author initials="P." surname="Hunt" fullname="P. Hunt">
              <organization/>
            </author>
            <date year="2013" month="January"/>
            <abstract>
              <t>This document gives additional security considerations for OAuth, beyond those in the OAuth 2.0 specification, based on a comprehensive threat model for the OAuth 2.0 protocol.  This document is not an  Internet Standards Track specification; it is published for  informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6819"/>
          <seriesInfo name="DOI" value="10.17487/RFC6819"/>
        </reference>
        <reference anchor="RFC7009" target="https://www.rfc-editor.org/info/rfc7009" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7009.xml">
          <front>
            <title>OAuth 2.0 Token Revocation</title>
            <author initials="T." surname="Lodderstedt" fullname="T. Lodderstedt" role="editor">
              <organization/>
            </author>
            <author initials="S." surname="Dronia" fullname="S. Dronia">
              <organization/>
            </author>
            <author initials="M." surname="Scurtescu" fullname="M. Scurtescu">
              <organization/>
            </author>
            <date year="2013" month="August"/>
            <abstract>
              <t>This document proposes an additional endpoint for OAuth authorization servers, which allows clients to notify the authorization server that a previously obtained refresh or access token is no longer needed. This allows the authorization server to clean up security credentials.  A revocation request will invalidate the actual token and, if applicable, other tokens based on the same authorization grant.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7009"/>
          <seriesInfo name="DOI" value="10.17487/RFC7009"/>
        </reference>
        <reference anchor="RFC7230" target="https://www.rfc-editor.org/info/rfc7230" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7230.xml">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</title>
            <author initials="R." surname="Fielding" fullname="R. Fielding" role="editor">
              <organization/>
            </author>
            <author initials="J." surname="Reschke" fullname="J. Reschke" role="editor">
              <organization/>
            </author>
            <date year="2014" month="June"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems.  This document provides an overview of HTTP architecture and its associated terminology, defines the "http" and "https" Uniform Resource Identifier (URI) schemes, defines the HTTP/1.1 message syntax and parsing requirements, and describes related security concerns for implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7230"/>
          <seriesInfo name="DOI" value="10.17487/RFC7230"/>
        </reference>
        <reference anchor="RFC7235" target="https://www.rfc-editor.org/info/rfc7235" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7235.xml">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Authentication</title>
            <author initials="R." surname="Fielding" fullname="R. Fielding" role="editor">
              <organization/>
            </author>
            <author initials="J." surname="Reschke" fullname="J. Reschke" role="editor">
              <organization/>
            </author>
            <date year="2014" month="June"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application- level protocol for distributed, collaborative, hypermedia information systems.  This document defines the HTTP Authentication framework.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7235"/>
          <seriesInfo name="DOI" value="10.17487/RFC7235"/>
        </reference>
        <reference anchor="RFC7519" target="https://www.rfc-editor.org/info/rfc7519" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7519.xml">
          <front>
            <title>JSON Web Token (JWT)</title>
            <author initials="M." surname="Jones" fullname="M. Jones">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="J. Bradley">
              <organization/>
            </author>
            <author initials="N." surname="Sakimura" fullname="N. Sakimura">
              <organization/>
            </author>
            <date year="2015" month="May"/>
            <abstract>
              <t>JSON Web Token (JWT) is a compact, URL-safe means of representing claims to be transferred between two parties.  The claims in a JWT are encoded as a JSON object that is used as the payload of a JSON Web Signature (JWS) structure or as the plaintext of a JSON Web Encryption (JWE) structure, enabling the claims to be digitally signed or integrity protected with a Message Authentication Code (MAC) and/or encrypted.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7519"/>
          <seriesInfo name="DOI" value="10.17487/RFC7519"/>
        </reference>
        <reference anchor="RFC7591" target="https://www.rfc-editor.org/info/rfc7591" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7591.xml">
          <front>
            <title>OAuth 2.0 Dynamic Client Registration Protocol</title>
            <author initials="J." surname="Richer" fullname="J. Richer" role="editor">
              <organization/>
            </author>
            <author initials="M." surname="Jones" fullname="M. Jones">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="J. Bradley">
              <organization/>
            </author>
            <author initials="M." surname="Machulak" fullname="M. Machulak">
              <organization/>
            </author>
            <author initials="P." surname="Hunt" fullname="P. Hunt">
              <organization/>
            </author>
            <date year="2015" month="July"/>
            <abstract>
              <t>This specification defines mechanisms for dynamically registering OAuth 2.0 clients with authorization servers.  Registration requests send a set of desired client metadata values to the authorization server.  The resulting registration responses return a client identifier to use at the authorization server and the client metadata values registered for the client.  The client can then use this registration information to communicate with the authorization server using the OAuth 2.0 protocol.  This specification also defines a set of common client metadata fields and values for clients to use during registration.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7591"/>
          <seriesInfo name="DOI" value="10.17487/RFC7591"/>
        </reference>
        <reference anchor="RFC7592" target="https://www.rfc-editor.org/info/rfc7592" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7592.xml">
          <front>
            <title>OAuth 2.0 Dynamic Client Registration Management Protocol</title>
            <author initials="J." surname="Richer" fullname="J. Richer" role="editor">
              <organization/>
            </author>
            <author initials="M." surname="Jones" fullname="M. Jones">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="J. Bradley">
              <organization/>
            </author>
            <author initials="M." surname="Machulak" fullname="M. Machulak">
              <organization/>
            </author>
            <date year="2015" month="July"/>
            <abstract>
              <t>This specification defines methods for management of OAuth 2.0 dynamic client registrations for use cases in which the properties of a registered client may need to be changed during the lifetime of the client.  Not all authorization servers supporting dynamic client registration will support these management methods.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7592"/>
          <seriesInfo name="DOI" value="10.17487/RFC7592"/>
        </reference>
        <reference anchor="RFC7636" target="https://www.rfc-editor.org/info/rfc7636" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7636.xml">
          <front>
            <title>Proof Key for Code Exchange by OAuth Public Clients</title>
            <author initials="N." surname="Sakimura" fullname="N. Sakimura" role="editor">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="J. Bradley">
              <organization/>
            </author>
            <author initials="N." surname="Agarwal" fullname="N. Agarwal">
              <organization/>
            </author>
            <date year="2015" month="September"/>
            <abstract>
              <t>OAuth 2.0 public clients utilizing the Authorization Code Grant are susceptible to the authorization code interception attack.  This specification describes the attack as well as a technique to mitigate against the threat through the use of Proof Key for Code Exchange (PKCE, pronounced "pixy").</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7636"/>
          <seriesInfo name="DOI" value="10.17487/RFC7636"/>
        </reference>
        <reference anchor="RFC7662" target="https://www.rfc-editor.org/info/rfc7662" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7662.xml">
          <front>
            <title>OAuth 2.0 Token Introspection</title>
            <author initials="J." surname="Richer" fullname="J. Richer" role="editor">
              <organization/>
            </author>
            <date year="2015" month="October"/>
            <abstract>
              <t>This specification defines a method for a protected resource to query an OAuth 2.0 authorization server to determine the active state of an OAuth 2.0 token and to determine meta-information about this token. OAuth 2.0 deployments can use this method to convey information about the authorization context of the token from the authorization server to the protected resource.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7662"/>
          <seriesInfo name="DOI" value="10.17487/RFC7662"/>
        </reference>
        <reference anchor="RFC8414" target="https://www.rfc-editor.org/info/rfc8414" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.8414.xml">
          <front>
            <title>OAuth 2.0 Authorization Server Metadata</title>
            <author initials="M." surname="Jones" fullname="M. Jones">
              <organization/>
            </author>
            <author initials="N." surname="Sakimura" fullname="N. Sakimura">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="J. Bradley">
              <organization/>
            </author>
            <date year="2018" month="June"/>
            <abstract>
              <t>This specification defines a metadata format that an OAuth 2.0 client can use to obtain the information needed to interact with an OAuth 2.0 authorization server, including its endpoint locations and authorization server capabilities.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8414"/>
          <seriesInfo name="DOI" value="10.17487/RFC8414"/>
        </reference>
        <reference anchor="RFC8628" target="https://www.rfc-editor.org/info/rfc8628" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.8628.xml">
          <front>
            <title>OAuth 2.0 Device Authorization Grant</title>
            <author initials="W." surname="Denniss" fullname="W. Denniss">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="J. Bradley">
              <organization/>
            </author>
            <author initials="M." surname="Jones" fullname="M. Jones">
              <organization/>
            </author>
            <author initials="H." surname="Tschofenig" fullname="H. Tschofenig">
              <organization/>
            </author>
            <date year="2019" month="August"/>
            <abstract>
              <t>The OAuth 2.0 device authorization grant is designed for Internet- connected devices that either lack a browser to perform a user-agent- based authorization or are input constrained to the extent that requiring the user to input text in order to authenticate during the authorization flow is impractical.  It enables OAuth clients on such devices (like smart TVs, media consoles, digital picture frames, and printers) to obtain user authorization to access protected resources by using a user agent on a separate device.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8628"/>
          <seriesInfo name="DOI" value="10.17487/RFC8628"/>
        </reference>
        <reference anchor="RFC8705" target="https://www.rfc-editor.org/info/rfc8705" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.8705.xml">
          <front>
            <title>OAuth 2.0 Mutual-TLS Client Authentication and Certificate-Bound Access Tokens</title>
            <author initials="B." surname="Campbell" fullname="B. Campbell">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="J. Bradley">
              <organization/>
            </author>
            <author initials="N." surname="Sakimura" fullname="N. Sakimura">
              <organization/>
            </author>
            <author initials="T." surname="Lodderstedt" fullname="T. Lodderstedt">
              <organization/>
            </author>
            <date year="2020" month="February"/>
            <abstract>
              <t>This document describes OAuth client authentication and certificate-bound access and refresh tokens using mutual Transport Layer Security (TLS) authentication with X.509 certificates.  OAuth clients are provided a mechanism for authentication to the authorization server using mutual TLS, based on either self-signed certificates or public key infrastructure (PKI). OAuth authorization servers are provided a mechanism for binding access tokens to a client's mutual-TLS certificate, and OAuth protected resources are provided a method for ensuring that such an access token presented to it was issued to the client presenting the token.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8705"/>
          <seriesInfo name="DOI" value="10.17487/RFC8705"/>
        </reference>
        <reference anchor="RFC8707" target="https://www.rfc-editor.org/info/rfc8707" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.8707.xml">
          <front>
            <title>Resource Indicators for OAuth 2.0</title>
            <author initials="B." surname="Campbell" fullname="B. Campbell">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="J. Bradley">
              <organization/>
            </author>
            <author initials="H." surname="Tschofenig" fullname="H. Tschofenig">
              <organization/>
            </author>
            <date year="2020" month="February"/>
            <abstract>
              <t>This document specifies an extension to the OAuth 2.0 Authorization Framework defining request parameters that enable a client to explicitly signal to an authorization server about the identity of the protected resource(s) to which it is requesting access.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8707"/>
          <seriesInfo name="DOI" value="10.17487/RFC8707"/>
        </reference>
        <reference anchor="I-D.ietf-oauth-access-token-jwt" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-oauth-access-token-jwt.xml" target="http://www.ietf.org/internet-drafts/draft-ietf-oauth-access-token-jwt-11.txt">
          <front>
            <title>JSON Web Token (JWT) Profile for OAuth 2.0 Access Tokens</title>
            <author initials="V" surname="Bertocci" fullname="Vittorio Bertocci">
              <organization/>
            </author>
            <date month="January" day="22" year="2021"/>
            <abstract>
              <t>This specification defines a profile for issuing OAuth 2.0 access tokens in JSON web token (JWT) format.  Authorization servers and resource servers from different vendors can leverage this profile to issue and consume access tokens in interoperable manner.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-access-token-jwt-11"/>
        </reference>
        <reference anchor="I-D.ietf-oauth-rar" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-oauth-rar.xml" target="http://www.ietf.org/internet-drafts/draft-ietf-oauth-rar-03.txt">
          <front>
            <title>OAuth 2.0 Rich Authorization Requests</title>
            <author initials="T" surname="Lodderstedt" fullname="Torsten Lodderstedt">
              <organization/>
            </author>
            <author initials="J" surname="Richer" fullname="Justin Richer">
              <organization/>
            </author>
            <author initials="B" surname="Campbell" fullname="Brian Campbell">
              <organization/>
            </author>
            <date month="October" day="18" year="2020"/>
            <abstract>
              <t>This document specifies a new parameter "authorization_details" that is used to carry fine grained authorization data in the OAuth authorization request.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-rar-03"/>
        </reference>
        <reference anchor="I-D.ietf-oauth-par" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-oauth-par.xml" target="http://www.ietf.org/internet-drafts/draft-ietf-oauth-par-05.txt">
          <front>
            <title>OAuth 2.0 Pushed Authorization Requests</title>
            <author initials="T" surname="Lodderstedt" fullname="Torsten Lodderstedt">
              <organization/>
            </author>
            <author initials="B" surname="Campbell" fullname="Brian Campbell">
              <organization/>
            </author>
            <author initials="N" surname="Sakimura" fullname="Nat Sakimura">
              <organization/>
            </author>
            <author initials="D" surname="Tonge" fullname="Dave Tonge">
              <organization/>
            </author>
            <author initials="F" surname="Skokan" fullname="Filip Skokan">
              <organization/>
            </author>
            <date month="December" day="14" year="2020"/>
            <abstract>
              <t>This document defines the pushed authorization request endpoint, which allows clients to push the payload of an OAuth 2.0 authorization request to the authorization server via a direct request and provides them with a request URI that is used as reference to the data in a subsequent call to the authorization endpoint.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-par-05"/>
        </reference>
        <reference anchor="I-D.bradley-oauth-jwt-encoded-state" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml3/reference.I-D.bradley-oauth-jwt-encoded-state.xml" target="http://www.ietf.org/internet-drafts/draft-bradley-oauth-jwt-encoded-state-09.txt">
          <front>
            <title>Encoding claims in the OAuth 2 state parameter using a JWT</title>
            <author initials="J" surname="Bradley" fullname="John Bradley">
              <organization/>
            </author>
            <author initials="T" surname="Lodderstedt" fullname="Torsten Lodderstedt">
              <organization/>
            </author>
            <author initials="H" surname="Zandbelt" fullname="Hans Zandbelt">
              <organization/>
            </author>
            <date month="November" day="4" year="2018"/>
            <abstract>
              <t>This draft provides a method for a client to encode one or more elements encoding information about the session into the OAuth 2 "state" parameter.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-bradley-oauth-jwt-encoded-state-09"/>
        </reference>
        <reference anchor="I-D.ietf-oauth-token-binding" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-oauth-token-binding.xml" target="http://www.ietf.org/internet-drafts/draft-ietf-oauth-token-binding-08.txt">
          <front>
            <title>OAuth 2.0 Token Binding</title>
            <author initials="M" surname="Jones" fullname="Michael Jones">
              <organization/>
            </author>
            <author initials="B" surname="Campbell" fullname="Brian Campbell">
              <organization/>
            </author>
            <author initials="J" surname="Bradley" fullname="John Bradley">
              <organization/>
            </author>
            <author initials="W" surname="Denniss" fullname="William Denniss">
              <organization/>
            </author>
            <date month="October" day="19" year="2018"/>
            <abstract>
              <t>This specification enables OAuth 2.0 implementations to apply Token Binding to Access Tokens, Authorization Codes, Refresh Tokens, JWT Authorization Grants, and JWT Client Authentication.  This cryptographically binds these tokens to a client's Token Binding key pair, possession of which is proven on the TLS connections over which the tokens are intended to be used.  This use of Token Binding protects these tokens from man-in-the-middle and token export and replay attacks.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-token-binding-08"/>
        </reference>
        <reference anchor="I-D.ietf-oauth-browser-based-apps" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-oauth-browser-based-apps.xml" target="http://www.ietf.org/internet-drafts/draft-ietf-oauth-browser-based-apps-07.txt">
          <front>
            <title>OAuth 2.0 for Browser-Based Apps</title>
            <author initials="A" surname="Parecki" fullname="Aaron Parecki">
              <organization/>
            </author>
            <author initials="D" surname="Waite" fullname="David Waite">
              <organization/>
            </author>
            <date month="October" day="2" year="2020"/>
            <abstract>
              <t>This specification details the security considerations and best practices that must be taken into account when developing browser- based applications that use OAuth 2.0.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-browser-based-apps-07"/>
        </reference>
        <reference anchor="I-D.ietf-oauth-dpop" xml:base="https://xml2rfc.tools.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-oauth-dpop.xml" target="http://www.ietf.org/internet-drafts/draft-ietf-oauth-dpop-02.txt">
          <front>
            <title>OAuth 2.0 Demonstrating Proof-of-Possession at the Application Layer (DPoP)</title>
            <author initials="D" surname="Fett" fullname="Daniel Fett">
              <organization/>
            </author>
            <author initials="B" surname="Campbell" fullname="Brian Campbell">
              <organization/>
            </author>
            <author initials="J" surname="Bradley" fullname="John Bradley">
              <organization/>
            </author>
            <author initials="T" surname="Lodderstedt" fullname="Torsten Lodderstedt">
              <organization/>
            </author>
            <author initials="M" surname="Jones" fullname="Michael Jones">
              <organization/>
            </author>
            <author initials="D" surname="Waite" fullname="David Waite">
              <organization/>
            </author>
            <date month="November" day="18" year="2020"/>
            <abstract>
              <t>This document describes a mechanism for sender-constraining OAuth 2.0 tokens via a proof-of-possession mechanism on the application level. This mechanism allows for the detection of replay attacks with access and refresh tokens.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-dpop-02"/>
        </reference>
        <reference anchor="OpenID" target="https://openiD.net/specs/openiD-connect-core-1_0.html">
          <front>
            <title>OpenID Connect Core 1.0</title>
            <author initials="N." surname="Sakimora">
              <organization/>
            </author>
            <author initials="J." surname="Bradley">
              <organization/>
            </author>
            <author initials="M." surname="Jones">
              <organization/>
            </author>
            <author initials="B." surname="de Medeiros">
              <organization/>
            </author>
            <author initials="C." surname="Mortimore">
              <organization/>
            </author>
            <date year="2014" month="November"/>
          </front>
        </reference>
        <reference anchor="OMAP" target="https://www.oatc.us/Standards/Download-Standards">
          <front>
            <title>Online Multimedia Authorization Protocol: An Industry Standard for Authorized Access to Internet Multimedia Resources</title>
            <author initials="J." surname="Huff">
              <organization/>
            </author>
            <author initials="D." surname="Schlacht">
              <organization/>
            </author>
            <author initials="A." surname="Nadalin">
              <organization/>
            </author>
            <author initials="J." surname="Simmons">
              <organization/>
            </author>
            <author initials="P." surname="Rosenberg">
              <organization/>
            </author>
            <author initials="P." surname="Madsen">
              <organization/>
            </author>
            <author initials="T." surname="Ace">
              <organization/>
            </author>
            <author initials="C." surname="Rickelton-Abdi">
              <organization/>
            </author>
            <author initials="B." surname="Boyer">
              <organization/>
            </author>
            <date year="2012" month="April"/>
          </front>
        </reference>
        <reference anchor="NIST800-63" target="http://csrc.nist.gov/publications/">
          <front>
            <title>NIST Special Publication 800-63-1, INFORMATION SECURITY</title>
            <author initials="W." surname="Burr">
              <organization/>
            </author>
            <author initials="D." surname="Dodson">
              <organization/>
            </author>
            <author initials="E." surname="Newton">
              <organization/>
            </author>
            <author initials="R." surname="Perlner">
              <organization/>
            </author>
            <author initials="T." surname="Polk">
              <organization/>
            </author>
            <author initials="S." surname="Gupta">
              <organization/>
            </author>
            <author initials="E." surname="Nabbus">
              <organization/>
            </author>
            <date year="2011" month="December"/>
          </front>
        </reference>
        <reference anchor="OpenID.Messages" target="http://openid.net/specs/openid-connect-messages-1_0.html">
          <front>
            <title>OpenID Connect Messages 1.0</title>
            <author initials="N." surname="Sakimura">
              <organization/>
            </author>
            <author initials="J." surname="Bradley">
              <organization/>
            </author>
            <author initials="M." surname="Jones">
              <organization/>
            </author>
            <author initials="B." surname="de Medeiros">
              <organization/>
            </author>
            <author initials="C." surname="Mortimore">
              <organization/>
            </author>
            <author initials="E." surname="Jay">
              <organization/>
            </author>
            <date year="2012" month="June"/>
          </front>
        </reference>
        <reference anchor="owasp_redir" target="https://cheatsheetseries.owasp.org/cheatsheets/Unvalidated_Redirects_and_Forwards_Cheat_Sheet.html">
          <front>
            <title>OWASP Cheat Sheet Series - Unvalidated Redirects and Forwards</title>
            <author>
              <organization/>
            </author>
            <date year="2020"/>
          </front>
        </reference>
        <reference anchor="CSP-2" target="https://www.w3.org/TR/CSP2">
          <front>
            <title>Content Security Policy Level 2</title>
            <author>
              <organization/>
            </author>
            <date year="2016" month="December"/>
          </front>
        </reference>
      </references>
    </references>
    <section anchor="augmented-backus-naur-form-abnf-syntax" numbered="true" toc="default">
      <name>Augmented Backus-Naur Form (ABNF) Syntax</name>
      <t>This section provides Augmented Backus-Naur Form (ABNF) syntax
descriptions for the elements defined in this specification using the
notation of <xref target="RFC5234" format="default"/>.  The ABNF below is defined in terms of Unicode
code points <xref target="W3C.REC-xml-20081126" format="default"/>; these characters are typically
encoded in UTF-8.  Elements are presented in the order first defined.</t>
      <t>Some of the definitions that follow use the "URI-reference"
definition from <xref target="RFC3986" format="default"/>.</t>
      <t>Some of the definitions that follow use these common definitions:</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
VSCHAR     = %x20-7E
NQCHAR     = %x21 / %x23-5B / %x5D-7E
NQSCHAR    = %x20-21 / %x23-5B / %x5D-7E
UNICODECHARNOCRLF = %x09 /%x20-7E / %x80-D7FF /
                    %xE000-FFFD / %x10000-10FFFF
]]></artwork>
      <t>(The UNICODECHARNOCRLF definition is based upon the Char definition
in Section 2.2 of <xref target="W3C.REC-xml-20081126" format="default"/>, but omitting the Carriage
Return and Linefeed characters.)</t>
      <section anchor="clientid-syntax" numbered="true" toc="default">
        <name>"client_id" Syntax</name>
        <t>The <tt>client_id</tt> element is defined in <xref target="client-secret" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
client-id     = *VSCHAR
]]></artwork>
      </section>
      <section anchor="clientsecret-syntax" numbered="true" toc="default">
        <name>"client_secret" Syntax</name>
        <t>The <tt>client_secret</tt> element is defined in <xref target="client-secret" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
client-secret = *VSCHAR
]]></artwork>
      </section>
      <section anchor="responsetype-syntax" numbered="true" toc="default">
        <name>"response_type" Syntax</name>
        <t>The <tt>response_type</tt> element is defined in <xref target="response-type" format="default"/> and <xref target="new-response-types" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
response-type = response-name *( SP response-name )
response-name = 1*response-char
response-char = "_" / DIGIT / ALPHA
]]></artwork>
      </section>
      <section anchor="scope-syntax" numbered="true" toc="default">
        <name>"scope" Syntax</name>
        <t>The <tt>scope</tt> element is defined in <xref target="access-token-scope" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 scope       = scope-token *( SP scope-token )
 scope-token = 1*NQCHAR
]]></artwork>
      </section>
      <section anchor="state-syntax" numbered="true" toc="default">
        <name>"state" Syntax</name>
        <t>The <tt>state</tt> element is defined in <xref target="authorization-request" format="default"/>, <xref target="authorization-response" format="default"/>, and <xref target="authorization-code-error-response" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 state      = 1*VSCHAR
]]></artwork>
      </section>
      <section anchor="redirecturi-syntax" numbered="true" toc="default">
        <name>"redirect_uri" Syntax</name>
        <t>The <tt>redirect_uri</tt> element is defined in <xref target="authorization-request" format="default"/>, and <xref target="access-token-request" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 redirect-uri      = URI-reference
]]></artwork>
      </section>
      <section anchor="error-syntax" numbered="true" toc="default">
        <name>"error" Syntax</name>
        <t>The <tt>error</tt> element is defined in Sections <xref target="authorization-code-error-response" format="default"/>, <xref target="access-token-error-response" format="default"/>,
7.2, and 8.5:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 error             = 1*NQSCHAR
]]></artwork>
      </section>
      <section anchor="errordescription-syntax" numbered="true" toc="default">
        <name>"error_description" Syntax</name>
        <t>The <tt>error_description</tt> element is defined in Sections <xref target="authorization-code-error-response" format="default"/>,
<xref target="access-token-error-response" format="default"/>, and <xref target="error-response" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 error-description = 1*NQSCHAR
]]></artwork>
      </section>
      <section anchor="erroruri-syntax" numbered="true" toc="default">
        <name>"error_uri" Syntax</name>
        <t>The <tt>error_uri</tt> element is defined in Sections <xref target="authorization-code-error-response" format="default"/>, <xref target="access-token-error-response" format="default"/>,
and 7.2:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 error-uri         = URI-reference
]]></artwork>
      </section>
      <section anchor="granttype-syntax" numbered="true" toc="default">
        <name>"grant_type" Syntax</name>
        <t>The <tt>grant_type</tt> element is defined in Sections <xref target="access-token-request" format="default"/>, <xref target="access-token-response" format="default"/>, <xref target="client-credentials-access-token-request" format="default"/>,
<xref target="extension-grants" format="default"/>, and <xref target="refreshing-an-access-token" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 grant-type = grant-name / URI-reference
 grant-name = 1*name-char
 name-char  = "-" / "." / "_" / DIGIT / ALPHA
]]></artwork>
      </section>
      <section anchor="code-syntax" numbered="true" toc="default">
        <name>"code" Syntax</name>
        <t>The <tt>code</tt> element is defined in <xref target="access-token-request" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 code       = 1*VSCHAR
]]></artwork>
      </section>
      <section anchor="accesstoken-syntax" numbered="true" toc="default">
        <name>"access_token" Syntax</name>
        <t>The <tt>access_token</tt> element is defined in <xref target="access-token-response" format="default"/> and <xref target="access-token-successful-response" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 access-token = 1*VSCHAR
]]></artwork>
      </section>
      <section anchor="tokentype-syntax" numbered="true" toc="default">
        <name>"token_type" Syntax</name>
        <t>The <tt>token_type</tt> element is defined in <xref target="access-token-successful-response" format="default"/>, and <xref target="defining-access-token-types" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 token-type = type-name / URI-reference
 type-name  = 1*name-char
 name-char  = "-" / "." / "_" / DIGIT / ALPHA
]]></artwork>
      </section>
      <section anchor="expiresin-syntax" numbered="true" toc="default">
        <name>"expires_in" Syntax</name>
        <t>The <tt>expires_in</tt> element is defined in <xref target="access-token-successful-response" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 expires-in = 1*DIGIT
]]></artwork>
      </section>
      <section anchor="refreshtoken-syntax" numbered="true" toc="default">
        <name>"refresh_token" Syntax</name>
        <t>The <tt>refresh_token</tt> element is defined in <xref target="access-token-successful-response" format="default"/> and <xref target="refreshing-an-access-token" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 refresh-token = 1*VSCHAR
]]></artwork>
      </section>
      <section anchor="endpoint-parameter-syntax" numbered="true" toc="default">
        <name>Endpoint Parameter Syntax</name>
        <t>The syntax for new endpoint parameters is defined in <xref target="defining-new-endpoint-parameters" format="default"/>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
 param-name = 1*name-char
 name-char  = "-" / "." / "_" / DIGIT / ALPHA
]]></artwork>
      </section>
      <section anchor="codeverifier-syntax" numbered="true" toc="default">
        <name>"code_verifier" Syntax</name>
        <t>ABNF for <tt>code_verifier</tt> is as follows.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
code-verifier = 43*128unreserved
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
ALPHA = %x41-5A / %x61-7A
DIGIT = %x30-39
]]></artwork>
      </section>
      <section anchor="codechallenge-syntax" numbered="true" toc="default">
        <name>"code_challenge" Syntax</name>
        <t>ABNF for <tt>code_challenge</tt> is as follows.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
code-challenge = 43*128unreserved
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
ALPHA = %x41-5A / %x61-7A
DIGIT = %x30-39
]]></artwork>
      </section>
    </section>
    <section anchor="use-of-applicationx-www-form-urlencoded-media-type" numbered="true" toc="default">
      <name>Use of application/x-www-form-urlencoded Media Type</name>
      <t>At the time of publication of this specification, the
<tt>application/x-www-form-urlencoded</tt> media type was defined in
Section 17.13.4 of <xref target="W3C.REC-html401-19991224" format="default"/> but not registered in
the IANA MIME Media Types registry
(<eref target="http://www.iana.org/assignments/media-types">http://www.iana.org/assignments/media-types</eref>).  Furthermore, that
definition is incomplete, as it does not consider non-US-ASCII
characters.</t>
      <t>To address this shortcoming when generating payloads using this media
type, names and values MUST be encoded using the UTF-8 character
encoding scheme <xref target="RFC3629" format="default"/> first; the resulting octet sequence then
needs to be further encoded using the escaping rules defined in
<xref target="W3C.REC-html401-19991224" format="default"/>.</t>
      <t>When parsing data from a payload using this media type, the names and
values resulting from reversing the name/value encoding consequently
need to be treated as octet sequences, to be decoded using the UTF-8
character encoding scheme.</t>
      <t>For example, the value consisting of the six Unicode code points
(1) U+0020 (SPACE), (2) U+0025 (PERCENT SIGN),
(3) U+0026 (AMPERSAND), (4) U+002B (PLUS SIGN),
(5) U+00A3 (POUND SIGN), and (6) U+20AC (EURO SIGN) would be encoded
into the octet sequence below (using hexadecimal notation):</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
20 25 26 2B C2 A3 E2 82 AC
]]></artwork>
      <t>and then represented in the payload as:</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
+%25%26%2B%C2%A3%E2%82%AC
]]></artwork>
    </section>
    <section anchor="extensions" numbered="true" toc="default">
      <name>Extensions</name>
      <t>Below is a list of well-established extensions at the time of publication:</t>
      <ul spacing="normal">
        <li>
          <t><xref target="RFC8628" format="default"/>: OAuth 2.0 Device Authorization Grant
          </t>
          <ul spacing="normal">
            <li>The Device Authorization Grant (formerly known as the Device Flow) is an extension that enables devices with no browser or limited input capability to obtain an access token. This is commonly used by smart TV apps, or devices like hardware video encoders that can stream video to a streaming video service.</li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC8414" format="default"/>: Authorization Server Metadata
          </t>
          <ul spacing="normal">
            <li>Authorization Server Metadata (also known as OAuth Discovery) defines an endpoint clients can use to look up the information needed to interact with a particular OAuth server, such as the location of the authorization and token endpoints and the supported grant types.</li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC8707" format="default"/>: Resource Indicators
          </t>
          <ul spacing="normal">
            <li>Provides a way for the client to explicitly signal to the authorization server where it intends to use the access token it is requesting.</li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC7591" format="default"/>: Dynamic Client Registration
          </t>
          <ul spacing="normal">
            <li>Dynamic Client Registration provides a mechanism for programmatically registering clients with an authorization server.</li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC7592" format="default"/>: Dynamic Client Management
          </t>
          <ul spacing="normal">
            <li>Dynamic Client Management provides a mechanism for updating dynamically registered client information.</li>
          </ul>
        </li>
        <li>
          <t><xref target="I-D.ietf-oauth-access-token-jwt" format="default"/>: JSON Web Token (JWT) Profile for OAuth 2.0 Access Tokens
          </t>
          <ul spacing="normal">
            <li>This specification defines a profile for issuing OAuth access tokens in JSON Web Token (JWT) format.</li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC8705" format="default"/>: Mutual TLS
          </t>
          <ul spacing="normal">
            <li>Mutual TLS describes a mechanism of binding access tokens and refresh tokens to the clients they were issued to, as well as a client authentication mechanism, via TLS certificate authentication.</li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC7662" format="default"/>: Token Introspection
          </t>
          <ul spacing="normal">
            <li>The Token Introspection extension defines a mechanism for resource servers to obtain information about access tokens.</li>
          </ul>
        </li>
        <li>
          <t><xref target="RFC7009" format="default"/>: Token Revocation
          </t>
          <ul spacing="normal">
            <li>The Token Revocation extension defines a mechanism for clients to indicate to the authorization server that an access token is no longer needed.</li>
          </ul>
        </li>
        <li>
          <t><xref target="I-D.ietf-oauth-par" format="default"/>: Pushed Authorization Requests
          </t>
          <ul spacing="normal">
            <li>The Pushed Authorization Requsts extension describes a technique of initiating an OAuth flow from the back channel, providing better security and more flexibility for building complex authorization requests.</li>
          </ul>
        </li>
        <li>
          <t><xref target="I-D.ietf-oauth-rar" format="default"/>: Rich Authorization Requests
          </t>
          <ul spacing="normal">
            <li>Rich Authorization Requests specifies a new parameter <tt>authorization_details</tt> that is used to carry fine-grained authorization data in the OAuth authorization request.</li>
          </ul>
        </li>
      </ul>
    </section>
    <section anchor="acknowledgements" numbered="true" toc="default">
      <name>Acknowledgements</name>
      <t>TBD</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
2lU92bIVJcPOgcn5HeeVpnYzdmWkXQ/0uDu3TCwcjZPqeu1Nexfnf0TvTb8l
Zm+2ICk6wwSzHd4BpShNWEjTkyYEk6WrknddUdSARXDveHnW7/Q23GSFeLnW
FUNFwaGuK+BqVBgTnqj48FncSPEzpR3x9TldL07LxcK5o+QYvDG2qVOBd+9K
BUcHfW+Wc8bXnd3d7KiivkgLiTv5Y7ByQwYR2iVrSeyUEBujGoKYKKLGRP4Q
thm056Kf7OgGerH7d3BX1Nt0w73EoMW6wUJFbPxTqZ8K+8kuAjL1lS2rZum7
r6i4HQGBhGlTykhRobgP7rwviCc33uADf4xjwUT53q31JtsbrCWG4h/e3v9i
TVuBoFVMO97WU59d+oW4QdYddVbmhXdYAbs7TtfCoiNwqyfbE3k736yXOToC
8zktP5YUBD7Crkybi+0V5nkdYkc2dQAbkLSBWqaRuMbmsQrIbO5Mfj46umH1
jAhpPtmwcaHKMryJ4qZw+S6ft4lbVvFJ5TxxyrnXHzDPzsP9xA7eiGflJd/6
XXUdYqUoTrqH4j3uXWO3k5zekzyKeNiN+0g6XbR/GBcnk6N2IgaWCsuiSmTs
+31VdfkHwSRbtz+Ldgf3fNDDlf/Lv3UD/xad66NA0fAdWRwg8Iu5vExuP+sv
mQaLIdY2bH5GMaleLYO3XJP05H+We17wmyLlVy6BIzbXChLkw/dvn4/v+3B1
NpF8lV+hhEHd2bUwu3FSbN9OPJl8dphggN4Gym+TiaL6kpF1/oYRzvCO9LvC
D92Oa+G7PXh4ASUsRVERb5LuGLPGWb7YmEI8ij0mTvUu+u2Fh/cpMe8bQSK5
LGTNnxje4djbsXGPo1lqGEJYUNzp3Jku7MbTTJYoZZDdxnG3Z9R6Us2e2Q17
A7Am88v3cChfg1lGku1FaRnmZ3ck/XlND4MwabqP6ar64enz5R+W8Pf9b3+g
p35pq8Q+//jtdSGJX5Is8tuAtB8d3L29l+/P9/bnd+/u7e7t334wm5/ey+89
mO3u7s72Tu/Pdu/M9/P8dHa6d3sK/3/39oN7CC6+2dfPaFsKjpTuBUdtrm/S
oxznvV07ZyBRBXt1oiF9tI2dEc0hoHafrQy1Vi/dxeUR/AyVdFyTb3vQBdZ/
Lcnr2fX3M+UubsV5OoqnwWP23n1i+epJVKDAi7HtrIYX4xI3Ug/EqWUB5JHV
vE45dUNyP6nU9RpmGSlt6bx4mhFrfv2Mb5uv47Xsin82vbIZ6GLAJEJFHpif
SOVEJqCXhVN2Vp/vzgs/OuwFaOLljyR6zyVW1jfK4+FQoHzVzVySoRPSxvqP
JW4lEaU+AhCmLaboeFA/CA9SaO1ztAmpglv03WLDOsV1BXFSyXrq3uWtR7a+
bFTlIERbT91IabmbokKR5hsHh4JyyTjhKQAPLDZ1dPVyY6L6S78inlIPjHzV
18WCypw1/et0vfA7qVhgKZ3pLAmWiJ5z1DuawMm2wbhB/wflZV3f78WfZKLT
y2Fls7zdEgbtoP3d3ezV768Rvj+24oh9ks/OizH+sKkXD0GXHFNUk/UEhGrN
6cMZ/oxf9FFcOuqdpWlvPcy29v9Yd9XzPz1/9mOz99MT0A5e/LA6PNwa6e/p
h2I9ZFuPC6DCxn3LGTztuxLHOri7u2u/Cfoj46PpFsn+ULRZ7+wtxIf0Q7oC
nOENFEv4SFIG+cSDBSR8pLCkMfd0/hSCsvBziwBhAhhaixlqvcySp4ZIhQGl
7dj2EsaJOb9LVYB6nmp8wRnVMBMz43MdcZiqZvRaBc2OU5WR87m+AI5Pm7wh
1Lr5NQXt2/iNsFt4jdQqadNFbmY7jNG8E+ZU+5vnQU6Rik4bPXVlc77yYAaU
+xCWiejkszBqUlA+mY8XcwPkmD6aUDzGfzAW0wBqLeMhxXBKMoY8cvN5+JhK
8Tz+XVCZBpFsEshIv9p+/MJzSaDWiBnm0VSAWpO4/zdDrRkY9/NRaz4HNyIX
D9cNADV6MNOfi8viKUmoXIjiS29PS+ehnFqXZaiahQOBG7KAvDY6/c0gnjAy
VR33He97aMqwte6gPy9xmr+ii8+Fwv8v8/CJSeVt28k/rsTaO4kbe2+s8yau
MvoHOW/MYMOpn11o89/Jo9Onl2szI9NOio2Gyz/KGOnhtd/I4jgMc6b9ni0e
pH3PNDFihKT55Q1NEyOmyc1aUf7LNNlkmnyOpYEZlxbG9WuuFfn4ha3xZNzV
NpQulF0b4L96ujDGjRg7XCWH+9LYopmgFeV2iJGdpI8dEbgmQPA+cTfYd2/4
nVmsuGN9wdWnYDa0J6U9oVcVeE55c9VjqoOYvZ6gfFpQRkKoa7DlFvTc5MKs
+3f372OjmtNOyk2pB9957rcI9Jl5TR12C5xth+Di+K6R+Xxu/7kVlIGrfgNr
v4a5/0xGHbBqYBO/OTgsi+4U/kPHhp70GvcL/ks/pKbF8A/en3eujiX7rffR
o6+Xb86X57MP55fPfnpfP/tr+eLZ2bun1dWzq/bl+/XL8/ano6vj9w+KY33Y
FYY+ub37YHd/997B3v8tDqaAi8d+ps90MGFy2S/m4uaL7Aj2QjiGL0//teV/
ty3/Ijt2EtP3t163vA3q0udvL7pPEB/EK7F0y5rW86shwwTF9IlZFnOsq0Rx
lGK5+3ceYKsa1cNTho9hhEl+MyoI269+v+MnlaFZEsrzdNpAvxPFJimHJoov
9ZNj0rqGO130tL+UraJN3dV8ErgCakcjPS0odcrTMXQucSmhrT2kHrAzAitM
zA5+/byWHIPASmGBfoIaDEK/VHXngy8GC6T+czICTgxfifXc5/W68fwLOBm+
ZppUD1tiizollQquojSC2nC3RAP2Urm81/Mv6W1RTTJBn/oVWEEDAU4GCbzH
SXs0UMYVuk9KoiLAzaq4lKSKoAzSXRJC3kv4KsLm0+xCYZCyjS3z0nY05VjY
CI46HVxPhUSvi68ktUzzJkYxsQ/3dclbzadzdvlmkzxCJ4Azxs7dP9EtoQzW
b/OL/Jhbf76aUpHLS23ds/3t8auXO4bxMjCE5ZwnhAnmlE8hXAQZQx7vnlhg
4t/EtS/LKvgv16pKIaEfCNOIGRwQvtp2mDEvgawa2uBNP2dgKC0V5AYx9alf
5RC1ixGkrwpGJcV3s/Hrl4dxN7jALjpxvVilr+hpWSzmzH/v7R/cVv6rPdvg
gE/UlKIgOGjnbgy/uylR9ijsaOXCGMq8TJDWCptyWWCRsACesZ3mdU0ZmqRJ
TZJMu5PQNvg/xKb8LJNyo0W5Kdb1c0JdA/Zn7ClLleTy5vNlsekRtpPrW2xQ
hVWxxCRc+TcThFyRXqpeGvcgp1vqF/FeW65r+uW6n1Wpa1KVulm6UtckyyM3
qHQbbrHFFWYKF03nNmo6j/O5+p+R4bk8+m2p6HNZC5Zv73iY1bH56TMdvxeK
OmN+leKnf0bdk1ecE9c+ZdteBZtzgOyM/OebYgU6blAd5b3LNv/yWV3wempt
j7/0wBmKqBdPlILZheVGGkmxHcf6STr5AutEz86BAWX+o30UyLzNrs8GCsa4
vt5LzzBV6pVu2Cg2lTSRlnIju9Cq7i+/F+GxXZVhft4Z+09Gj3B8eWfTdX9x
+Mfw7Kke1F28vWz7e6+4LTA2GKSaulwFx8cqIQ0QTagFSbEU3cDVaqoBmtqD
Dst3BAswcG0rsNdJ4NE6CRfDF8kXo9eAfYSPEy+KWdHGHbHxRv4TlKv/8MMP
Yy9IXQwIev95LQWP8wDdXibgcHtUShe9z2csjlBKARdC3ViMOIqzIjyWsJOR
ye/77RX2RbdGPAgs3ucjgVGBv/gq4Ez5MmeM+SNYZPvNN7tuwrzG4L5Ufm34
55VzBmmZG4s7GcUmXH5qz5EVJ0ssg0BjYhqpgXQqThb4qEGpSVhbP6SeX1JN
aTnnKKuDikOEMyzmfhs/7Y0yVaydoIPcP6nS7V+Fbv8qdPvvWOiWcCvEebWS
x6A+jMCXOdQbgNyY2aAb889ooO7defAXsX+ud2yIByHpuzA39l2ANTrovDA3
cV5k2Ubvhdnsvciu916Yi17YLjbN0cbxTJy/u42u5k3PHnExWO2rlgh1gIW3
wRdnIqRjxbZVFCjcqyVQjdf2Nmd4OWB8MMyS4g5aAIYigLvfltwvW7pY1SzT
Y0Q1oqxZ0ZAHUgS71TAHMA9m1DsUz21gVD9zxWCzX+fhjJybGGjuEEdULhAj
FFNaHNafBzjUfl/OnMdK1fNpZelRxeg2uWD4DjoMEHNJzDAYo35fypUApody
BeWJ4i/WFOtY4i81zGsQqqApCZGdQlpxQ3vboX4kebLRDzTpyeLQOSnPsHMi
2pUs8pYwf4tN8v+ttD8lxk4wCfDf8gKMKpAMIMfyBW+ZPA4fw84u0VBQS6Ii
ONW1ZNGVyxWW6Mb90gncMKf2Hl9Y+g+T36j7EFf9h486v3feo4uRn6L8z02D
2w7z4Hb+OYlwge/uZDD2ELndY4PCL5OyOvw/JJsurQT3ZDh6zLjfNg2GHMbD
Ed+o89pEUokHWfupoxYFJMXg9XFEY3B4zYON9OrHgmGRuOSu9++iBi6/yDmn
3s82F2XLEkW/h7vPP+PjsxzCvx228SLWQlnDbZLdpCrVfH5eY5yS9q+8xn9E
XmNw2X8b/OtR2o1/kyrRzywSHSKi3/2iSk/xAcUlciHtX1/l6Zfc/S7EG487
6G1UtlQPcADjrRaekDRFZWzWmXB6TUFkBowDLHjQu7AHJMiGumEyDEH4aOt/
d1ygPTr2O2uELOXh74azLLNEv6NpWc3bxNYl9DuDJiGawjMyInjJeO8+fjwa
P51gTtaYErGEiePQ8DVWAnLqxb3dO/APk/UfADawwt8RDKIWJUmzGws/Bct/
E+6fxGc3rNmmn0iUPKIP4gEXiPQWJRPxr6JIU+ZadfZ4rOj3DBy97tJWLk2A
VShQ6VdcRdXl16U/CuJyb/qYt1EvwQJfli3fCNi1Kbf0IRAncVpOawu9wD0D
xWRKqnAjj4aX3FTRIfmbLFhoMkmBHvEwL2PnphyMKAfIdmfnm3znAuBkzRmj
rm/sI3CFK9Y+NqhwWojAYGZ0Ip2mkAiSNOsmGDCO7jpOhlps1Cup86Bdy2wd
96xuSamVlh4DurCvqXJ+U9Ihidq/9u3hjytqrN257FmV1bEuPC1QZWgNWiLT
ItOOTWT3JzQBgn3V1RH6quBxVmmLDZs9nJ6iQUjkZE8gOTWTnJrm3bp04REh
dsfWJJYEY0UMDkhQXeSknkSCM27fIrwfLbyuOCO5bnEa/clYyFqvNYtnII6M
9lo4YyTMNm2YeGn8gzmGN0uC+zskEhq/r+7PyB9kD5xLu/j8/MFN0S8x99lk
iy4nDK7pTbC7nh7AuPAlmJ0N3+56Ed1ssXRBjM4Kreongui95pronM8T4C0R
MQtsv+aj9hcRWUfCr/s/s7D/KU3dM26mQNJhKlXepUnb6kNhr0YBCfI676Xv
kVt5bJkEAMSoA+DhYHaC06HJQTASbwkrKKu8bS/rhlofVmcFfLKozwhpOIVe
IXqJeRO+2yHUUppfgK+ByfFUDAzWF/Nu14ysXCLs6KSYpHYXH2QgQErY72XQ
hf4lHZQy/CzcWJj3h+2/WCIgjcJNoouX6gjrxDhCHJ+dExxhnp0t6qn6Qg3D
FDODde0J/KWTc+5K4X01gy8AFDf9dW+Tfdu1Nj0KTg4Lm8n1yM5GJOrXtmj7
jS3a1vwSdD7aou6xLeoOM3j4p0WbLP8G4hQlwoZZfT5oxVXgsrLWf/BpvzOQ
6SUW+1ZB2dmjlxio6D70XSt+g1lN98Fjq978ZSKqzvuxYP2JcSIzMCKCqW17
qWjosggzttsdg+4ALk33XQ2p0nRWaTitlS/oRb24IFGOspDaTbIYmNUESiJ+
u6BXa7ivohEmVQF7yRXridZzhO5wnBb9Uvq73d3/9AmJOXcBhHlUC8weMh0x
z7794W3fJAikzY+XnRUx2pJXpYZ3Q2xSTG/ru9qk/RXxLswLdNnZzpGabh2Q
6w1SuYFi1K1DTRzlfFov5sOZk2FeRTKZgnd2/+7ePZs4WcX1ApKmENVSBSQT
uuP05uH6kKDdCZ9wZuDJyI0GutylpKAF4Qn0S7RxGhpnl4s6EJwBvkvihQEq
t2vE4Iwm11YMrpRThBbO5Z44Y24glzsWZOzx6sZu56iXyithQmPdI1TyQdnB
1jk7QeKfa4tA7uiojgGTnjsXkHLhYudsNpJx0HNl6U77++P17urfeqo/5+XP
DYZAsDnYlegAIWdVnYJzi0NgKb8Vnm7Qrb2UN+s6NxbNP1s+f/dg8vjO6fj2
ZO/bv76Qo59io3itxCSEIkmEQdlqsQtwVUGZGWzUM+qz3CMd2hoGctYkRLnp
njvUHqLZJkyrqx3OSwuBfrv6jMNblvRO/FxalzPkwqMsvfNFW8sZte4WJxPC
rNfWT08KKxoQVEUbvyTkZubUN7h5stl081pQ6IIPuMW11cw890Z3bpuACigY
ih6ynbGNAjZSQhHv+IPKqmxryinCO2QrapMoVTtpmMv8ytgx2W/DVnlv5JLg
amATv5dUSx5cboi9P+pb9L4nwimi4QJHVva+QBdaR5Fvs72ifqTwf+6RHXLB
uxdywxQ0mdEslS7Hek6J512T0tbYpm7B1Wx9mAmXsCTRLKonx9ssstJS0GVt
1QpsOSOYq+FUy8qpGRZgg6pRwwjfxPb3DThWnCCKbzN4HdA1viy78FSpnsGn
u0HkjG9YRD2nbDruwudD5IZckvnPZmlnWNp5MsyG7T0JGEQBuNWPx0oH5GK8
3AgfpJ8wEDLHqMp1c5HrZ/BISU7ReuZodwIdwPUhohVJpFJxijFxR0bh0EKk
D5SVbf64j5Ug3n5iWkbdsbLMxRLINWiUUSDaolwb0j3xTbyGxJv2JviuQHsh
Pxx7LWGR00XhmjCJLtsLJyD7BYvyPY5MzBbpIUQhMlq0cYdQ5zRn2Z88b5cw
Q0wOwr6f0pWdmqwvaPZ4r4uS6JXzTuianS6wGqj4UHJkDlTERX1FkJUT/xjx
iOS0/eBd0CVayGt69zZfDPjzKNv73XbcBNrP4nN/kp2h8X//jf731la2k/1u
6xEnl/hzeGQRBOBlx6/t+11jZbG5WYEKWFjQNChi3Bplu/ZuCxU7cauqDwW7
IxWaaBfo8k2cwkB8zfXq8XtTEKN6jvGwZ+IFfYyVojZl6YYcKgghSuw9yCoA
XSNpXvj61TgsUjWRbuGrFJ4BHbVjtIuTVkoG3aa9hveuPzXFkuEJcsO8jZeC
x9ldjeUwglKNEz/KqFwHKIhPzIJmX5v5MNEXa86bz6JssoMP+Kr9r7IbNfic
yTT7KXEGE7xefJfdnuzuZX/+4eDJ5M2zJ+Pzbrm4vbs33nvw4MHe/v7tv0yS
O6OzRdZKBSdj1GDsb+Wt4pd2HnZmJfKs5iJSOiludVMscFawPs5T/fhRElWB
B7qEw/SE1L7lbsXIVJydGxDYORVB6ja0xTLHO9tyClPYZJmIKa+80toTEHCY
xi9vi8GsbXajLBA9uKIeKVIfz8SaTy5hBj26xnl0U+p1lMY5VRV1cWXhLebG
Q3UdfJfcspPfnrh93W53sm3abW6td3B/5++XSBBkBaT1hY3qws8K8fub+Sip
WdzkQsnRh0A/ePgG88ZX5ET2huGr8AEFATV1YworV5xYp1DP8xrlrSHQxhAW
8iYCwmP6xvdRp3k+6du42rjmw5XIhUqqBE6GLS2nMNjUolDT8IVq3QTKEUf6
IveA9EDEMFvrPC8Ds1C3dcLfGZfcmpvWuXyFapB/fckZ5cI86ASnC+1LEnZT
aou5/psCfd3q4E5Vu0aFx3AECDNbPtZmUdfUyOsh7dBdk+KxKMGCHiC6hI3b
su6rnIWvNQ9OoW3uQkZKx5g4iWQjeyEi+dx5EwThv4lnGvZ3JRnslD0Y8FWn
oOf9IfFUptT9e263HO36k6bIF8sT91P5pYv1eBVhgaPYCE1xIRt9BUKBG/J5
obzkmXCKQ+LdtiXlagX7HDeDFnZDM/AfK6M29MPpfSb5cA40kM+KMTYbB6sN
hlmUHHRHmTK2td7iv5d8ctkVv5MX+RCHgQSAKxob5Rj0/+sU/bT1IGZvZLFf
sQnBZUHZDL5uJBm/Kc5gAc2VljUsv8JAOBEmj0re/xuAYcV58eHcjBYklWcV
0WWlOc0YzcK9kyzB4DFO2lD2T34pH963l2jLiny71uwAt8H2V8b30/Z5HXmC
HJRXggRMlFPa/801pBlS14VCnVA7MvVDwsTO4FpSpFP8u3Ot6UKNSRQ/IymB
fPfg8TGmcFMD5cvawc3RJlxo9QqeLtEDDoszy9/7SKivVkV19BTbgFRoXv6Z
/z15gehjwBP/YlN08IsYd/ct+qPqRX12BQMsKQGmyLZfHb59spO9qiih8QWW
EHMVSejAwVBfPasX8MoXh6//Yjh3fn+ySxsgJIICoqAA60J1HFreoy34nwr7
PTb1aQmLBrWzXGz5P1g31UP1pmAYuCoWj755/Oq3/ucNXdJHX49efz3eO9i6
iWj2Mv/6UEKSAxFK67Q8tV15vaJRrnAzjrSSlU1+1Ag7lYIidOWHVHSml2Sd
zBYehkBcIV72MmLZrA6yK6SFLd9fdXIPKAmehCeTM1F7llydrdNqezVhhlrE
SuSQ46W9i5ENXAzrLDfRzIJqLjcjrf71oQHNzQrWpJFtUJ6nd5/PdZQqxePM
pORsnAPVDAm9uEStx5u2HU4CyD9bCHA4ub3T77O9uerPKz8ztvxMGuZ6UfWA
++DasGBQ2h+zDG1aowFg/8eTwYpPb4f8rTPeTqXXCV8cTu7R84eT+ztc9H3z
FQ/XOW4oDbzB3j8AeSPbH3ozb1g0aD77wIJ6wcAEZa++VcI3xX+0XXfE3vq1
bXuZXzNP38bKu3VIk6L3SJFZthA3df7Zk0pEogVLILNonzbrwuPZv+rUR2ln
KXOCR7byjiteNv7Yp/JHW29jXVFWsiWWJ6OxPEEmnX38YpB/i+fRFSJRw+s0
G7fALM55CByoqVcN5vj0m5tudy7L4PbuLv7PHv7PAaVS3969Q9Asxvr7XGqv
5+1wgCo9iB0sO+ojqVDFz9tzTzR/NoZKGj2lbvptpBUnhe4XfMXPe2OT/ZkK
cnGg2cbGXfIl1/dw8uEwCkk6+0iAe7TKx0FXWO9xD0bHP7GJt6FBCVaP2Gy4
HNvi9sAbEiX/mvp8agGxpJ96vBJRgPzZy5a4JWyC34jc1gptYouT+tYCZ2mi
8ZPW8YIBeIucbfEuKDTzyU4oreWS5caVKrZMCnYL/dKsCJZw+IzTx8uDwA3L
toGdT8s56Cg9cJJYHVP9QGYQaj3OgLfQw8R7ZZ7+hoXFZROrNeuGLPLZe04t
66HauGoEwRxxaq1BfXVd5Ze55sz1y27c1DC1y8LFKJM3/n1Ow+NsVMZ92Wox
wGk3LTHzZ95Criv0/kXCMAW21cPXwiRft6KozHEDl7cWCK7FT3gW1iwqLJKm
cDIgYD8IEAzHyROdVO76OaRy3WwkwEumcele+BPjyT2cRC//YKN5ItLQ4oF7
uWGGQ7N3793Z/fQpg20B1b1sz6kgZwZ2KyHIiF8EXvNnGzrem9z+y7a2ye3q
etFSbuCkbs5uYWDnVnM6u3vv9oMvJKNijE/sZIay+ungRBFmK6UFfQ0pc4m5
X2zvCmdKIifBkl5KmXgCVglWXZ7hBgO/WVK3deK53rCxTmQr8tG5A0sPUbos
aonLwo/gnxyJeNnyllKszi/uJFiq4V0tGher0mRT2W13FgNeV9iDYyQRXTWy
NDIjrKZbaxmEr0CQ1khVSPgDyUe2c7EGx5FH6baJoTZoV7ZCMBNz48n6LjCl
8Wvd26m1WmDi7HXVmc/yFVmMMN9pgQOTxzU6suiwRwZTFdDYdYdsz/1U8V8k
cW3EDtrSQinwIToKdLvAdK66jHhnN5Mbjj07r2tRyTEBTTD2JflDVbq00R8Z
uV7ojHIbCIiM5+sLCSpaEt8xPrJYFFoBDevjhBNJUTQx2fTSRI81Le0Jhkjn
Baf9tcw37Jdvz7HiWjpvOO2U3L5i5mIC1QVliQjz6PiZLD9DADsCACLXVmtc
dSI5PsnWsxiRGilQl7IOg7XSmnj/8ghM1mNcGrzuNZVi8tbc390d3z3I/ow/
4L//RfMPeLmwbevTnDKfby3rud0aak1hC/AwAU1hiTGroj5ba1IuRSjmesD8
mcSh0eD2GHcPNdxzYVHLcG6syqiSLoNFdF8sSXde714iO1cYlJVvgYQhPVvu
4lu22F8wWGVvLegporw7+ox4CBIAwmHU86+y3LhyWBukDYZB/JKG3VIwTYq7
WbezT8Ua7b5S8E4uAMmIHWCqfllchmeHlRyLGqsHEIDCZgra8F5k62L9l264
cRsu3jJRaFysItRevNda4LWARLjVhmyahbDWCmtFHjUS14q1jN7WwFCwg+Tj
6PrnjTMGI46c1NTLDnb+QiJ79timnJBQdvH00QcYTl6URHox43h4EVFqcbFA
X96VcQU5og7nXW8tNt9CkxKFW2QvYGPP9HaB/tsAX6LOgP61FtjsJf+WBZ5G
yoT89XqZIAl2emVF0bw8KzvgBLZGcGIOF8BG0T2KPvJRnBmFL7VkkznfklQi
OHd8AE0GJ2yRQ23ODE7IT41nWllcwcUjEW0H9zq3V6dg/GGGHQOBegcDEzgD
udR+ZdfmJoe0blNwK4FH8AtK1H+Ym7BqxNa3tWvNmmupIIV5i1s8+zSGNsBW
2pB+NOOkWOJ3VTANVHG4KHhD3HgiSbcWZNdG63356WBYmoASVKjSwr7KznH+
WBLRMcQoQhQvYdR5LjFzi2SmPTRhl3OCBiksy81cnaoXqUWzK/Ai+mU/FiJY
8f+Hx7HgLy4sB2etOD7ukCgCxZoQiydO98G8diBwvoQBV+IKlhZDnmDhoVBQ
/2sSF8lLpSbKnXPymVo3Nv4GQ5crzhrZZqqYExwSmooWEyVXGOCYJWxTjZFK
8IidtTsj5Rlq6IMhB4za3XinNzn2lltdxsEtksLlNz64Fh1dA8PZ2++O4cU/
kLaOk4JfYm4SJqd2hrmp/TGxv8WCANgJwoprDPNKPue6JClLMpdYQrNC/ull
o9KPGfHWFgJcrBcoNqagDHWETyWEAGMjqwuD2EwFQlFWp+oiwTgK4D0SNGhQ
wmLekNXksd+Q4h+VK2BwCO4gvgYtCDLxqIwp3adzVd6s98c2WMcbua6cz6PP
tjxbWxlXioR7oPE3G8tENDry4MFuuDbpQIkbhk7VHPlLzQ4hR1d5ZQFPRWTG
WrjeWPYeSb5zRooc5vez1Ul8wfIm407Yov6GGyqxXFH3GJOMosWSENYF7YFl
/EJg1+sp7kksboMbOJKJAA/A6g6fpSk5lS4OqjqoTX6HPTMBlRyi8nS6bkii
gqQoqKx9kKq96fdKTOlAEA2Fd5gCQGVYwKNp0qarEx7OVn3glCt3Xsze61Y8
8UZ9U1zUYit8h4xt+8mb73Y4S+fO/v1d8rU8UaS5ADpKqxs6Z/DPFqCO0GVZ
EwzDVaAai2pif76UcmbCB4TddDvDggeIqIZdiqpo/LRRQkSk4RQMjy6mKF8e
OLihmY20CjYyOzfPxRwXRbZFTupjVLezF3kF50/X4oV6VbZ4y+7u373z6ROX
cgs/NLPAAhWpLfNFf6rkyXgp/v7BMc0705JyY6f5AiFxGnb2UW+1Ged0eFTa
U87JSUdNbcGyqhv9HZqN+SJQyoOKyaAkmSop0KyB/bzwqrPMunIU6LMruIlV
h6hbOg17cbNw2sabnzLKKaiP/rMbJ3cErBT1tmAjPcUElCQ8T6ewgq0AP9Q0
AjLAYqYZqubJZRHYiMxTVYGvMo+hBGNIijVNFGu9SoYbypnSUhrRLF8RIqqF
nbgaRcG0SC+kpK5lPi8eZs/LBoGy8ee2a1IwHd0KSXj7SkJZcLEJd2F2DgYZ
UyG7etGKWXeSoWWtaBqXMzPLSnVK4+gB3cHBe/0CIJHXYC1jojM1zdjWHktY
1I2FCDt6+RnnUQSkBXqk+8vaJaI8UiDtmDpDjXon6ikO6vr+wMAR7YCYNT2R
7ZevbxDzsb0bSRYVF4SQifhJqOxXQIpwsdp5U68QzpFLh/uaxgqMNmJZ4lZg
WeeXS+qyJpjuZQGaRta2qasxDZLPkWJRBRTUI4EIc4dlnrNAw4DniAVQhKzg
tNmY6yRkHGLGXCXU9L4NTvwadsGoj/5gsoe/ZWb8CvcUeIiw3v37e/fD0jL/
TEhJ/Ezx2lEanVf+aBJCFjGKhzajyhhv3hU2ITn5GPQ9Jg0Ej1EcVpFCfcCb
rJHJopZOLnh7iiV7f9sOuYibDZIkeWb8lzsQi5T2IE6P4/VySfbBKagKIZ9h
d8xxflqg2TkPfBGtlnlF+n6Mo5R3JniMdAykQr7IpHNW1nyjuBIqNqwjXzG6
luddk4ztZcITlT47lGjGaq0lLdVaMoHkZtJgZhVNmQ4VfrcoOSTCNjmmB1jb
LrbdiT6Zhatf67/0sJOU2fZ7F8XkbG6mLQ6e93NHeHMgoZpcM4LX9fTlcXZe
/pizEsmOnZDSTI/S7LHxIdjS3sVlfkXZ7bRSDrntuLJARvoMfmTkR3g90ASD
lZN/QQtk3JElF0zpBsGZoUERr7b4wIgAwR2uED68XrfGLpkUTFKBztC/qj6u
dnjBT+vqy4511YhytL5UtMEYlc1Tdhn7O3wal3W96stKebZNETwlde0PKDo8
F5wvqb8R47fgiIhJEU2IK+9xv9Kr0bnQvNGvi5JiBiyHFRMxhGYNaD7jFu1x
G7qum7OCkNRpy44IusvXCSLmshEZk1yCJqlRZFajCAYceSHrBVORUewtWR0Q
gxYcsaxaV3oCOWWGTpv6smUWTukDYFRelKAmsnue1V7f8BBAarpl1NVBkQrM
4LrpeJNY104FMqIChTuJrqWfsYnRE0L8ru5I3GfIRdjThX4AfJkIQwrcWR+s
54ZbXAnidUfpHRLb9T8vi+gCIc5Xn+IoH/f7N9+1MdqCZycafJTtRPvzbNtH
40OBAoSIzJ/RS1zMcmcCJhpyufkoersLA7vx6TovOZ9eapawasvoR9N6Xkoy
qZQrRvqptVJs+v7EPGbKQoh8oDM5p5HXda6tT7tLVvuvuE3NHAGkOywJJdYo
axaOoJQKsg89Pf6wiJ3mD21AwHiwShJH74vsxA6PjOONDoFMBLUVG0tXnSDT
yfCVI56Isbk464oXApZnHcFfcEDoDautr8XHxNGZto9dG2LV4L2QuCaXHZLb
8oqjlyYuuHbwtDywLf+if5FxN12UZ4zBMi+W/Fpgc+giXRRz9hr5oyCGG2m5
sJ8o2YgpiqubXr9i8FvVkMMcNwUgFqe27e0Uq5U7PTS+JFy/Agu3XlM3waXj
fTRDGxnA96snn84jxuFWVf725P5kb2LxGiIkLpXn4w5YyYwyft46B/qLNXos
SHtwKRVYTOJh/uJhhC70oy76TBVGLCHoajLm2X1+RJ49FI7oPMgqbmhERTnW
SYFRWBsiopIXvEjk98SfumXu7d1shZRHpK5Dq8+AXl/OCtHFgwyH17ZJwhvH
fKWE2iUlRmB9vUIWx8OUhRdzrRaFhZbL9dJl12oIxkvv8ot168ZW80hbB6GI
1kpOuuvcIkrNJX+yzi6S9ElLogxq7/CQ7MhU+5EYt2zMppG9YiO32Yx2SBad
PGk8wSZxmfNiseJoY0IMB3vrOk5ExfHhzUkdAWkbwiTiOFO2nRK7OyPxugOH
vZKUqDCKZVwtX41eHHHqVAy5SzG3YU+HklHL3pBeXV48WdcCBLERCe46docE
3FLcAoKRK7+XPm+2L4x9s9garVcglXeZXwvl1wvZ3Ct2H9qDiGMnfPNBfG4o
ioYtFoWGPjURKbmWLmrN+Hi9PSDUsGDRpUlpbQ/M+USncYKs1K8yMV0QacYX
Kf8jzCK/nG7EAskHU+65h8mell2zBsyhxTmjfIOfRbjS3F4uUZ0gEoakdEZ5
RJ/mM+gzS9OnMBN3TppB682sT6pZj1TN55JqliJV87mkmim4JkczvC98B/gG
4l2uKXldiNc4Z+GvTbyuLq2am5Pg4XecydD2KLkvHZu8AREe0Sw3JFJ8Vxj/
Vq0bQ7qgsRnBrMRRVuBTQvADmZBEkZzLtyH0p8JJHsZ4gDavx6sz1/qWyxqh
6dqHWZAHSwwi8Wqbmrnt/PgsDesZCJaG6mKMl5u8Z3GtMAf506cdqiPxsoXW
hBUXVDPiPiPeLCatYnCB3uxCSTn9Jspo1dJ3ovNqXjcWAsXEnjxWSMVfx9mR
mD0hejRZVdWcG8SpG0xaRoUjSYaLjczGtGsjRleUhCNYMQjnID2PaV3qXXfb
z4io2sk71byP0DhpAw4fv3zucoRj7EdXS0SFJhZAqpc6O3KPR/saYWsXGwbh
R7f7LfgQNuEvO0FWDr7KnIgZe8IZzbRtzEbwuiPCHn/fSrdNt2xCAsO/jbG8
kL60/8Iv++hfAhbG4GEmvGKYUfxMu1y9duLMu2ewfa4Fj5N4nzgdWdmiB1Hs
i0VdUbrzj7ENtkRNlTiIfupjHbD5E+WrS1W6N3EPQCF5SQPoOR97ju8obHfc
vzBVCEordGTI18YuW3O6pUBUyRxTRca6HG0+TayAx6BUJZsFpyq9Q//zc3Pt
u3aEQLwZbaaQm5DI95WfjR/yFE9u2G4NIWMxCcbi0LQj5pL1mYuJmEtSfQg5
DEthqbpTIZf3pw67W37I/Cr1Rfm+YO0bjxhmyzLfaG1cVJSg5zaFL0RP+ZJw
Cqsr3ON3X+5MEjcsNOS/poxpqXx52Ws06NoG92QXtqFrCbODyXqZ5SYlRHq3
7sS1ewqR5aQVoz1Jv2mxTZ3ykHOjC+rBeRk6iz5LVw/W8E31/Q2Yprz5el6z
uZaZ2ZIsVRyQjymLsvoCszCtZaZfbmZZAXMyG5nTzWZmPpNjHcRbkrkBSbQM
c61g9Sw/mXmEXwCHsB8QQ/nddnb8OvpsJ3zQMR77kWU+wSfEf1I8R8vk3ErU
bd36gEwM+OOX1m8jFABmcnZGQUMbxkoaRgeyQEBelZRC5Sj3jtrHIkwT8jSe
i6DqyE/lmjoKGCmyHTcMyK3ikzeUd+4DG3KNjyuVWpPQD1AAOMlabii+TGvE
PLLje87VkPgqAdEzwZbSImbBTN0UYOum2gJAEguCRWHr3RNvbKrIOuEeA9Q8
KtwNBbYGLapWBCp8TTih6EI749UvnCd3jJ9EqBU8vgja5p4ePURwYE1u83z8
wdqTYD7X3XHJ7XY2Jqpe0/UNMAk6Bh4yapiz/fFj8FOqj+z1yZE6WOG2QQMI
GmFTjx02MwJXnOxJf6DEs5Rs4q9WAMiE1SHwut204Gd9zn9TQ+l2bChpNxd3
PKGgp7Bl9eO64iHoEDCzxi9o7NEBO9nt930ZJo3lksIQLs4zb7Hu7Ne+quSo
0QgYm2fawMbF2xXxZ95O5Mt0s71gFektpABg3ZSPeEOMlxN8JDctKrRyldLe
YzSKIAEw1JAguIa77rkIrL1iZ0WCZm6/eSfjnYhM4XfSHxQLUgysMsH9E77d
gOVCLoLBykDO3V2AVqwqpsydKloUaHDEuseX7WCCp0ubX2Ku6Sm3VxSrzRGx
VBG3RmGRXF5+I8DH1jF9ti5R7FSkUMzWXp8erDey+VWCj9XroiWtTllN+fSQ
wn2e435kJCA45kpE/yvaBy448j8n0EBqBFic4xZdqEpmp4zJBAt2AADHu2rL
1s9wN5gxedZQk1gbVVA2zEWvo6CBA9Aq3+n7e3Cnxdl5fdCI5IEkIkVwZh+/
sL9Pt4K9rv1mO9SOFPiNvT4bwk55e7WE+4CA5tvcd3OMTQXoDHYsRD+CBaZf
o0WZS4xV+ZEveOIEYx95V7yDEd/9eNmdwA8Y7A11PAaHca/33qX4DHHVYaMt
W9LuQIZgzbSdHmereICJ9lUwn3YUJtjp20kha+opeio1UyQ31Xo5ZfVIMnAG
GosxDyRDEbMI8H4Mnk7H2anE0rEipW3XGGS9Jcqzi5DO8Z9Yaemli3KmF/E9
H5mVM9paSXqIovoTAeQZbDFLVd9CM8NubqNdyihxWZRAAVmOkwXpTcClbI7l
eEy0ZDn5VMvuXDmut/o66ICmVVkEkYbioFpoWa/vr6MgnVq/JYgifTmmuvL8
jD+UrjyoHvMTRHurYJzIvCXyOfXCBvLucNdQl4z0R41RIzvFF0VdrznGD2wJ
mPBpgQ1E5MSwG5/h1m2cWjb82k3VWuSGV3nBWqwyTGT/2tgDDQdb/6Otg+Jc
0pnnpKdUK5s6AqsgG4V8rau649VxghvagHC4AsDrLV18EWFPvh3jehkTv5GX
TvqB5urayIyWY3F4yNbtKIFy60W/5oyKrtt26eGU1FSLv8jk+hrHslQj8Qul
5Ru3TEqDn13NFoSDIFUck8g+igrc0ZSco0NG6l48FU3G/xFO1XgMYKAhJ5dH
5Yv3knbobCUhMmR6E7JOagRxxYASc6tG8GkjwQ2qGsZELJ5icFFAMnB7TuTa
8MNMkCRyGX3WKfCoHHGu8+CsFKOOLeKpqilLwx8uzdDKjHKWYloa5+Xcn1ya
YZS2wN4BDrEprqqWjNgaLlFREOb+WXoKNedHpAU9HOBLVmAOVyvQ845peZ6X
EYvobdNJBfxsbdVCTpDkThYwI1ki1CkisHICQljs32EROI8S9CXnnWVNCEx/
DGUwXgEIO4zCWemx4no9zNwU6A5Gk+EBbDlciQ4fBNzS4jsENfJVDSrETkps
ymDwm6rHIh9WLt3AnfrnEjk06hTMa2RyQQWityDYRdctBPNRuwymbyt7OEps
OUEl+jGQVnbCz70Dm8CGCZzvcUhXozMGSUXtf7XNU+q8eR1GErJw29yq7aI5
q5VAADyKJN8Qb5XyND92k9DAd0StrjtJ8VJJYJPBamTRp2kZiPW9Cs7oHBzK
/EcBn2b6Xk9/JOKq7eYvEX21ZveM2W6LAubICx7DglUhDn4G0xZ9+k2kKLjb
ZQPHH7/wRvMVi09o8dOSvXR6H50IXejZU2a3eqH9F0rjnTsP9ihAzHTC9iUY
MLZZvL1pPvGik3W2QKc3BZ5xp4N+96Ns87l9NeiWHvDcWBlIlWmbW0tjhYD0
HFYGiW5LW78oipi39RrZ8DsHqVnOMSTRcW2dKFAbdeY8o553GyfjswbhFs41
SDwKpWVXhArddtgXkAqM8JfA7KpuR1yMRIyhqHC1CXRhBSshDxTPTHLPixaz
gUFcIx4F+lPZ5WrqSsp+UPS5s/lK3BBIdKJtL+p6hfLLDt+O2BVoyDeKopGH
dSXfcxnBWatYdoCzsssTP6tYXghKTN9zTFdMa++FSbZsNXx05cw0Q8O2r2Gi
9N4wBt1ROhPgdaD0bMuhwQITPCcr6lD7bVBlqJfUhBi1D5oZ0ibiKErOHxfv
ppcSnoPDG2EsHedMz7ZPJic7xs8S+pFqTjghLi6qBst/QRcZPYgICsMODWwi
WDI6uBorlLcga3PgSXmwKFVeyFqT8bF1rO1nBAzBoG2g6Xzc8Y/U+fa8XFkI
swtRPnOCnSYERQ4WXtbEVJChlEunyw3s2TY/hTSKEgW1OVLtHe7Q4mondraV
p/Y1Gb0GPWRAb7ajC3xzQrEysUMQmt/r9nIihSqropOt5oVL9QbuLZb6ozoD
9FVLRpBv/sCPFfEld8PA7OGQhePwxmHjS9ufzVs34TxKwsaGduAszyl6iwxE
Wy5Ke8dF3lEnGQeVEQDYBOhUsLoVXG0q0G/AAqzmC06oINRSHrCH1ySdGWGi
p+sFXXE2Qi12ACgLRHmr1ZetcWWLlewh+fOugN8slYNJ8xia2qm4ltvQH3UU
CGFzmPUgqJA+nQxGn6SYba7OVLqJuzYvqVbY4gD3hrJqGEFGwjEKKi0WJ3KG
/ih7XxQrSh/qad6hVnstOknQBdmTb6gBID8ynrP5aEOUXsJIA8OZ+ToCLvwS
M586BVrYMEGVdhzmCJUbdOEGUsim6MEnRUnV0bEsk+bavt9d0wgin40Cn4T+
hJb7UEmRuJjvJOtCAmn///a+dLetLEnz/3mKCycSSWaTtER5S9fUALJsZ6nK
W1t25QwKORYlUdJNU6Sal7SsNjyY1+jX6yeZE18sJ85dKLmy0D0YdDXQafFu
Z40Tyxdf1AXGqqOWNlbSdH5Gu6LdY0NKEQoeZAz4XsuVku7x1WflRh9H7Qgj
rvzY6nofGx5G1les/EGtiRyVcfsWNAqh1kA9LrmWSr3EH7HrwKqSVHiGk9Oi
v3RB7drAxBOznF6JaKqzRmh9KqWdjJYxmM58kxYJfM7FfObXvp23GElKYkqq
3KWYlu36U/x5cWHmTU9Y3HHYfGp0z1HM9IPd6uYlXwJY85ygRXtDV7L6nIJL
6pUeSltVvscjaVqlfB9eSsSsmHLtscG91FssxbjPxGXNqM/tjVbrBfEd0OWd
cJ3oDR6LlnHP56d9uG0IYdYjrZ9HzY3zQPVImD9YVTlXVXCy/wgesLVAGRkN
7aoootJdotPAV6lAH/k4WaNg+p1P05Ome84lXsajnVJZ58k0L4bDwCUg25pY
5E3EF6xGCL9VwFNHUx1ANrdKQigX2j67+5woTUDxJs2NU/5SF5ae7qYAIRX4
UBUM06i1YhVb1BLebFU5Js4rDlObVByiYGke5lExCAviL6QSr8q8lxSSpI/o
+06nOHFEDZBotzaJ+WcStWULcWlVQx1nHlrHEEXHUuZa8hFqVyyjb9bqR1p1
2SMkwyj/t2RJRUphPCDgmwhw+mUUxl1HaCvevOKjKKt2WhVGFj8waZ18gVfn
IhZqT4kHmgyUroFJoR/43hItkVGBhUkjKLqaVUNhSIumk8Rb2VyvnUxZ3U/P
NXGT4uMFYp46YYiYYBybA2PGgy4GvkR2vMf1glQjHr78RbFFGZ9Eljl764Qx
mQUjoRdW/exL5uKAiUjOTFRBM5Z2V8qu6yBDlMLNujmrkYREzom1qIXMPkyT
d05e40X8z1wM73S+pxOdshE4X7me34ZWQ5AtyQ0tLP32jpY4xt+RMKew9t+T
MMdMFP/whLlvyJdzLw6NF2/Ml0sry6fLhf9P0uX+K1uuI1vuW5PldIE28o1u
lW5UuHSj8M25chsz44osM67eUYaLNTLjGvK1LQH9PyF7rmu5bqCx+q/kuW/I
nbsh8fOb1nJYnXekzhW3TJ0LnalzxTekzv0eboBwA8fC7agBogpQ9L67XFx+
EODBqPj72RuCRG299Gtlb+gkbyhayRvCN5A3FDeTN8gaupm8AYrVDdwHYSP3
AaJ2DOwwM6NzcbImlQNBUvCQ1svb/NrfZ2KIdcG5PRtNjA3WQqg184qxEmIx
bFbPKVoAJAq9mkppMLWXsI3nA9DVhBJiKNkobSOz0TKh4OB/vGXiMFb1jvOi
RC8cpVcdrKO+2zZ1XhwD3sOHsflGCFy7JzNjJ2oREPl6CKJi53O5XKzcALqx
730nNyIleJ5lBfe/ydyrLcvfYe/V3rTJ4GuJLMSJfavi5DWcfl++a/rHYm9V
6AxhOHylPV47AVAQgyw4EWMaUDuJEoyTJiwWR7NXdxrVIXOVo3pOWU6H1fro
kH09wWrzbKhMzZgkY6hfLvhEdm54ZM4+fPBg/Gsq7JVOMA45GPQpMWoGqX8D
n/fVPMOfnKyXDAJ0oYKOnFTnI5l7JBd4hjlIuRJWLwmvpwJtFE7EeEjReQaa
qK11AlMOyErUPgLBZ37EcHCI7qRt4p3l3nvCMCoJgWk5DivhkLmVGlZhrTUa
aaprUJr9FOKKQ46CA66AmboL1Vt5XyxDyBwkoZyfztZc5AGEL36OyBzAWuKx
Q28UMssh21JOZVTNmFC4nI4ujj0KVDFu1nU5r69dFmXY6aXf2pNPC0IsdWGk
ISM0xOHjQEr31LA7FgCdxaUWVYvzdDJlylU+J5OaA4AN/U1PePm9qqazU3FK
vknFSt6Ki3X4BPv7eZyFSgHNSJADiraJFPY1kqZDh5aha4MO5yxGSU09xmII
JRsgGfEforZJ5CFADEllYE2oNhOMhI/y7JHy1sirYvbOfICAh+p9lxWEjDv+
gwCsyXvQh2eFVo53coCtgsAj5efh+tJYMuV98dcP68s+nSMZ1SUtbeaeZJI2
oQZdXk0EDkQ769//z79VxttG9VyWR2UUPdF8wkDbTuf5Fi67ZFn0UELdZmex
vBOb8Tr/qZIoIQTg9PNpOfNh0NuM3KDgntK3PqQXf4j2Cy+PRt/VLtgDI+RB
CUJ6tu6eMyNk0ds7ePucxltKf0nIbVDQ7wV8OIZmVHpTlkH8/dKn2Qp0BWEm
CT9RXH21wbtNIPKJC73GRiz52L1m5Fyi+ro32h49GqX8M85V4XLYMN/6yT6U
mkTRkmS14STFzVrPOUEUsLWDzMwP8QybzabzM5+FDVcoEiDoPgyRY7zOQZUE
fNCDEOPLGSKUGEWc7MUpbXT2GxzOqQi5/46xsNe+MSpQCY8K2w4I7jJE3Q/S
wXCj6UPLZelPfQrM+dcncC7gxrPrcIRkIavAQCrE2VSpcL31X+80TVLofXdc
LU8/CLZFo5bYjPsOPqfrcfMOHuSIUOj3KUArZbUSDGAT8wB8S/BvtDsUAnik
T1LQFFqB6z7OoPbQHgwTYjAxb3Zafmg4w4BublvojB5K66QOITxODlqT5ipw
Y2FJ0Hnftdi9a4fxFdPU97j1l8sGdtDckVnX6rHopCLlUSlzPhGAyTHXsF/A
shgx6m2aXfqsc5DwqX1cPw3h8pocn7cbNtDuDBhiOM5um7jmyGJl95gaSgM2
Qmm03QM1RzRKmmqCe2SJoPikUmWWGMK166Hb6KmUcrfqN5OqgaYz/IB23pcv
+vEPO+R+zeUh+1FfKCBTVY1acibJiQzDbw8gtH46OZ7WxlqzBhAttmCxZHVr
bft3xh/9YnJNtqUGNnrRMO/3LeheqTNHa5spgDR0fV7QaGCD1fFmexl1M5SE
WbgddQlJEgGOarphHjW+xfIjY00hZRAbi8JyqdiM0L5/2GRn+6VYzA1JKqvE
FT5tfp5Su6bqLU1YWW1M6jK1iEqVBBOfvEr4Dim/dqRKtz4v6bCkQJaz5rRx
jZPjyex8QdVoMGEBs/j47l278PgLjcnXu18IYfz1sG8Yu6IqL0omcaYsKG38
/puQtkDN3aI3Da1nQ6c7ULxgldxvh9aEw5Z8CwISMHZZq9w54JgZdq5VlCFB
CU3BF+Hz38CI0voHwT9t2NgzniHB4ci4pqVYKS0WvSv7nt2iyCfWXik8Gqp1
BYS08POKjwDFPE5jH67ihmandrQQ4eI7g9KCWSJ4JQyP2do52iEcfqjSMqed
jh0R5UDa6V++y+SDii1OCGmTW+zdbwovjm2GBjCA9GsVB/Z5X+34FJQKNuPi
Epjr7k1qZE+yNiR6ocVH/zz5NDlA+ds+IMeqiDByJR0xsVfukMDbuRkBzdjZ
2inuUK0hKFB3SIC3HZGqy5KnWIoxpdRpUtm4CJece7soUMVFMVVvQrkbh+R3
AwZvCrMICICaHBdxcRyJ37KXyreiA29ekyOVy60jJ0xPzPbDEh7ZOA5s9LPx
6U+P+QlO4jhydEafrmeDtARCTfGrYz39Zkt16v1E08TDQewwnDa7g6L2/nAF
cVhp0djGWUcly9IgZM2xOpBcRkoEfkqIruWcugeNRSnnSEdlNjFBBuozstS4
/G0O5+vGTNeDuDGPptH4oCpQRs29nkcrlKHDfERLVmHFNlDpU2MkC2e8s03y
US2gB9ECemic2G7gjf3GIW29Xgjz7WpZCqAX4+lVzOLnZ++ysw2etHi0UJkc
9BFrFlzlYlJk7zhanFyzpm8LlxIMTsjCznqCQ7a5bHbI53pxFO1FhtUJtrWS
Vjd3RKYf8++xC8GihIDtJiIf97Va8S9KNLmEirezNR64MWNrfXHJFcPdAOpi
dENWpTE7hcZPeP9PWiGmsa7rC7JHeAzgFynP83xxRYrMIFyQ6E/7peJyNAIc
01xPWWbrJdYUbUDbz6M+VqJUecMnfepiTULn0hhKWZwXRdBlEhIsP/FcySOo
GNyvvPizshcd3g21K6mSFlfH1NzXIFUJGyi2OphclQarRVmuqloCPAsp/FMS
IoVlkpUlx+6KKo2h1Q+zzGNLJJdoXoa8uZyM43pxxFiCtBB3hh5NTVZRl5ZU
MNS/RLn5qcdgrpQKj0stctBw4OajiJIWBZe0QCQQYBvKkkkSr9XMkcJWUfxp
wq2v8qxFrkDW3yRNanFi38yuIO8X8PeCAh5IH+UwDGMeMn+qZKzCj06kcy4K
whwpi7jUGnh0amA6pmqoXx85624xD28WZ/MvAySjZge3DFKKX7YkpXc57Mr5
b6oUcTS/37WPgEFps1TEFiGvtdaJAHoFcmNKmgDrGg1nF5iF8aMkuC8POeL9
z+/330rSsydH2OBoFkEeVlqqJH6Ucc/gIBPPTSLtOSYRu4z7C8U2pqvHIfwI
ncbFj/IIuA7jj4WcPoYZrlXRza6ZzmghI87zJgs0FIwKB7SgK8E7zXhK+Z1Z
pfipuPriq9TZpx6+lInLyXczOzgR68AIcdIuVhcNX9ckFS2TxLnYzdrGjecJ
25C7I7WFHNARwRIg+BjJkuDYkDDiOCwyx2EtWcSpe1GpSfR97q3wRcHkpiA2
goX+arTnuTiEMmNF4wCxc+Gvowlq65z2RgXkMWF0KK/mT5C0lHYfxfPjYndG
vooojN/8Ze+ZKCsPdh4QMGBSWQpF7CazJilXoU2jywnzudADcRyivIRUJORu
xOn5WM5P4LZkdIlmR4ekmNSIKCpXi6Zl9VdOinj2JJI+NirGAwSMlxAKSVwk
+bzdYpp3+w9HwTmhUxUaC/ehinW397F3fDqKxpcUr9+9x9CAuKBAatXvs5iO
L/koar3iYcW9HrQ2vHOv73FqEHlMDg/G9x8caq1kVpjIVOQBUK6ghs8Vw0V+
80+uqHbGoMonRfs5yuwqi7o8IzssCrHtkRzCS07ZnDTX7KbxdvWM0O+gB4tA
cVSOAUlH51vXbNacspx0VgTdJEpoUlgiux1Zq+llxf6cjM9QXkWQmJ468+aL
QrQG86pr4pZZRXiT7TVSVce1IYpv+aYxGkgqoRkGoTmB3g/bHKPEO2B51BtS
+DUFtTVe1CadE6Z284s1hD0hvnsFGhp3iX6WnCqtn3Z7IjvsV0atMC0hSHqT
PvMzVCyTp3x+hdobP4jc+CBfnp7oPMTW7B7QrprAMOwxQu7e9r2vX/vBjTTH
B+TheoPl9YeVVNDLCKWOrj2oIg2FvA31CntH/TRkIR366bSSYRRVjb3jgtzU
0ZRAPax3YPl4Fe3lNGN57lBVJ3OqAxPE3EzwrnbfWQ25lpX6lsNbwndYVYJh
dQhtB+GQ/LXkCdF0tyaVVy3bMuqY9GVEfrX6p+DMfOsWjAkSkiIx1ACRtlrh
qhjwUD6jUadVYIzKRh+EEW2NDk7mw3I+jLcNL8qTk5lWgaw25BTeaBt2QfyC
4+t2ED+xbZJE8eGqfJ5RwziTM8pG2VlNtO0I+aEK9cqkzRIFD7bH939luT0X
KQ091Zm/xmahpcUYx6VwsXwABNeW1uXwZwLKgd2Xx/wmVJ5OWlIDIPXP9DUe
Jdy1Rer7qJbKTMXvorl+km0m71KxNKPFUVZgzhqVmmP4QEOjpFp8fnuSdmT1
FGkc41I/AUnB0TUqmiHRJ6X/STLnZB64hioXohj/r95we/yoX6OItZuLxs0P
tm4GQm5Odg+5w9l1QZsd9wYnAgGIFE+I82y+fyFR6qwnWGllJX4FhH/MI86w
RcC70qiQA+yICvJSTjdjLxQ4xF4ueiXXE1fnCd8T1V7CeAtxNLMBkSU4qaRW
sfer26pgD0f6ulU2mCzBN5FzHk6c+BEDlNJ89ctH7MLDh4g/pOHDh3cYrjjK
vtUS85AWSRFGtdvZomT8QLB+r7QyY42Q4AfXG2JQA0ObHmuJ/sy5Tijdi0SE
6zZl7HMcsqziPF7qxCrKAqo+JpHfpqemyzcQto6PiGtGi/g6+HXDKHXhnuwY
S1JRaCCtylFIjm798K0IGjkzkbxpmt6dInzOcSaofqISXkZDLf7r4mh6Eld8
39yHwckEKDq6DW5cGK2qPm3PLN8OWFOic6sN+AbHUth0XFEQCpk7prZaPEWb
HlzKu+zj5zRrz2QYivc0QrvsN64H90m4OPY1jUQJlEU1tnZD5JyMlxAlwBmJ
iLPlFK027h9FrDNY1SLZkNqTufeIBilxT/EwarlOoJvbgTaNabFlXt0NAb7j
FRh8qAYz8rbb3mQ2X9y1Z4vFiQTJhXaXetzykM7fyadJVGXPyEsUFFFcVvnW
t0VMIZ4l+05FVz2a6OdIsQpRpSCSolNm6G1vrjIzI3cyPo9CAGzM4pw61zge
94UAQpPUJzC8uZ41x60aBPfACar/KrUwJiM2kgovn3km4QvHScRdGwWUJ/Dg
PeFe4utkl5aGfLbxMs7JOJ6pbiulmM3irkHRB4w7cQGBVBMZ/7SKL6hqOWHW
CBOMQs5Sl3fAqc8gWUKuPntOVZWe8N4Cz5OnmTwCgUOA5lr1fb1fWLutWbWQ
n5dwcIiMyHrfadoZlpXPO0a0YYEoiDfbBsHNVk4lLH4Lp8MyA7ok+nyaxPNZ
IPar5bp1Y9EZ8x7ynHhLubywq859TJ4zJAbYkVK6JZ6IBaMUIkKQhJudHLE+
gI5aNroDo9PAgnjqcqqmoaUbymzFE3tmbzQHQvNLLFSUJa8pseBJgC2DQFq9
uJqcBfze4N97iQoiFLc6nS5zhiklmyZ5+9Km/VZCF47NxkbRcs2G+BCQuAKc
tI48lM+48+HtzAk6gOuRsasTbGS6iq4KiGVwpHSQrkDIaexbW6AjBFDykW5g
2tWlYpjjchNXVernlDydSjFiByRNO7IrJIzPB6ZmKWEw5iyO4CH9Q2PoHEJG
C3WSlX8leo2eLKzsM03+Yn62gMaJzBAHc2XeVClOtuYq4tfelxvF70skNzTp
S2Lfz9imUyKNxmY1fib2hR8rdFNcZG6Mg8xyYbMsJn9zwpXprBvW/aUVkMvw
H7OKhDo4aZUcdvJgoBzsjUiqkDHNpmex+xfUfXUy8Cr8RBQAF4ZMiioZVDTq
80SWVUguHQn2pezZRCmo7fzBkqFGCTEYPk2W5WS+yiw95JIi7+xmxLuFqlOq
TDZYEIweVG2YaR/xCC7EwXXltFD76rwVeN0N32mkyzmUO+eoCgOiQa9rFRza
3Pjpy5I3uynqo3qSDwx6HzLZLjj3tF8u0NICDRfWZCpsuViuJJFc6gtNKLZX
/LgZVbx7sBGXr77DgqqUmKXrktWz/JuRwM5a7WpD0Hi3bqJC4Q8N6DstXb8R
Ii8jN0KP99PweTQbQfavhQTRGExwn/jpY//OlmyboL8r3hV82khclM7tGnpe
1QxzIrK6Qa9YTQjJpMHG6ip+OeX/aKj8+LycfuKx1FRWWvbxcft6XBB4uS5u
PSuIXF4cZJQPz/Gzu9P58fKa6JroHfycxPI41/4o7sjZ9FrS7X+7Wg3jE3He
T4a4Gdm3wF0r3Ob2XnPiZWwNigXxiRO0w/u0sziI828Xi+Xvdjontsrjj79F
2UUKFZGoZSIgT375qZb70uYPNXWKzt065tS+NCr8OZDAbnG3fkJSET0g5Jd6
Uv5Q1TXPzC2SDrTAzEGJgEagG3mQWOpwOpCM4j5Eqv7gToWbQibsg/Q9tHom
xUtBtoTaYSgVS9sFbh0mJvY5te1/DJ+TTB2+vmRVUpBTgrdgvE4RRebsRFJL
6GYqu0IznMCsSAnKWXoX1bQru1HBM1Gz5mwf3nwJU/8GZEF0uL3px7P503RW
jGOH4p/DMS/YM7Dmi/8ibm0mLimJqi/eZcFDX/6oHRoLHGmoZXSw5WQecK0I
0qQTXZsaabyNLsgj/hxWizh43gHPnS3Oou53GY/euPi4gJX+sToe9UWMGTET
TYO4b32Cd+AQP1RoD7bLaGbj8Iwyh/7u/yQ65qj+sRszYI4hIysQ3WEs+M2F
4cTJ7tc6DyS9HXDMauuOrPJAoZUHblgPs8VVmJwQNRZypRfOSweDAnfQjEo/
TzFOltkiZ0UQGe2xPTVSckq8SWU6YELSeNLSwTfqaVLaUvJ5CuG4YczSoAdP
DNWxg7g/TEEgLWENRauJBbHZJJMsrfo8N/CF7Ap1aBtGVZPtYmOkQFKC6Zyy
qNdkXbXWM1GjZcIDGLtKpSdU4iGefV4N8dtYLJVCvQ9ZPlAUhxwR1WE/rBZn
zNQjDk+GaNRfqPoynb4QKJXNNZGFfo6CYTUFczchZF++wO4oelbS/JCfGlbL
40PQwURtZjjnmCClTTL8Hq8XfmqWMCX8uFfG0ZrQDlK0KCp2h4eHgcTiXSqs
Pt7aKl7/JYjEGqrEGrLEelzUBqCAufP47t3p55UxcUfV/fGjra2t7rek3hQ/
kAn9Q11OPy52X7x4/cvw+dvXLzd/YzQaoQfhyZQtFmxqLx0EPqPywRacwH7i
YjlHpV/Hzs4FO5X2DhKihkXmWjPpOArZcSS4OcxFNL0mx9dZi+gsU1OT6snM
TeUJG+gdRsWzT2B2kKoWVLVz4Ctp1o9M6Q/DzOgMQaksYCWgzJB2tW/YRdq8
+3Oiy/qr5XZzZTuqx5duY9ttcRyntGL/Ekoe0oPKKUFYo+Qdg+1Hao1q0OTK
m2eqcxyBCXm0/1UQsZjJKjApyHGWQekfo1PlWDH27MuinA8fS4y76yyRgre9
RE4uwrnQYoma5EBs36guEW4rqvCVFvZhAlvhJInqK+mUqDtLWy+5PShiMuQj
u9oUIXQRUsapyChwoNOi0DTKRgzeR6SbgX+WFjocAhfgiAJh3DPdA2tCGTDB
0ozivqyhXWhpIBv+rcuG/4I8dssFWywVPZ4EikauAMWn1WGLIyrpqTLVOTv+
6XUhvQ4qbi0tH4ZSPV9dsi7JhFIqgOQQBPAwYwO4iQyA+2tkMbFtta5Lz1sz
+L92kxfUuhIV210LONJCXcs9bgg0LIylBfIDdNvhuhxe0/H/XfAJIhQFbajm
qgnUHtT9F6HHqWcgd0g9prNGiPbZkQj/fNlsK4CKEtqhazxjefIEb1O4sehk
/Cj8mwyKXq5TEb34RhD98eKCY0JBTDLXNbv3yCxzdVt25LJn8wKvhypQmm/K
RRPFg1ay92xFIbQVd5Rk99V5uZoi8fAEEuHUKw11+x88JML53YJoH0U5XLN0
RGuptzXkJlCUoq9/2Y0K3Zcvi6tJdckTBov7u0YayIE5rWrrO4Q/o8akcNqm
4j+2XDk/gsqoUzBI1t1EjUz2IwtvWKuM6ylbfhy+XEj1ecaYBgcaWS0oOxLQ
bbuuGvVdCYLYfGFBEcqXlywhcxkp0EvrsOpzDhdMqKgbVAup5TY5JTAjKcu3
qiRdpOpcYrVkEwZ2KlTXwqJOTjITFTk9vfUhmV0CxcaeExo/LS3sK4qTi8+R
/TTlOwGpJVEpOxt5ZhH/SfMqvAJZbb88T4e2k1AXNSfsnXMF8wcGealNs1KM
Z4r8OGKsJOYcxyblilwF3VxzVnlm15ySKHjz+RQxh3bEKduqRBkmkH0bTPaA
4LCkc3NdwQe4XB+bQCIX1iKbIu9KJl/8ykVMaMnJqa/zjfhaXChRsWA/hOeB
hBZ6Tgb/qHiiCTMwOsvqY0h1HwfaFor/StiaGAaMLFRSIXlP+lBAoHlzsCYO
P95u/Z3Sa/HKKtTDCwoD9gVMcatm6lD/iUVRqnHbuIFVkyvT2vdify6MFFvY
LZRPbdSS2iYy7WX5efj+Mv4H4R1BSGbhvN67109fP45m4vJMImEGThEZohwn
UoeaNReGDhwh/Yv2YR++mHokeJKlNWXxtNbEKt4cvALlYG2Tmt4lzoQbl5fq
orfkHg5yRO2ZzJc87uO91cSz0R7E8F+hUF3P53LThai7W/GTWgGzQWDIzqQZ
m7SaL8sE0E50aK587gpswtOl02RJI5dyWlbOrNY1KJWL9QoxwnbSh1EDOVMj
eWmWsWnDqyd63a6aduw0Z0w1E2pMZgutUisqd0hghbjogWekBxjEkFNQyjEB
zXVuWQSd+WIZNUxWBY6SzXQUfNE0+KS76hFGy1V94pAJzckN6fD9jWv1SBwa
/UV4W2il0gReSR26kA6UgfEtGD28E4jswrAK1wRMVlwMRe2L1qh9VvakGiqS
ZuiQFFRvsQVgw6hF8QNwxw3/wiGHLLOMtgN/KUjA+R28XG3YHYb2zKFanAr9
JufDLI2tMrTilGWDUlo3gYpLVlZdYS/mzFowBmAaWr7OMBZz06vGBsxGHhtw
KNQBZPhveoC06V9SalarC2osLxjZL5A1lCYnjAxRDRtS4SCp+9eC7mjHPdHL
wKnhzXVOWUJ5SAbeURX1aJF/FBxo2snsc+aDh8LZl4Am0Rfm8OlpBFjRytlx
yCwPSKXHDB1d061ZNRsBOFN9WpUDx4vFx1JeLdFzmGdG9eg1/0QXnuYnDhyc
PILbEenMJypjoo6mJF/qVZOZGGFStQgL5W5rXZ+fysVMff2Xy3J+zB7f0zCL
1sgqUVpSMygbyDDiOK1JmF5GzXJJyN0sa56w1RDupKoMssBR/Ah5yw26yP6k
aPqAjCX2fx7VxuXkTPmXqoQlrrNztAMNtfIQjynhtScnJ0vksU5Y9aAiqbS7
PXw/ERqGvG6NWJwVCOqgoVQ4hy8yUKHXYgjXEPi4Y0g0BVOpO6V5sRweg7TF
P6C2otVBwlN02ge40StZR4xnjFv49V/ax0R7rn2R8C9TcZdLHIu7TGNjFGoa
kpKAdNWxUNSJSjzVZuu56CLHhpO7lBerDIwMoatbGfx4xY1KQ5NY8Ds0eK2L
HNdnXE5BkcnwGZKKSTU3l/xWQDtR6EI9WmjUWwK6R9HDE91J/P3/IM+q0u7p
1zxfcZ+LEbvTMGGz/alov8aD8JVpRi5v1RW5RfHg2Uz8sRKgsFAj+0yDVx/r
zWVl6GRafVwtLv13rAzxxeIoypbgLhHLWFvDFHsN5QTYH0eIFlSnotiVrOaB
laUiuc+Q8lLzuwj4TOBiw2dni6XpqzUHpDSj8jXMMqpwLR5u1ff8kPxQeZAz
DOUjOIUk3dLyDuBdsyOj6xR2SMx2YHLoyfkrLC6yCfuFp9dqF6FxsTEKEHWE
7bzWeIie51W/oWZnx7QeuSspmQGV1SRPh9nTJAsLsjGsyFmz0nQd7ccbFXwV
qwRgk3NWkHuEl56vsZour4fxt2E84VfqLs/gEmG5nkseKujI2LEk56rsFL7s
xpCmZF5hwS+WFNfhwGULGZqvMjmR9w5J8YHnRdaQK96rJE+CszPBGBfhejmX
IyobdI80xjuaMxan8o3VyhsIlz9oyRfzWg34SmHhbSdF6PEzs+tNC8fVa2g1
uFitnqy4QhzZrxQ3uCBxerKcXB1xykaO+lBVMXC2UoLrXl63cDNCdRNtLZWS
02MpzLUaVA0UwcVIj5dcEnsutjVXBq5Vju8wQr4GLjN4Mp1ewhUymV1XpYGc
rXv0Q3dWQLABHHlhfiuYsMGDKQs96nBBMkQ18wPOqpRKIQ1rRxXh3B+FJ9mQ
64emnznI3HhI1GVR1KU9gemWK8UYkNY0FKuHFcE8+yEHq7TxqohQwRwR9S7r
VtQ6YhW6YpeHxGrNEBVsZuubOKpOYu+AI7aNirdMFOwqZzgXhJ4L2l+fmKKq
G4BZuqJ5gxihHcPNzQrE1Q2cl2n3A1nCzupEW1ZQzIFWWQBIWaKoBN+7AC62
cua8z/M+1SKeAOOnugUl2AJRO5LbrcmsNXOPnQpVtb4A3iUYO81ymvNlkJDV
i8DF28SfkFYSIBEBCwH74yknyB/7EffMNwjkXF8yCMM7Rqu0LEiFMEwpGLuq
dDCzK4KBNPsYgKhpQYDv+UFwoq3uiNRQC9Oieu49vl+0K+o4DjCmK25Zjvk0
Q+q33STzLxX55CGhLCGjYMAtybP464L+Fs0ovVb4Q+XzD1zzgmtQUWtQ+mYc
5SfRAjhZXJr3HRauMqJ4xBsNlI3eIPZhHlc3xfLi1gtlukcrEyPbimWZTz2u
CRwPhQ2ZjcQ3Tyl6vGpYQPoRmlf6EEAQZwg+a1v8yuS7USUn0Uiqp5ePPHGQ
UZCVXe/5VpKEms9IFEdcBIa16qfQiaSXUaa5asUKparEIYNhhNgy1DxsPYXH
0pbzBMuqW2cnj1YrQNpqW2qUjxttUGirjGmY8cykPbkspM2rUBdfj7Fkis7J
I3ryzDCd1l+/9sVt06KhsbOrBPWZLecuDi9H/OkmvOckb7M1/GzeHJY3+3mm
Z26waraEgBuSsKkz/rV1OJ89VXg4PpNjCIBFbcDxzTmeEfq28PSIwzDKXloA
jd4juop7om7UOvyw4WZZJrr4vMX4zMQHWSRGgbxoRh2kzLM/mDtB2ZJBj+mc
cPoKtFjeOB2hh7fOwOL10rVwc3nIB7qp92pgtIcrCETl+8AfqloFreqnMHyJ
JxMHMQ9D+zoPtzlV6ks8ruyT8hRk16ugQkKQ24vjtVgCt13/VM1nft3SPgaw
BnOEL3Q5WOiEpSHKB3BkNvGvlKCqjYuJXGGnK/HmZsHedukS3zsw5zvQac3K
17tv9nFkGml5Cle1Jjq/UwN9IOpyM7uYQ1N5gqG50wC6KStr18ydRZpyl9Fh
dCaqsR4kxyrb0H8wdtM0qy5bZCah0sQCSJWy2dUVpcVZHEFWtdpyWrU+OfVO
8wozXSs2+3iNehG5UBfV13Ojth01NXsVS6l1eJUoLmRxr1N1Iza4Y7wokioX
nTHIKtPCK9Y+JtYVGgKc8DYO7KNsz27XtMxsz+clTDqsH5Qqm06FAFFnq4o/
kL1RzpOmGxKxbbKsa8pJth2ZFZE9a0frVWKOhJN2vWK4M4ErThUob+MsPgfY
C0lWqPadhkmc8SlZ8E6eXhwokfnOgFlIBFfK/AWWWUqJwnIO6FvpuNKAL6wY
1t3UCqviP47PJcFLOJ8ZRrucIs3m4/Q6qZsCsLS9YVOlNePbXOVGyyjOd2iD
4fXcDcaVFNbSKIKChAUH4HcBg2ySWsv5CJWwMuCAx7S05IBrxa2uODootki+
dqkgWkdhfpMG0hTyQnosxW34eMrTV+WsyhxY3kBhvnrfvI7jyvyOTnpSmTK8
lwdNonY+ekBzy941QjFPkd7v1N93C4RTr23dZqyS7bA1LpNDAjXEqeE4G2zT
cyLoaO19lve08qjbgFoux4YpyoVepp1Tpd1qyr1B9Q2zgfkzsQ8lB5PLpSCM
jph2lWklsrr0jbMv1GwTSeQQMCIVRY+Lfvi+4jPxgF25bxO4MS6XS7kptnIY
t8WQT6a4RpDQzdECzJEGFcj+WePYbgqQDg8FwGY4644ELa6bPMugcU2BB5qb
QhkrUVyRJ4k8o/Hpf1mXAp4CATR7J6KIimfXKi43QjzKo3f6AfL/MDbHkhji
dw+1FqiXTggcWRjNkzyH2YLIQJLKPam3VT6YdBVJRjGneUkqQzGbRA35nFvM
DnFvkvPStqh1V8Wj9hYEc9Tz7A7qeqJ8u2pIZBKZYpu2iyOWxBSUMNlYU40Z
x0gp5+3jQqLzNhEEza5G5Us2SdxLMM1SKNyZPgTRqpnCwT1lZNiTqA9TwV0U
C0me/XKZXPpRBC2nkp0OgvolIcYJzgz/31IDmXz4a+bpzuiRZZ0+vP/Tfc6q
6hgK2pzPPd5LDk/2+HFDRPF0rT0kY0IXcGzEYdCE1MbSFm2NUnrxQXUPtiOK
4oBGVSyvn0u57K6UqmtHVas7ImHY7fHOvRHJcMl3tvbMp6tDDZQYvYs6vQQ3
4bupMX2ZOkTmZRpMCrNfilgVUXpU172e/4cX1zQKqUqAUF6Qb0UUstL8zozv
JPbxlQIp25eLLsyVHZyJDB74EIcZFMZQ+vTxJFHOBq5qWolRC/e47o5K0YSm
IcU7zpaL9SUTG5mkDRZSgOnXNl0yXkNG4eeThwyq4B8TL+Ry6qakQ7jZ7LDF
nKCrUn2SSy8x58lyEbWGCyx1Ffcq6Ix6MW6ZtIPGtoN2fnr0gDBx3BZQj4c5
nbEXzu2/upasw9aGGhpcymlMgvoaZ5PqvOgd3j3sCyNW3AGnq2m26gxsicq2
xp/jsv0mbeKPxVWX/KuIywGMANlufXwXOfxjfd9duTZUYru07tpjI9q8yh8k
A5a3CokXT3RrmRoaZoo6yh5ZXiBzNXZcfRq5B6TacPThm1XcFkq2ExoBYj6D
dDWkw2kASJiCddSfwDxq9IRLHQLwb9443dA2br8zEY0DuF09HWka0qSk3OQ7
MM7vqJ5EbXC6klhNTYobSX8TbYYRJzVCGq3wsvX1a/BsRLw7lUtWCVyaqgnF
h5CuQkNyLM2Fb8QxjmDngpsH3jrSWZLUzPRv7z1ySokdqZjVNRjZhcy9MQ0U
izs+b0YyJvnyqppEQe/EsgpElWG1hX2YvHWhi7NVoePkDpQ6Fy11f9X1wDvW
Np+mtNYO05v34K5uL79xZoBp8KkxnYMhf5XXS85CY8GHxtCbrrhbsjQFcQ5X
eid8uKgXWoDPF0KdAJuEe167AskhS/MAoo0H/zwr+2xcHPUXc83dVSL+QKZ7
tD2HujBriz9fD8DzIVvYYt1UfYyKOLNeLLX6vI9VnlfDTA9IBGdSjffA3joa
fvEc8fo+W09ArpHYNbpAv20ySyolZXwD3hR21QRWhBcknBNaIgwH0mbWnDXw
XC86uW88kLlxdkNhwDyWYGEk3UtwiE60diN6Xq+l6MpHqhdGQxIK+wKLA0Jz
lNDlfadIuZwHNQwbkrGflQhr1gB0TuSQAu/awZGrsXmbyprItuRoNnuWRaKF
7OOp4CEeIJT8lDEGy7xYSZXVOIS7VJg2tRTk9vjhaCv+33atFCQ0k/03n+4N
uE6M3P63x4+3f+249UEusFxmnaJJ6X1tQygGXFzg8SwhVaeSGhz0HSf2svbe
397auncLqbepRWj2LVoUNrSIh+TB9tZ45+bWvOvauFwdVnLQr2UmYWaIm4SO
JU4fAxzFglOpcIRfHtlaGwj/GoGrKCnccBMcmGL2HzJszFM2vaTVSOuLixCo
A8x2RxBdSOtnNJvUrFUCTCyDN0zySQa9sX9NXI5nIBPABeIgX+KWL94IqsXK
b3qfPpugynaSKO+4tvKiaxfzkkC1IqxSUBrExREUj5+cX6XzKTJ69gnrJUPO
wGPAhv4m4T6SbROxurLhX67n7P+kszMpOCqiAlWjWzF3Q+IUGrARmhzbUgcM
mhN9685IUksMtkK/BpxbLhzvvci+TrALXnq9J65fpMM9WTot16hEUFWg5i33
3X+y98Znx51SwR2ibeAxfCqBIqI6wXpjQToebVEePTjCxsOt4Um67asWh1xG
6wc9WDDpAes5GZknNda9EIQbD+8R4UZIP9Mm8mlBUulifH/89Wt/EOKyi537
y5StNlBgPNO6aT1X5aRff2dzedD9xIFWTlenQoCWDRgwgO5Nxv70BOUqBPb7
RiNezbfpxA7jmVYe86toJT+J1mJcwu9QxuA9SDB7Mhr3txg48At7BwpCRi9l
cNeXPK4LFJJbsK2WD/ApyBKVoFTqKQU/0rzeG9OySnNILgR8yanxiamGh7rm
0s7aOeD6FxcL5LRFlUrqU9Q4b3Aogs9a3lhbb3psniBj5sqKk3XiEwj89llo
Ca3hteGhT6D2VLZU4kECn48TiByolewxA3JuxEeYFhtft1q0RMsS/hzvUTIy
2atoVgp0x96+zVQVZQwzBVe5tEmDJqai+Afy9bgFxAA7XTpKu+3RDjtGblqk
Ms77F0Klyr3rHaqp+4Gk2R9BQ3GIGsELKVciB1S9283GjGNjxt/UmLeKon6N
5IQ3kvXla2mkVfB3tOferVsje5dLkDCBLX3PkMeMcUn3mIHOxCUyUfEmmtS2
edr5hqF5m5XyUAoMoVc8QmWaeJwMjc+LE5yjsTmErkDpK20rZXzrJtCZsb/7
ardW4l7PBAGNNEvmknaF5ySFjsQD16XkY+VEGQRKYw60yiwiyzQHndNx5UtW
LJrqdnGFd/Vnri8J3/pqYfJGSQDrn3JA4vaQdxgOh0CJofu76zMBxjyJP62r
4avJekmG3kXR233y6nm/OLiOtulnGRPNUFcWtFs8X/HzLHEd9geQE62D6HHB
TcmTtP84CxMVO1Tj5v54596vWss6fo6lbV4g2ZDGxft5SRKPS6IJ9+DfftnZ
G0Xlb/j5YjYcb2092t4eP/j1D/S1CuyfdEBqqZCkUgnPKL3+/bvnw0exDc+0
M2BJ5/D/1B1nTFS3JNoPbpviDxR6b5m2sg6Ef0atvDtxzw1tjd0J6X6WFX8T
n/Gv3/ZeVP9DmoW7UcyTvx7s/Wn3Lf2r+GPx/efx1vDhM1x49c/5he3iLv1n
Z3j/Cf51/2m6094hr9hw8/tX+3uvnz6jB1693nv74jme2fqpuCsfx/2PtoZP
Hz5/XtzFM23/+/7zs62treHz58+f4olo5sU/t7fiD8+JkIFce41PufHMth0G
cS8uBHdHcHyrIm/aF5KEDEmm6xG8R4UDo+QNbxnkRpLgRVwPp+SYSQuOCt0R
+uGOZfjdcXtxmpGuyD6qrfsvX/gWknzL6errV3W986/liczfjzzN+ef4mfZP
8rW/87P8a+Oz2flc+2x2rfuzBvGg24ghZ04lxefTq2F2pbIWZT/HFjmMSNw+
P/aKgze13/r5c/jtj8X2j/YLzV9+D/0S77nz4U5cik/3f95/F/+7++LNn3a5
40Ao1Toshdu6OpqVVcS91iUBPBUytfiLb5T++F/67hH5iTrDm1taR2iheuuY
ya2zdW3IX9Ldu3CXCHJhrm7Be2T9BIxJurlta4mXUmIfaqwkTzz3zT2QVrZW
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
bH16Gv4vI6puHC1yAgA=

-->

</rfc>
