<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.29 (Ruby 2.6.10) -->


<!DOCTYPE rfc  [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">

]>


<rfc ipr="trust200902" docName="draft-mk-dnsop-svcb-well-known-00" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title abbrev="SVCB well-known SvcParamKey">An SVCB Service Parameter for Well-Known URI Paths</title>

    <author initials="J." surname="Mozley" fullname="Jim Mozley">
      <organization>Infoblox, Inc.</organization>
      <address>
        <email>jmozley@infoblox.com</email>
      </address>
    </author>
    <author initials="D." surname="King" fullname="Daniel King">
      <organization>Old Dog Consulting</organization>
      <address>
        <email>daniel@olddog.co.uk</email>
      </address>
    </author>

    <date year="2026" month="September" day="16"/>

    <area>Operations and Management</area>
    <workgroup>Individual Submission</workgroup>
    <keyword>SVCB</keyword> <keyword>HTTPS</keyword> <keyword>well-known</keyword> <keyword>service parameter</keyword>

    <abstract>


<?line 50?>

<t>This document defines the "well-known" Service Parameter Key (SvcParamKey)
for SVCB and HTTPS resource records. It carries one or more well-known URI
suffixes, identifying resources under "/.well-known/" that are available
at the service endpoint. It specifies the presentation and wire formats
and requests registration of the key with IANA.</t>



    </abstract>

    <note title="About This Document" removeInRFC="true">
      <t>
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-mk-dnsop-svcb-well-known/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Individual Submission Individual mailing list (<eref target="mailto:dnsop@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/dnsop/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/dnsop/"/>.
      </t>
    </note>


  </front>

  <middle>


<?line 58?>

<section anchor="introduction"><name>Introduction</name>

<t>SVCB and HTTPS resource records <xref target="RFC9460"/> let a client learn connection
parameters for a service before connecting, such as the protocols it
supports and alternative endpoints. They do not say which resources are
available once connected.</t>

<t>Well-known URIs <xref target="RFC8615"/> give machine-readable metadata a conventional
location under "/.well-known/". The IANA "Well-Known URIs" registry holds
many such suffixes, for example "api-catalog" <xref target="RFC9727"/> and
"agent-card.json", registered by the Linux Foundation for the Agent2Agent
protocol <xref target="A2A"/>. A client that already knows the applicable suffix can
construct the URI itself, but it cannot learn from the DNS which of the
registered resources a particular service offers.</t>

<t>The "well-known" SvcParamKey closes that gap. A service binding advertises
the well-known URI suffixes available at its endpoint, so a client can
retrieve the resource it needs directly after resolution, without probing.
Each DNS record in an RRset carries its own list, so a hosted endpoint or
an alternative protocol can advertise different resources.</t>

<t>The service parameter is defined here as a general primitive so that other
specifications can reference it.</t>

<t>o DNS for AI Discovery <xref target="I-D.mozleywilliams-dnsop-dnsaid"/> is one user of
this parameter, advertising the location of an agent's capability
descriptor.</t>

<t>o [editors note] Authors will add other in progress work.</t>

<section anchor="requirements-notation"><name>Requirements Notation</name>

<t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and
"OPTIONAL" in this document are to be interpreted as described in BCP 14
<xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they appear in all capitals,
as shown here.</t>

</section>
</section>
<section anchor="param"><name>The "well-known" SvcParamKey</name>

<t>The "well-known" SvcParamKey advertises one or more well-known URI
suffixes <xref target="RFC8615"/>, each naming a resource under "/.well-known/" at the
service endpoint. A client MAY retrieve any advertised resource. The list
need not include every well-known resource available at the endpoint.</t>

<section anchor="wire"><name>Wire Format</name>

<t>The wire-format SvcParamValue consists of one or more entries concatenated
without separators. Each entry is:</t>

<t><list style="symbols">
  <t>a 2-octet unsigned length in network byte order, giving the length of
the suffix in octets; then</t>
  <t>the suffix itself.</t>
</list></t>

<t>A decoder reads entries until the SvcParamValue is exhausted. A value that
ends inside an entry, or that contains a zero-length entry, does not have
the expected format, so the RR is malformed (Section 2.2 of <xref target="RFC9460"/>).</t>

</section>
<section anchor="presentation"><name>Presentation Format</name>

<figure><artwork><![CDATA[
well-known="suffix[,suffix]*"
]]></artwork></figure>

<t>The value is a comma-separated list of one or more suffixes, using the
character-string and list escaping rules of Section 2.1 and Appendix A.1
of <xref target="RFC9460"/>. Empty items and whitespace around separators are not
allowed.</t>

<t>Each decoded suffix MUST match this ABNF <xref target="RFC5234"/>:</t>

<figure><artwork><![CDATA[
wk-suffix = segment-nz *( "/" segment )
]]></artwork></figure>

<t>The segment-nz and segment rules are from Section 3.3 of <xref target="RFC3986"/>. A
suffix does not begin with "/", does not include the "/.well-known/"
prefix, and carries no query or fragment component. A suffix may extend
below a registered well-known name where that registration allows it.</t>

<t>Non-ASCII characters MUST be percent-encoded. Invalid percent escapes and
segments equal to "." or "..", including their percent-encoded forms,
MUST be rejected. Other percent-encoded octets MUST be preserved without
decoding or normalisation. A value containing a suffix that fails these
checks does not have the expected format, so the RR is malformed.</t>

<t>Each decoded suffix is encoded as one length-prefixed entry (<xref target="wire"/>).
Conversion in either direction MUST preserve suffix octets and list order,
using the <xref target="RFC9460"/> escaping rules for presentation output.</t>

</section>
<section anchor="examples"><name>Examples</name>

<t>The examples use the requested key name for illustration; no allocation is
implied.</t>

<figure><artwork><![CDATA[
svc.example.com. 3600 IN HTTPS 1 . (
    alpn="h2,h3"
    well-known="api-catalog"
)
agent.example.com. 3600 IN SVCB 1 host.provider.example (
    alpn="h2,h3"
    well-known="agent-card.json,api-catalog"
)
]]></artwork></figure>

<t>The first record advertises one resource at the owner name,
"https://svc.example.com/.well-known/api-catalog". The second, with a
hosted TargetName, advertises two resources at that host. Their wire-format
SvcParamValues are, respectively, the first entry below and the second
and third entries concatenated:</t>

<figure><artwork><![CDATA[
00 0b | ASCII("api-catalog")
00 0f | ASCII("agent-card.json")
00 0b | ASCII("api-catalog")
]]></artwork></figure>

<t>The suffix lengths are 11 and 15 octets; the two values are 13 and 30
octets. The following single-suffix value contains a literal comma:</t>

<figure><artwork><![CDATA[
well-known="foo/a\\,b"
]]></artwork></figure>

<t>Character-string decoding produces "foo/a\,b"; list decoding produces
"foo/a,b". Its wire value is:</t>

<figure><artwork><![CDATA[
00 07 | ASCII("foo/a,b")
]]></artwork></figure>

</section>
</section>
<section anchor="interactions-with-other-svcparamkeys"><name>Interactions with Other SvcParamKeys</name>

<t>The "well-known" key MAY appear alongside any other SvcParamKey. The
"alpn" key selects the protocol used to retrieve a resource; the "port"
key and the TargetName affect the origin (<xref target="resolving"/>).</t>

<t>Each ServiceMode record carries its own "well-known" value. The key MUST
be ignored when it appears in an AliasMode record.</t>

<t>If "well-known" is listed in "mandatory", a client that does not implement
it MUST skip the record (Section 8 of <xref target="RFC9460"/>). This does not oblige a
client to retrieve any advertised resource.</t>

</section>
<section anchor="resolving"><name>Resolving and Retrieving Advertised Resources</name>

<t>A client forms the URI of an advertised resource by appending
"/.well-known/" and the suffix to the origin of the service.</t>

<t>For HTTPS records, the origin is that of the URI being resolved, as in
Section 9 of <xref target="RFC9460"/>; the "port" key changes the connection port, not
the origin. For SVCB records, the specification that maps the service to
SVCB defines the scheme and authority. Where it does not, the origin is
"https" at the TargetName (or the owner name when TargetName is "."),
using the "port" key or 443.</t>

</section>
<section anchor="security-considerations"><name>Security Considerations</name>

<t>The security and privacy considerations of <xref target="RFC9460"/> and <xref target="RFC8615"/>
apply. The "well-known" parameter is conveyed in the DNS and has the same
integrity properties as the enclosing record.</t>

<t>The value is free text. It is deliberately not constrained to the suffixes
in the IANA "Well-Known URIs" registry: an enumerated encoding would
require DNS software to change each time a suffix is registered, and
neither authoritative servers nor resolvers are positioned to validate it.
A publisher, or an attacker able to alter records, can therefore advertise
any string. Clients MUST treat an advertised suffix as metadata, not as a
trust signal. A suffix that is well formed, or even registered, implies
nothing about whether a resource exists at that location or whether its
contents are trustworthy. A client MUST NOT relax endpoint authentication,
destination restrictions, or redirect policy because a suffix was
advertised in the DNS.</t>

<t>Publishers MAY sign records carrying this key with DNSSEC <xref target="RFC4033"/>.
DNSSEC lets a validating resolver confirm that the record was published by
the zone's authoritative source and was not altered in transit. It does
not validate the suffix or the resource it names.</t>

<t>Forged or hostile advertisements can induce unwanted requests or disclose
client interests. Implementations SHOULD bound retrieval work rather than
fetch every advertised resource. Publishing suffixes discloses information
about a service; publishers SHOULD keep advertisements compact.</t>

</section>
<section anchor="iana-considerations"><name>IANA Considerations</name>

<t>IANA is requested to add the following entry to the "Service Parameter Keys
(SvcParamKeys)" registry, in the "DNS Service Bindings (SVCB)" registry
group, per the procedure defined in Section 14.3 of <xref target="RFC9460"/>:</t>

<texttable>
      <ttcol align='left'>Number</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Meaning</ttcol>
      <ttcol align='left'>Format Reference</ttcol>
      <ttcol align='left'>Change Controller</ttcol>
      <c>TBD</c>
      <c>well-known</c>
      <c>One or more well-known URI suffixes available at the service endpoint</c>
      <c>(This document)</c>
      <c>IETF</c>
</texttable>

<t>This request does not register individual well-known URI suffixes. Testing
before allocation can use the private-use SvcParamKey range of <xref target="RFC9460"/>.</t>

</section>
<section removeInRFC="true" anchor="open-issues"><name>Open Issues</name>

<t>This section lists questions on which the authors seek input, in
particular from the DNSOP and HTTPBIS working groups. It will be removed
before publication.</t>

<t><list style="numbers" type="1">
  <t>Suffix-only values. This document carries the suffix without the
"/.well-known/" prefix, matching the IANA registry and saving octets.
The original registration request and the current DNS-AID draft use
full paths.</t>
  <t>Wire encoding. A list of length-prefixed entries is proposed, as used
by other list-valued SvcParamKeys. An existing DNS-AID implementation
carries a single string at a private-use key. Implementer input is
welcome. The "dohpath" key <xref target="RFC9461"/> is the existing precedent for
a path-valued parameter, but this key is single valued.</t>
  <t>HTTPBIS review. The designated experts asked for consultation with
HTTPBIS before a renewed allocation request.</t>
</list></t>

</section>


  </middle>

  <back>


<references title='References' anchor="sec-combined-references">

    <references title='Normative References' anchor="sec-normative-references">



<reference anchor="RFC2119">
  <front>
    <title>Key words for use in RFCs to Indicate Requirement Levels</title>
    <author fullname="S. Bradner" initials="S." surname="Bradner"/>
    <date month="March" year="1997"/>
    <abstract>
      <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
    </abstract>
  </front>
  <seriesInfo name="BCP" value="14"/>
  <seriesInfo name="RFC" value="2119"/>
  <seriesInfo name="DOI" value="10.17487/RFC2119"/>
</reference>
<reference anchor="RFC8174">
  <front>
    <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
    <author fullname="B. Leiba" initials="B." surname="Leiba"/>
    <date month="May" year="2017"/>
    <abstract>
      <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
    </abstract>
  </front>
  <seriesInfo name="BCP" value="14"/>
  <seriesInfo name="RFC" value="8174"/>
  <seriesInfo name="DOI" value="10.17487/RFC8174"/>
</reference>
<reference anchor="RFC3986">
  <front>
    <title>Uniform Resource Identifier (URI): Generic Syntax</title>
    <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee"/>
    <author fullname="R. Fielding" initials="R." surname="Fielding"/>
    <author fullname="L. Masinter" initials="L." surname="Masinter"/>
    <date month="January" year="2005"/>
    <abstract>
      <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource. This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet. The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier. This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="STD" value="66"/>
  <seriesInfo name="RFC" value="3986"/>
  <seriesInfo name="DOI" value="10.17487/RFC3986"/>
</reference>
<reference anchor="RFC5234">
  <front>
    <title>Augmented BNF for Syntax Specifications: ABNF</title>
    <author fullname="D. Crocker" initials="D." role="editor" surname="Crocker"/>
    <author fullname="P. Overell" initials="P." surname="Overell"/>
    <date month="January" year="2008"/>
    <abstract>
      <t>Internet technical specifications often need to define a formal syntax. Over the years, a modified version of Backus-Naur Form (BNF), called Augmented BNF (ABNF), has been popular among many Internet specifications. The current specification documents ABNF. It balances compactness and simplicity with reasonable representational power. The differences between standard BNF and ABNF involve naming rules, repetition, alternatives, order-independence, and value ranges. This specification also supplies additional rule definitions and encoding for a core lexical analyzer of the type common to several Internet specifications. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="STD" value="68"/>
  <seriesInfo name="RFC" value="5234"/>
  <seriesInfo name="DOI" value="10.17487/RFC5234"/>
</reference>
<reference anchor="RFC8615">
  <front>
    <title>Well-Known Uniform Resource Identifiers (URIs)</title>
    <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
    <date month="May" year="2019"/>
    <abstract>
      <t>This memo defines a path prefix for "well-known locations", "/.well-known/", in selected Uniform Resource Identifier (URI) schemes.</t>
      <t>In doing so, it obsoletes RFC 5785 and updates the URI schemes defined in RFC 7230 to reserve that space. It also updates RFC 7595 to track URI schemes that support well-known URIs in their registry.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="8615"/>
  <seriesInfo name="DOI" value="10.17487/RFC8615"/>
</reference>
<reference anchor="RFC9460">
  <front>
    <title>Service Binding and Parameter Specification via the DNS (SVCB and HTTPS Resource Records)</title>
    <author fullname="B. Schwartz" initials="B." surname="Schwartz"/>
    <author fullname="M. Bishop" initials="M." surname="Bishop"/>
    <author fullname="E. Nygren" initials="E." surname="Nygren"/>
    <date month="November" year="2023"/>
    <abstract>
      <t>This document specifies the "SVCB" ("Service Binding") and "HTTPS" DNS resource record (RR) types to facilitate the lookup of information needed to make connections to network services, such as for HTTP origins. SVCB records allow a service to be provided from multiple alternative endpoints, each with associated parameters (such as transport protocol configuration), and are extensible to support future uses (such as keys for encrypting the TLS ClientHello). They also enable aliasing of apex domains, which is not possible with CNAME. The HTTPS RR is a variation of SVCB for use with HTTP (see RFC 9110, "HTTP Semantics"). By providing more information to the client before it attempts to establish a connection, these records offer potential benefits to both performance and privacy.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9460"/>
  <seriesInfo name="DOI" value="10.17487/RFC9460"/>
</reference>



    </references>

    <references title='Informative References' anchor="sec-informative-references">



<reference anchor="RFC4033">
  <front>
    <title>DNS Security Introduction and Requirements</title>
    <author fullname="R. Arends" initials="R." surname="Arends"/>
    <author fullname="R. Austein" initials="R." surname="Austein"/>
    <author fullname="M. Larson" initials="M." surname="Larson"/>
    <author fullname="D. Massey" initials="D." surname="Massey"/>
    <author fullname="S. Rose" initials="S." surname="Rose"/>
    <date month="March" year="2005"/>
    <abstract>
      <t>The Domain Name System Security Extensions (DNSSEC) add data origin authentication and data integrity to the Domain Name System. This document introduces these extensions and describes their capabilities and limitations. This document also discusses the services that the DNS security extensions do and do not provide. Last, this document describes the interrelationships between the documents that collectively describe DNSSEC. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="4033"/>
  <seriesInfo name="DOI" value="10.17487/RFC4033"/>
</reference>
<reference anchor="RFC9461">
  <front>
    <title>Service Binding Mapping for DNS Servers</title>
    <author fullname="B. Schwartz" initials="B." surname="Schwartz"/>
    <date month="November" year="2023"/>
    <abstract>
      <t>The SVCB DNS resource record type expresses a bound collection of endpoint metadata, for use when establishing a connection to a named service. DNS itself can be such a service, when the server is identified by a domain name. This document provides the SVCB mapping for named DNS servers, allowing them to indicate support for encrypted transport protocols.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9461"/>
  <seriesInfo name="DOI" value="10.17487/RFC9461"/>
</reference>
<reference anchor="RFC9727">
  <front>
    <title>api-catalog: A Well-Known URI and Link Relation to Help Discovery of APIs</title>
    <author fullname="K. Smith" initials="K." surname="Smith"/>
    <date month="June" year="2025"/>
    <abstract>
      <t>This document defines the "api-catalog" well-known URI and link relation. It is intended to facilitate automated discovery and usage of published Application Programming Interfaces (APIs). A request to the api-catalog resource will return a document providing information about, and links to, the Publisher's APIs.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9727"/>
  <seriesInfo name="DOI" value="10.17487/RFC9727"/>
</reference>

<reference anchor="I-D.mozleywilliams-dnsop-dnsaid">
   <front>
      <title>DNS for AI Discovery</title>
      <author fullname="Jim Mozley" initials="J." surname="Mozley">
         <organization>Infoblox, Inc.</organization>
      </author>
      <author fullname="Nic Williams" initials="N." surname="Williams">
         <organization>Infoblox, Inc.</organization>
      </author>
      <author fullname="Behcet Sarikaya" initials="B." surname="Sarikaya">
         <organization>Unaffiliated</organization>
      </author>
      <author fullname="Roland Schott" initials="R." surname="Schott">
         <organization>Deutsche Telekom</organization>
      </author>
      <author fullname="Jeffrey Damick" initials="J." surname="Damick">
         <organization>Amazon</organization>
      </author>
      <date day="27" month="May" year="2026"/>
      <abstract>
	 <t>   The document standardizes an approach for publishing AI agents in the
   Domain Name System (DNS) so that other agents can discover them.
   Discovery is then initiated based on one of three generic use cases,
   in increasing computational and latency cost: (1) the requestor knows
   both the organization and agent (2) the requestor knows the
   organization that provides a capability, but not the specific agent
   (3) the requestor knows the required capability, but not the
   organization or agent.  Of these use cases only (1) and (2) are in
   scope for this document, although (3) can be derived from this
   specification.

   DNS for AI Discovery (DNS-AID) is designed so that, once a client has
   learned an organization&#x27;s agents, subsequent transactions can utilize
   the first use case with the benefit of cacheable connectivity
   information that is learnable as an agentic skill.  The mechanism
   uses Service Binding (SVCB) records for connectivity information and
   key meta data, a well known entry point using DNS-Based Service
   Discovery (DNS-SD) labels into an organization&#x27;s agent index, and
   optionally DNS Security Extensions (DNSSEC) and DNS-Based
   Authentication of Named Entities (DANE) TLSA records for trust and
   security.  DNS-AID provides consumers of agent services with a direct
   connection method for agentic workloads not mediated by a third
   party.  Organizations can use the same approach across public and
   private networks networks, providing consistency and common
   operational models, including publishing agents that are hosted in
   service provider domains.

   This document introduces no new resource record types, opcodes, or
   response codes.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-mozleywilliams-dnsop-dnsaid-02"/>
   
</reference>

<reference anchor="A2A" target="https://a2a-protocol.org/latest/specification/">
  <front>
    <title>Agent2Agent (A2A) Protocol Specification</title>
    <author >
      <organization>Linux Foundation</organization>
    </author>
    <date />
  </front>
</reference>


    </references>

</references>



  </back>

<!-- ##markdown-source:
H4sIAIqSqmoAA5Va23IbxxF9n6+Ygh5CugBIJOUbXa4yREoVxhKpkHRcqSQP
A+wAGHOxs9nZBQlL8rfndPfMXkAqSlIVa7k7l56+nD7dg8lkompX5/ZUj2aF
vvnb2St9Y6utW1j93lRmY2tb6aWv9K82zyc/F/6+0L9cX+BjvQ4jZebzym4x
mWfe05g7HnOzXfD8n+1upBamtitf7U51qDOV+UWBhU91VpllPdncTbIi+HIS
tov5pFti8uKFCs1840Jwvqh3JWZcvL59o4pmM7fVqcqw6qla+CLYIjThVNdV
YxWEOVGmsgZCXZW2MjVmB22KTL8zhVnZjS3qkbr31d2q8k2JYRdF5rYua0yu
b9oNR+rO7jAqO1VaT1gz/PDn29v3N/zUicp/hqi2MqlNbW3RWJr+hY20ltP1
vtPLjXE5XrJyfnK2Xk59tYLKm3rtK5YK/9dadPkXt9Hv/O+53fFLjIS2iqWf
5/5hjKfFlN/buOhvGx77k4tDpgu/Ge0teW4KZ3P9sytW3ZpXeabP/UqfQalN
Xqdvad2M5/zk8yzzKyw6be5GqvDVBmbYsi6u35wdHx19Hx+/O/r2ZXw8+f67
b+Lj18cn6e133xx9HR+/f/nNi1NFEg+Xe/ni5KQbcpQevz3+lh4vJudTOey9
y3NnNiG6G/5rHFt3djw75VPESJit4CLH/F99gI+H+n3la7/wMFtpF27pFuxV
PKczB/1vIlp664rmQb/xTZF1I2tTrWx9qtd1XYbT58/NsZmUcWEy7fMcDh3q
56G/x3Oeyq6ulyYPVqnJZKLNPNSVWdRK3a5d0AiphvxaZ3bpCht0vbZ61Dno
6ImgRmTqg16YHioKc45jChb2c13Z4JsK8yq7QCyEqb6o9cJUlcMmvrA4rt74
yvZDH/CAwF0u3YMNY+0yyOWWO3hKu1rQUAxEGD2fdvOejyC1qTViV5st3MnM
c6vwgs6SgssWWeldUbMcUVHxuCVWx1asNT7BvcNK4ixB0YvK/ruBggMeVo70
x0P9kqcj2jGjXuuL2eVsKlreuCyDDOoZAqiufNYs2JjqC0rSHz5Ed/30SecW
R9KL3JF5cmuqQgOyCitLtWARGGRNe9C5XZJa09BiNdahWay1SYcVvwna1VB2
WfqqFpAzOVYrOD5abcFst2ucL/O68NCbwVHXDqt1BoHWVat1WHbR7m0zaOPX
gXnjCSk2ccIVbbUxizU8bwLgzXgJnApPtaHD+2JLTuALk6vci2M/7QIsKJtA
j4YZJ4yS2XZ6DXwJamOKnSil8zZSon0wmxISjEzpJtjM5H41ijYBKEBi6EmN
DMU3vlfZ9LcAGB7H9W1lMz3fsZr345jXpw89iFDJFtgCYPHp01TPkr3FoXNS
yk7TEcV6pixzxDepSURHSBWcyZDCFuLxlGRdHWy+HOt5U+OZBpH5xImWld/w
wPPLm2hN8WTVO0bPvpSXardoclO1TuaXS3jelEBkHy46XMBZfOAYw1lWpqTj
tV7qkLEQ2CbbWqyOYYpEGoJBa54urLWhA4XWQeHcvosSUkZla2AMHIvWawMM
SiisRYRliO1Fne80GAS8iAbkDVlozEHsoTCYBeKtpuo1XJO1JOGpHcGDvr4O
toMyEobEzaG5KMzaQ4lZKyKQDiAyCK/W8Av6kFQA2UitdJBW/VHFjyiCJuxm
yM702hLwkaXgVeAtOdZ3G8c7QSBWv4c2KjVIEIF3ryxvySrCZp7PS846u9Dn
Liw8hNvBQb+QDREbTnC9gazwD5gTL1p5x+0xyepkmjac4XykBYqIP5FMpZm7
3NU7ldmwqFxZ+4oF+4fNHJ4DIZH9l55x+gyaxMHimRyRbATtrqBAfAJVw9Rn
z/Q1AByGp0wX9KUXrBfVMnwz+I7e/XJzi2jmf/XlFT9fv/7rLxfXr8/p+ebP
s7dv2wcZofDH1S9v43d66maeXb179/ryXCbjrd579W72d/zDmHL1/vbi6nL2
dkQHqAeZmdJa7YHr+ARNIluRdxmyP+lnbtkxX52910cvFYMV0SQYRKAWPAnP
92tb8FawUb6Lf9YE7YAUwAL7dk4OWTrgXhgrbBDW5NnkXqRF/V9j/cMztvWn
L0BCF+//CwnoZ4uxthSOYJiMG11oP80IJP2rx+m/hVhoX7dgQRmhla2DP8kq
FNuK4IOToCsWeZNhSY6MnuStRAO0Il9vd2dn/JXoxRumF1AbkY2oNXqcCO9o
lfY3kzecUYMjAoJg6esN52AUwncqlQAvNlMJx4Ilk1DITDVDGY3eIU5PlfoK
GjyeeCTpGgoMbkVAkttiBR4DVyhsTcGDbFbTZhkFMLJ1G7syEFGuhWRJLsJE
XjH8QG8L2qX/lXMSVDCD5y58xuhrstAeokGmz3nG8PAIBvuwNg2hKtlvy28J
1hQUCwiG/BmZUA441pxqoUNopTaOajj9u638JIodR2XeMpbotdlazj72oWTa
ErnfWNDTAvFJho3J6T0+H9wICdPH02OySI+1HYqJ3/cpZWvqPtGEyf/44w/V
uc+PI9HTP8by77++GvEI9oxtUgRxos3GTKJtyWjwi3236GhNk/BWLdaGeL+t
JuAKHEJFnAwYQdQTy25yyy7Wne+Ih82AEcjXD3o2PVLDA8O1NmUNr6rtRngk
KAWqkdJQIFREgHqOyGAGnStgjb9ngsieKQ6RJVdhAIbO8IWxcPbq8o1sSgXe
p0+nUXl3kzjhR+yxIrScFL/rrw6ABqP0Rh92auwNMiyXjJBzk2jMjdLpT6Yn
rXWpxmSCFrGp8545SFMhBQB27blVwgmuqIboBOaH3P0ggJyYROE1qgwEKKy4
rIyIBmuXsKwAV9x6AxZuHxDtmZpbqJHBsGVuPUCiapygvpJoGVYvbIEgWf/S
F5PZzdnFhW69JIgRkHVKC0yD0kASyEYooAq4o8vSB/Efy8ZXUaWI2H9TswJ5
azQd0YlG0ymUIzqJLumq/bU58JB70taV/U3qCH3FyX1/uKBNJynFV7UlJQgE
KvYr2g4ScDMBDs/H73AkgoQklahh1tYSIM6sO1Dw2MVdGEKG/j8g4zN+TsgW
j2IkIQpETcQ/mEQSZB98+MBpguDljGqiivo/hLfWsWKE1dI71kVSRNon6qmN
eEF01YLDoO7cgwPigoMKGXotm5jKXkvFhET9LBZPIeay9CfxwUjFuYbGmYhx
sWvS0mBvTfLJHygGyC8jM3RBOSziWH8UxGG7mMaFqe801SffvHihLy5jOX2k
p/pAeit5CUBdH4/XJyN+0cfZfnWnDhUzz6eX5XL9iAn9FKxyizRTpZH/007D
SnG8t3OLS0tXhTpVGXsUqWMVwiWwMAxO+gP3TB2hPcUM0Ka/qfCZgI2KTAoe
bVSsV265y3RJC/dlABHoV4OxNGWV0GII4h5tUYPMzZhK1THVHVSO5DsmnfG8
4tsRwuCadSuakj9dlT3JcCL8w0Yv5vqjZuQ6GJj1kD8uex/3avbD/z67yxgS
QBKWkiOOJCcefd0nO6ymbXtofXTCg05eKBkkil96Al2KLYq83Kb0NUAiSvKo
f7iQ42R/+pgqLL1/bv75z/E8coSz/eTeAl/J3SdIFedgyg8CAo+GKBmCEdQk
C9IGS8yjp/NvO62lCVFj3O6yJAnXl+xfgty9GiA8USIQJBAfj8UIrFCsIqnb
xcKutwIrU40o9GQqiCUcbNjgIuDJKAF1HL/1YzHZiHpf3K1v3a+LAW1Qi8eO
iq8c5XigMLcLiAYL02NMjw3Sd4DxFML7zYHBWVmj4g98bAC2ouJuhQRFqQvM
mdoVoooQmw4zlNyhtwU2v1gO10UyIbtKOTjaGOo8+WpHFeagq9QRFIILytYK
23HeCHeujGDN52iJ7nePaK6O7eO4lp/nbgWlqbST/3JtRf5ynRTKJriWKfTn
rJtw3aLPh2edAaiOiJsxa2h7X7Gf8HhD6s0ZYbLFSj0qGBMCRQrg+6aPrd5Y
TUJycPq2h8ut23F/uItNrziNpJrb1MfOQVDGlO9doZJ+v9/Tb99B2UvAy4pV
7Fd3XWBNA8ZMqLvdp1RwSOoayDZo/oh8G1OGQZe89tKi7t8GBJAfigdqEXPP
xdWIwF+ZVrrOnfYUEHNTKsT7kXUQW6FdJhOn7w2BAsEbD/sUpacMzH/58oT9
BwpsSCC+VqL0LK2tRPfjR5K9rNzWLHZSSrcD9/TOI3tNB0UNV8GbYbANGnHc
pt5J4KXGKi20jj33gKGKmjcrlgYIVZJvUqoIsT9ArVJxkBjdg6pvWVnYBpyf
by+49Ze7OZ0BKZXjT1rAhvuB0XVTEaiiVF/ojZ9KAd1srNSVTExJpHvf5Jmq
pIPGZwt+Wd/HtpQ4pvRmakd+0iO3XVkiba4i0tXkR9INZarKfb0qBUisFEso
hcwkh+KqA7JxzTLTZQPMCWtqTdAFCEK+rs3ijpan1kvtpeXaBQG1O2l7uSBp
AULxbQCnzak+Y0SJJUVdWerCD8AkHg6GS/cUHH/cf1V1BS6rqZti8l7BxrEG
dZADaSkIWGaAYzHQkbDdoLDgmjFxTn0cBIdorUMy+8DdoMTGul5q1Y5G7qGL
gZqPw8Yi4e4RROtdvwsWe51YOzcPXdOaTERXL7LwmJqxtStkF4gBdUmS54NA
eC5AYLDcLYjTLQzx/tYX7k1QPSV2cQJPf5/sGJgCkPba+zBKpDtBAOivvWnD
xJvXZxKodImLylzFdzkXOslXephbUYyAeG5EZb0sB+FaZ6ILHMbS3+F1fwr7
nhqZeCGT2O65lN10pMoAWiRGCRXJjJ3T9nJLxL/B5QQgIkheWVFhWzHDdnnP
T6WuJid2BfE13RT3pqht73rSUyUY+NolJWLuGdNHiJXyfYS+2K6ec48mZmtw
Tm78AQPIiaCqQi0tNWKk3flkjzRakHlt6twmOSjNxXt3Xyhx6Pay8ocuiFtx
7qwtHx3ab0qQSkZ8hrF9tOeXDDipyKTwzySjd6xbKo6Ij6Mnb7aD6l9th8MO
IMfJbUeEgWnyK7nICuBKSJy94Yp/uzGmnkXipQubNQjEdG+D5VL+P3rZ6zVJ
KgLh/qgv+Rcr4NucFT/qd9Zwp+Jjaipet9c3H/WZQDF0U1c4Ms3DEnQd/dn/
4vvtq3P81esafdRXn+3Mf+ZG7qmLdqxzMPiJwSHe0M9wsKv89iAaqyORCQrJ
wdPPXT6zP1IyA9JKxfvuXtuAQiR1HTjr13ZCf/fvISpW1V4rk9zrCvxQX4QA
ydSH08pu/BbMrVoufhzRr4RGn6LwIVouZyDmgwifKOKdKl/XxjuqYO0dDlU2
NTmR6l2o9i9jr963Pw14dXHDcUi2Zj+S30/wXRf3xUisLJ2dg0gOjzMcTfUN
a2nCVz1SlLZ8PV4qpQqlh0rp2oCaxVo/ulBJLUtuyyZSxnHX3q5zT9UwfY9V
Ly1029JCmHPQgkwOkKg32BrffkIXk9nFufzMi0xJyywbnL2kH4/hjMdTuUVJ
JIUSWmqEP9VC42IsMPMCJgn9pvqQFp6nCpMWmLC6skG9isULybh0siScG6Ap
LZR0amJ1r1OjnRCv74h3VMK2aMz+XtJFfVDSPwLcxQJxlPk1nVl4b/LVI7lt
lf5jFAvHBbzEaojWMaysdJ7eReycbRzTKXmyCCsDoduTaeuCFWoxey+igAAQ
r2Fq+ED8ldjrnXQ+mX42eWwQkiORBGmVFKFYrrD31OvsYjW6QPzZzBz8Tf0H
wBX3eVooAAA=

-->

</rfc>

