<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.4 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-taps-interface-24" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.18.2 -->
  <front>
    <title abbrev="TAPS Interface">An Abstract Application Layer Interface to Transport Services</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-taps-interface-24"/>
    <author initials="B." surname="Trammell" fullname="Brian Trammell" role="editor">
      <organization>Google Switzerland GmbH</organization>
      <address>
        <postal>
          <street>Gustav-Gull-Platz 1</street>
          <city>8004 Zurich</city>
          <country>Switzerland</country>
        </postal>
        <email>ietf@trammell.ch</email>
      </address>
    </author>
    <author initials="M." surname="Welzl" fullname="Michael Welzl" role="editor">
      <organization>University of Oslo</organization>
      <address>
        <postal>
          <street>PO Box 1080 Blindern</street>
          <city>0316  Oslo</city>
          <country>Norway</country>
        </postal>
        <email>michawe@ifi.uio.no</email>
      </address>
    </author>
    <author initials="R." surname="Enghardt" fullname="Reese Enghardt">
      <organization>Netflix</organization>
      <address>
        <postal>
          <street>121 Albright Way</street>
          <city>Los Gatos, CA 95032</city>
          <country>United States of America</country>
        </postal>
        <email>ietf@tenghardt.net</email>
      </address>
    </author>
    <author initials="G." surname="Fairhurst" fullname="Godred Fairhurst">
      <organization>University of Aberdeen</organization>
      <address>
        <postal>
          <street>Fraser Noble Building</street>
          <city>Aberdeen, AB24 3UE</city>
          <country>Scotland</country>
        </postal>
        <email>gorry@erg.abdn.ac.uk</email>
        <uri>http://www.erg.abdn.ac.uk/</uri>
      </address>
    </author>
    <author initials="M." surname="Kuehlewind" fullname="Mirja Kuehlewind">
      <organization>Ericsson</organization>
      <address>
        <postal>
          <street>Ericsson-Allee 1</street>
          <city>Herzogenrath</city>
          <country>Germany</country>
        </postal>
        <email>mirja.kuehlewind@ericsson.com</email>
      </address>
    </author>
    <author initials="C." surname="Perkins" fullname="Colin Perkins">
      <organization>University of Glasgow</organization>
      <address>
        <postal>
          <street>School of Computing Science</street>
          <city>Glasgow  G12 8QQ</city>
          <country>United Kingdom</country>
        </postal>
        <email>csp@csperkins.org</email>
      </address>
    </author>
    <author initials="P." surname="Tiesel" fullname="Philipp S. Tiesel">
      <organization>SAP SE</organization>
      <address>
        <postal>
          <street>George-Stephenson-Straße 7-13</street>
          <city>10557 Berlin</city>
          <country>Germany</country>
        </postal>
        <email>philipp@tiesel.net</email>
      </address>
    </author>
    <author initials="T." surname="Pauly" fullname="Tommy Pauly">
      <organization>Apple Inc.</organization>
      <address>
        <postal>
          <street>One Apple Park Way</street>
          <city>Cupertino, California 95014</city>
          <country>United States of America</country>
        </postal>
        <email>tpauly@apple.com</email>
      </address>
    </author>
    <date year="2023" month="December" day="14"/>
    <workgroup>TAPS Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 117?>

<t>This document describes an abstract application programming interface, API, to the transport
layer that enables the selection of transport protocols and
network paths dynamically at runtime. This API enables faster deployment
of new protocols and protocol features without requiring changes to the
applications. The specified API follows the Transport Services architecture
by providing asynchronous, atomic transmission of messages. It is intended to replace the
BSD sockets API as the common interface to the
transport layer, in an environment where endpoints could select from
multiple network paths and potential transport protocols.</t>
    </abstract>
  </front>
  <middle>
    <?line 129?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>This document specifies an abstract application programming interface (API) that describes the interface component of
the high-level Transport Services architecture defined in
<xref target="I-D.ietf-taps-arch"/>. A Transport Services system supports
asynchronous, atomic transmission of messages over transport protocols and
network paths dynamically selected at runtime, in environments where an endpoint
selects from multiple network paths and potential transport protocols.</t>
      <t>Applications that adopt this API will benefit from a wide set of
transport features that can evolve over time. This protocol-independent API ensures that the system
providing the API can optimize its behavior based on the application
requirements and network conditions, without requiring changes to the
applications.  This flexibility enables faster deployment of new features and
protocols, and can support applications by offering racing and fallback
mechanisms, which otherwise need to be separately implemented in each application.
Transport Services Implementations are free to take any desired form as long
as the API specification in this document is honored; a nonprescriptive guide to
implementing a Transport Services system is available <xref target="I-D.ietf-taps-impl"/>.</t>
      <t>The Transport Services system derives specific path and protocol selection
properties and supported transport features from the analysis provided in
<xref target="RFC8095"/>, <xref target="RFC8923"/>, and
<xref target="RFC8922"/>. The Transport Services API enables an implementation
to dynamically choose a transport protocol rather
than statically binding applications to a protocol at
compile time. The Transport Services API also provides
applications with a way to override transport selection and instantiate a specific stack,
e.g., to support servers wishing to listen to a specific protocol. However, forcing a
choice to use a specific transport stack is discouraged for general use, because it can reduce portability.</t>
      <section anchor="notation">
        <name>Terminology and Notation</name>
        <t>The Transport Services API is described in terms of</t>
        <ul spacing="normal">
          <li>
            <t>Objects with which an application can interact;</t>
          </li>
          <li>
            <t>Actions the application can perform on these objects;</t>
          </li>
          <li>
            <t>Events, which an object can send to an application to be processed asynchronously; and</t>
          </li>
          <li>
            <t>Parameters associated with these actions and events.</t>
          </li>
        </ul>
        <t>The following notations, which can be combined, are used in this document:</t>
        <ul spacing="normal">
          <li>
            <t>An action that creates an object:</t>
          </li>
        </ul>
        <artwork><![CDATA[
      Object := Action()
]]></artwork>
        <ul spacing="normal">
          <li>
            <t>An action that creates an array of objects:</t>
          </li>
        </ul>
        <artwork><![CDATA[
      []Object := Action()
]]></artwork>
        <ul spacing="normal">
          <li>
            <t>An action that is performed on an object:</t>
          </li>
        </ul>
        <artwork><![CDATA[
      Object.Action()
]]></artwork>
        <ul spacing="normal">
          <li>
            <t>An object sends an event:</t>
          </li>
        </ul>
        <artwork><![CDATA[
      Object -> Event<>
]]></artwork>
        <ul spacing="normal">
          <li>
            <t>An action takes a set of Parameters; an event contains a set of Parameters.
action and event parameters whose names are suffixed with a question mark are optional.</t>
          </li>
        </ul>
        <artwork><![CDATA[
      Action(param0, param1?, ...)
      Event<param0, param1?, ...>
]]></artwork>
        <t>Objects that are passed as parameters to actions use call-by-value behavior.
Actions associated with no object are actions on the API; they are equivalent to actions on a per-application global context.</t>
        <t>Events are sent to the application or application-supplied code (e.g. framers,
see <xref target="framing"/>) for processing; the details of event interfaces are platform-
and implementation-specific, and can be implemented using
other forms of asynchronous processing, as idiomatic for the
implementing platform.</t>
        <t>We also make use of the following basic types:</t>
        <ul spacing="normal">
          <li>
            <t>Boolean: Instances take the value <tt>true</tt> or <tt>false</tt>.</t>
          </li>
          <li>
            <t>Integer: Instances take integer values.</t>
          </li>
          <li>
            <t>Numeric: Instances take real number values.</t>
          </li>
          <li>
            <t>String: Instances are represented in UTF-8.</t>
          </li>
          <li>
            <t>IP Address: An IPv4 or IPv6 address <xref target="RFC5952"/>.</t>
          </li>
          <li>
            <t>Enumeration: A family of types in which each instance takes one of a fixed,
predefined set of values specific to a given enumerated type.</t>
          </li>
          <li>
            <t>Tuple: An ordered grouping of multiple value types, represented as a
comma-separated list in parentheses, e.g., <tt>(Enumeration, Preference)</tt>.
Instances take a sequence of values each valid for the corresponding value
type.</t>
          </li>
          <li>
            <t>Array: Denoted <tt>[]Type</tt>, an instance takes a value for each of zero or more
elements in a sequence of the given Type. An array can be of fixed or
variable length.</t>
          </li>
          <li>
            <t>Set: An unordered grouping of one or more different values of the same type.</t>
          </li>
        </ul>
        <t>For guidance on how these abstract concepts can be implemented in languages
in accordance with language-specific design patterns and platform features,
see <xref target="implmapping"/>.</t>
      </section>
      <section anchor="specification-of-requirements">
        <name>Specification of Requirements</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="principles">
      <name>Overview of the API Design</name>
      <t>The design of the API specified in this document is based on a set of
principles, themselves an elaboration on the architectural design principles
defined in <xref target="I-D.ietf-taps-arch"/>. The API defined in this document
provides:</t>
      <ul spacing="normal">
        <li>
          <t>A Transport Services system that
can offer a variety of transport protocols, independent
of the Protocol Stacks that will be used at
runtime. To the degree possible, all common features of these protocol
stacks are made available to the application in a
transport-independent way.
This enables applications written to a single API
to make use of transport protocols in terms of the features
they provide.</t>
        </li>
        <li>
          <t>A unified API to datagram and stream-oriented transports, allowing
use of a common API for Connection establishment and closing.</t>
        </li>
        <li>
          <t>Message-orientation, as opposed to stream-orientation, using
application-assisted framing and deframing where the underlying transport
does not provide these.</t>
        </li>
        <li>
          <t>Asynchronous Connection establishment, transmission, and reception.
This allows concurrent operations during establishment and event-driven
application interactions with the transport layer.</t>
        </li>
        <li>
          <t>Selection between alternate network paths, using additional information about the
networks over which a Connection can operate (e.g. Provisioning Domain (PvD)
information <xref target="RFC7556"/>) where available.</t>
        </li>
        <li>
          <t>Explicit support for transport-specific features to be applied, when that
particular transport is part of a chosen Protocol Stack.</t>
        </li>
        <li>
          <t>Explicit support for security properties as first-order transport features.</t>
        </li>
        <li>
          <t>Explicit support for configuration of cryptographic identities and transport
security parameters persistent across multiple Connections.</t>
        </li>
        <li>
          <t>Explicit support for multistreaming and multipath transport protocols, and
the grouping of related Connections into Connection Groups through "cloning"
of Connections (see <xref target="groups"/>). This function allows applications to take full advantage of new
transport protocols supporting these features.</t>
        </li>
      </ul>
    </section>
    <section anchor="api-summary">
      <name>API Summary</name>
      <t>An application primarily interacts with this API through two objects:
Preconnections and Connections. A Preconnection object (<xref target="pre-establishment"/>)
represents a set of properties and constraints on the selection and configuration of
paths and protocols to establish a Connection with an Endpoint. A Connection object
represents an instance of a transport Protocol Stack on which data can be sent to and/or
received from a Remote Endpoint (i.e., a logical connection that, depending on the
kind of transport, can be bi-directional or unidirectional, and that can use a stream
protocol or a datagram protocol). Connections are presented consistently to the
application, irrespective of whether the underlying transport is connection-less or
connection-oriented. Connections can be created from Preconnections in three ways:</t>
      <ul spacing="normal">
        <li>
          <t>by initiating the Preconnection (i.e., creating a Connection from the Preconnection, actively opening, as in a client; see Initiate() in <xref target="initiate"/>),</t>
        </li>
        <li>
          <t>by listening on the Preconnection (i.e., creating a Listener based on the Preconnection, passively opening, as in a server; see Listen() in <xref target="listen"/>),</t>
        </li>
        <li>
          <t>or by a rendezvous for the Preconnection (i.e., peer to peer establishment; see Rendezvous() in <xref target="rendezvous"/>).</t>
        </li>
      </ul>
      <t>Once a Connection is established, data can be sent and received on it in the form of
Messages. The API supports the preservation of message boundaries both
via explicit Protocol Stack support, and via application support through a
Message Framer that finds message boundaries in a stream. Messages are
received asynchronously through event handlers registered by the application.
Errors and other notifications also happen asynchronously on the Connection.
It is not necessary for an application to handle all events; some events can
have implementation-specific default handlers.</t>
      <t>The application SHOULD NOT
assume that ignoring events (e.g., errors) is always safe.</t>
      <section anchor="usage-examples">
        <name>Usage Examples</name>
        <t>The following usage examples illustrate how an application might use the
Transport Services API to:</t>
        <ul spacing="normal">
          <li>
            <t>Act as a server, by listening for incoming Connections, receiving requests,
and sending responses, see <xref target="server-example"/>.</t>
          </li>
          <li>
            <t>Act as a client, by connecting to a Remote Endpoint using <tt>Initiate</tt>, sending
requests, and receiving responses, see <xref target="client-example"/>.</t>
          </li>
          <li>
            <t>Act as a peer, by connecting to a Remote Endpoint using Rendezvous while
simultaneously waiting for incoming Connections, sending Messages, and
receiving Messages, see <xref target="peer-example"/>.</t>
          </li>
        </ul>
        <t>The examples in this section presume that a transport protocol is available
between the Local and Remote Endpoints that provides Reliable Data Transfer, Preservation of
Data Ordering, and Preservation of Message Boundaries. In this case, the
application can choose to receive only complete Messages.</t>
        <t>If none of the available transport protocols provides Preservation of Message
Boundaries, but there is a transport protocol that provides a reliable ordered
byte-stream, an application could receive this byte-stream as partial
Messages and transform it into application-layer Messages.  Alternatively,
an application might provide a Message Framer, which can transform a
sequence of Messages into a byte-stream and vice versa (<xref target="framing"/>).</t>
        <section anchor="server-example">
          <name>Server Example</name>
          <t>This is an example of how an application might listen for incoming Connections
using the Transport Services API, receive a request, and send a response.</t>
          <artwork><![CDATA[
LocalSpecifier := NewLocalEndpoint()
LocalSpecifier.WithInterface("any")
LocalSpecifier.WithService("https")

TransportProperties := NewTransportProperties()
TransportProperties.Require(preserve-msg-boundaries)
// Reliable Data Transfer and Preserve Order are Required by default

SecurityParameters := NewSecurityParameters()
SecurityParameters.Set(identity, myIdentity)
SecurityParameters.Set(server-certificate, myCertificate)

// Specifying a Remote Endpoint is optional when using Listen
Preconnection := NewPreconnection(LocalSpecifier,
                                  TransportProperties,
                                  SecurityParameters)

Listener := Preconnection.Listen()

Listener -> ConnectionReceived<Connection>

// Only receive complete messages in a Conn.Received handler
Connection.Receive()

Connection -> Received<messageDataRequest, messageContext>

//---- Receive event handler begin ----
Connection.Send(messageDataResponse)
Connection.Close()

// Stop listening for incoming Connections
// (this example supports only one Connection)
Listener.Stop()
//---- Receive event handler end ----

]]></artwork>
        </section>
        <section anchor="client-example">
          <name>Client Example</name>
          <t>This is an example of how an application might open two Connections to a remote application
using the Transport Services API, and send a request as well as receive a response on each of them.
The code designated with comments as "Ready event handler" could, e.g., be implemented
as a callback function, for example. This function would receive the Connection that it expects
to operate on ("Connection" and "Connection2" in the example), handed over using the variable
name "C".</t>
          <artwork><![CDATA[
RemoteSpecifier := NewRemoteEndpoint()
RemoteSpecifier.WithHostName("example.com")
RemoteSpecifier.WithService("https")

TransportProperties := NewTransportProperties()
TransportProperties.Require(preserve-msg-boundaries)
// Reliable Data Transfer and Preserve Order are Required by default

SecurityParameters := NewSecurityParameters()
TrustCallback := NewCallback({
  // Verify identity of the Remote Endpoint, return the result
})
SecurityParameters.SetTrustVerificationCallback(TrustCallback)

// Specifying a Local Endpoint is optional when using Initiate
Preconnection := NewPreconnection(RemoteSpecifier,
                                  TransportProperties,
                                  SecurityParameters)

Connection := Preconnection.Initiate()
Connection2 := Connection.Clone()

Connection -> Ready<>
Connection2 -> Ready<>

//---- Ready event handler for any Connection C begin ----
C.Send(messageDataRequest)

// Only receive complete messages
C.Receive()
//---- Ready event handler for any Connection C end ----

Connection -> Received<messageDataResponse, messageContext>
Connection2 -> Received<messageDataResponse, messageContext>

// Close the Connection in a Receive event handler
Connection.Close()
Connection2.Close()
]]></artwork>
          <t>A Preconnection serves as a template for creating a Connection via initiating, listening, or via rendezvous. Once a Connection has been created,
changes made to the Preconnection that was used to create it do not affect this Connection. Preconnections are reusable after being used to create a Connection, whether this Connection was closed or not. Hence, in the above example, it would be correct for the client to initiate a third Connection to the example.com server by continuing as follows:</t>
          <artwork><![CDATA[
//.. carry out adjustments to the Preconnection, if desired
Connection3 := Preconnection.Initiate()
]]></artwork>
        </section>
        <section anchor="peer-example">
          <name>Peer Example</name>
          <t>This is an example of how an application might establish a Connection with a
peer using <tt>Rendezvous</tt>, send a Message, and receive a Message.</t>
          <artwork><![CDATA[
// Configure local candidates: a port on the Local Endpoint
// and via a STUN server
HostCandidate := NewLocalEndpoint()
HostCandidate.WithPort(9876)

StunCandidate := NewLocalEndpoint()
StunCandidate.WithStunServer(address, port, credentials)

LocalCandidates = [HostCandidate, StunCandidate]

TransportProperties := // ...Configure transport properties
SecurityParameters  := // ...Configure security properties

Preconnection := NewPreconnection(LocalCandidates,
                                  [], // No remote candidates yet
                                  TransportProperties,
                                  SecurityParameters)

// Resolve the LocalCandidates. The Preconnection.Resolve()
// call resolves both local and remote candidates but, since
// the remote candidates have not yet been specified, the
// ResolvedRemote list returned will be empty and is not
// used.
ResolvedLocal, ResolvedRemote = Preconnection.Resolve()

// Application-specific code goes here to send the ResolvedLocal
// list to peer via some out-of-band signalling channel (e.g.,
// in a SIP message)
...

// Application-specific code goes here to receive RemoteCandidates
// (type []RemoteEndpoint, a list of RemoteEndpoint objects) from
// the peer via the signalling channel
...

// Add remote candidates and initiate the rendezvous:
Preconnection.AddRemote(RemoteCandidates)
Preconnection.Rendezvous()

Preconnection -> RendezvousDone<Connection>

//---- RendezvousDone event handler begin ----
Connection.Send(messageDataRequest)
Connection.Receive()
//---- RendezvousDone event handler end ----

Connection -> Received<messageDataResponse, messageContext>

// If new Remote Endpoint candidates are received from the
// peer over the signalling channel, for example if using
// Trickle ICE, then add them to the Connection:
Connection.AddRemote(NewRemoteCandidates)

// On a PathChange<> event, resolve the Local Endpoint Identifiers to
// see if a new Local Endpoint has become available and, if
// so, send to the peer as a new candidate and add to the
// Connection:
Connection -> PathChange<>

//---- PathChange event handler begin ----
ResolvedLocal, ResolvedRemote = Preconnection.Resolve()
if ResolvedLocal has changed:
  // Application-specific code goes here to send the
  // ResolvedLocal list to peer via signalling channel
  ...

  // Add the new Local Endpoints to the Connection:
  Connection.AddLocal(ResolvedLocal)
//---- PathChange event handler end ----


// Close the Connection in a Receive event handler
Connection.Close()
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="transport-properties">
      <name>Transport Properties</name>
      <t>Each application using the Transport Services API declares its preferences
for how the Transport Services system is to operate. This is done by using
Transport Properties, as defined in <xref target="I-D.ietf-taps-arch"/>, at each stage
of the lifetime of a Connection.</t>
      <t>Transport Properties are divided into Selection, Connection, and Message
Properties.</t>
      <t>Selection Properties (see <xref target="selection-props"/>) can only be set
during pre-establishment. They are only used to specify which paths and
Protocol Stacks can be used and are preferred by the application.
Calling <tt>Initiate</tt> on a Preconnection creates an outbound Connection,
and the Selection Properties remain readable from the
Connection, but become immutable. Selection Properties
can be set on Preconnections, and the effect of Selection Properties
can be queried on Connections and Messages.</t>
      <t>Connection Properties (see <xref target="connection-props"/>) are used to inform
decisions made during establishment and to fine-tune the established
Connection. They can be set during pre-establishment, and can be
changed later. Connection Properties can be set on Connections and
Preconnections; when set on Preconnections, they act as an initial
default for the resulting Connections.</t>
      <t>Message Properties (see <xref target="message-props"/>) control the behavior of the
selected protocol stack(s) when sending Messages. Message Properties
can be set on Messages, Connections, and Preconnections; when set on
the latter two, they act as an initial default for the Messages sent
over those Connections.</t>
      <t>Note that configuring Connection Properties and Message Properties on
Preconnections is preferred over setting them later. Early specification of
Connection Properties allows their use as additional input to the selection
process. Protocol-specific Properties, which enable configuration of specialized
features of a specific protocol (see <xref section="3.2" sectionFormat="of" target="I-D.ietf-taps-arch"/>) are not
used as an input to the selection process, but only support configuration if
the respective protocol has been selected.</t>
      <section anchor="property-names">
        <name>Transport Property Names</name>
        <t>Transport Properties are referred to by property names, represented as case-insensitive strings. These names serve two purposes:</t>
        <ul spacing="normal">
          <li>
            <t>Allowing different components of a Transport Services Implementation to pass Transport
Properties, e.g., between a language frontend and a policy manager,
or as a representation of properties retrieved from a file or other storage.</t>
          </li>
          <li>
            <t>Making the code of different Transport Services Implementations look similar.
While individual programming languages might preclude strict adherence to the
aforementioned naming convention (for instance, by prohibiting the use of hyphens
in symbols), users interacting with multiple implementations will still benefit
from the consistency resulting from the use of visually similar symbols.</t>
          </li>
        </ul>
        <t>Transport Property Names are hierarchically organized in the
form [&lt;Namespace&gt;.]&lt;PropertyName&gt;.</t>
        <ul spacing="normal">
          <li>
            <t>The optional Namespace component and its trailing character <tt>.</tt> MUST be omitted for well-known,
generic properties, i.e., for properties that are not specific to a protocol.</t>
          </li>
          <li>
            <t>Protocol-specific Properties MUST use the protocol acronym as the Namespace (e.g., a
Connection that uses TCP could support a TCP-specific Transport Property, such as the TCP user timeout
value, in a Protocol-specific Property called <tt>tcp.userTimeoutValue</tt> (see <xref target="tcp-uto"/>)).</t>
          </li>
          <li>
            <t>Vendor or implementation specific properties MUST be placed in a Namespace starting with the underscore <tt>_</tt> character
 and SHOULD use a string identifying the vendor or implementation.</t>
          </li>
          <li>
            <t>For IETF protocols, the name of a Protocol-specific Property MUST be specified in an IETF document published in the RFC Series after IETF review.
An IETF protocol Namespace does not start with an underscore character.</t>
          </li>
        </ul>
        <t>Namespaces for each of the keywords provided in the IANA protocol numbers registry
(see https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml) are reserved
for Protocol-specific Properties and MUST NOT be used for vendor or implementation-specific properties.
Terms listed as keywords as in the protocol numbers registry SHOULD be avoided as any part of a vendor- or
implementation-specific property name.</t>
        <t>Though Transport Property Names are case-insensitive, it is recommended to use camelCase to improve readability.
Implementations may transpose Transport Property Names into snake_case or PascalCase to blend into the language environment.</t>
      </section>
      <section anchor="property-types">
        <name>Transport Property Types</name>
        <t>Each Transport Property has one of the basic types described in <xref target="notation"/>.</t>
        <t>Most Selection Properties (see <xref target="selection-props"/>) are of the Enumeration type,
and use the Preference Enumeration, which takes one of five possible values
(Prohibit, Avoid, No Preference, Prefer, or Require) denoting the level of preference
for a given property during protocol selection.</t>
      </section>
    </section>
    <section anchor="scope-of-interface-defn">
      <name>Scope of the API Definition</name>
      <t>This document defines a language- and platform-independent API of a
Transport Services system. Given the wide variety of languages and language
conventions used to write applications that use the transport layer to connect
to other applications over the Internet, this independence makes this API
necessarily abstract.</t>
      <t>There is no interoperability benefit in tightly defining how the API is
presented to application programmers across diverse platforms. However,
maintaining the "shape" of the abstract API across different platforms reduces
the effort for programmers who learn to use the Transport Services API to then
apply their knowledge to another platform. That said, implementations have
significant freedom in presenting this API to programmers, balancing the
conventions of the protocol with the shape of the API. We make the following
recommendations:</t>
      <ul spacing="normal">
        <li>
          <t>Actions, events, and errors in implementations of the Transport Services API SHOULD use
the names given for them in the document, subject to capitalization,
punctuation, and other typographic conventions in the language of the
implementation, unless the implementation itself uses different names for
substantially equivalent objects for networking by convention.</t>
        </li>
        <li>
          <t>Transport Services systems SHOULD implement each Selection Property,
Connection Property, and Message Context Property specified in this document.
These features SHOULD be implemented even when in a specific implementation it
will always result in no operation, e.g. there is no action when the API
specifies a Property that is not available in a transport protocol implemented
on a specific platform. For example, if TCP is the only underlying transport protocol,
the Message Property <tt>msgOrdered</tt> can be implemented (trivially, as a no-op) as
disabling the requirement for ordering will not have any effect on delivery order
for Connections over TCP. Similarly, the <tt>msgLifetime</tt> Message Property can be
implemented but ignored, as the description of this Property states that "it is not
guaranteed that a Message will not be sent when its Lifetime has expired".</t>
        </li>
        <li>
          <t>Implementations can use other representations for Transport Property Names,
e.g., by providing constants, but should provide a straight-forward mapping
between their representation and the property names specified here.</t>
        </li>
      </ul>
    </section>
    <section anchor="pre-establishment">
      <name>Pre-Establishment Phase</name>
      <t>The pre-establishment phase allows applications to specify properties for
the Connections that they are about to make, or to query the API about potential
Connections they could make.</t>
      <t>A Preconnection object represents a potential Connection. It is a passive object
(a data structure) that merely maintains the state that
describes the properties of a Connection that might exist in the future.  This state
comprises Local Endpoint and Remote Endpoint objects that denote the endpoints
of the potential Connection (see <xref target="endpointspec"/>), the Selection Properties
(see <xref target="selection-props"/>), any preconfigured Connection Properties
(<xref target="connection-props"/>), and the security parameters (see
<xref target="security-parameters"/>):</t>
      <artwork><![CDATA[
   Preconnection := NewPreconnection([]LocalEndpoint,
                                     []RemoteEndpoint,
                                     TransportProperties,
                                     SecurityParameters)
]]></artwork>
      <t>At least one Local Endpoint MUST be specified if the Preconnection is used to <tt>Listen</tt>
for incoming Connections, but the list of Local Endpoints MAY be empty if
the Preconnection is used to <tt>Initiate</tt>
connections. If no Local Endpoint is specified, the Transport Services system will
assign an ephemeral local port to the Connection on the appropriate interface(s).
At least one Remote Endpoint MUST be specified if the Preconnection is used
to <tt>Initiate</tt> Connections, but the list of Remote Endpoints MAY be empty if
the Preconnection is used to <tt>Listen</tt> for incoming Connections.
At least one Local Endpoint and one Remote Endpoint MUST be specified if a
peer-to-peer <tt>Rendezvous</tt> is to occur based on the Preconnection.</t>
      <t>If more than one Local Endpoint is specified on a Preconnection, then the application
 is indicating that all of the Local Endpoints are eligible to be used for Connections. For
 example, their Endpoint Identifiers might correspond to different interfaces on a multi-homed
host, or their Endpoint Identifiers might correspond to local interfaces and a STUN server that
can be resolved to a server reflexive address for a Preconnection used to
make a peer-to-peer <tt>Rendezvous</tt>.</t>
      <t>If more than one Remote Endpoint is specified on the Preconnection, the
application is indicating that it expects all of the Remote Endpoints to
offer an equivalent service, and that the Transport Services system can choose
any of them for a Connection.
For example, a Remote Endpoint might represent various network
interfaces of a host, or a server reflexive address that can be used to
reach a host, or a set of hosts that provide equivalent local balanced
service.</t>
      <t>In most cases, it is expected that a single Remote Endpoint will be
specified by name, and a later call to <tt>Initiate</tt> on the Preconnection
(see <xref target="initiate"/>) will internally resolve that name to a list of concrete
Endpoint Identifers. Specifying multiple Remote Endpoints on a Preconnection allows
applications to override this for more detailed control.</t>
      <t>If Message Framers are used (see <xref target="framing"/>), they MUST be added to the
Preconnection during pre-establishment.</t>
      <section anchor="endpointspec">
        <name>Specifying Endpoints</name>
        <t>The Transport Services API uses the Local Endpoint and Remote Endpoint objects
to refer to the endpoints of a Connection. Endpoints can be created
as either remote or local:</t>
        <artwork><![CDATA[
RemoteSpecifier := NewRemoteEndpoint()
LocalSpecifier := NewLocalEndpoint()
]]></artwork>
        <t>A single Endpoint object represents the identity of a network host. That endpoint
can be more or less specific depending on which Endpoint Identifiers are set. For example,
an Endpoint that only specifies a hostname can, in fact, finally correspond
to several different IP addresses on different hosts.</t>
        <t>An Endpoint object can be configured with the following identifiers:</t>
        <ul spacing="normal">
          <li>
            <t>HostName (string):</t>
          </li>
        </ul>
        <artwork><![CDATA[
RemoteSpecifier.WithHostName("example.com")
]]></artwork>
        <ul spacing="normal">
          <li>
            <t>Port (a 16-bit unsigned Integer):</t>
          </li>
        </ul>
        <artwork><![CDATA[
RemoteSpecifier.WithPort(443)
]]></artwork>
        <ul spacing="normal">
          <li>
            <t>Service (an identifier string that maps to a port; either a service
name associated with a port number, from https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml, or a DNS SRV service name to be resolved):</t>
          </li>
        </ul>
        <artwork><![CDATA[
RemoteSpecifier.WithService("https")
]]></artwork>
        <ul spacing="normal">
          <li>
            <t>IP address (IPv4 or IPv6 address):</t>
          </li>
        </ul>
        <artwork><![CDATA[
RemoteSpecifier.WithIPAddress(192.0.2.21)
]]></artwork>
        <artwork><![CDATA[
RemoteSpecifier.WithIPAddress(2001:db8:4920:e29d:a420:7461:7073:a)
]]></artwork>
        <ul spacing="normal">
          <li>
            <t>Interface name (string), e.g., to qualify link-local addresses (see <xref target="ifspec"/> for details):</t>
          </li>
        </ul>
        <artwork><![CDATA[
LocalSpecifier.WithInterface("en0")
]]></artwork>
        <t>The <tt>Resolve</tt> action on a Preconnection can be used to obtain a list of
available local interfaces.</t>
        <t>Note that an IPv6 address specified with a scope zone ID (e.g. <tt>fe80::2001:db8%en0</tt>)
is equivalent to <tt>WithIPAddress</tt> with an unscoped address and <tt>WithInterface </tt> together.</t>
        <t>Applications creating Endpoint objects using <tt>WithHostName</tt> SHOULD provide fully-qualified
domain names (FQDNs). Not providing an FQDN will result in the Transport Services Implementation
needing to resolve using DNS search domains, which might lead to inconsistent or unpredictable
behavior.</t>
        <t>The design of the API MUST NOT permit an Endpoint object to be configured with multiple Endpoint Identifiers of the same type.
For example, an Endpoint object cannot specify two IP addresses. Two separate IP addresses
are represented as two Endpoint objects. If a Preconnection specifies a Remote
Endpoint with a specific IP address set, it will only establish Connections to
that IP address. If, on the other hand, a Remote Endpoint specifies a hostname
but no addresses, the Transport Services Implementation can perform name resolution and attempt
using any address derived from the original hostname of the Remote Endpoint.
Note that multiple Remote Endpoints can be added to a Preconnection, as discussed
in <xref target="add-endpoints"/>.</t>
        <t>The Transport Services system resolves names internally, when the <tt>Initiate</tt>,
<tt>Listen</tt>, or <tt>Rendezvous</tt> method is called to establish a Connection. Privacy
considerations for the timing of this resolution are given in <xref target="privacy-security"/>.</t>
        <t>The <tt>Resolve</tt> action on a Preconnection can be used by the application to force
early binding when required, for example with some Network Address Translator
(NAT) traversal protocols (see <xref target="rendezvous"/>).</t>
        <section anchor="using-multicast-endpoints">
          <name>Using Multicast Endpoints</name>
          <t>To use multicast, a Preconnection is first created with the Local/Remote Endpoint Identifer
specifying the any-source multicast (ASM) or source-specific multicast (SSM) multicast group and destination port number.
This is then followed by a call to either <tt>Initiate</tt>, <tt>Listen</tt>, or
<tt>Rendezvous</tt> depending on whether the resulting Connection is to be
used to send messages to the multicast group, receive messages from
the group, or, for an any-source multicast group, to both send and
receive messages.</t>
          <t>Note that the Transport Services API has separate specifier calls for multicast groups to avoid introducing filter properties for single-source multicast and seeks to avoid confusion that can be caused by overloading the unicast specifiers.</t>
          <t>Calling <tt>Initiate</tt> on that Preconnection creates a Connection that can be
used to send Messages to the multicast group. The Connection object that is
created will support <tt>Send</tt> but not <tt>Receive</tt>. Any Connections created this
way are send-only, and do not join the multicast group. The resulting
Connection will have a Local Endpoint identifying the local interface to
which the Connection is bound and a Remote Endpoint identifying the
multicast group.</t>
          <t>The following API calls can be used to configure a Preconnection before calling <tt>Initiate</tt>:</t>
          <artwork><![CDATA[
RemoteSpecifier.WithMulticastGroupIP(GroupAddress)
RemoteSpecifier.WithPort(PortNumber)
RemoteSpecifier.WithHopLimit(HopLimit)
]]></artwork>
          <t>Calling <tt>Listen</tt> on a Preconnection with a multicast group specified on the Remote
Endpoint will join the multicast group to receive Messages. This Listener
will create one Connection for each Remote Endpoint sending to the group,
with the Local Endpoint Identifer specified as a group address. The set of Connection
objects created forms a Connection Group.
The receiving interface can be restricted by passing it as part of the LocalSpecifier or queried through the Message Context on the Messages received (see <xref target="msg-ctx"/> for further details).</t>
          <t>Specifying WithHopLimit sets the Time To Live (TTL) field in the header of IPv4 packets or the Hop Count field in the header of IPv6 packets.</t>
          <t>The following API calls can be used to configure a Preconnection before calling <tt>Listen</tt>:</t>
          <artwork><![CDATA[
LocalSpecifier.WithSingleSourceMulticastGroupIP(GroupAddress,
                                                SourceAddress)
LocalSpecifier.WithAnySourceMulticastGroupIP(GroupAddress)
LocalSpecifier.WithPort(PortNumber)
]]></artwork>
          <t>Calling <tt>Rendezvous</tt> on a Preconnection with an any-source multicast group
address as the Remote Endpoint Identifer will join the multicast group, and also
indicates that the resulting Connection can be used to send Messages to the
multicast group. The <tt>Rendezvous</tt> call will return both a Connection that
can be used to send to the group, that acts the same as a Connection
returned by calling <tt>Initiate</tt> with a multicast Remote Endpoint, and a
Listener that acts as if <tt>Listen</tt> had been called with a multicast Remote
Endpoint.
Calling <tt>Rendezvous</tt> on a Preconnection with a source-specific multicast
group address as the Local Endpoint Identifer results in an <tt>EstablishmentError</tt>.</t>
          <t>The following API calls can be used to configure a Preconnection before calling <tt>Rendezvous</tt>:</t>
          <artwork><![CDATA[
RemoteSpecifier.WithMulticastGroupIP(GroupAddress)
RemoteSpecifier.WithPort(PortNumber)
RemoteSpecifier.WithHopLimit(HopLimit)
LocalSpecifier.WithAnySourceMulticastGroupIP(GroupAddress)
LocalSpecifier.WithPort(PortNumber)
LocalSpecifier.WithHopLimit(HopLimit)
]]></artwork>
          <t>See <xref target="multicast-examples"/> for more examples.</t>
        </section>
        <section anchor="ifspec">
          <name>Constraining Interfaces for Endpoints</name>
          <t>Note that this API has multiple ways to constrain and prioritize endpoint candidates based on the network interface:</t>
          <ul spacing="normal">
            <li>
              <t>Specifying an interface on a Remote Endpoint qualifies the scope zone of the Remote Endpoint, e.g., for link-local addresses.</t>
            </li>
            <li>
              <t>Specifying an interface on a Local Endpoint explicitly binds all candidates derived from this Endpoint to use the specified interface.</t>
            </li>
            <li>
              <t>Specifying an interface using the <tt>interface</tt> Selection Property (<xref target="prop-interface"/>) or indirectly via the <tt>pvd</tt> Selection Property (<xref target="prop-pvd"/>) influences the selection among the available candidates.</t>
            </li>
          </ul>
          <t>While specifying an Interface on an Endpoint restricts the candidates available for Connection establishment in the Pre-Establishment Phase, the Selection Properties prioritize and constrain the Connection establishment.</t>
        </section>
        <section anchor="protocol-specific-endpoints">
          <name>Protocol-Specific Endpoints</name>
          <t>An Endpoint can have an alternative definition when using different protocols.
For example, a server that supports both TLS/TCP and QUIC could be accessible
on two different port numbers depending on which protocol is used.</t>
          <t>To scope an Endpoint to apply conditionally to a specific transport
protocol (such as defining an alternate port to use when QUIC
is selected, as opposed to TCP), an Endpoint can be
associated with a protocol identifier. Protocol identifiers are
objects or enumeration values provided by the Transport
Services API, which will vary based on which protocols are
implemented in a particular system.</t>
          <artwork><![CDATA[
AlternateRemoteSpecifier.WithProtocol(QUIC)
]]></artwork>
          <t>The following example shows a case where <tt>example.com</tt> has a server
running on port 443, with an alternate port of 8443 for QUIC. Both
endpoints can be passed when creating a Preconnection.</t>
          <artwork><![CDATA[
RemoteSpecifier := NewRemoteEndpoint()
RemoteSpecifier.WithHostName("example.com")
RemoteSpecifier.WithPort(443)

QUICRemoteSpecifier := NewRemoteEndpoint()
QUICRemoteSpecifier.WithHostName("example.com")
QUICRemoteSpecifier.WithPort(8443)
QUICRemoteSpecifier.WithProtocol(QUIC)

RemoteSpecifiers := [ RemoteSpecifier, QUICRemoteSpecifier ]
]]></artwork>
        </section>
        <section anchor="endpoint-examples">
          <name>Endpoint Examples</name>
          <t>The following examples of Endpoints show common usage patterns.</t>
          <t>Specify a Remote Endpoint using a hostname "example.com" and a service name "https", which tells the system to use the default port for HTTPS (443):</t>
          <artwork><![CDATA[
RemoteSpecifier := NewRemoteEndpoint()
RemoteSpecifier.WithHostName("example.com")
RemoteSpecifier.WithService("https")
]]></artwork>
          <t>Specify a Remote Endpoint using an IPv6 address and remote port:</t>
          <artwork><![CDATA[
RemoteSpecifier := NewRemoteEndpoint()
RemoteSpecifier.WithIPAddress(2001:db8:4920:e29d:a420:7461:7073:a)
RemoteSpecifier.WithPort(443)
]]></artwork>
          <t>Specify a Remote Endpoint using an IPv4 address and remote port:</t>
          <artwork><![CDATA[
RemoteSpecifier := NewRemoteEndpoint()
RemoteSpecifier.WithIPAddress(192.0.2.21)
RemoteSpecifier.WithPort(443)
]]></artwork>
          <t>Specify a Local Endpoint using a local interface name and no local port,
to let the system assign an ephemeral local port:</t>
          <artwork><![CDATA[
LocalSpecifier := NewLocalEndpoint()
LocalSpecifier.WithInterface("en0")
]]></artwork>
          <t>Specify a Local Endpoint using a local interface name and local port:</t>
          <artwork><![CDATA[
LocalSpecifier := NewLocalEndpoint()
LocalSpecifier.WithInterface("en0")
LocalSpecifier.WithPort(443)
]]></artwork>
          <t>As an alternative to specifying an interface name for the Local Endpoint, an application
can express more fine-grained preferences using the <tt>Interface Instance or Type</tt>
Selection Property, see <xref target="prop-interface"/>. However, if the application specifies Selection
Properties that are inconsistent with the Local Endpoint, this will result in an error once the
application attempts to open a Connection.</t>
          <t>Specify a Local Endpoint using a STUN server:</t>
          <artwork><![CDATA[
LocalSpecifier := NewLocalEndpoint()
LocalSpecifier.WithStunServer(address, port, credentials)
]]></artwork>
        </section>
        <section anchor="multicast-examples">
          <name>Multicast Examples</name>
          <t>The following examples show how multicast groups can be used.</t>
          <t>Join an Any-Source Multicast group in receive-only mode, bound to a known
port on a named local interface:</t>
          <artwork><![CDATA[
   RemoteSpecifier := NewRemoteEndpoint()

   LocalSpecifier := NewLocalEndpoint()
   LocalSpecifier.WithAnySourceMulticastGroupIP(233.252.0.0)
   LocalSpecifier.WithPort(5353)
   LocalSpecifier.WithInterface("en0")

   TransportProperties := ...
   SecurityParameters  := ...

   Preconnection := NewPreconnection(LocalSpecifier,
                                     RemoteSpecifier,
                                     TransportProperties,
                                     SecurityProperties)
   Listener := Preconnection.Listen()
]]></artwork>
          <t>Join a Source-Specific Multicast group in receive-only mode, bound to a known
port on a named local interface:</t>
          <artwork><![CDATA[
   RemoteSpecifier := NewRemoteEndpoint()

   LocalSpecifier := NewLocalEndpoint()

   LocalSpecifier.WithSingleSourceMulticastGroupIP(233.252.0.0,
                                                   198.51.100.10)
   LocalSpecifier.WithPort(5353)
   LocalSpecifier.WithInterface("en0")

   TransportProperties := ...
   SecurityParameters  := ...

   Preconnection := NewPreconnection(LocalSpecifier,
                                     RemoteSpecifier,
                                     TransportProperties,
                                     SecurityProperties)
   Listener := Preconnection.Listen()
]]></artwork>
          <t>Create a Source-Specific Multicast group as a sender:</t>
          <artwork><![CDATA[
   RemoteSpecifier := NewRemoteEndpoint()
   RemoteSpecifier.WithMulticastGroupIP(233.251.240.1)
   RemoteSpecifier.WithPort(5353)
   RemoteSpecifier.WithHopLimit(8)

   LocalSpecifier := NewLocalEndpoint()
   LocalSpecifier.WithIPAddress(192.0.2.22)
   LocalSpecifier.WithInterface("en0")

   TransportProperties := ...
   SecurityParameters  := ...

   Preconnection := NewPreconnection(LocalSpecifier,
                                     RemoteSpecifier,
                                     TransportProperties,
                                     SecurityProperties)
   Connection := Preconnection.Initiate()
]]></artwork>
          <t>Join an any-source multicast group as both a sender and a receiver:</t>
          <artwork><![CDATA[
   RemoteSpecifier := NewRemoteEndpoint()
   RemoteSpecifier.WithMulticastGroupIP(233.252.0.0)
   RemoteSpecifier.WithPort(5353)
   RemoteSpecifier.WithHopLimit(8)

   LocalSpecifier := NewLocalEndpoint()
   LocalSpecifier.WithAnySourceMulticastGroupIP(233.252.0.0)
   LocalSpecifier.WithIPAddress(192.0.2.22)
   LocalSpecifier.WithPort(5353)
   LocalSpecifier.WithInterface("en0")


   TransportProperties := ...
   SecurityParameters  := ...

   Preconnection := NewPreconnection(LocalSpecifier,
                                     RemoteSpecifier,
                                     TransportProperties,
                                     SecurityProperties)
   Connection, Listener := Preconnection.Rendezvous()
]]></artwork>
        </section>
      </section>
      <section anchor="selection-props">
        <name>Specifying Transport Properties</name>
        <t>A Preconnection object holds properties reflecting the application's
requirements and preferences for the transport. These include Selection
Properties for selecting Protocol Stacks and paths, as well as Connection
Properties and Message Properties for configuration of the detailed operation
of the selected Protocol Stacks on a per-Connection and Message level.</t>
        <t>The protocol(s) and path(s) selected as candidates during establishment are
determined and configured using these properties. Since there could be paths
over which some transport protocols are unable to operate, or Remote Endpoints
that support only specific network addresses or transports, transport protocol
selection is necessarily tied to path selection. This could involve choosing
between multiple local interfaces that are connected to different access
networks.</t>
        <t>When additional information (such as Provisioning Domain (PvD) information
<xref target="RFC7556"/>) is available about the networks over which an endpoint can operate,
this can inform the selection between alternate network paths.
Path information can include PMTU, set of supported DSCPs,
expected usage, cost, etc. The usage of this information by the Transport
Services System is generally independent of the specific mechanism/protocol
used to receive the information (e.g. zero-conf, DHCP, or IPv6 RA).</t>
        <t>Most Selection Properties are represented as Preferences, which can
take one of five values:</t>
        <table anchor="tab-pref-levels">
          <name>Selection Property Preference Levels</name>
          <thead>
            <tr>
              <th align="left">Preference</th>
              <th align="left">Effect</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Require</td>
              <td align="left">Select only protocols/paths providing the property, fail otherwise</td>
            </tr>
            <tr>
              <td align="left">Prefer</td>
              <td align="left">Prefer protocols/paths providing the property, proceed otherwise</td>
            </tr>
            <tr>
              <td align="left">No Preference</td>
              <td align="left">No preference</td>
            </tr>
            <tr>
              <td align="left">Avoid</td>
              <td align="left">Prefer protocols/paths not providing the property, proceed otherwise</td>
            </tr>
            <tr>
              <td align="left">Prohibit</td>
              <td align="left">Select only protocols/paths not providing the property, fail otherwise</td>
            </tr>
          </tbody>
        </table>
        <t>The implementation MUST ensure an outcome that is consistent with all application
requirements expressed using Require and Prohibit. While preferences
expressed using Prefer and Avoid influence protocol and path selection as well,
outcomes can vary given the same Selection Properties, because the available
protocols and paths can differ across systems and contexts. However,
implementations are RECOMMENDED to seek to provide a consistent outcome
to an application, when provided with the same set of Selection Properties.</t>
        <t>Note that application preferences can conflict with each other. For
example, if an application indicates a preference for a specific path by
specifying an interface, but also a preference for a protocol, a situation
might occur in which the preferred protocol is not available on the preferred
path. In such cases, applications can expect properties that determine path
selection to be prioritized over properties that determine protocol selection.
The transport system SHOULD determine the preferred path first, regardless of
protocol preferences. This ordering is chosen to provide consistency across
implementations, based on the fact that it is more common for the use of a
given network path to determine cost to the user (i.e., an interface type
preference might be based on a user's preference to avoid being charged
more for a cellular data plan).</t>
        <t>Selection and Connection Properties, as well as defaults for Message
Properties, can be added to a Preconnection to configure the selection process
and to further configure the eventually selected Protocol Stack(s). They are
collected into a TransportProperties object to be passed into a Preconnection
object:</t>
        <artwork><![CDATA[
TransportProperties := NewTransportProperties()
]]></artwork>
        <t>Individual properties are then set on the TransportProperties object.
Setting a Transport Property to a value overrides the previous value of this Transport Property.</t>
        <artwork><![CDATA[
TransportProperties.Set(property, value)
]]></artwork>
        <t>To aid readability, implementations MAY provide additional convenience functions to simplify use of Selection Properties: see <xref target="preference-conv"/> for examples.
In addition, implementations MAY provide a mechanism to create TransportProperties objects that
are preconfigured for common use cases, as outlined in <xref target="property-profiles"/>.</t>
        <t>Transport Properties for an established Connection can be queried via the Connection object, as outlined in <xref target="introspection"/>.</t>
        <t>A Connection gets its Transport Properties either by being explicitly configured
via a Preconnection, by configuration after establishment, or by inheriting them
from an antecedent via cloning; see <xref target="groups"/> for more.</t>
        <t><xref target="connection-props"/> provides a list of Connection Properties, while Selection
Properties are listed in the subsections below. Selection Properties are
only considered during establishment, and can not be changed after a Connection
is established. After a Connection is established, Selection Properties can only
be read to check the properties used by the Connection. Upon reading, the
Preference type of a Selection Property changes into Boolean, where <tt>true</tt> means
that the selected Protocol Stack supports the feature or uses the path associated
with the Selection Property, and <tt>false</tt> means that the Protocol Stack does not
support the feature or use the path. Implementations
of Transport Services systems could alternatively use the two Preference values <tt>Require</tt>
and <tt>Prohibit</tt> to represent <tt>true</tt> and <tt>false</tt>, respectively.
Other types of Selection Properties remain unchanged when they are made available for
reading after a Connection is established.</t>
        <t>An implementation of the Transport Services API needs to provide sensible defaults for Selection
Properties. The default values for each property below represent a
configuration that can be implemented over TCP. If these default values are used
and TCP is not supported by a Transport Services system, then an application using the
default set of Properties might not succeed in establishing a Connection. Using
the same default values for independent Transport Services systems can be beneficial
when applications are ported between different implementations/platforms, even if this
default could lead to a Connection failure when TCP is not available. If default
values other than those suggested below are used, it is RECOMMENDED to clearly
document any differences.</t>
        <section anchor="prop-reliable">
          <name>Reliable Data Transfer (Connection)</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>reliability</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Preference</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Require</t>
            </dd>
          </dl>
          <t>This property specifies whether the application needs to use a transport
protocol that ensures that
all data is received at the Remote Endpoint in order without loss or duplication.
When reliable data transfer is enabled, this
also entails being notified when a Connection is closed or aborted.</t>
        </section>
        <section anchor="prop-boundaries">
          <name>Preservation of Message Boundaries</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>preserveMsgBoundaries</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Preference</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>No Preference</t>
            </dd>
          </dl>
          <t>This property specifies whether the application needs or prefers to use a transport
protocol that preserves message boundaries.</t>
        </section>
        <section anchor="prop-partially-reliable">
          <name>Configure Per-Message Reliability</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>perMsgReliability</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Preference</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>No Preference</t>
            </dd>
          </dl>
          <t>This property specifies whether an application considers it useful to specify different
reliability requirements for individual Messages in a Connection.</t>
        </section>
        <section anchor="prop-ordering">
          <name>Preservation of Data Ordering</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>preserveOrder</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Preference</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Require</t>
            </dd>
          </dl>
          <t>This property specifies whether the application wishes to use a transport
protocol that can ensure that data is received by the application at the Remote Endpoint in the same order as it was sent.</t>
        </section>
        <section anchor="prop-0rtt">
          <name>Use 0-RTT Session Establishment with a Safely Replayable Message</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>zeroRttMsg</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Preference</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>No Preference</t>
            </dd>
          </dl>
          <t>This property specifies whether an application would like to supply a Message to
the transport protocol before connection establishment that will then be
reliably transferred to the Remote Endpoint before or during connection
establishment. This Message can potentially be received multiple times (i.e.,
multiple copies of the Message data could be passed to the Remote Endpoint).
See also <xref target="msg-safelyreplayable"/>.</t>
        </section>
        <section anchor="prop-multistream">
          <name>Multistream Connections in Group</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>multistreaming</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Preference</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Prefer</t>
            </dd>
          </dl>
          <t>This property specifies whether the application would prefer multiple Connections
within a Connection Group to be provided by streams of a single underlying
transport connection where possible.</t>
        </section>
        <section anchor="prop-checksum-control-send">
          <name>Full Checksum Coverage on Sending</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>fullChecksumSend</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Preference</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Require</t>
            </dd>
          </dl>
          <t>This property specifies the application's need for protection against
corruption for all data transmitted on this Connection. Disabling this property could enable
the application to influence the sender checksum coverage after Connection establishment (see <xref target="msg-checksum"/>).</t>
        </section>
        <section anchor="prop-checksum-control-receive">
          <name>Full Checksum Coverage on Receiving</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>fullChecksumRecv</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Preference</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Require</t>
            </dd>
          </dl>
          <t>This property specifies the application's need for protection against
corruption for all data received on this Connection. Disabling this property could enable
the application to influence the required minimum receiver checksum coverage after Connection establishment (see <xref target="conn-recv-checksum"/>).</t>
        </section>
        <section anchor="prop-cc">
          <name>Congestion control</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>congestionControl</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Preference</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Require</t>
            </dd>
          </dl>
          <t>This property specifies whether the application would like the Connection to be
congestion controlled or not. Note that if a Connection is not congestion
controlled, an application using such a Connection SHOULD itself perform
congestion control in accordance with <xref target="RFC2914"/> or use a circuit breaker in
accordance with <xref target="RFC8084"/>, whichever is appropriate. Also note that reliability
is usually combined with congestion control in protocol implementations,
rendering "reliable but not congestion controlled" a request that is unlikely to
succeed. If the Connection is congestion controlled, performing additional congestion control
in the application can have negative performance implications.</t>
        </section>
        <section anchor="keep-alive">
          <name>Keep alive</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>keepAlive</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Preference</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>No Preference</t>
            </dd>
          </dl>
          <t>This property specifies whether the application would like the Connection to send
keep-alive packets or not. Note that if a Connection determines that keep-alive
packets are being sent, the application SHOULD itself avoid generating additional keep-alive
messages. Note that when supported, the system will use the default period
for generation of the keep alive-packets. (See also <xref target="keep-alive-timeout"/>).</t>
        </section>
        <section anchor="prop-interface">
          <name>Interface Instance or Type</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>interface</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Set of (Preference, Enumeration)</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Empty (not setting a preference for any interface)</t>
            </dd>
          </dl>
          <t>This property allows the application to select any specific network interfaces
or categories of interfaces it wants to <tt>Require</tt>, <tt>Prohibit</tt>, <tt>Prefer</tt>, or
<tt>Avoid</tt>. Note that marking a specific interface as <tt>Require</tt> strictly limits path
selection to that single interface, and often leads to less flexible and resilient
connection establishment.</t>
          <t>In contrast to other Selection Properties, this property is a set of
tuples of (Enumerated) interface identifier and preference. It can either be
implemented directly as such, or for making one preference available for each
interface and interface type available on the system.</t>
          <t>The set of valid interface types is implementation- and system-specific. For
example, on a mobile device, there could be <tt>Wi-Fi</tt> and <tt>Cellular</tt> interface types
available; whereas on a desktop computer, <tt>Wi-Fi</tt> and <tt>Wired
Ethernet</tt> interface types might be available. An implementation should provide all types
that are supported on the local system, to allow
applications to be written generically. For example, if a single implementation
is used on both mobile devices and desktop devices, it ought to define the
<tt>Cellular</tt> interface type for both systems, since an application might wish to
always prohibit cellular.</t>
          <t>The set of interface types is expected to change over time as new access
technologies become available. The taxonomy of interface types on a given
Transport Services system is implementation-specific.</t>
          <t>Interface types SHOULD NOT be treated as a proxy for properties of interfaces
such as metered or unmetered network access. If an application needs to prohibit
metered interfaces, this should be specified via Provisioning Domain attributes
(see <xref target="prop-pvd"/>) or another specific property.</t>
          <t>Note that this property is not used to specify an interface scope zone for a particular Endpoint. <xref target="ifspec"/> provides details about how to qualify endpoint candidates on a per-interface basis.</t>
        </section>
        <section anchor="prop-pvd">
          <name>Provisioning Domain Instance or Type</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>pvd</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Set of (Preference, Enumeration)</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Empty (not setting a preference for any PvD)</t>
            </dd>
          </dl>
          <t>Similar to <tt>interface</tt> (see <xref target="prop-interface"/>), this property
allows the application to control path selection by selecting which specific
Provisioning Domain (PvD) or categories of PVDs it wants to
<tt>Require</tt>, <tt>Prohibit</tt>, <tt>Prefer</tt>, or <tt>Avoid</tt>. Provisioning Domains define
consistent sets of network properties that might be more specific than network
interfaces <xref target="RFC7556"/>.</t>
          <t>As with interface instances and types, this property is a set of tuples of (Enumerated)
PvD identifier and preference. It can either be implemented directly as such,
or for making one preference available for each interface and interface type
available on the system.</t>
          <t>The identification of a specific PvD is implementation- and system-specific.
<xref target="RFC8801"/> defines how to use an FQDN to identify a PvD when advertised by
a network, but systems might also use other locally-relevant identifiers
such as string names or Integers to identify PvDs. As with requiring specific
interfaces, requiring a specific PvD strictly limits the path selection.</t>
          <t>Categories or types of PvDs are also defined to be implementation- and
system-specific. These can be useful to identify a service that is provided by a
PvD. For example, if an application wants to use a PvD that provides a
Voice-Over-IP service on a Cellular network, it can use the relevant PvD type to
require a PvD that provides this service, without needing to look up a
particular instance. While this does restrict path selection, it is broader than
requiring specific PvD instances or interface instances, and should be preferred
over these options.</t>
        </section>
        <section anchor="use-temporary-local-address">
          <name>Use Temporary Local Address</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>useTemporaryLocalAddress</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Preference</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Avoid for Listeners and Rendezvous Connections. Prefer for other Connections.</t>
            </dd>
          </dl>
          <t>This property allows the application to express a preference for the use of
temporary local addresses, sometimes called "privacy" addresses <xref target="RFC8981"/>.
Temporary addresses are generally used to prevent linking connections over time
when a stable address, sometimes called "permanent" address, is not needed.
There are some caveats to note when specifying this property. First, if an
application Requires the use of temporary addresses, the resulting Connection
cannot use IPv4, because temporary addresses do not exist in IPv4. Second,
temporary local addresses might involve trading off privacy for performance.
For instance, temporary addresses (e.g., <xref target="RFC8981"/>) can interfere with resumption mechanisms
that some protocols rely on to reduce initial latency.</t>
        </section>
        <section anchor="multipath-mode">
          <name>Multipath Transport</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>multipath</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Enumeration</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Disabled for Connections created through initiate and rendezvous, Passive for Listeners</t>
            </dd>
          </dl>
          <t>This property specifies whether and how applications want to take advantage of
transferring data across multiple paths between the same end hosts.
Using multiple paths allows Connections to migrate between interfaces or aggregate bandwidth
as availability and performance properties change.
Possible values are:</t>
          <dl>
            <dt>Disabled:</dt>
            <dd>
              <t>The Connection will not use multiple paths once established, even if the chosen transport supports using multiple paths.</t>
            </dd>
            <dt>Active:</dt>
            <dd>
              <t>The Connection will negotiate the use of multiple paths if the chosen transport supports this.</t>
            </dd>
            <dt>Passive:</dt>
            <dd>
              <t>The Connection will support the use of multiple paths if the Remote Endpoint requests it.</t>
            </dd>
          </dl>
          <t>The policy for using multiple paths is specified using the separate <tt>multipathPolicy</tt> property, see <xref target="multipath-policy"/> below.
To enable the peer endpoint to initiate additional paths towards a local address other than the one initially used, it is necessary to set the <tt>advertisesAltaddr</tt> property (see <xref target="altaddr"/> below).</t>
          <t>Setting this property to <tt>Active</tt> can have privacy implications: It enables the transport to establish connectivity using alternate paths that might result in users being linkable across the multiple paths, even if the <tt>advertisesAltaddr</tt> property (see <xref target="altaddr"/> below) is set to <tt>false</tt>.</t>
          <t>Note that Multipath Transport has no corresponding Selection Property of type Preference.
Enumeration values other than <tt>Disabled</tt> are interpreted as a preference for choosing protocols that can make use of multiple paths.
The <tt>Disabled</tt> value implies a requirement not to use multiple paths in parallel but does not prevent choosing a protocol that is capable of using multiple paths, e.g., it does not prevent choosing TCP, but prevents sending the <tt>MP_CAPABLE</tt> option in the TCP handshake.</t>
        </section>
        <section anchor="altaddr">
          <name>Advertisement of Alternative Addresses</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>advertisesAltaddr</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Boolean</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t><tt>false</tt></t>
            </dd>
          </dl>
          <t>This property specifies whether alternative addresses, e.g., of other interfaces, ought to be advertised to the
peer endpoint by the Protocol Stack. Advertising these addresses enables the peer endpoint to establish additional connectivity, e.g., for Connection migration or using multiple paths.</t>
          <t>Note that this can have privacy implications because it might result in users being linkable across the multiple paths.
Also, note that setting this to <tt>false</tt> does not prevent the local Transport Services system from <em>establishing</em> connectivity using alternate paths (see <xref target="multipath-mode"/> above); it only prevents <em>proactive advertisement</em> of addresses.</t>
        </section>
        <section anchor="direction-of-communication">
          <name>Direction of communication</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>direction</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Enumeration</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Bidirectional</t>
            </dd>
          </dl>
          <t>This property specifies whether an application wants to use the Connection for sending and/or receiving data.  Possible values are:</t>
          <dl>
            <dt>Bidirectional:</dt>
            <dd>
              <t>The Connection must support sending and receiving data</t>
            </dd>
            <dt>Unidirectional send:</dt>
            <dd>
              <t>The Connection must support sending data, and the application cannot use the Connection to receive any data</t>
            </dd>
            <dt>Unidirectional receive:</dt>
            <dd>
              <t>The Connection must support receiving data, and the application cannot use the Connection to send any data</t>
            </dd>
          </dl>
          <t>Since unidirectional communication can be
supported by transports offering bidirectional communication, specifying
unidirectional communication might cause a transport stack that supports
bidirectional communication to be selected.</t>
        </section>
        <section anchor="prop-soft-error">
          <name>Notification of ICMP soft error message arrival</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>softErrorNotify</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Preference</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>No Preference</t>
            </dd>
          </dl>
          <t>This property specifies whether an application considers it useful to be
informed when an ICMP error message arrives that does not force termination of a
connection. When set to <tt>true</tt>, received ICMP errors are available as
<tt>SoftError</tt> events, see <xref target="soft-errors"/>. Note that even if a protocol supporting this property is selected,
not all ICMP errors will necessarily be delivered, so applications cannot rely
upon receiving them <xref target="RFC8085"/>.</t>
        </section>
        <section anchor="active-read-before-send">
          <name>Initiating side is not the first to write</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>activeReadBeforeSend</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Preference</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>No Preference</t>
            </dd>
          </dl>
          <t>The most common client-server communication pattern involves the
client actively opening a Connection, then sending data to the server. The
server listens (passive open), reads, and then answers. This property
specifies whether an application wants to diverge from this pattern -- either
by actively opening with <tt>Initiate</tt>, immediately followed by reading, or passively opening with <tt>Listen</tt>,
immediately followed by writing. This property is ignored when establishing
connections using <tt>Rendezvous</tt>.
Requiring this property limits the choice of mappings to underlying protocols,
which can reduce
efficiency. For example, it prevents the Transport Services system from mapping
Connections to SCTP streams, where
the first transmitted data takes the role of an active open signal.</t>
        </section>
      </section>
      <section anchor="security-parameters">
        <name>Specifying Security Parameters and Callbacks</name>
        <t>Most security parameters, e.g., TLS ciphersuites, local identity and private key, etc.,
can be configured statically. Others are dynamically configured during Connection establishment.
Security parameters and callbacks are partitioned based on their place in the lifetime
of Connection establishment. Similar to Transport Properties, both parameters and callbacks
are inherited during cloning (see <xref target="groups"/>).</t>
        <t>This document specifies an abstract API, which could appear to conflict with the need
for security parameters to be unambiguous. The Transport Services System SHOULD provide reasonable,
secure defaults for each enumerated security parameter, such that users of the system
only need to specify parameters required to establish a secure connection
(e.g., 'server-certificate', 'client-certificate'). Specifying specific security parameters
from enumerated values (e.g., specific ciphersuites) might constrain the Transport
Protocols that can be selected during connection establishment.</t>
        <t>Except as noted below, as with the rest of the Transport Services API, exact names of parameters and/or
values of enumerations (e.g., ciphersuites) used in the security parameters are system
and implementation specific, and ought to be chosen to follow the principle of least
surprise for users of the platform / language environment in question.</t>
        <section anchor="specifying-security-parameters-on-a-preconnection">
          <name>Specifying Security Parameters on a Preconnection</name>
          <t>Common security parameters such as TLS ciphersuites are known to implementations.
Applications SHOULD use common safe defaults for these values whenever possible.
However, as discussed in <xref target="RFC8922"/>, many transport security protocols require specific
security parameters and constraints from the client at the time of configuration and
actively during a handshake.</t>
          <t>The configuration parameters need to be specified in the pre-connection phase
and are created as follows:</t>
          <artwork><![CDATA[
SecurityParameters := NewSecurityParameters()
]]></artwork>
          <t>Security configuration parameters and sample usage follow:</t>
          <ul spacing="normal">
            <li>
              <t>One or more certificate bundles identifying the Local Endpoint, whether
as a server certificate or a client certificate. Multiple bundles may
be provided to allow selection among different protocol stacks that may
require differently formatted bundles. The form and format of the
certificate bundle is implementation-specific. Note that if the private
keys associated with a bundle are not available, e.g., since they are stored in hardware
security modules (HSMs), handshake callbacks are necessary. See below for details.</t>
            </li>
          </ul>
          <artwork><![CDATA[
SecurityParameters.Set(server-certificate, myCertificateBundle[])
SecurityParameters.Set(client-certificate, myCertificateBundle[])
]]></artwork>
          <ul spacing="normal">
            <li>
              <t>One or more certificate chains to use as pinned server
certificates, such that connecting will fail if the presented server
certificate does not match one of the  supplied pinned certificates.
The form and format of the certificate chain is implementation-specific.</t>
            </li>
          </ul>
          <artwork><![CDATA[
SecurityParameters.Set(pinned-server-certificate, yourCertificateChain[])
]]></artwork>
          <ul spacing="normal">
            <li>
              <t>Application-layer protocol negotiation (ALPN) values: used to indicate which
application-layer protocols are negotiated by the security protocol layer.
See <xref target="ALPN"/> for definition of the ALPN field. Note that the Transport
Services System can provide ALPN values automatically, based on
the protocols being used, if not explicitly specified by the application.</t>
            </li>
          </ul>
          <artwork><![CDATA[
SecurityParameters.Set(alpn, "h2")
]]></artwork>
          <ul spacing="normal">
            <li>
              <t>Supported groups, ciphersuites, algorithms: Used to restrict what parameters
are used by underlying transport security protocols. When not specified,
these algorithms should use known and safe defaults for the system.</t>
            </li>
          </ul>
          <artwork><![CDATA[
SecurityParameters.Set(supported-group, "secp256r1")
SecurityParameters.Set(ciphersuite, "TLS_AES_128_GCM_SHA256")
SecurityParameters.Set(signature-algorithm, "ecdsa_secp256r1_sha256")
]]></artwork>
          <ul spacing="normal">
            <li>
              <t>Session cache management: Used to tune session cache capacity, lifetime, and
other policies.</t>
            </li>
          </ul>
          <artwork><![CDATA[
SecurityParameters.Set(max-cached-sessions, 16)

SecurityParameters.Set(cached-session-lifetime-seconds, 3600)
]]></artwork>
          <ul spacing="normal">
            <li>
              <t>Pre-Shared Key import: Used to install pre-shared keying material established
out-of-band. Each instance of pre-shared keying material is associated with some identity
that typically identifies its use or has some protocol-specific meaning to the
Remote Endpoint. Note that use of a pre-shared key will tend to select a single
security protocol, and therefore directly select a single underlying protocol stack.</t>
            </li>
          </ul>
          <artwork><![CDATA[
SecurityParameters.Set(pre-shared-key, key, myIdentity)
]]></artwork>
          <t>Connections that use Transport Services SHOULD use security in general. However, for
compatibility with endpoints that do not support transport security protocols (such
as a TCP endpoint that does not support TLS), applications can initialize their
security parameters to indicate that security can be disabled, or can be opportunistic.
If security is disabled, the Transport Services system will not attempt to add
transport security automatically. If security is opportunistic, it will allow
Connections without transport security, but will still attempt to use unauthenticated
security if available.</t>
          <artwork><![CDATA[
SecurityParameters := NewDisabledSecurityParameters()

SecurityParameters := NewOpportunisticSecurityParameters()
]]></artwork>
          <t>Representation of security parameters in implementations ought to parallel
that chosen for Transport Property names as suggested in <xref target="scope-of-interface-defn"/>.</t>
        </section>
        <section anchor="connection-establishment-callbacks">
          <name>Connection Establishment Callbacks</name>
          <t>Security decisions, especially pertaining to trust, are not static. Once configured,
parameters can also be supplied during Connection establishment. These are best
handled as client-provided callbacks.
Callbacks block the progress of the Connection establishment, which distinguishes them from other events in the transport system. How callbacks and events are implemented is specific to each implementation.
Security handshake callbacks that could be invoked during Connection establishment include:</t>
          <ul spacing="normal">
            <li>
              <t>Trust verification callback: Invoked when a Remote Endpoint's trust must be verified before the
handshake protocol can continue. For example, the application could verify an X.509 certificate
as described in <xref target="RFC5280"/>.</t>
            </li>
          </ul>
          <artwork><![CDATA[
TrustCallback := NewCallback({
  // Handle trust, return the result
})
SecurityParameters.SetTrustVerificationCallback(TrustCallback)
]]></artwork>
          <ul spacing="normal">
            <li>
              <t>Identity challenge callback: Invoked when a private key operation is required, e.g., when
local authentication is requested by a Remote Endpoint.</t>
            </li>
          </ul>
          <artwork><![CDATA[
ChallengeCallback := NewCallback({
  // Handle challenge
})
SecurityParameters.SetIdentityChallengeCallback(ChallengeCallback)
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="establishment">
      <name>Establishing Connections</name>
      <t>Before a Connection can be used for data transfer, it needs to be established.
Establishment ends the pre-establishment phase; all transport properties and
cryptographic parameter specification must be complete before establishment,
as these will be used to select candidate Paths and Protocol Stacks
for the Connection. Establishment can be active, using the <tt>Initiate</tt> action;
passive, using the <tt>Listen</tt> action; or simultaneous for peer-to-peer, using
the <tt>Rendezvous</tt> action. These actions are described in the subsections below.</t>
      <section anchor="initiate">
        <name>Active Open: Initiate</name>
        <t>Active open is the action of establishing a Connection to a Remote Endpoint presumed
to be listening for incoming Connection requests. Active open is used by clients in
client-server interactions. Active open is supported by the Transport Services API through the
<tt>Initiate</tt> action:</t>
        <artwork><![CDATA[
Connection := Preconnection.Initiate(timeout?)
]]></artwork>
        <t>The timeout parameter specifies how long to wait before aborting Active open.
Before calling <tt>Initiate</tt>, the caller must have populated a Preconnection
object with a Remote Endpoint object to identify the endpoint, optionally a Local Endpoint
object (if not specified, the system will attempt to determine a
suitable Local Endpoint), as well as all properties
necessary for candidate selection.</t>
        <t>The <tt>Initiate</tt> action returns a Connection object. Once <tt>Initiate</tt> has been
called, any changes to the Preconnection MUST NOT have any effect on the
Connection. However, the Preconnection can be reused, e.g., to <tt>Initiate</tt>
another Connection.</t>
        <t>Once <tt>Initiate</tt> is called, the candidate Protocol Stack(s) can cause one or more
candidate transport-layer connections to be created to the specified Remote
Endpoint. The caller could immediately begin sending Messages on the Connection
(see <xref target="sending"/>) after calling <tt>Initiate</tt>; note that any data marked as "safely replayable" that is sent
while the Connection is being established could be sent multiple times or on
multiple candidates.</t>
        <t>The following events can be sent by the Connection after <tt>Initiate</tt> is called:</t>
        <artwork><![CDATA[
Connection -> Ready<>
]]></artwork>
        <t>The <tt>Ready</tt> event occurs after <tt>Initiate</tt> has established a transport-layer
connection on at least one usable candidate Protocol Stack over at least one
candidate Path. No <tt>Receive</tt> events (see <xref target="receiving"/>) will occur before
the <tt>Ready</tt> event for Connections established using <tt>Initiate</tt>.</t>
        <artwork><![CDATA[
Connection -> EstablishmentError<reason?>
]]></artwork>
        <t>An <tt>EstablishmentError</tt> occurs either when the set of transport properties and security
parameters cannot be fulfilled on a Connection for initiation (e.g., the set of
available Paths and/or Protocol Stacks meeting the constraints is empty) or
reconciled with the Local and/or Remote Endpoints; when a remote Endpoint Identifier
cannot be resolved; or when no transport-layer connection can be established to
the Remote Endpoint (e.g., because the Remote Endpoint is not accepting
connections, the application is prohibited from opening a Connection by the
operating system, or the establishment attempt has timed out for any other reason).</t>
        <t>Connection establishment
and transmission of the first Message can be combined in a single action (<xref target="initiate-and-send"/>).</t>
      </section>
      <section anchor="listen">
        <name>Passive Open: Listen</name>
        <t>Passive open is the action of waiting for Connections from Remote Endpoints,
commonly used by servers in client-server interactions. Passive open is
supported by the Transport Services API through the <tt>Listen</tt> action and returns a Listener object:</t>
        <artwork><![CDATA[
Listener := Preconnection.Listen()
]]></artwork>
        <t>Before calling <tt>Listen</tt>, the caller must have initialized the Preconnection
during the pre-establishment phase with a Local Endpoint object, as well
as all properties necessary for Protocol Stack selection. A Remote Endpoint
can optionally be specified, to constrain what Connections are accepted.</t>
        <t>The <tt>Listen</tt> action returns a Listener object. Once <tt>Listen</tt> has been called,
any changes to the Preconnection MUST NOT have any effect on the Listener. The
Preconnection can be disposed of or reused, e.g., to create another Listener.</t>
        <artwork><![CDATA[
Listener.Stop()
]]></artwork>
        <t>Listening continues until the global context shuts down, or until the Stop
action is performed on the Listener object.</t>
        <artwork><![CDATA[
Listener -> ConnectionReceived<Connection>
]]></artwork>
        <t>The <tt>ConnectionReceived</tt> event occurs when a Remote Endpoint has established or cloned (e.g., by creating a new stream in a multi-stream transport; see <xref target="groups"/>) a
transport-layer connection to this Listener (for Connection-oriented
transport protocols), or when the first Message has been received from the
Remote Endpoint (for Connectionless protocols or streams of a multi-streaming transport), causing a new Connection to be
created. The resulting Connection is contained within the <tt>ConnectionReceived</tt>
event, and is ready to use as soon as it is passed to the application via the
event.</t>
        <artwork><![CDATA[
Listener.SetNewConnectionLimit(value)
]]></artwork>
        <t>If the caller wants to rate-limit the number of inbound Connections that will be delivered,
it can set a cap using <tt>SetNewConnectionLimit</tt>. This mechanism allows a server to
protect itself from being drained of resources. Each time a new Connection is delivered
by the <tt>ConnectionReceived</tt> event, the value is automatically decremented. Once the
value reaches zero, no further Connections will be delivered until the caller sets the
limit to a higher value. By default, this value is Infinite. The caller is also able to reset
the value to Infinite at any point.</t>
        <artwork><![CDATA[
Listener -> EstablishmentError<reason?>
]]></artwork>
        <t>An <tt>EstablishmentError</tt> occurs either when the Properties and security parameters of the Preconnection cannot be fulfilled for listening or cannot be reconciled with the Local Endpoint (and/or Remote Endpoint, if specified), when the Local Endpoint (or Remote Endpoint, if specified) cannot
be resolved, or when the application is prohibited from listening by policy.</t>
        <artwork><![CDATA[
Listener -> Stopped<>
]]></artwork>
        <t>A <tt>Stopped</tt> event occurs after the Listener has stopped listening.</t>
      </section>
      <section anchor="rendezvous">
        <name>Peer-to-Peer Establishment: Rendezvous</name>
        <t>Simultaneous peer-to-peer Connection establishment is supported by the
<tt>Rendezvous</tt> action:</t>
        <artwork><![CDATA[
Preconnection.Rendezvous()
]]></artwork>
        <t>A Preconnection object used in a <tt>Rendezvous</tt> MUST have both the
Local Endpoint candidates and the Remote Endpoint candidates specified,
along with the Transport Properties and security parameters needed for
Protocol Stack selection, before the <tt>Rendezvous</tt> action is initiated.</t>
        <t>The <tt>Rendezvous</tt> action listens on the Local Endpoint
candidates for an incoming Connection from the Remote Endpoint candidates,
while also simultaneously trying to establish a Connection from the Local
Endpoint candidates to the Remote Endpoint candidates.</t>
        <t>If there are multiple Local Endpoints or Remote Endpoints configured, then
initiating a <tt>Rendezvous</tt> action will cause the Transport Services
Implementation to systematically probe the reachability
of those endpoint candidates following an approach such as that used in
Interactive Connectivity Establishment (ICE) <xref target="RFC8445"/>.</t>
        <t>If the endpoints are suspected to be behind a NAT, and the Local Endpoint
supports a method of discovering NAT bindings, such as Session Traversal
Utilities for NAT (STUN) <xref target="RFC8489"/> or Traversal Using Relays around NAT
(TURN) <xref target="RFC8656"/>, then the <tt>Resolve</tt> action on the Preconnection can be
used to discover such bindings:</t>
        <artwork><![CDATA[
[]LocalEndpoint, []RemoteEndpoint := Preconnection.Resolve()
]]></artwork>
        <t>The <tt>Resolve</tt> call returns lists of Local Endpoints and Remote Endpoints
that represent the concrete addresses, local and server reflexive, on which
a <tt>Rendezvous</tt> for the Preconnection will listen for incoming Connections,
and to which it will attempt to establish Connections.</t>
        <t>Note that the set of Local Endpoints returned by <tt>Resolve</tt> might or might not
contain information about all possible local interfaces depending on how the
Preconnection is configured. The set of available local interfaces can also
change over time so care needs to be taken when using stored interface names.</t>
        <t>An application that uses <tt>Rendezvous</tt> to establish a peer-to-peer Connection
in the presence of NATs will configure the Preconnection object with at least
one Local Endpoint that supports NAT binding discovery. It will then <tt>Resolve</tt>
the Preconnection, and pass the resulting list of Local Endpoint candidates to
the peer via a signalling protocol, for example as part of an ICE <xref target="RFC8445"/>
exchange within SIP <xref target="RFC3261"/> or WebRTC <xref target="RFC7478"/>.  The peer will then,
via the same signalling channel, return the Remote Endpoint candidates.
The set of Remote Endpoint candidates are then configured onto the Preconnection:</t>
        <artwork><![CDATA[
Preconnection.AddRemote([]RemoteEndpoint)
]]></artwork>
        <t>The <tt>Rendezvous</tt> action is initiated, and causes the Transport Services
Implementation to begin connectivity checks, once the application has
added both the Local Endpoint candidates and the Remote Endpoint candidates
retrieved from the peer via the signalling channel to the Preconnection.</t>
        <t>If successful, the <tt>Rendezvous</tt> action returns a Connection object via a
<tt>RendezvousDone&lt;&gt;</tt> event:</t>
        <artwork><![CDATA[
Preconnection -> RendezvousDone<Connection>
]]></artwork>
        <t>The <tt>RendezvousDone&lt;&gt;</tt> event occurs when a Connection is established with the
Remote Endpoint. For Connection-oriented transports, this occurs when the
transport-layer connection is established; for Connectionless transports,
it occurs when the first Message is received from the Remote Endpoint. The
resulting Connection is contained within the <tt>RendezvousDone&lt;&gt;</tt> event, and is
ready to use as soon as it is passed to the application via the event.
Changes made to a Preconnection after <tt>Rendezvous</tt> has been called MUST
NOT have any effect on existing Connections.</t>
        <t>An <tt>EstablishmentError</tt> occurs either when the Properties and Security
Parameters of the Preconnection cannot be fulfilled for rendezvous or
cannot be reconciled with the Local and/or Remote Endpoints, when the Local
Endpoint or Remote Endpoint cannot be resolved, when no transport-layer
connection can be established to the Remote Endpoint, or when the
application is prohibited from rendezvous by policy:</t>
        <artwork><![CDATA[
Preconnection -> EstablishmentError<reason?>
]]></artwork>
      </section>
      <section anchor="groups">
        <name>Connection Groups</name>
        <t>Connection Groups can be created using the <tt>Clone</tt> action:</t>
        <artwork><![CDATA[
Connection := Connection.Clone(framer?, connectionProperties?)
]]></artwork>
        <t>Calling <tt>Clone</tt> on a Connection yields a Connection Group containing two Connections: the parent
Connection on which <tt>Clone</tt> was called, and a resulting cloned Connection.
The new Connection is actively opened, and it will locally send a <tt>Ready</tt> event or an <tt>EstablishmentError</tt> event.
Calling <tt>Clone</tt> on any of these Connections adds another Connection to
the Connection Group. Connections in a Connection Group share all
Connection Properties except <tt>connPriority</tt> (see <xref target="conn-priority"/>),
and these Connection Properties are entangled: Changing one of the
Connection Properties on one Connection in the Connection Group
automatically changes the Connection Property for all others. For example, changing
<tt>connTimeout</tt> (see
<xref target="conn-timeout"/>) on one Connection in a Connection Group will automatically
make the same change to this Connection Property for all other Connections in the Connection Group.
Like all other Properties, <tt>connPriority</tt> is copied
to the new Connection when calling <tt>Clone</tt>, but in this case, a later change to the
<tt>connPriority</tt> on one Connection does not change it on the
other Connections in the same Connection Group.</t>
        <t>The optional <tt>connectionProperties</tt> parameter allows passing
Transport Properties that control the behavior of the underlying stream or connection to be created, e.g., Protocol-specific Properties to request specific stream IDs for SCTP or QUIC.</t>
        <t>Message Properties set on a Connection also apply only to that Connection.</t>
        <t>A new Connection created by <tt>Clone</tt> can have a Message Framer assigned via the optional
<tt>framer</tt> parameter of the <tt>Clone</tt> action. If this parameter is not supplied, the
stack of Message Framers associated with a Connection is copied to
the cloned Connection when calling <tt>Clone</tt>. Then, a cloned Connection
has the same stack of Message Framers as the Connection from which they
are cloned, but these Framers can internally maintain per-Connection state.</t>
        <t>It is also possible to check which Connections belong to the same Connection Group.
Calling <tt>GroupedConnections</tt> on a specific Connection returns a set of all Connections
in the same group.</t>
        <artwork><![CDATA[
[]Connection := Connection.GroupedConnections()
]]></artwork>
        <t>Connections will belong to the same group if the application previously called <tt>Clone</tt>.
Passive Connections can also be added to the same group -- e.g., when a Listener
receives a new Connection that is just a new stream of an already active multi-streaming
protocol instance.</t>
        <t>If the underlying protocol supports multi-streaming, it is natural to use this
functionality to implement <tt>Clone</tt>. In that case, Connections in a Connection Group are
multiplexed together, giving them similar treatment not only inside Endpoints,
but also across the end-to-end Internet path.</t>
        <t>Note that calling <tt>Clone</tt> can result in on-the-wire signaling, e.g., to open a new
transport connection, depending on the underlying Protocol Stack. When <tt>Clone</tt> leads to
the opening of multiple such connections,
the Transport Services system will ensure consistency of
Connection Properties by uniformly applying them to all underlying connections
in a group. Even in such a case, there are possibilities for a Transport Services system
to implement prioritization within a Connection Group <xref target="TCP-COUPLING"/> <xref target="RFC8699"/>.</t>
        <t>Attempts to clone a Connection can result in a <tt>CloneError</tt>:</t>
        <artwork><![CDATA[
Connection -> CloneError<reason?>
]]></artwork>
        <t>A <tt>CloneError</tt> can also occur later, after <tt>Clone</tt> was successfully called. In this case,
it informs the application that the Connection that sends the <tt>CloneError</tt> is no longer a
part of any Connection Group. For example, this can occur when the Transport Services
system is unable to implement entanglement (a Connection Property was changed on a different
Connection in the Connection Group, but this change could not be successfully applied
to the Connection that sends the <tt>CloneError</tt>).</t>
        <t>The <tt>connPriority</tt> Connection Property operates on Connections in a Connection Group
using the same approach as in <xref target="msg-priority"/>: when allocating available network
capacity among Connections in a Connection Group, sends on Connections with
numerically lower Priority values will be prioritized over sends on Connections that have
numerically higher Priority values. Capacity will be shared among these Connections according to
the <tt>connScheduler</tt> property (<xref target="conn-scheduler"/>).
See <xref target="priority-in-taps"/> for more.</t>
      </section>
      <section anchor="add-endpoints">
        <name>Adding and Removing Endpoints on a Connection</name>
        <t>Transport protocols that are explicitly multipath aware are expected to automatically
manage the set of Remote Endpoints that they are communicating with, and the paths to
those endpoints. A <tt>PathChange&lt;&gt;</tt> event, described in <xref target="conn-path-change"/>, will be
generated when the path changes.</t>
        <t>In some cases, however, it is necessary to explicitly indicate to a Connection that
a new Remote Endpoint has become available for use, or to indicate that a Remote
Endpoint is no longer available. This is most common in the case of peer to peer
connections using Trickle ICE <xref target="RFC8838"/>.</t>
        <t>The <tt>AddRemote</tt> action can be used to add one or more new Remote Endpoints
to a Connection:</t>
        <artwork><![CDATA[
Connection.AddRemote([]RemoteEndpoint)
]]></artwork>
        <t>Endpoints that are already known to the Connection are ignored. A call to
<tt>AddRemote</tt> makes the new Remote Endpoints available to the Connection,
but whether the Connection makes use of those Endpoints will depend on the
underlying transport protocol.</t>
        <t>Similarly, the <tt>RemoveRemote</tt> action can be used to tell a Connection to
stop using one or more Remote Endpoints:</t>
        <artwork><![CDATA[
Connection.RemoveRemote([]RemoteEndpoint)
]]></artwork>
        <t>Removing all known Remote Endpoints can have the effect of aborting the
connection. The effect of removing the active Remote Endpoint(s) depends
on the underlying transport: multipath aware transports might be able to
switch to a new path if other reachable Remote Endpoints exist, or the
connection might abort.</t>
        <t>Similarly, the <tt>AddLocal</tt> and <tt>RemoveLocal</tt> actions can be used to add
and remove Local Endpoints to/from a Connection.</t>
      </section>
    </section>
    <section anchor="introspection">
      <name>Managing Connections</name>
      <t>During pre-establishment and after establishment, (Pre-)Connections can be configured and queried using Connection
Properties, and asynchronous information could be available about the state of the
Connection via <tt>SoftError</tt> events.</t>
      <t>Connection Properties represent the configuration and state of the selected
Protocol Stack(s) backing a Connection. These Connection Properties can be
generic, applying regardless of transport protocol, or specific, applicable to a
single implementation of a single transport Protocol Stack. Generic Connection
Properties are defined in <xref target="connection-props"/> below.</t>
      <t>Protocol-specific Properties are defined in a transport- and
implementation-specific way to
permit more specialized protocol features to be used.
Too much reliance by an application on Protocol-specific Properties can significantly reduce the flexibility
of a transport services system to make appropriate
selection and configuration choices. Therefore, it is RECOMMENDED that
Generic Connection Properties are used for properties common across different protocols and that
Protocol-specific Connection Properties are only used where specific protocols or properties are necessary.</t>
      <t>The application can set and query Connection Properties on a per-Connection
basis. Connection Properties that are not read-only can be set during
pre-establishment (see <xref target="selection-props"/>), as well as on Connections directly using
the <tt>SetProperty</tt> action:</t>
      <artwork><![CDATA[
ErrorCode := Connection.SetProperty(property, value)
]]></artwork>
      <t>If an error is encountered in setting a property (for example, if the application tries to set a TCP-specific property on a Connection that is not using TCP), the application MUST be informed about this error via the <tt>ErrorCode</tt> Object. Such errors MUST NOT cause the Connection to be terminated.
Note that changing one of the Connection Properties on one Connection in a Connection Group
will also change it for all other Connections of that group; see further <xref target="groups"/>.</t>
      <t>At any point, the application can query Connection Properties.</t>
      <artwork><![CDATA[
ConnectionProperties := Connection.GetProperties()
value := ConnectionProperties.Get(property)
if ConnectionProperties.Has(boolean_or_preference_property) then ...
]]></artwork>
      <t>Depending on the status of the Connection, the queried Connection
Properties will include different information:</t>
      <ul spacing="normal">
        <li>
          <t>The Connection state, which can be one of the following:
Establishing, Established, Closing, or Closed (see <xref target="conn-state"/>).</t>
        </li>
        <li>
          <t>Whether the Connection can be used to send data (see <xref target="conn-send-data"/>).
A Connection can not be used
for sending if the Connection was created with the Selection Property
<tt>direction</tt> set to <tt>unidirectional receive</tt> or if a Message
marked as <tt>Final</tt> was sent over this Connection. See also <xref target="msg-final"/>.</t>
        </li>
        <li>
          <t>Whether the Connection can be used to receive data (see <xref target="conn-receive-data"/>).
A Connection cannot be
used for receiving if the Connection was created with the Selection Property
<tt>direction</tt> set to <tt>unidirectional send</tt> or if a Message
marked as <tt>Final</tt> was received. See <xref target="receiving-final-messages"/>. The latter
is only supported by certain transport protocols, e.g., by TCP as half-closed
connection.</t>
        </li>
        <li>
          <t>For Connections that are Established, Closing, or Closed:
Connection Properties (<xref target="connection-props"/>) of the
actual protocols that were selected and instantiated, and Selection
Properties that the application specified on the Preconnection.
Selection Properties of type <tt>Preference</tt> will be exposed as boolean values
indicating whether or not the property applies to the selected transport.
Note that the instantiated Protocol Stack might not match all
Protocol Selection Properties that the application specified on the
Preconnection.</t>
        </li>
        <li>
          <t>For Connections that are Established: Transport Services system implementations
ought to provide information concerning the
path(s) used by the Protocol Stack. This can be derived from local PVD information,
measurements by the Protocol Stack, or other sources.
For example, a Transport System that is configured to receive and process PVD information
<xref target="RFC7556"/> could also provide network configuration information for the chosen path(s).</t>
        </li>
      </ul>
      <section anchor="connection-props">
        <name>Generic Connection Properties</name>
        <t>Generic Connection Properties are defined independent of the chosen Protocol Stack
and therefore available on all Connections.</t>
        <t>Many Connection Properties have a corresponding Selection Property that
enables applications to express their preference for protocols providing a supporting transport feature.</t>
        <section anchor="conn-recv-checksum">
          <name>Required Minimum Corruption Protection Coverage for Receiving</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>recvChecksumLen</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Integer (non-negative) or <tt>Full Coverage</tt></t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t><tt>Full Coverage</tt></t>
            </dd>
          </dl>
          <t>If this property is an Integer, it specifies the minimum number of bytes in a received
Message that need to be covered by a checksum.
A receiving endpoint will not forward Messages that have less coverage
to the application. The application is responsible for handling
any corruption within the non-protected part of the Message <xref target="RFC8085"/>.
A special value of 0 means that a received packet might also have a zero checksum field,
and the enumerated value <tt>Full Coverage</tt> means
that the entire Message needs to be protected by a checksum. An implementation
is supposed to express <tt>Full Coverage</tt> in an environment-typical way, e.g., as a Union type or special value.</t>
        </section>
        <section anchor="conn-priority">
          <name>Connection Priority</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>connPriority</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Integer (non-negative)</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>100</t>
            </dd>
          </dl>
          <t>This property is a non-negative Integer representing the
priority of this Connection
relative to other Connections in the same
Connection Group. A numerically lower value reflects a higher priority. It has no effect
on Connections not part of a Connection
Group. As noted in <xref target="groups"/>, this property is not entangled when Connections
are cloned, i.e., changing the Priority on one Connection in a Connection Group
does not change it on the other Connections in the same Connection Group.
No guarantees of a specific behavior regarding Connection Priority are given;
a Transport Services system could ignore this property. See <xref target="priority-in-taps"/> for more details.</t>
        </section>
        <section anchor="conn-timeout">
          <name>Timeout for Aborting Connection</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>connTimeout</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Numeric (positive) or <tt>Disabled</tt></t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t><tt>Disabled</tt></t>
            </dd>
          </dl>
          <t>If this property is Numeric, it specifies how long to wait before deciding that an active Connection has
failed when trying to reliably deliver data to the Remote Endpoint. Adjusting this property
will only take effect when the underlying stack supports reliability. If this property has the enumerated
value <tt>Disabled</tt>, it means that no timeout is scheduled. A Transport Services API
could express <tt>Disabled</tt> in an environment-typical way, e.g., as a Union type or special value.</t>
        </section>
        <section anchor="keep-alive-timeout">
          <name>Timeout for keep alive packets</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>keepAliveTimeout</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Numeric (positive) or <tt>Disabled</tt></t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t><tt>Disabled</tt></t>
            </dd>
          </dl>
          <t>A Transport Services API can request a protocol that supports sending keep alive packets (<xref target="keep-alive"/>).
If this property is Numeric, it specifies the maximum length of time an idle Connection (one for which no transport
packets have been sent) ought to wait before
the Local Endpoint sends a keep-alive packet to the Remote Endpoint. Adjusting this property
will only take effect when the underlying stack supports sending keep-alive packets.
Guidance on setting this value for connection-less transports is
provided in <xref target="RFC8085"/>.
A value greater than the Connection timeout (<xref target="conn-timeout"/>) or the enumerated value <tt>Disabled</tt> will disable the sending of keep-alive packets. A Transport Services API
could express <tt>Disabled</tt> in an environment-typical way, e.g., as a Union type or special value.</t>
        </section>
        <section anchor="conn-scheduler">
          <name>Connection Group Transmission Scheduler</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>connScheduler</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Enumeration</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Weighted Fair Queueing (see <xref section="3.6" sectionFormat="of" target="RFC8260"/>)</t>
            </dd>
          </dl>
          <t>This property specifies which scheduler is used among Connections within
a Connection Group to apportion the available capacity according to Connection priorities
(see <xref target="groups"/> and <xref target="conn-priority"/>). A set of schedulers is
described in <xref target="RFC8260"/>.</t>
        </section>
        <section anchor="prop-cap-profile">
          <name>Capacity Profile</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>connCapacityProfile</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Enumeration</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Default Profile (Best Effort)</t>
            </dd>
          </dl>
          <t>This property specifies the desired network treatment for traffic sent by the
application and the tradeoffs the application is prepared to make in path and
protocol selection to receive that desired treatment. When the capacity profile
is set to a value other than Default, the Transport Services system SHOULD select paths
and configure protocols to optimize the tradeoff between delay, delay variation, and
efficient use of the available capacity based on the capacity profile specified. How this is realized
is implementation-specific. The capacity profile MAY also be used
to set markings on the wire for Protocol Stacks supporting this.
Recommendations for use with DSCP are provided below for each profile; note that
when a Connection is multiplexed, the guidelines in <xref section="6" sectionFormat="of" target="RFC7657"/> apply.</t>
          <t>The following values are valid for the capacity profile:</t>
          <dl>
            <dt>Default:</dt>
            <dd>
              <t>The application provides no information about its expected capacity
  profile. Transport Services systems that
  map the requested capacity profile onto per-connection DSCP signaling
  SHOULD assign the DSCP Default Forwarding <xref target="RFC2474"/> Per Hop Behaviour (PHB).</t>
            </dd>
            <dt>Scavenger:</dt>
            <dd>
              <t>The application is not interactive. It expects to send
  and/or receive data without any urgency. This can, for example, be used to
  select Protocol Stacks with scavenger transmission control and/or to assign
  the traffic to a lower-effort service. Transport Services systems that
  map the requested capacity profile onto per-connection DSCP signaling
  SHOULD assign the DSCP Less than Best Effort
  <xref target="RFC8622"/> PHB.</t>
            </dd>
            <dt>Low Latency/Interactive:</dt>
            <dd>
              <t>The application is interactive, and prefers loss to
  latency. Response time SHOULD be optimized at the expense of delay variation
  and efficient use of the available capacity when sending on this Connection. This can be
  used by the system to disable the coalescing of multiple small Messages into
  larger packets (Nagle's algorithm); to prefer immediate acknowledgment from
  the peer endpoint when supported by the underlying transport; and so on.
  Transport Services systems that map the requested capacity profile onto per-connection DSCP signaling without multiplexing SHOULD assign a DSCP Assured Forwarding (AF41,AF42,AF43,AF44) <xref target="RFC2597"/> PHB. Inelastic traffic that is expected to conform to the configured network service rate could be mapped to the DSCP Expedited Forwarding <xref target="RFC3246"/> or <xref target="RFC5865"/> PHBs.</t>
            </dd>
            <dt>Low Latency/Non-Interactive:</dt>
            <dd>
              <t>The application prefers loss to latency, but is
  not interactive. Response time SHOULD be optimized at the expense of delay
  variation and efficient use of the available capacity when sending on this Connection. Transport
  system implementations that map the requested capacity profile onto
  per-connection DSCP signaling without multiplexing SHOULD assign a DSCP
  Assured Forwarding (AF21,AF22,AF23,AF24) <xref target="RFC2597"/> PHB.</t>
            </dd>
            <dt>Constant-Rate Streaming:</dt>
            <dd>
              <t>The application expects to send/receive data at a
  constant rate after Connection establishment. Delay and delay variation SHOULD
  be minimized at the expense of efficient use of the available capacity.
  This implies that the Connection might fail if the Path is unable to maintain the desired rate.
  A transport can interpret this capacity profile as preferring a circuit
  breaker <xref target="RFC8084"/> to a rate-adaptive congestion controller. Transport
  system implementations that map the requested capacity profile onto
  per-connection DSCP signaling without multiplexing SHOULD assign a DSCP
  Assured Forwarding (AF31,AF32,AF33,AF34) <xref target="RFC2597"/> PHB.</t>
            </dd>
            <dt>Capacity-Seeking:</dt>
            <dd>
              <t>The application expects to send/receive data at the
  maximum rate allowed by its congestion controller over a relatively long
  period of time. Transport Services systems that map the requested
  capacity profile onto per-connection DSCP signaling without multiplexing
  SHOULD assign a DSCP Assured Forwarding (AF11,AF12,AF13,AF14) <xref target="RFC2597"/> PHB
  per <xref section="4.8" sectionFormat="of" target="RFC4594"/>.</t>
            </dd>
          </dl>
          <t>The capacity profile for a selected Protocol Stack may be modified on a
per-Message basis using the Transmission Profile Message Property; see
<xref target="send-profile"/>.</t>
        </section>
        <section anchor="multipath-policy">
          <name>Policy for using Multipath Transports</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>multipathPolicy</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Enumeration</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>Handover</t>
            </dd>
          </dl>
          <t>This property specifies the local policy for transferring data across multiple paths between the same end hosts if Multipath Transport is not set to Disabled (see <xref target="multipath-mode"/>). Possible values are:</t>
          <dl>
            <dt>Handover:</dt>
            <dd>
              <t>The Connection ought only to attempt to migrate between different paths when the original path is lost or becomes unusable. The thresholds used to declare a path unusable are implementation specific.</t>
            </dd>
            <dt>Interactive:</dt>
            <dd>
              <t>The Connection ought only to attempt to minimize the latency for interactive traffic patterns by transmitting data across multiple paths when this is beneficial.
The goal of minimizing the latency will be balanced against the cost of each of these paths. Depending on the cost of the
lower-latency path, the scheduling might choose to use a higher-latency path. Traffic can be scheduled such that data may be transmitted
on multiple paths in parallel to achieve a lower latency. The specific scheduling algorithm is implementation-specific.</t>
            </dd>
            <dt>Aggregate:</dt>
            <dd>
              <t>The Connection ought to attempt to use multiple paths in parallel to maximize available capacity and possibly overcome the capacity limitations of the individual paths. The actual strategy is implementation specific.</t>
            </dd>
          </dl>
          <t>Note that this is a local choice – the Remote Endpoint can choose a different policy.</t>
        </section>
        <section anchor="bounds-on-send-or-receive-rate">
          <name>Bounds on Send or Receive Rate</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>minSendRate / minRecvRate / maxSendRate / maxRecvRate</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Numeric (positive) or <tt>Unlimited</tt> / Numeric (positive) or <tt>Unlimited</tt> / Numeric (positive) or <tt>Unlimited</tt> / Numeric (positive) or <tt>Unlimited</tt></t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t><tt>Unlimited</tt> / <tt>Unlimited</tt> / <tt>Unlimited</tt> / <tt>Unlimited</tt></t>
            </dd>
          </dl>
          <t>Numeric values of these properties specify an upper-bound rate that a transfer is not expected to
exceed (even if flow control and congestion control allow higher rates), and/or a
lower-bound application-layer rate below which the application does not deem
it will be useful. These rate values are measured at the application layer, i.e. do not consider the header overhead
from protocols used by the Transport Services system. The values are specified in bits per second,
and assumed to be measured over one-second time intervals. E.g., specifying a maxSendRate of X bits per second
means that, from the moment at which the property value is chosen, not more than X bits will be send in any
following second. The enumerated value <tt>Unlimited</tt> indicates that no bound is specified.
A Transport Services API could express <tt>Unlimited</tt> in an environment-typical way, e.g., as a Union type or special value.</t>
        </section>
        <section anchor="group-connection-limit">
          <name>Group Connection Limit</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>groupConnLimit</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Numeric (positive) or <tt>Unlimited</tt></t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t><tt>Unlimited</tt></t>
            </dd>
          </dl>
          <t>If this property is Numeric, it controls the number of Connections that can be accepted from
a peer as new members of the Connection's group. Similar to <tt>SetNewConnectionLimit</tt>,
this limits the number of <tt>ConnectionReceived</tt> events that will occur, but constrained
to the group of the Connection associated with this property. For a multi-streaming transport,
this limits the number of allowed streams.  A Transport Services API
could express <tt>Unlimited</tt> in an environment-typical way, e.g., as a Union type or special value.</t>
        </section>
        <section anchor="isolate-session">
          <name>Isolate Session</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>isolateSession</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Boolean</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t><tt>false</tt></t>
            </dd>
          </dl>
          <t>When set to <tt>true</tt>, this property will initiate new Connections using as little
cached information (such as session tickets or cookies) as possible from
previous Connections that are not in the same Connection Group. Any state generated by this
Connection will only be shared with Connections in the same Connection Group. Cloned Connections
will use saved state from within the Connection Group.
This is used for separating Connection Contexts as specified in <xref section="4.2.3" sectionFormat="of" target="I-D.ietf-taps-arch"/>.</t>
          <t>Note that this does not guarantee no leakage of information, as
implementations might not be able to fully isolate all caches (e.g. RTT
estimates). Note that this property could degrade Connection performance.</t>
        </section>
        <section anchor="read-only-conn-prop">
          <name>Read-only Connection Properties</name>
          <t>The following generic Connection Properties are read-only, i.e. they cannot be changed by an application.</t>
          <section anchor="conn-state">
            <name>Connection state</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>connState</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Enumeration</t>
              </dd>
            </dl>
            <t>This property informs about the current state of the Connection. Possible values are: <tt>Establishing</tt>, <tt>Established</tt>, <tt>Closing</tt> or <tt>Closed</tt>; for more details on Connection state, see <xref target="state-ordering"/>.</t>
          </section>
          <section anchor="conn-send-data">
            <name>Can Send Data</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>canSend</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Boolean</t>
              </dd>
            </dl>
            <t>This property can be queried to learn whether the Connection can be used to send data.</t>
          </section>
          <section anchor="conn-receive-data">
            <name>Can Receive Data</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>canReceive</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Boolean</t>
              </dd>
            </dl>
            <t>This property can be queried to learn whether the Connection can be used to receive data.</t>
          </section>
          <section anchor="conn-max-msg-notfrag">
            <name>Maximum Message Size Before Fragmentation or Segmentation</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>singularTransmissionMsgMaxLen</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Integer (non-negative) or <tt>Not applicable</tt></t>
              </dd>
            </dl>
            <t>This property, if applicable, represents the maximum Message size that can be
sent without incurring network-layer fragmentation at the sender.
It is specified as a number of bytes and is less than or equal to the
Maximum Message Size on Send.
It exposes a readable value to the application
based on the Maximum Packet Size (MPS). The value of this property can change over time (and can be updated by Datagram PLPMTUD <xref target="RFC8899"/>).
This value allows a sending stack to avoid unwanted fragmentation at the
network-layer or segmentation by the transport layer before
choosing the message size and/or after a <tt>SendError</tt> occurs indicating
an attempt to send a Message that is too large.  A Transport Services API
could express <tt>Not applicable</tt> in an environment-typical way, e.g., as a Union type or special value (e.g., 0).</t>
          </section>
          <section anchor="conn-max-msg-send">
            <name>Maximum Message Size on Send</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>sendMsgMaxLen</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Integer (non-negative)</t>
              </dd>
            </dl>
            <t>This property represents the maximum Message size that an application can send.
It is specified as the number of bytes. A value of 0 indicates that sending is not possible.</t>
          </section>
          <section anchor="conn-max-msg-recv">
            <name>Maximum Message Size on Receive</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>recvMsgMaxLen</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Integer (non-negative)</t>
              </dd>
            </dl>
            <t>This property represents the maximum Message size that an application can receive.
It is specified as the number of bytes. A value of 0 indicates that receiving is not possible.</t>
          </section>
        </section>
      </section>
      <section anchor="tcp-uto">
        <name>TCP-specific Properties: User Timeout Option (UTO)</name>
        <t>These properties specify configurations for the TCP User Timeout Option (UTO).
This is a TCP-specific property, that is only used
in the case that TCP becomes the chosen transport protocol
and useful only if TCP is implemented in the Transport Services system.
Protocol-specific options could also be defined for other transport protocols.</t>
        <t>These are included here because the feature <tt>Suggest
timeout to the peer</tt> is part of the minimal set of transport services
<xref target="RFC8923"/>, where this feature was categorized as "functional".
This means that when a Transport Services system offers this feature,
the Transport Services API has to expose an interface to the application. Otherwise, the implementation might
violate assumptions by the application, which could cause the application to
fail.</t>
        <t>All of the below properties are optional (e.g., it is possible to specify <tt>User Timeout Enabled</tt> as <tt>true</tt>,
but not specify an Advertised User Timeout value; in this case, the TCP default will be used).
These properties reflect the API extension specified in <xref section="3" sectionFormat="of" target="RFC5482"/>.</t>
        <section anchor="advertised-user-timeout">
          <name>Advertised User Timeout</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>tcp.userTimeoutValue</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Integer (positive)</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t>the TCP default</t>
            </dd>
          </dl>
          <t>This time value is advertised via the TCP User Timeout Option (UTO) <xref target="RFC5482"/> to the Remote Endpoint which can use it to adapt its own <tt>Timeout for aborting Connection</tt> (see <xref target="conn-timeout"/>) value.</t>
        </section>
        <section anchor="user-timeout-enabled">
          <name>User Timeout Enabled</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>tcp.userTimeoutEnabled</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Boolean</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t><tt>false</tt></t>
            </dd>
          </dl>
          <t>This property controls whether the TCP UTO option is enabled for a
connection. This applies to both sending and receiving.</t>
        </section>
        <section anchor="timeout-changeable">
          <name>Timeout Changeable</name>
          <dl>
            <dt>Name:</dt>
            <dd>
              <t>tcp.userTimeoutChangeable</t>
            </dd>
            <dt>Type:</dt>
            <dd>
              <t>Boolean</t>
            </dd>
            <dt>Default:</dt>
            <dd>
              <t><tt>true</tt></t>
            </dd>
          </dl>
          <t>This property controls whether the TCP <tt>connTimeout</tt> (see <xref target="conn-timeout"/>)
can be changed
based on a UTO option received from the remote peer. This boolean becomes <tt>false</tt> when
<tt>connTimeout</tt> (see <xref target="conn-timeout"/>) is used.</t>
        </section>
      </section>
      <section anchor="connection-lifecycle-events">
        <name>Connection Lifecycle Events</name>
        <t>During the lifetime of a Connection there are events that can occur when configured.</t>
        <section anchor="soft-errors">
          <name>Soft Errors</name>
          <t>Asynchronous introspection is also possible, via the <tt>SoftError</tt> event. This event
informs the application about the receipt and contents of an ICMP error message related to the Connection. This will only happen if the underlying Protocol Stack supports access to soft errors; however, even if the underlying stack supports it, there
is no guarantee that a soft error will be signaled.</t>
          <artwork><![CDATA[
Connection -> SoftError<>
]]></artwork>
        </section>
        <section anchor="conn-path-change">
          <name>Path change</name>
          <t>This event notifies the application when at least one of the paths underlying a Connection has changed. Changes occur
on a single path when the PMTU changes as well as when multiple paths are used
and paths are added or removed, the set of local endpoints changes, or a handover has been performed.</t>
          <artwork><![CDATA[
Connection -> PathChange<>
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="datatransfer">
      <name>Data Transfer</name>
      <t>Data is sent and received as Messages, which allows the application
to communicate the boundaries of the data being transferred.</t>
      <section anchor="msg">
        <name>Messages and Framers</name>
        <t>Each Message has an optional Message Context, which allows adding Message Properties, identify <tt>Send</tt> events related to a specific Message or to inspect meta-data related to the Message sent. Framers can be used to extend or modify the Message data with additional information that can be processed at the receiver to detect message boundaries.</t>
        <section anchor="msg-ctx">
          <name>Message Contexts</name>
          <t>Using the MessageContext object, the application can set and retrieve meta-data of the Message, including Message Properties (see <xref target="message-props"/>) and framing meta-data (see <xref target="framing-meta"/>).
Therefore, a MessageContext object can be passed to the <tt>Send</tt> action and is returned by each <tt>Send</tt> and <tt>Receive</tt> related event.</t>
          <t>Message Properties can be set and queried using the Message Context:</t>
          <artwork><![CDATA[
MessageContext.add(property, value)
PropertyValue := MessageContext.get(property)
]]></artwork>
          <t>These Message Properties can be generic properties or Protocol-specific Properties.</t>
          <t>For MessageContexts returned by <tt>Send</tt> events (see <xref target="send-events"/>) and <tt>Receive</tt> events (see <xref target="receive-events"/>), the application can query information about the Local and Remote Endpoint:</t>
          <artwork><![CDATA[
RemoteEndpoint := MessageContext.GetRemoteEndpoint()
LocalEndpoint := MessageContext.GetLocalEndpoint()
]]></artwork>
        </section>
        <section anchor="framing">
          <name>Message Framers</name>
          <t>Although most applications communicate over a network using well-formed
Messages, the boundaries and metadata of the Messages are often not
directly communicated by the transport protocol itself. For example,
HTTP applications send and receive HTTP messages over a byte-stream
transport, requiring that the boundaries of HTTP messages be parsed
from the stream of bytes.</t>
          <t>Message Framers allow extending a Connection's Protocol Stack to define
how to encapsulate or encode outbound Messages, and how to decapsulate
or decode inbound data into Messages. Message Framers allow message
boundaries to be preserved when using a Connection object, even when
using byte-stream transports. This is designed based on the fact
that many of the current application protocols evolved over TCP, which
does not provide message boundary preservation, and since many of these
protocols require message boundaries to function, each application layer
protocol has defined its own framing.</t>
          <t>To use a Message Framer, the application adds it to its Preconnection object.
Then, the Message Framer can intercept all calls to <tt>Send</tt> or <tt>Receive</tt>
on a Connection to add Message semantics, in addition to interacting with
the setup and teardown of the Connection. A Framer can start sending data
before the application sends data if the framing protocol requires a prefix
or handshake (see <xref target="RFC9329"/> for an example of such a framing protocol).</t>
          <figure anchor="fig-framer-stack">
            <name>Protocol Stack showing a Message Framer</name>
            <artwork><![CDATA[
  Initiate()   Send()   Receive()   Close()
      |          |         ^          |
      |          |         |          |
 +----v----------v---------+----------v-----+
 |                Connection                |
 +----+----------+---------^----------+-----+
      |          |         |          |
      |      +-----------------+      |
      |      |    Messages     |      |
      |      +-----------------+      |
      |          |         |          |
 +----v----------v---------+----------v-----+
 |                Framer(s)                 |
 +----+----------+---------^----------+-----+
      |          |         |          |
      |      +-----------------+      |
      |      |   Byte-stream   |      |
      |      +-----------------+      |
      |          |         |          |
 +----v----------v---------+----------v-----+
 |         Transport Protocol Stack         |
 +------------------------------------------+
]]></artwork>
          </figure>
          <t>Note that while Message Framers add the most value when placed above
a protocol that otherwise does not preserve message boundaries, they can
also be used with datagram- or message-based protocols. In these cases,
they add a transformation to further encode or encapsulate,
and can potentially support packing multiple application-layer Messages
into individual transport datagrams.</t>
          <t>The API to implement a Message Framer can vary depending on the implementation;
guidance on implementing Message Framers can be found in <xref target="I-D.ietf-taps-impl"/>.</t>
          <section anchor="adding-message-framers-to-pre-connections">
            <name>Adding Message Framers to Pre-Connections</name>
            <t>The Message Framer object can be added to one or more Preconnections
to run on top of transport protocols. Multiple Framers can be added to a Preconnection;
in this case, the Framers operate as a framing stack, i.e. the last one added runs
first when framing outbound Messages, and last when parsing inbound data.</t>
            <t>The following example adds a basic HTTP Message Framer to a Preconnection:</t>
            <artwork><![CDATA[
framer := NewHTTPMessageFramer()
Preconnection.AddFramer(framer)
]]></artwork>
            <t>Since Message Framers pass from Preconnection to Listener or Connection, addition of
Framers must happen before any operation that might result in the creation of a Connection.</t>
          </section>
          <section anchor="framing-meta">
            <name>Framing Meta-Data</name>
            <t>When sending Messages, applications can add Framer-specific
properties to a MessageContext (<xref target="msg-ctx"/>) with the <tt>add</tt> action.
To avoid naming conflicts, the property
names SHOULD be prefixed with a namespace referencing the
framer implementation or the protocol it implements as described
in <xref target="property-names"/>.</t>
            <t>This mechanism can be used, for example, to set the type of a Message for a TLV format.
The namespace of values is custom for each unique Message Framer.</t>
            <artwork><![CDATA[
messageContext := NewMessageContext()
messageContext.add(framer, key, value)
Connection.Send(messageData, messageContext)
]]></artwork>
            <t>When an application receives a MessageContext in a <tt>Receive</tt> event,
it can also look to see if a value was set by a specific Message Framer.</t>
            <artwork><![CDATA[
messageContext.get(framer, key) -> value
]]></artwork>
            <t>For example, if an HTTP Message Framer is used, the values could correspond
to HTTP headers:</t>
            <artwork><![CDATA[
httpFramer := NewHTTPMessageFramer()
...
messageContext := NewMessageContext()
messageContext.add(httpFramer, "accept", "text/html")
]]></artwork>
          </section>
        </section>
        <section anchor="message-props">
          <name>Message Properties</name>
          <t>Applications needing to annotate the Messages they send with extra information
(for example, to control how data is scheduled and processed by the transport protocols supporting the
Connection) can include this information in the Message Context passed to the <tt>Send</tt> action. For other uses of the Message Context, see <xref target="msg-ctx"/>.</t>
          <t>Message Properties are per-Message, not per-<tt>Send</tt> if partial Messages
are sent (<xref target="send-partial"/>). All data blocks associated with a single Message
share properties specified in the Message Contexts. For example, it would not
make sense to have the beginning of a Message expire, but allow the end of a
Message to still be sent.</t>
          <t>A MessageContext object contains metadata for the Messages to be sent or received.</t>
          <artwork><![CDATA[
messageData := "hello"
messageContext := NewMessageContext()
messageContext.add(parameter, value)
Connection.Send(messageData, messageContext)
]]></artwork>
          <t>The simpler form of <tt>Send</tt>, which does not take any MessageContext, is equivalent to passing a default MessageContext without adding any Message Properties.</t>
          <t>If an application wants to override Message Properties for a specific Message,
it can acquire an empty MessageContext object and add all desired Message
Properties to that object. It can then reuse the same MessageContext object
for sending multiple Messages with the same properties.</t>
          <t>Properties can be added to a MessageContext object only before the context is used
for sending. Once a MessageContext has been used with a <tt>Send</tt> action, further modifications
to the MessageContext object do not have any effect on this <tt>Send</tt> call. Message Properties
that are not added to a MessageContext object before using the context for sending will either
take a specific default value or be configured based on Selection or Connection Properties
of the Connection that is associated with the <tt>Send</tt> call.
This initialization behavior is defined per Message Property below.</t>
          <t>The Message Properties could be inconsistent with the properties of the Protocol Stacks
underlying the Connection on which a given Message is sent. For example,
a Protocol Stack must be able to provide ordering if the <tt>msgOrdered</tt>
property of a Message is enabled. Sending a Message with Message Properties
inconsistent with the Selection Properties of the Connection yields an error.</t>
          <t>If a Message Property contradicts a Connection Property, and
if this per-Message behavior can be supported, it overrides the Connection
Property for the specific Message. For example, if
<tt>reliability</tt> is set to <tt>Require</tt> and a protocol
with configurable per-Message reliability is used, setting
<tt>msgReliable</tt> to <tt>false</tt> for a particular Message will
allow this Message to be sent without any reliability guarantees. Changing
the <tt>msgReliable</tt> Message Property is only possible for
Connections that were established enabling the Selection Property
<tt>perMsgReliability</tt>. If the contradicting Message Property
cannot be supported by the Connection (such as requiring reliability
on a Connection that uses an unreliable protocol), the <tt>Send</tt> action
will result in a <tt>SendError</tt> event.</t>
          <t>The following Message Properties are supported:</t>
          <section anchor="msg-lifetime">
            <name>Lifetime</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>msgLifetime</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Numeric (positive)</t>
              </dd>
              <dt>Default:</dt>
              <dd>
                <t>infinite</t>
              </dd>
            </dl>
            <t>The Lifetime specifies how long a particular Message can wait in the Transport Services system
before it is sent to the
Remote Endpoint. After this time, it is irrelevant and no longer needs to be
(re-)transmitted. This is a hint to the Transport Services system -- it is not guaranteed
that a Message will not be sent when its Lifetime has expired.</t>
            <t>Setting a Message's Lifetime to infinite indicates that the application does
not wish to apply a time constraint on the transmission of the Message, but it does not express a need for
reliable delivery; reliability is adjustable per Message via the <tt>perMsgReliability</tt>
property (see <xref target="msg-reliable-message"/>). The type and units of Lifetime are implementation-specific.</t>
          </section>
          <section anchor="msg-priority">
            <name>Priority</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>msgPriority</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Integer (non-negative)</t>
              </dd>
              <dt>Default:</dt>
              <dd>
                <t>100</t>
              </dd>
            </dl>
            <t>This property specifies the priority of a Message, relative to other Messages sent over the
same Connection. A numerically lower value represents a higher priority.</t>
            <t>A Message with Priority 2 will yield to a Message with Priority 1, which will
yield to a Message with Priority 0, and so on. Priorities can be used as a
sender-side scheduling construct only, or be used to specify priorities on the
wire for Protocol Stacks supporting prioritization.</t>
            <t>Note that this property is not a per-Message override of <tt>connPriority</tt>
- see <xref target="conn-priority"/>. The priority properties might interact, but can be used
independently and be realized by different mechanisms; see <xref target="priority-in-taps"/>.</t>
          </section>
          <section anchor="msg-ordered">
            <name>Ordered</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>msgOrdered</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Boolean</t>
              </dd>
              <dt>Default:</dt>
              <dd>
                <t>the queried Boolean value of the Selection Property <tt>preserveOrder</tt> (<xref target="prop-ordering"/>)</t>
              </dd>
            </dl>
            <t>The order in which Messages were submitted for transmission via the <tt>Send</tt> action will be preserved on delivery via <tt>Receive</tt> events for all Messages on a Connection that have this Message Property set to <tt>true</tt>.</t>
            <t>If <tt>false</tt>, the Message is delivered to the receiving application without preserving the ordering.
This property is used for protocols that support preservation of data ordering,
see <xref target="prop-ordering"/>, but allow out-of-order delivery for certain Messages, e.g., by multiplexing independent Messages onto
different streams.</t>
            <t>If it is not configured by the application before sending, this property's default value
will be based on the Selection Property <tt>preserveOrder</tt> of the Connection
associated with the <tt>Send</tt> action.</t>
          </section>
          <section anchor="msg-safelyreplayable">
            <name>Safely Replayable</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>safelyReplayable</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Boolean</t>
              </dd>
              <dt>Default:</dt>
              <dd>
                <t><tt>false</tt></t>
              </dd>
            </dl>
            <t>If <tt>true</tt>, <tt>safelyReplayable</tt> specifies that a Message is safe to send to the Remote Endpoint
more than once for a single <tt>Send</tt> action. It marks the data as safe for
certain 0-RTT establishment techniques, where retransmission of the 0-RTT data
could cause the remote application to receive the Message multiple times.</t>
            <t>For protocols that do not protect against duplicated Messages,
e.g., UDP, all Messages need to be marked as "safely replayable" by enabling this property.
To enable protocol selection to choose such a protocol,
<tt>safelyReplayable</tt> needs to be added to the TransportProperties passed to the
Preconnection. If such a protocol was chosen, disabling <tt>safelyReplayable</tt> on
individual Messages MUST result in a <tt>SendError</tt>.</t>
          </section>
          <section anchor="msg-final">
            <name>Final</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>final</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Boolean</t>
              </dd>
              <dt>Default:</dt>
              <dd>
                <t><tt>false</tt></t>
              </dd>
            </dl>
            <t>If <tt>true</tt>, this indicates a Message is the last that
the application will send on a Connection. This allows underlying protocols
to indicate to the Remote Endpoint that the Connection has been effectively
closed in the sending direction. For example, TCP-based Connections can
send a FIN once a Message marked as Final has been completely sent,
indicated by marking endOfMessage. Protocols that do not support signalling
the end of a Connection in a given direction will ignore this property.</t>
            <t>A Final Message must always be sorted to the end of a list of Messages.
The Final property overrides Priority and any other property that would re-order
Messages. If another Message is sent after a Message marked as Final has already
been sent on a Connection, the <tt>Send</tt> action for the new Message will cause a <tt>SendError</tt> event.</t>
          </section>
          <section anchor="msg-checksum">
            <name>Sending Corruption Protection Length</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>msgChecksumLen</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Integer (non-negative) or <tt>Full Coverage</tt></t>
              </dd>
              <dt>Default:</dt>
              <dd>
                <t><tt>Full Coverage</tt></t>
              </dd>
            </dl>
            <t>If this property is an Integer, it specifies the minimum length of the section of a sent Message,
starting from byte 0, that the application requires to be delivered without
corruption due to lower layer errors. It is used to specify options for simple
integrity protection via checksums. A value of 0 means that no checksum
needs to be calculated, and the enumerated value <tt>Full Coverage</tt> means
that the entire Message needs to be protected by a checksum. Only <tt>Full Coverage</tt> is
guaranteed, any other requests are advisory, which may result in <tt>Full Coverage</tt> being applied.</t>
          </section>
          <section anchor="msg-reliable-message">
            <name>Reliable Data Transfer (Message)</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>msgReliable</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Boolean</t>
              </dd>
              <dt>Default:</dt>
              <dd>
                <t>the queried Boolean value of the Selection Property <tt>reliability</tt> (<xref target="prop-reliable"/>)</t>
              </dd>
            </dl>
            <t>When true, this property specifies that a Message should be sent in such a way
that the transport protocol ensures all data is received by the Remote Endpoint.
Changing the <tt>msgReliable</tt> property on Messages
is only possible for Connections that were established enabling the Selection Property <tt>perMsgReliability</tt>.
When this is not the case, changing <tt>msgReliable</tt> will generate an error.</t>
            <t>Disabling this property indicates that the Transport Services system could disable retransmissions
or other reliability mechanisms for this particular Message, but such disabling is not guaranteed.</t>
            <t>If it is not configured by the application before sending, this property's default value
will be based on the Selection Property <tt>reliability</tt> of the Connection
associated with the <tt>Send</tt> action.</t>
          </section>
          <section anchor="send-profile">
            <name>Message Capacity Profile Override</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>msgCapacityProfile</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Enumeration</t>
              </dd>
              <dt>Default:</dt>
              <dd>
                <t>inherited from the Connection Property <tt>connCapacityProfile</tt> (<xref target="prop-cap-profile"/>)</t>
              </dd>
            </dl>
            <t>This enumerated property specifies the application's preferred tradeoffs for
sending this Message; it is a per-Message override of the <tt>connCapacityProfile</tt>
Connection Property (see <xref target="prop-cap-profile"/>).
If it is not configured by the application before sending, this property's default value
will be based on the Connection Property <tt>connCapacityProfile</tt> of the Connection
associated with the <tt>Send</tt> action.</t>
          </section>
          <section anchor="send-singular">
            <name>No Network-Layer Fragmentation</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>noFragmentation</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Boolean</t>
              </dd>
              <dt>Default:</dt>
              <dd>
                <t><tt>false</tt></t>
              </dd>
            </dl>
            <t>This property specifies that a Message should be sent and received
without network-layer fragmentation, if possible. It can be used
to avoid network layer fragmentation when transport segmentation is preferred.</t>
            <t>This only takes effect when the transport uses a network layer that supports this functionality.
When it does take effect, setting this property to
<tt>true</tt> will cause the sender to avoid network-layer source fragmentation.
When using IPv4, this will result in the Don't Fragment bit being set in the IP header.</t>
            <t>Attempts to send a Message with this property that result in a size greater than the
transport's current estimate of its maximum packet size (<tt>singularTransmissionMsgMaxLen</tt>)
can result in transport segmentation when permitted, or in a <tt>SendError</tt>.</t>
            <t>Note: noSegmentation is used when it is desired to only send a Message within
a single network packet.</t>
          </section>
          <section anchor="no-transport-fragmentation">
            <name>No Segmentation</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>noSegmentation</t>
              </dd>
              <dt>Type:</dt>
              <dd>
                <t>Boolean</t>
              </dd>
              <dt>Default:</dt>
              <dd>
                <t><tt>false</tt></t>
              </dd>
            </dl>
            <t>When set to <tt>true</tt>, this property requests the transport layer
to not provide segmentation of Messages larger than the
maximum size permitted by the network layer, and also
to avoid network-layer source fragmentation of Messages.
When running over IPv4, setting this property to
<tt>true</tt> will result in a sending endpoint setting the
Don't Fragment bit in the IPv4 header of packets generated by the
transport layer.</t>
            <t>An
attempt to send a Message that results in a size greater than the
transport's current estimate of its maximum packet size (<tt>singularTransmissionMsgMaxLen</tt>)
will result in a <tt>SendError</tt>.
This only takes effect when the transport and network layer
support this functionality.</t>
          </section>
        </section>
      </section>
      <section anchor="sending">
        <name>Sending Data</name>
        <t>Once a Connection has been established, it can be used for sending Messages.
By default, <tt>Send</tt> enqueues a complete Message,
and takes optional per-Message properties (see <xref target="send-basic"/>). All <tt>Send</tt> actions
are asynchronous, and deliver events (see <xref target="send-events"/>). Sending partial
Messages for streaming large data is also supported (see <xref target="send-partial"/>).</t>
        <t>Messages are sent on a Connection using the <tt>Send</tt> action:</t>
        <artwork><![CDATA[
Connection.Send(messageData, messageContext?, endOfMessage?)
]]></artwork>
        <t>where <tt>messageData</tt> is the data object to send, and <tt>messageContext</tt> allows
adding Message Properties, identifying <tt>Send</tt> events related to a specific
Message or inspecting meta-data related to the Message sent (see <xref target="msg-ctx"/>).</t>
        <t>The optional endOfMessage parameter supports partial sending and is described in
<xref target="send-partial"/>.</t>
        <section anchor="send-basic">
          <name>Basic Sending</name>
          <t>The most basic form of sending on a Connection involves enqueuing a single Data
block as a complete Message with default Message Properties.</t>
          <artwork><![CDATA[
messageData := "hello"
Connection.Send(messageData)
]]></artwork>
          <t>The interpretation of a Message to be sent is dependent on the implementation, and
on the constraints on the Protocol Stacks implied by the Connection’s transport properties.
For example, a Message could be the payload of
a single datagram for a UDP Connection; or an HTTP Request for an HTTP
Connection.</t>
          <t>Some transport protocols can deliver arbitrarily sized Messages, but other
protocols constrain the maximum Message size. Applications can query the
Connection Property <tt>sendMsgMaxLen</tt> (<xref target="conn-max-msg-send"/>) to determine the maximum size
allowed for a single Message. If a Message is too large to fit in the Maximum Message
Size for the Connection, the <tt>Send</tt> will fail with a <tt>SendError</tt> event (<xref target="send-error"/>). For
example, it is invalid to send a Message over a UDP connection that is larger than
the available datagram sending size.</t>
        </section>
        <section anchor="send-events">
          <name>Send Events</name>
          <t>Like all actions in Transport Services API, the <tt>Send</tt> action is asynchronous. There are
several events that can be delivered in response to sending a Message.
Exactly one event (<tt>Sent</tt>, <tt>Expired</tt>, or <tt>SendError</tt>) will be delivered in response
to each call to <tt>Send</tt>.</t>
          <t>Note that if partial <tt>Send</tt> calls are used (<xref target="send-partial"/>), there will still be exactly
one <tt>Send</tt> event delivered for each call to <tt>Send</tt>. For example, if a Message
expired while two requests to <tt>Send</tt> data for that Message are outstanding,
there will be two <tt>Expired</tt> events delivered.</t>
          <t>The Transport Services API should allow the application to correlate which <tt>Send</tt> action resulted
in a particular <tt>Send</tt> event. The manner in which this correlation is indicated
is implementation-specific.</t>
          <section anchor="sent">
            <name>Sent</name>
            <artwork><![CDATA[
Connection -> Sent<messageContext>
]]></artwork>
            <t>The <tt>Sent</tt> event occurs when a previous <tt>Send</tt> call has completed, i.e., when
the data derived from the Message has been passed down or through the
underlying Protocol Stack and is no longer the responsibility of
the Transport Services API. The exact disposition of the Message (i.e.,
whether it has actually been transmitted, moved into a buffer on the network
interface, moved into a kernel buffer, and so on) when the <tt>Sent</tt> event occurs
is implementation-specific. The <tt>Sent</tt> event contains a reference to the Message
Context of the Message to which it applies.</t>
            <t><tt>Sent</tt> events allow an application to obtain an understanding of the amount
of buffering it creates. That is, if an application calls the <tt>Send</tt> action multiple
times without waiting for a <tt>Sent</tt> event, it has created more buffer inside the
Transport Services system than an application that always waits for the <tt>Sent</tt> event before
calling the next <tt>Send</tt> action.</t>
          </section>
          <section anchor="expired">
            <name>Expired</name>
            <artwork><![CDATA[
Connection -> Expired<messageContext>
]]></artwork>
            <t>The <tt>Expired</tt> event occurs when a previous <tt>Send</tt> action expired before completion;
i.e. when the Message was not sent before its Lifetime (see <xref target="msg-lifetime"/>)
expired. This is separate from <tt>SendError</tt>, as it is an expected behavior for
partially reliable transports. The <tt>Expired</tt> event contains a reference to the
Message Context of the Message to which it applies.</t>
          </section>
          <section anchor="send-error">
            <name>SendError</name>
            <artwork><![CDATA[
Connection -> SendError<messageContext, reason?>
]]></artwork>
            <t>A <tt>SendError</tt> occurs when a Message was not sent due to an error condition:
an attempt to send a Message that is too large for the system and
Protocol Stack to handle, some failure of the underlying Protocol Stack, or a
set of Message Properties not consistent with the Connection's transport
properties. The <tt>SendError</tt> contains a reference to the Message Context of the
Message to which it applies.</t>
          </section>
        </section>
        <section anchor="send-partial">
          <name>Partial Sends</name>
          <t>It is not always possible for an application to send all data associated with
a Message in a single <tt>Send</tt> action. The Message data might be too large for
the application to hold in memory at one time, or the length of the Message
might be unknown or unbounded.</t>
          <t>Partial Message sending is supported by passing an endOfMessage Boolean
parameter to the <tt>Send</tt> action. This value is always <tt>true</tt> by default, and
the simpler forms of <tt>Send</tt> are equivalent to passing <tt>true</tt> for endOfMessage.</t>
          <t>The following example sends a Message in two separate calls to <tt>Send</tt>.</t>
          <artwork><![CDATA[
messageContext := NewMessageContext()
messageContext.add(parameter, value)

messageData := "hel"
endOfMessage := false
Connection.Send(messageData, messageContext, endOfMessage)

messageData := "lo"
endOfMessage := true
Connection.Send(messageData, messageContext, endOfMessage)
]]></artwork>
          <t>All data sent with the same MessageContext object will be treated as belonging
to the same Message, and will constitute an in-order series until the
endOfMessage is marked.</t>
        </section>
        <section anchor="send-batching">
          <name>Batching Sends</name>
          <t>To reduce the overhead of sending multiple small Messages on a Connection, the
application could batch several <tt>Send</tt> actions together. This provides a hint to
the system that the sending of these Messages ought to be coalesced when possible,
and that sending any of the batched Messages can be delayed until the last Message
in the batch is enqueued.</t>
          <t>The semantics for starting and ending a batch can be implementation-specific, but need
to allow multiple <tt>Send</tt> actions to be enqueued.</t>
          <artwork><![CDATA[
Connection.StartBatch()
Connection.Send(messageData)
Connection.Send(messageData)
Connection.EndBatch()
]]></artwork>
        </section>
        <section anchor="initiate-and-send">
          <name>Send on Active Open: InitiateWithSend</name>
          <t>For application-layer protocols where the Connection initiator also sends the
first Message, the <tt>InitiateWithSend</tt> action combines Connection initiation with
a first Message sent:</t>
          <artwork><![CDATA[
Connection := Preconnection.InitiateWithSend(messageData,
                                             messageContext?,
                                             timeout?)
]]></artwork>
          <t>Whenever possible, a MessageContext should be provided to declare the Message passed to <tt>InitiateWithSend</tt>
as "safely replayable" using the <tt>safelyReplayable</tt> property. This allows the Transport Services system to make use of 0-RTT establishment in case this is supported
by the available Protocol Stacks. When the selected stack(s) do not support transmitting data upon connection
establishment, <tt>InitiateWithSend</tt> is identical to <tt>Initiate</tt> followed by <tt>Send</tt>.</t>
          <t>Neither partial sends nor send batching are supported by <tt>InitiateWithSend</tt>.</t>
          <t>The events that are sent after <tt>InitiateWithSend</tt> are equivalent to those
that would be sent by an invocation of <tt>Initiate</tt> followed immediately by an
invocation of <tt>Send</tt>, with the caveat that a send failure that occurs because
the Connection could not be established will not result in a
<tt>SendError</tt> separate from the <tt>EstablishmentError</tt> signaling the failure of Connection
establishment.</t>
        </section>
        <section anchor="priority-in-taps">
          <name>Priority and the Transport Services API</name>
          <t>The Transport Services API provides two properties to allow a sender
to signal the relative priority of data transmission: <tt>msgPriority</tt>
            <xref target="msg-priority"/> and <tt>connPriority</tt> <xref target="conn-priority"/>.
These properties are designed to allow the expression
and implementation of a wide variety of approaches to transmission priority in
the transport and application layer, including those which do not appear on
the wire (affecting only sender-side transmission scheduling) as well as those
that do (e.g. <xref target="RFC9218"/>.
A Transport Services system gives no guarantees about how its expression of
relative priorities will be realized.</t>
          <t>The Transport Services API does order <tt>connPriority</tt> over
<tt>msgPriority</tt>. In the absence of other externalities
(e.g., transport-layer flow control), a priority 1 Message on a priority 0
Connection will be sent before a priority 0 Message on a priority 1
Connection in the same group.</t>
        </section>
      </section>
      <section anchor="receiving">
        <name>Receiving Data</name>
        <t>Once a Connection is established, it can be used for receiving data (unless the
<tt>direction</tt> property is set to <tt>unidirectional send</tt>). As with
sending, the data is received in Messages. Receiving is an asynchronous
operation, in which each call to <tt>Receive</tt> enqueues a request to receive new
data from the Connection. Once data has been received, or an error is encountered,
an event will be delivered to complete any pending <tt>Receive</tt> requests (see <xref target="receive-events"/>).
If Messages arrive at the Transport Services system before <tt>Receive</tt> requests are issued,
ensuing <tt>Receive</tt> requests will first operate on these Messages before awaiting any further Messages.</t>
        <section anchor="receiving-action">
          <name>Enqueuing Receives</name>
          <t><tt>Receive</tt> takes two parameters to specify the length of data that an application
is willing to receive, both of which are optional and have default values if not
specified.</t>
          <artwork><![CDATA[
Connection.Receive(minIncompleteLength?, maxLength?)
]]></artwork>
          <t>By default, <tt>Receive</tt> will try to deliver complete Messages in a single event (<xref target="receive-complete"/>).</t>
          <t>The application can set a minIncompleteLength value to indicate the smallest partial
Message data size in bytes to be delivered in response to this <tt>Receive</tt>. By default,
this value is infinite, which means that only complete Messages should be delivered (see <xref target="receive-partial"/>
and <xref target="framing"/> for more information on how this is accomplished).
If this value is set to some smaller value, the associated receive event will be triggered
only when at least that many bytes are available, or the Message is complete with fewer
bytes, or the system needs to free up memory. Applications SHOULD always
check the length of the data delivered to the receive event and not assume
it will be as long as minIncompleteLength in the case of shorter complete Messages
or memory issues.</t>
          <t>The maxLength argument indicates the maximum size of a Message in bytes
that the application is currently prepared to receive. The default
value for maxLength is infinite. If an incoming Message is larger than the
minimum of this size and the maximum Message size on receive for
the Connection's Protocol Stack, it will be delivered via <tt>ReceivedPartial</tt>
events (<xref target="receive-partial"/>).</t>
          <t>Note that maxLength does not guarantee that the application will receive that many
bytes if they are available; the Transport Services API could return <tt>ReceivedPartial</tt> events with less
data than maxLength according to implementation constraints. Note also that maxLength
and minIncompleteLength are intended only to manage buffering, and are not interpreted
as a receiver preference for Message reordering.</t>
        </section>
        <section anchor="receive-events">
          <name>Receive Events</name>
          <t>Each call to <tt>Receive</tt> will be paired with a single <tt>Receive</tt> event. This allows an application
to provide backpressure to the transport stack when it is temporarily not ready to receive Messages.
For example, an application that will later be able to handle multiple receive events at the same time
can make multiple calls to <tt>Receive</tt> without waiting for, or processing, any receive events. An application
that is temporarily unable to process received events for a connection could refrain from calling <tt>Receive</tt>
or delay calling it. This would lead to a build-up of unread data, which, in turn, could result in
backpressure to the sender via a transport protocol's flow control.</t>
          <t>The Transport Services API should allow the application to correlate which call to <tt>Receive</tt> resulted
in a particular <tt>Receive</tt> event. The manner in which this correlation is indicated
is implementation-specific.</t>
          <section anchor="receive-complete">
            <name>Received</name>
            <artwork><![CDATA[
Connection -> Received<messageData, messageContext>
]]></artwork>
            <t>A <tt>Received</tt> event indicates the delivery of a complete Message.
It contains two objects, the received bytes as <tt>messageData</tt>, and the metadata and properties of the received Message as <tt>messageContext</tt>.</t>
            <t>The <tt>messageData</tt> value provides access to the bytes that were received for this Message, along with the length of the byte array.
The <tt>messageContext</tt> value is provided to enable retrieving metadata about the Message and referring to the Message. The MessageContext object is described in <xref target="msg-ctx"/>.</t>
            <t>See <xref target="framing"/> for handling Message framing in situations where the Protocol
Stack only provides a byte-stream transport.</t>
          </section>
          <section anchor="receive-partial">
            <name>ReceivedPartial</name>
            <artwork><![CDATA[
Connection -> ReceivedPartial<messageData, messageContext,
                              endOfMessage>
]]></artwork>
            <t>If a complete Message cannot be delivered in one event, one part of the Message
can be delivered with a <tt>ReceivedPartial</tt> event. To continue to receive more
of the same Message, the application must invoke <tt>Receive</tt> again.</t>
            <t>Multiple invocations of <tt>ReceivedPartial</tt> deliver data for the same Message by
passing the same MessageContext, until the endOfMessage flag is delivered or a
 <tt>ReceiveError</tt> occurs. All partial blocks of a single Message are delivered in
order without gaps. This event does not support delivering non-contiguous partial
Messages. If, for example, Message A is divided into three pieces (A1, A2, A3) and
Message B is divided into three pieces (B1, B2, B3), and preserveOrder is not Required,
the <tt>ReceivedPartial</tt> could deliver them in a sequence like this: A1, B1, B2, A2, A3, B3,
because the MessageContext allows the application to identify the pieces as belonging
to Message A and B, respectively. However, a sequence like: A1, A3 will never occur.</t>
            <t>If the minIncompleteLength in the Receive request was set to be infinite (indicating
a request to receive only complete Messages), the <tt>ReceivedPartial</tt> event could still be
delivered if one of the following conditions is true:</t>
            <ul spacing="normal">
              <li>
                <t>the underlying Protocol Stack supports message boundary preservation, and
the size of the Message is larger than the buffers available for a single
Message;</t>
              </li>
              <li>
                <t>the underlying Protocol Stack does not support message boundary
preservation, and the Message Framer (see <xref target="framing"/>) cannot determine
the end of the Message using the buffer space it has available; or</t>
              </li>
              <li>
                <t>the underlying Protocol Stack does not support message boundary
preservation, and no Message Framer was supplied by the application</t>
              </li>
            </ul>
            <t>Note that in the absence of message boundary preservation or
a Message Framer, all bytes received on the Connection will be represented as one
large Message of indeterminate length.</t>
            <t>In the following example, an application only wants to receive up to 1000 bytes
at a time from a Connection. If a 1500-byte Message arrives, it would receive
the Message in two separate <tt>ReceivedPartial</tt> events.</t>
            <artwork><![CDATA[
Connection.Receive(1, 1000)

// Receive first 1000 bytes, message is incomplete
Connection -> ReceivedPartial<messageData(1000 bytes),
                              messageContext, false>

Connection.Receive(1, 1000)

// Receive last 500 bytes, message is now complete
Connection -> ReceivedPartial<messageData(500 bytes),
                              messageContext, true>
]]></artwork>
          </section>
          <section anchor="receive-error">
            <name>ReceiveError</name>
            <artwork><![CDATA[
Connection -> ReceiveError<messageContext, reason?>
]]></artwork>
            <t>A <tt>ReceiveError</tt> occurs when data is received by the underlying Protocol Stack
that cannot be fully retrieved or parsed, and when it is useful for the application
to be notified of such errors. For example, a <tt>ReceiveError</tt> can
indicate that a Message (identified via the <tt>messageContext</tt> value)
that was being partially received previously, but had not
completed, encountered an error and will not be completed. This can be useful
for an application, which might wish to use this error as a hint to remove
previously received Message parts from memory. As another example,
if an incoming Message does not fulfill the <tt>recvChecksumLen</tt> property
(see <xref target="conn-recv-checksum"/>),
an application can use this error as a hint to inform the peer application
to adjust the <tt>msgChecksumLen</tt> property (see <xref target="msg-checksum"/>).</t>
            <t>In contrast, internal protocol reception errors (e.g., loss causing retransmissions
in TCP) are not signalled by this event. Conditions that irrevocably lead to
the termination of the Connection are signaled using <tt>ConnectionError</tt>
(see <xref target="termination"/>).</t>
          </section>
        </section>
        <section anchor="recv-meta">
          <name>Receive Message Properties</name>
          <t>Each Message Context could contain metadata from protocols in the Protocol Stack;
which metadata is available is Protocol Stack dependent. These are exposed through additional read-only Message Properties that can be queried from the MessageContext object (see <xref target="msg-ctx"/>) passed by the receive event.
The following metadata values are supported:</t>
          <section anchor="receive-ecn">
            <name>UDP(-Lite)-specific Property: ECN</name>
            <t>When available, Message metadata carries the value of the Explicit Congestion
Notification (ECN) field. This information can be used for logging and debugging,
and for building applications that need access to information about
the transport internals for their own operation. This property is specific to UDP
and UDP-Lite because these protocols do not implement congestion control,
and hence expose this functionality to the application (see <xref target="RFC8293"/>,
following the guidance in <xref target="RFC8085"/>)</t>
          </section>
          <section anchor="receive-early">
            <name>Early Data</name>
            <t>In some cases it can be valuable to know whether data was read as part of early
data transfer (before Connection establishment has finished). This is useful if
applications need to treat early data separately,
e.g., if early data has different security properties than data sent after
connection establishment. In the case of TLS 1.3, client early data can be replayed
maliciously (see <xref target="RFC8446"/>). Thus, receivers might wish to perform additional
checks for early data to ensure it is safely replayable. If TLS 1.3 is available
and the recipient Message was sent as part of early data, the corresponding metadata carries
a flag indicating as such. If early data is enabled, applications should check this metadata
field for Messages received during Connection establishment and respond accordingly.</t>
          </section>
          <section anchor="receiving-final-messages">
            <name>Receiving Final Messages</name>
            <t>The Message Context can indicate whether or not this Message is
the Final Message on a Connection. For any Message that is marked as Final,
the application can assume that there will be no more Messages received on the
Connection once the Message has been completely delivered. This corresponds
to the <tt>final</tt> property that can be marked on a sent Message, see <xref target="msg-final"/>.</t>
            <t>Some transport protocols and peers do not support signaling of the <tt>final</tt> property.
Applications therefore  SHOULD NOT rely on receiving a Message marked Final to know
that the sending endpoint is done sending on a Connection.</t>
            <t>Any calls to <tt>Receive</tt> once the Final Message has been delivered will result in errors.</t>
          </section>
        </section>
      </section>
    </section>
    <section anchor="termination">
      <name>Connection Termination</name>
      <t>A Connection can be terminated i) by the Local Endpoint (i.e., the application calls the <tt>Close</tt>, <tt>CloseGroup</tt>, <tt>Abort</tt> or <tt>AbortGroup</tt> action), ii) by the Remote Endpoint (i.e., the remote application calls the <tt>Close</tt>, <tt>CloseGroup</tt>, <tt>Abort</tt> or <tt>AbortGroup</tt> action), or iii) because of an error (e.g., a timeout). A local call of the <tt>Close</tt> action will
cause the Connection to either send a <tt>Closed</tt> event or a <tt>ConnectionError</tt> event, and a local call of
the <tt>CloseGroup</tt> action will cause all of the Connections in the group to either send a <tt>Closed</tt> event
or a <tt>ConnectionError</tt> event. A local call of the <tt>Abort</tt> action will cause the Connection to send
a <tt>ConnectionError</tt> event, indicating local <tt>Abort</tt> as a reason, and a local call of the <tt>AbortGroup</tt> action
will cause all of the Connections in the group to send a <tt>ConnectionError</tt> event, indicating local <tt>Abort</tt>
as a reason.</t>
      <t>Remote action calls map to events similar to local calls (e.g., a remote <tt>Close</tt> causes the
Connection to either send a <tt>Closed</tt> event or a <tt>ConnectionError</tt> event), but, different from local action calls,
it is not guaranteed that such events will indeed be invoked. When an application needs to free resources
associated with a Connection, it ought not to therefore rely on the invocation of such events due to
termination calls from the Remote Endpoint, but instead use the local termination actions.</t>
      <t><tt>Close</tt> terminates a Connection after satisfying all the requirements that were
specified regarding the delivery of Messages that the application has already
given to the Transport Services system. Upon successfully satisfying all these
requirements, the Connection will send the <tt>Closed</tt> event. For example, if reliable delivery was requested
for a Message handed over before calling <tt>Close</tt>, the <tt>Closed</tt> event will signify
that this Message has indeed been delivered. This action does not affect any other Connection
in the same Connection Group.</t>
      <t>An application MUST NOT assume that it can receive any further data on a Connection
for which it has called <tt>Close</tt>, even if such data is already in flight.</t>
      <artwork><![CDATA[
Connection.Close()
]]></artwork>
      <t>The <tt>Closed</tt> event informs the application that a <tt>Close</tt> action has successfully
completed, or that the Remote Endpoint has closed the Connection.
There is no guarantee that a remote <tt>Close</tt> will be signaled.</t>
      <artwork><![CDATA[
Connection -> Closed<>
]]></artwork>
      <t><tt>Abort</tt> terminates a Connection without delivering any remaining Messages. This action does
not affect any other Connection that is entangled with this one in a Connection Group.
When the <tt>Abort</tt> action has finished, the Connection will send a <tt>ConnectionError</tt> event,
indicating local <tt>Abort</tt> as a reason.</t>
      <artwork><![CDATA[
Connection.Abort()
]]></artwork>
      <t><tt>CloseGroup</tt> gracefully terminates a Connection and any other Connections in the
same Connection Group. For example, all of the Connections in a
group might be streams of a single session for a multistreaming protocol; closing the entire
group will close the underlying session. See also <xref target="groups"/>. All Connections in the group
will send a <tt>Closed</tt> event when the <tt>CloseGroup</tt> action was successful.
As with <tt>Close</tt>, any Messages
remaining to be processed on a Connection will be handled prior to closing.</t>
      <artwork><![CDATA[
Connection.CloseGroup()
]]></artwork>
      <t><tt>AbortGroup</tt> terminates a Connection and any other Connections that are
in the same Connection Group without delivering any remaining Messages.
When the <tt>AbortGroup</tt> action has finished, all Connections in the group will
send a <tt>ConnectionError</tt> event, indicating local <tt>Abort</tt> as a reason.</t>
      <artwork><![CDATA[
Connection.AbortGroup()
]]></artwork>
      <t>A <tt>ConnectionError</tt> informs the application that: 1) data could not be delivered to the
peer after a timeout,
or 2) the Connection has been aborted (e.g., because the peer has called <tt>Abort</tt>).
There is no guarantee that an <tt>Abort</tt> from the peer will be signaled.</t>
      <artwork><![CDATA[
Connection -> ConnectionError<reason?>
]]></artwork>
    </section>
    <section anchor="state-ordering">
      <name>Connection State and Ordering of Operations and Events</name>
      <t>This Transport Services API is designed to be independent of an implementation's
concurrency model.  The details of how exactly actions are handled, and how
events are dispatched, are implementation dependent.</t>
      <t>Some transitions of Connection states are associated with events:</t>
      <ul spacing="normal">
        <li>
          <t><tt>Ready&lt;&gt;</tt> occurs when a Connection created with <tt>Initiate</tt> or
<tt>InitiateWithSend</tt> transitions to Established state.</t>
        </li>
        <li>
          <t><tt>ConnectionReceived&lt;&gt;</tt> occurs when a Connection created with <tt>Listen</tt>
transitions to Established state.</t>
        </li>
        <li>
          <t><tt>RendezvousDone&lt;&gt;</tt> occurs when a Connection created with <tt>Rendezvous</tt>
transitions to Established state.</t>
        </li>
        <li>
          <t><tt>Closed&lt;&gt;</tt> occurs when a Connection transitions to Closed state without error.</t>
        </li>
        <li>
          <t><tt>EstablishmentError&lt;&gt;</tt> occurs when a Connection created with <tt>Initiate</tt> transitions
from Establishing state to Closed state due to an error.</t>
        </li>
        <li>
          <t><tt>ConnectionError&lt;&gt;</tt> occurs when a Connection transitions to Closed state due to
an error in all other circumstances.</t>
        </li>
      </ul>
      <t>The following diagram shows the possible states of a Connection and the
events that occur upon a transition from one state to another.</t>
      <figure anchor="fig-connstates">
        <name>Connection State Diagram</name>
        <artwork><![CDATA[
              (*)                               (**)
Establishing -----> Established -----> Closing ------> Closed
     |                                                   ^
     |                                                   |
     +---------------------------------------------------+
                  EstablishmentError<>

(*) Ready<>, ConnectionReceived<>, RendezvousDone<>
(**) Closed<>, ConnectionError<>

]]></artwork>
      </figure>
      <t>The Transport Services API  provides the following guarantees about the ordering of
 operations:</t>
      <ul spacing="normal">
        <li>
          <t><tt>Sent&lt;&gt;</tt> events will occur on a Connection in the order in which the Messages
were sent (i.e., delivered to the kernel or to the network interface,
depending on implementation).</t>
        </li>
        <li>
          <t><tt>Received&lt;&gt;</tt> will never occur on a Connection before it is Established; i.e.
before a <tt>Ready&lt;&gt;</tt> event on that Connection, or a <tt>ConnectionReceived&lt;&gt;</tt> or
<tt>RendezvousDone&lt;&gt;</tt> containing that Connection.</t>
        </li>
        <li>
          <t>No events will occur on a Connection after it is closed; i.e., after a
<tt>Closed&lt;&gt;</tt> event, an <tt>EstablishmentError&lt;&gt;</tt> or <tt>ConnectionError&lt;&gt;</tt> will not occur on that Connection. To
ensure this ordering, <tt>Closed&lt;&gt;</tt> will not occur on a Connection while other
events on the Connection are still locally outstanding (i.e., known to the
Transport Services API and waiting to be dealt with by the application).</t>
        </li>
      </ul>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no actions for IANA.
Later versions of this document might create IANA registries for generic transport property names and transport property namespaces (see <xref target="property-names"/>).</t>
    </section>
    <section anchor="privacy-security">
      <name>Privacy and Security Considerations</name>
      <t>This document describes a generic API for interacting with a Transport Services system.
Part of this API includes configuration details for transport security protocols, as discussed
in <xref target="security-parameters"/>. It does not recommend use (or disuse) of specific
algorithms or protocols. Any API-compatible transport security protocol ought to work in a Transport Services system.
Security considerations for these protocols are discussed in the respective specifications.</t>
      <t>The described API is used to exchange information between an application and the Transport Services system. While
it is not necessarily expected that both systems are implemented by the same authority, it is expected
that the Transport Services Implementation is either provided as a library that is selected by the application
from a trusted party, or that it is part of the operating system that the application also relies on for
other tasks.</t>
      <t>In either case, the Transport Services API is an internal interface that is used to exchange information locally between two systems.
However, as the Transport Services system is responsible for network communication, it is in the position to
potentially share any information provided by the application with the network or another communication peer.
Most of the information provided over the Transport Services API are useful to configure and select protocols and paths
and are not necessarily privacy-sensitive. Still, some information could be privacy sensitive because
it might reveal usage characteristics and habits of the user of an application.</t>
      <t>Of course any communication over a network reveals usage characteristics, because all
packets, as well as their timing and size, are part of the network-visible wire image <xref target="RFC8546"/>. However,
the selection of a protocol and its configuration also impacts which information is visible, potentially in
clear text, and which other entities can access it. How Transport Services systems ought to choose protocols depending on the security properties required is out of scope of this specification, as it is limited to transport protocols. The choice of a security protocol can be informed by the survey provided in <xref target="RFC8922"/>.</t>
      <t>In most cases, information provided for protocol and path selection
does not directly translate to information that can be observed by network devices on the path.
However, there might be specific configuration
information that is intended for path exposure, e.g., a DiffServ codepoint setting, that is either provided
directly by the application or indirectly configured for a traffic profile.</t>
      <t>Applications should be aware that a single communication attempt can lead to more than one connection establishment procedure.
This is the case, for example, when the Transport Services system also executes name resolution, when support mechanisms such as
TURN or ICE are used to establish connectivity, if protocols or paths are raced, or if a path fails and
fallback or re-establishment is supported in the Transport Services system. Applications should take special
care when using 0-RTT session resumption (see <xref target="prop-0rtt"/>), as early data sent across multiple paths during
connection establishment could reveal information that can be used to correlate endpoints on these paths.</t>
      <t>Applications should also take care to not assume that all data received using the Transport Services API is always
complete or well-formed. Specifically, Messages that are received partially <xref target="receive-partial"/> could be a source
of truncation attacks if applications do not distinguish between partial Messages and complete Messages.</t>
      <t>The Transport Services API explicitly does not require the application to resolve names, though there is
a tradeoff between early and late binding of addresses to names. Early binding
allows the Transport Services Implementation to reduce Connection setup latency, at the cost
of potentially limited scope for alternate path discovery during Connection
establishment, as well as potential additional information leakage about
application interest when used with a resolution method (such as DNS without
TLS) which does not protect query confidentiality.</t>
      <t>These communication activities are not different from what is used today. However,
the goal of a Transport Services system is to support
such mechanisms as a generic service within the transport layer. This enables applications to more dynamically
benefit from innovations and new protocols in the transport, although it reduces transparency of the
underlying communication actions to the application itself. The Transport Services API is designed such that protocol and path selection
can be limited to a small and controlled set if the application requires this or to implement a security policy.
can be limited to a small and controlled set if required by the application to perform a function or to provide security.
Further,
introspection on the properties of Connection objects allows an application to determine which protocol(s) and path(s) are in use.
A Transport Services system SHOULD provide a facility logging the communication events of each Connection.</t>
    </section>
    <section anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>This work has received funding from the European Union's Horizon 2020 research and
innovation programme under grant agreements No. 644334 (NEAT) and No. 688421 (MAMI).</t>
      <t>This work has been supported by Leibniz Prize project funds of DFG - German
Research Foundation: Gottfried Wilhelm Leibniz-Preis 2011 (FKZ FE 570/4-1).</t>
      <t>This work has been supported by the UK Engineering and Physical Sciences
Research Council under grant EP/R04144X/1.</t>
      <t>This work has been supported by the Research Council of Norway under its "Toppforsk"
programme through the "OCARINA" project.</t>
      <t>Thanks to Stuart Cheshire, Josh Graessley, David Schinazi, and Eric Kinnear for
their implementation and design efforts, including Happy Eyeballs, that heavily
influenced this work. Thanks to Laurent Chuat and Jason Lee for initial work on
the Post Sockets interface, from which this work has evolved. Thanks to
Maximilian Franke for asking good questions based on implementation experience
and for contributing text, e.g., on multicast.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="I-D.ietf-taps-arch">
          <front>
            <title>Architecture and Requirements for Transport Services</title>
            <author fullname="Tommy Pauly" initials="T." surname="Pauly">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Brian Trammell" initials="B." surname="Trammell">
              <organization>Google Switzerland GmbH</organization>
            </author>
            <author fullname="Anna Brunstrom" initials="A." surname="Brunstrom">
              <organization>Karlstad University</organization>
            </author>
            <author fullname="Gorry Fairhurst" initials="G." surname="Fairhurst">
              <organization>University of Aberdeen</organization>
            </author>
            <author fullname="Colin Perkins" initials="C." surname="Perkins">
              <organization>University of Glasgow</organization>
            </author>
            <date day="9" month="November" year="2023"/>
            <abstract>
              <t>   This document describes an architecture for exposing transport
   protocol features to applications for network communication.  This
   system exposes transport protocol features to applications for
   network communication.  The Transport Services Application
   Programming Interface (API) is based on an asynchronous, event-driven
   interaction pattern.  This API uses messages for representing data
   transfer to applications, and describes how a Transport Services
   Implementation can use multiple IP addresses, multiple protocols, and
   multiple paths, and provide multiple application streams.  This
   document provides the architecture and requirements.  It defines
   common terminology and concepts to be used in definitions of a
   Transport Service API and a Transport Services Implementation.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-taps-arch-19"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="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="ALPN">
          <front>
            <title>Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension</title>
            <author fullname="S. Friedl" initials="S." surname="Friedl"/>
            <author fullname="A. Popov" initials="A." surname="Popov"/>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <author fullname="E. Stephan" initials="E." surname="Stephan"/>
            <date month="July" year="2014"/>
            <abstract>
              <t>This document describes a Transport Layer Security (TLS) extension for application-layer protocol negotiation within the TLS handshake. For instances in which multiple application protocols are supported on the same TCP or UDP port, this extension allows the application layer to negotiate which protocol will be used within the TLS connection.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7301"/>
          <seriesInfo name="DOI" value="10.17487/RFC7301"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="I-D.ietf-taps-impl">
          <front>
            <title>Implementing Interfaces to Transport Services</title>
            <author fullname="Anna Brunstrom" initials="A." surname="Brunstrom">
              <organization>Karlstad University</organization>
            </author>
            <author fullname="Tommy Pauly" initials="T." surname="Pauly">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Reese Enghardt" initials="R." surname="Enghardt">
              <organization>Netflix</organization>
            </author>
            <author fullname="Philipp S. Tiesel" initials="P. S." surname="Tiesel">
              <organization>SAP SE</organization>
            </author>
            <author fullname="Michael Welzl" initials="M." surname="Welzl">
              <organization>University of Oslo</organization>
            </author>
            <date day="9" month="November" year="2023"/>
            <abstract>
              <t>   The Transport Services system enables applications to use transport
   protocols flexibly for network communication and defines a protocol-
   independent Transport Services Application Programming Interface
   (API) that is based on an asynchronous, event-driven interaction
   pattern.  This document serves as a guide to implementing such a
   system.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-taps-impl-17"/>
        </reference>
        <reference anchor="RFC7556">
          <front>
            <title>Multiple Provisioning Domain Architecture</title>
            <author fullname="D. Anipko" initials="D." role="editor" surname="Anipko"/>
            <date month="June" year="2015"/>
            <abstract>
              <t>This document is a product of the work of the Multiple Interfaces Architecture Design team. It outlines a solution framework for some of the issues experienced by nodes that can be attached to multiple networks simultaneously. The framework defines the concept of a Provisioning Domain (PvD), which is a consistent set of network configuration information. PvD-aware nodes learn PvD-specific information from the networks they are attached to and/or other sources. PvDs are used to enable separation and configuration consistency in the presence of multiple concurrent connections.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7556"/>
          <seriesInfo name="DOI" value="10.17487/RFC7556"/>
        </reference>
        <reference anchor="TCP-COUPLING">
          <front>
            <title>ctrlTCP: Reducing Latency through Coupled, Heterogeneous Multi-Flow TCP Congestion Control</title>
            <author initials="S." surname="Islam" fullname="Safiqul Islam">
              <organization/>
            </author>
            <author initials="M." surname="Welzl" fullname="Michael Welzl">
              <organization/>
            </author>
            <author initials="K." surname="Hiorth" fullname="Kristian Hiorth">
              <organization/>
            </author>
            <author initials="D." surname="Hayes" fullname="David Hayes">
              <organization/>
            </author>
            <author initials="G." surname="Armitage" fullname="Grenville Armitage">
              <organization/>
            </author>
            <author initials="S." surname="Gjessing" fullname="Stein Gjessing">
              <organization/>
            </author>
            <date year="2018"/>
          </front>
          <seriesInfo name="IEEE INFOCOM Global Internet Symposium (GI) workshop (GI 2018)" value=""/>
        </reference>
        <reference anchor="RFC8095">
          <front>
            <title>Services Provided by IETF Transport Protocols and Congestion Control Mechanisms</title>
            <author fullname="G. Fairhurst" initials="G." role="editor" surname="Fairhurst"/>
            <author fullname="B. Trammell" initials="B." role="editor" surname="Trammell"/>
            <author fullname="M. Kuehlewind" initials="M." role="editor" surname="Kuehlewind"/>
            <date month="March" year="2017"/>
            <abstract>
              <t>This document describes, surveys, and classifies the protocol mechanisms provided by existing IETF protocols, as background for determining a common set of transport services. It examines the Transmission Control Protocol (TCP), Multipath TCP, the Stream Control Transmission Protocol (SCTP), the User Datagram Protocol (UDP), UDP-Lite, the Datagram Congestion Control Protocol (DCCP), the Internet Control Message Protocol (ICMP), the Real-Time Transport Protocol (RTP), File Delivery over Unidirectional Transport / Asynchronous Layered Coding (FLUTE/ALC) for Reliable Multicast, NACK- Oriented Reliable Multicast (NORM), Transport Layer Security (TLS), Datagram TLS (DTLS), and the Hypertext Transport Protocol (HTTP), when HTTP is used as a pseudotransport. This survey provides background for the definition of transport services within the TAPS working group.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8095"/>
          <seriesInfo name="DOI" value="10.17487/RFC8095"/>
        </reference>
        <reference anchor="RFC8923">
          <front>
            <title>A Minimal Set of Transport Services for End Systems</title>
            <author fullname="M. Welzl" initials="M." surname="Welzl"/>
            <author fullname="S. Gjessing" initials="S." surname="Gjessing"/>
            <date month="October" year="2020"/>
            <abstract>
              <t>This document recommends a minimal set of Transport Services offered by end systems and gives guidance on choosing among the available mechanisms and protocols. It is based on the set of transport features in RFC 8303.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8923"/>
          <seriesInfo name="DOI" value="10.17487/RFC8923"/>
        </reference>
        <reference anchor="RFC8922">
          <front>
            <title>A Survey of the Interaction between Security Protocols and Transport Services</title>
            <author fullname="T. Enghardt" initials="T." surname="Enghardt"/>
            <author fullname="T. Pauly" initials="T." surname="Pauly"/>
            <author fullname="C. Perkins" initials="C." surname="Perkins"/>
            <author fullname="K. Rose" initials="K." surname="Rose"/>
            <author fullname="C. Wood" initials="C." surname="Wood"/>
            <date month="October" year="2020"/>
            <abstract>
              <t>This document provides a survey of commonly used or notable network security protocols, with a focus on how they interact and integrate with applications and transport protocols. Its goal is to supplement efforts to define and catalog Transport Services by describing the interfaces required to add security protocols. This survey is not limited to protocols developed within the scope or context of the IETF, and those included represent a superset of features a Transport Services system may need to support.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8922"/>
          <seriesInfo name="DOI" value="10.17487/RFC8922"/>
        </reference>
        <reference anchor="RFC5952">
          <front>
            <title>A Recommendation for IPv6 Address Text Representation</title>
            <author fullname="S. Kawamura" initials="S." surname="Kawamura"/>
            <author fullname="M. Kawashima" initials="M." surname="Kawashima"/>
            <date month="August" year="2010"/>
            <abstract>
              <t>As IPv6 deployment increases, there will be a dramatic increase in the need to use IPv6 addresses in text. While the IPv6 address architecture in Section 2.2 of RFC 4291 describes a flexible model for text representation of an IPv6 address, this flexibility has been causing problems for operators, system engineers, and users. This document defines a canonical textual representation format. It does not define a format for internal storage, such as within an application or database. It is expected that the canonical format will be followed by humans and systems when representing IPv6 addresses as text, but all implementations must accept and be able to handle any legitimate RFC 4291 format. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5952"/>
          <seriesInfo name="DOI" value="10.17487/RFC5952"/>
        </reference>
        <reference anchor="RFC2914">
          <front>
            <title>Congestion Control Principles</title>
            <author fullname="S. Floyd" initials="S." surname="Floyd"/>
            <date month="September" year="2000"/>
            <abstract>
              <t>The goal of this document is to explain the need for congestion control in the Internet, and to discuss what constitutes correct congestion control. 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="41"/>
          <seriesInfo name="RFC" value="2914"/>
          <seriesInfo name="DOI" value="10.17487/RFC2914"/>
        </reference>
        <reference anchor="RFC8084">
          <front>
            <title>Network Transport Circuit Breakers</title>
            <author fullname="G. Fairhurst" initials="G." surname="Fairhurst"/>
            <date month="March" year="2017"/>
            <abstract>
              <t>This document explains what is meant by the term "network transport Circuit Breaker". It describes the need for Circuit Breakers (CBs) for network tunnels and applications when using non-congestion- controlled traffic and explains where CBs are, and are not, needed. It also defines requirements for building a CB and the expected outcomes of using a CB within the Internet.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="208"/>
          <seriesInfo name="RFC" value="8084"/>
          <seriesInfo name="DOI" value="10.17487/RFC8084"/>
        </reference>
        <reference anchor="RFC8801">
          <front>
            <title>Discovering Provisioning Domain Names and Data</title>
            <author fullname="P. Pfister" initials="P." surname="Pfister"/>
            <author fullname="É. Vyncke" surname="É. Vyncke"/>
            <author fullname="T. Pauly" initials="T." surname="Pauly"/>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi"/>
            <author fullname="W. Shao" initials="W." surname="Shao"/>
            <date month="July" year="2020"/>
            <abstract>
              <t>Provisioning Domains (PvDs) are defined as consistent sets of network configuration information. PvDs allows hosts to manage connections to multiple networks and interfaces simultaneously, such as when a home router provides connectivity through both a broadband and cellular network provider.</t>
              <t>This document defines a mechanism for explicitly identifying PvDs through a Router Advertisement (RA) option. This RA option announces a PvD identifier, which hosts can compare to differentiate between PvDs. The option can directly carry some information about a PvD and can optionally point to PvD Additional Information that can be retrieved using HTTP over TLS.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8801"/>
          <seriesInfo name="DOI" value="10.17487/RFC8801"/>
        </reference>
        <reference anchor="RFC8981">
          <front>
            <title>Temporary Address Extensions for Stateless Address Autoconfiguration in IPv6</title>
            <author fullname="F. Gont" initials="F." surname="Gont"/>
            <author fullname="S. Krishnan" initials="S." surname="Krishnan"/>
            <author fullname="T. Narten" initials="T." surname="Narten"/>
            <author fullname="R. Draves" initials="R." surname="Draves"/>
            <date month="February" year="2021"/>
            <abstract>
              <t>This document describes an extension to IPv6 Stateless Address Autoconfiguration that causes hosts to generate temporary addresses with randomized interface identifiers for each prefix advertised with autoconfiguration enabled. Changing addresses over time limits the window of time during which eavesdroppers and other information collectors may trivially perform address-based network-activity correlation when the same address is employed for multiple transactions by the same host. Additionally, it reduces the window of exposure of a host as being accessible via an address that becomes revealed as a result of active communication. This document obsoletes RFC 4941.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8981"/>
          <seriesInfo name="DOI" value="10.17487/RFC8981"/>
        </reference>
        <reference anchor="RFC8085">
          <front>
            <title>UDP Usage Guidelines</title>
            <author fullname="L. Eggert" initials="L." surname="Eggert"/>
            <author fullname="G. Fairhurst" initials="G." surname="Fairhurst"/>
            <author fullname="G. Shepherd" initials="G." surname="Shepherd"/>
            <date month="March" year="2017"/>
            <abstract>
              <t>The User Datagram Protocol (UDP) provides a minimal message-passing transport that has no inherent congestion control mechanisms. This document provides guidelines on the use of UDP for the designers of applications, tunnels, and other protocols that use UDP. Congestion control guidelines are a primary focus, but the document also provides guidance on other topics, including message sizes, reliability, checksums, middlebox traversal, the use of Explicit Congestion Notification (ECN), Differentiated Services Code Points (DSCPs), and ports.</t>
              <t>Because congestion control is critical to the stable operation of the Internet, applications and other protocols that choose to use UDP as an Internet transport must employ mechanisms to prevent congestion collapse and to establish some degree of fairness with concurrent traffic. They may also need to implement additional mechanisms, depending on how they use UDP.</t>
              <t>Some guidance is also applicable to the design of other protocols (e.g., protocols layered directly on IP or via IP-based tunnels), especially when these protocols do not themselves provide congestion control.</t>
              <t>This document obsoletes RFC 5405 and adds guidelines for multicast UDP usage.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="145"/>
          <seriesInfo name="RFC" value="8085"/>
          <seriesInfo name="DOI" value="10.17487/RFC8085"/>
        </reference>
        <reference anchor="RFC5280">
          <front>
            <title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
            <author fullname="D. Cooper" initials="D." surname="Cooper"/>
            <author fullname="S. Santesson" initials="S." surname="Santesson"/>
            <author fullname="S. Farrell" initials="S." surname="Farrell"/>
            <author fullname="S. Boeyen" initials="S." surname="Boeyen"/>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <author fullname="W. Polk" initials="W." surname="Polk"/>
            <date month="May" year="2008"/>
            <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="RFC8445">
          <front>
            <title>Interactive Connectivity Establishment (ICE): A Protocol for Network Address Translator (NAT) Traversal</title>
            <author fullname="A. Keranen" initials="A." surname="Keranen"/>
            <author fullname="C. Holmberg" initials="C." surname="Holmberg"/>
            <author fullname="J. Rosenberg" initials="J." surname="Rosenberg"/>
            <date month="July" year="2018"/>
            <abstract>
              <t>This document describes a protocol for Network Address Translator (NAT) traversal for UDP-based communication. This protocol is called Interactive Connectivity Establishment (ICE). ICE makes use of the Session Traversal Utilities for NAT (STUN) protocol and its extension, Traversal Using Relay NAT (TURN).</t>
              <t>This document obsoletes RFC 5245.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8445"/>
          <seriesInfo name="DOI" value="10.17487/RFC8445"/>
        </reference>
        <reference anchor="RFC8489">
          <front>
            <title>Session Traversal Utilities for NAT (STUN)</title>
            <author fullname="M. Petit-Huguenin" initials="M." surname="Petit-Huguenin"/>
            <author fullname="G. Salgueiro" initials="G." surname="Salgueiro"/>
            <author fullname="J. Rosenberg" initials="J." surname="Rosenberg"/>
            <author fullname="D. Wing" initials="D." surname="Wing"/>
            <author fullname="R. Mahy" initials="R." surname="Mahy"/>
            <author fullname="P. Matthews" initials="P." surname="Matthews"/>
            <date month="February" year="2020"/>
            <abstract>
              <t>Session Traversal Utilities for NAT (STUN) is a protocol that serves as a tool for other protocols in dealing with NAT traversal. It can be used by an endpoint to determine the IP address and port allocated to it by a NAT. It can also be used to check connectivity between two endpoints and as a keep-alive protocol to maintain NAT bindings. STUN works with many existing NATs and does not require any special behavior from them.</t>
              <t>STUN is not a NAT traversal solution by itself. Rather, it is a tool to be used in the context of a NAT traversal solution.</t>
              <t>This document obsoletes RFC 5389.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8489"/>
          <seriesInfo name="DOI" value="10.17487/RFC8489"/>
        </reference>
        <reference anchor="RFC8656">
          <front>
            <title>Traversal Using Relays around NAT (TURN): Relay Extensions to Session Traversal Utilities for NAT (STUN)</title>
            <author fullname="T. Reddy" initials="T." role="editor" surname="Reddy"/>
            <author fullname="A. Johnston" initials="A." role="editor" surname="Johnston"/>
            <author fullname="P. Matthews" initials="P." surname="Matthews"/>
            <author fullname="J. Rosenberg" initials="J." surname="Rosenberg"/>
            <date month="February" year="2020"/>
            <abstract>
              <t>If a host is located behind a NAT, it can be impossible for that host to communicate directly with other hosts (peers) in certain situations. In these situations, it is necessary for the host to use the services of an intermediate node that acts as a communication relay. This specification defines a protocol, called "Traversal Using Relays around NAT" (TURN), that allows the host to control the operation of the relay and to exchange packets with its peers using the relay. TURN differs from other relay control protocols in that it allows a client to communicate with multiple peers using a single relay address.</t>
              <t>The TURN protocol was designed to be used as part of the Interactive Connectivity Establishment (ICE) approach to NAT traversal, though it can also be used without ICE.</t>
              <t>This document obsoletes RFCs 5766 and 6156.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8656"/>
          <seriesInfo name="DOI" value="10.17487/RFC8656"/>
        </reference>
        <reference anchor="RFC3261">
          <front>
            <title>SIP: Session Initiation Protocol</title>
            <author fullname="J. Rosenberg" initials="J." surname="Rosenberg"/>
            <author fullname="H. Schulzrinne" initials="H." surname="Schulzrinne"/>
            <author fullname="G. Camarillo" initials="G." surname="Camarillo"/>
            <author fullname="A. Johnston" initials="A." surname="Johnston"/>
            <author fullname="J. Peterson" initials="J." surname="Peterson"/>
            <author fullname="R. Sparks" initials="R." surname="Sparks"/>
            <author fullname="M. Handley" initials="M." surname="Handley"/>
            <author fullname="E. Schooler" initials="E." surname="Schooler"/>
            <date month="June" year="2002"/>
            <abstract>
              <t>This document describes Session Initiation Protocol (SIP), an application-layer control (signaling) protocol for creating, modifying, and terminating sessions with one or more participants. These sessions include Internet telephone calls, multimedia distribution, and multimedia conferences. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3261"/>
          <seriesInfo name="DOI" value="10.17487/RFC3261"/>
        </reference>
        <reference anchor="RFC7478">
          <front>
            <title>Web Real-Time Communication Use Cases and Requirements</title>
            <author fullname="C. Holmberg" initials="C." surname="Holmberg"/>
            <author fullname="S. Hakansson" initials="S." surname="Hakansson"/>
            <author fullname="G. Eriksson" initials="G." surname="Eriksson"/>
            <date month="March" year="2015"/>
            <abstract>
              <t>This document describes web-based real-time communication use cases. Requirements on the browser functionality are derived from the use cases.</t>
              <t>This document was developed in an initial phase of the work with rather minor updates at later stages. It has not really served as a tool in deciding features or scope for the WG's efforts so far. It is being published to record the early conclusions of the WG. It will not be used as a set of rigid guidelines that specifications and implementations will be held to in the future.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7478"/>
          <seriesInfo name="DOI" value="10.17487/RFC7478"/>
        </reference>
        <reference anchor="RFC8699">
          <front>
            <title>Coupled Congestion Control for RTP Media</title>
            <author fullname="S. Islam" initials="S." surname="Islam"/>
            <author fullname="M. Welzl" initials="M." surname="Welzl"/>
            <author fullname="S. Gjessing" initials="S." surname="Gjessing"/>
            <date month="January" year="2020"/>
            <abstract>
              <t>When multiple congestion-controlled Real-time Transport Protocol (RTP) sessions traverse the same network bottleneck, combining their controls can improve the total on-the-wire behavior in terms of delay, loss, and fairness. This document describes such a method for flows that have the same sender, in a way that is as flexible and simple as possible while minimizing the number of changes needed to existing RTP applications. This document also specifies how to apply the method for the Network-Assisted Dynamic Adaptation (NADA) congestion control algorithm and provides suggestions on how to apply it to other congestion control algorithms.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8699"/>
          <seriesInfo name="DOI" value="10.17487/RFC8699"/>
        </reference>
        <reference anchor="RFC8838">
          <front>
            <title>Trickle ICE: Incremental Provisioning of Candidates for the Interactive Connectivity Establishment (ICE) Protocol</title>
            <author fullname="E. Ivov" initials="E." surname="Ivov"/>
            <author fullname="J. Uberti" initials="J." surname="Uberti"/>
            <author fullname="P. Saint-Andre" initials="P." surname="Saint-Andre"/>
            <date month="January" year="2021"/>
            <abstract>
              <t>This document describes "Trickle ICE", an extension to the Interactive Connectivity Establishment (ICE) protocol that enables ICE agents to begin connectivity checks while they are still gathering candidates, by incrementally exchanging candidates over time instead of all at once. This method can considerably accelerate the process of establishing a communication session.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8838"/>
          <seriesInfo name="DOI" value="10.17487/RFC8838"/>
        </reference>
        <reference anchor="RFC8260">
          <front>
            <title>Stream Schedulers and User Message Interleaving for the Stream Control Transmission Protocol</title>
            <author fullname="R. Stewart" initials="R." surname="Stewart"/>
            <author fullname="M. Tuexen" initials="M." surname="Tuexen"/>
            <author fullname="S. Loreto" initials="S." surname="Loreto"/>
            <author fullname="R. Seggelmann" initials="R." surname="Seggelmann"/>
            <date month="November" year="2017"/>
            <abstract>
              <t>The Stream Control Transmission Protocol (SCTP) is a message-oriented transport protocol supporting arbitrarily large user messages. This document adds a new chunk to SCTP for carrying payload data. This allows a sender to interleave different user messages that would otherwise result in head-of-line blocking at the sender. The interleaving of user messages is required for WebRTC data channels.</t>
              <t>Whenever an SCTP sender is allowed to send user data, it may choose from multiple outgoing SCTP streams. Multiple ways for performing this selection, called stream schedulers, are defined in this document. A stream scheduler can choose to either implement, or not implement, user message interleaving.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8260"/>
          <seriesInfo name="DOI" value="10.17487/RFC8260"/>
        </reference>
        <reference anchor="RFC7657">
          <front>
            <title>Differentiated Services (Diffserv) and Real-Time Communication</title>
            <author fullname="D. Black" initials="D." role="editor" surname="Black"/>
            <author fullname="P. Jones" initials="P." surname="Jones"/>
            <date month="November" year="2015"/>
            <abstract>
              <t>This memo describes the interaction between Differentiated Services (Diffserv) network quality-of-service (QoS) functionality and real- time network communication, including communication based on the Real-time Transport Protocol (RTP). Diffserv is based on network nodes applying different forwarding treatments to packets whose IP headers are marked with different Diffserv Codepoints (DSCPs). WebRTC applications, as well as some conferencing applications, have begun using the Session Description Protocol (SDP) bundle negotiation mechanism to send multiple traffic streams with different QoS requirements using the same network 5-tuple. The results of using multiple DSCPs to obtain different QoS treatments within a single network 5-tuple have transport protocol interactions, particularly with congestion control functionality (e.g., reordering). In addition, DSCP markings may be changed or removed between the traffic source and destination. This memo covers the implications of these Diffserv aspects for real-time network communication, including WebRTC.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7657"/>
          <seriesInfo name="DOI" value="10.17487/RFC7657"/>
        </reference>
        <reference anchor="RFC2474">
          <front>
            <title>Definition of the Differentiated Services Field (DS Field) in the IPv4 and IPv6 Headers</title>
            <author fullname="K. Nichols" initials="K." surname="Nichols"/>
            <author fullname="S. Blake" initials="S." surname="Blake"/>
            <author fullname="F. Baker" initials="F." surname="Baker"/>
            <author fullname="D. Black" initials="D." surname="Black"/>
            <date month="December" year="1998"/>
            <abstract>
              <t>This document defines the IP header field, called the DS (for differentiated services) field. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2474"/>
          <seriesInfo name="DOI" value="10.17487/RFC2474"/>
        </reference>
        <reference anchor="RFC8622">
          <front>
            <title>A Lower-Effort Per-Hop Behavior (LE PHB) for Differentiated Services</title>
            <author fullname="R. Bless" initials="R." surname="Bless"/>
            <date month="June" year="2019"/>
            <abstract>
              <t>This document specifies properties and characteristics of a Lower- Effort Per-Hop Behavior (LE PHB). The primary objective of this LE PHB is to protect Best-Effort (BE) traffic (packets forwarded with the default PHB) from LE traffic in congestion situations, i.e., when resources become scarce, BE traffic has precedence over LE traffic and may preempt it. Alternatively, packets forwarded by the LE PHB can be associated with a scavenger service class, i.e., they scavenge otherwise-unused resources only. There are numerous uses for this PHB, e.g., for background traffic of low precedence, such as bulk data transfers with low priority in time, non-time-critical backups, larger software updates, web search engines while gathering information from web servers and so on. This document recommends a standard Differentiated Services Code Point (DSCP) value for the LE PHB.</t>
              <t>This specification obsoletes RFC 3662 and updates the DSCP recommended in RFCs 4594 and 8325 to use the DSCP assigned in this specification.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8622"/>
          <seriesInfo name="DOI" value="10.17487/RFC8622"/>
        </reference>
        <reference anchor="RFC2597">
          <front>
            <title>Assured Forwarding PHB Group</title>
            <author fullname="J. Heinanen" initials="J." surname="Heinanen"/>
            <author fullname="F. Baker" initials="F." surname="Baker"/>
            <author fullname="W. Weiss" initials="W." surname="Weiss"/>
            <author fullname="J. Wroclawski" initials="J." surname="Wroclawski"/>
            <date month="June" year="1999"/>
            <abstract>
              <t>This document defines a general use Differentiated Services (DS) Per-Hop-Behavior (PHB) Group called Assured Forwarding (AF). [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2597"/>
          <seriesInfo name="DOI" value="10.17487/RFC2597"/>
        </reference>
        <reference anchor="RFC3246">
          <front>
            <title>An Expedited Forwarding PHB (Per-Hop Behavior)</title>
            <author fullname="B. Davie" initials="B." surname="Davie"/>
            <author fullname="A. Charny" initials="A." surname="Charny"/>
            <author fullname="J.C.R. Bennet" initials="J.C.R." surname="Bennet"/>
            <author fullname="K. Benson" initials="K." surname="Benson"/>
            <author fullname="J.Y. Le Boudec" initials="J.Y." surname="Le Boudec"/>
            <author fullname="W. Courtney" initials="W." surname="Courtney"/>
            <author fullname="S. Davari" initials="S." surname="Davari"/>
            <author fullname="V. Firoiu" initials="V." surname="Firoiu"/>
            <author fullname="D. Stiliadis" initials="D." surname="Stiliadis"/>
            <date month="March" year="2002"/>
            <abstract>
              <t>This document defines a PHB (per-hop behavior) called Expedited Forwarding (EF). The PHB is a basic building block in the Differentiated Services architecture. EF is intended to provide a building block for low delay, low jitter and low loss services by ensuring that the EF aggregate is served at a certain configured rate. This document obsoletes RFC 2598. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3246"/>
          <seriesInfo name="DOI" value="10.17487/RFC3246"/>
        </reference>
        <reference anchor="RFC5865">
          <front>
            <title>A Differentiated Services Code Point (DSCP) for Capacity-Admitted Traffic</title>
            <author fullname="F. Baker" initials="F." surname="Baker"/>
            <author fullname="J. Polk" initials="J." surname="Polk"/>
            <author fullname="M. Dolly" initials="M." surname="Dolly"/>
            <date month="May" year="2010"/>
            <abstract>
              <t>This document requests one Differentiated Services Code Point (DSCP) from the Internet Assigned Numbers Authority (IANA) for a class of real-time traffic. This traffic class conforms to the Expedited Forwarding Per-Hop Behavior. This traffic is also admitted by the network using a Call Admission Control (CAC) procedure involving authentication, authorization, and capacity admission. This differs from a real-time traffic class that conforms to the Expedited Forwarding Per-Hop Behavior but is not subject to capacity admission or subject to very coarse capacity admission. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5865"/>
          <seriesInfo name="DOI" value="10.17487/RFC5865"/>
        </reference>
        <reference anchor="RFC4594">
          <front>
            <title>Configuration Guidelines for DiffServ Service Classes</title>
            <author fullname="J. Babiarz" initials="J." surname="Babiarz"/>
            <author fullname="K. Chan" initials="K." surname="Chan"/>
            <author fullname="F. Baker" initials="F." surname="Baker"/>
            <date month="August" year="2006"/>
            <abstract>
              <t>This document describes service classes configured with Diffserv and recommends how they can be used and how to construct them using Differentiated Services Code Points (DSCPs), traffic conditioners, Per-Hop Behaviors (PHBs), and Active Queue Management (AQM) mechanisms. There is no intrinsic requirement that particular DSCPs, traffic conditioners, PHBs, and AQM be used for a certain service class, but as a policy and for interoperability it is useful to apply them consistently. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4594"/>
          <seriesInfo name="DOI" value="10.17487/RFC4594"/>
        </reference>
        <reference anchor="RFC8899">
          <front>
            <title>Packetization Layer Path MTU Discovery for Datagram Transports</title>
            <author fullname="G. Fairhurst" initials="G." surname="Fairhurst"/>
            <author fullname="T. Jones" initials="T." surname="Jones"/>
            <author fullname="M. Tüxen" initials="M." surname="Tüxen"/>
            <author fullname="I. Rüngeler" initials="I." surname="Rüngeler"/>
            <author fullname="T. Völker" initials="T." surname="Völker"/>
            <date month="September" year="2020"/>
            <abstract>
              <t>This document specifies Datagram Packetization Layer Path MTU Discovery (DPLPMTUD). This is a robust method for Path MTU Discovery (PMTUD) for datagram Packetization Layers (PLs). It allows a PL, or a datagram application that uses a PL, to discover whether a network path can support the current size of datagram. This can be used to detect and reduce the message size when a sender encounters a packet black hole. It can also probe a network path to discover whether the maximum packet size can be increased. This provides functionality for datagram transports that is equivalent to the PLPMTUD specification for TCP, specified in RFC 4821, which it updates. It also updates the UDP Usage Guidelines to refer to this method for use with UDP datagrams and updates SCTP.</t>
              <t>The document provides implementation notes for incorporating Datagram PMTUD into IETF datagram transports or applications that use datagram transports.</t>
              <t>This specification updates RFC 4960, RFC 4821, RFC 6951, RFC 8085, and RFC 8261.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8899"/>
          <seriesInfo name="DOI" value="10.17487/RFC8899"/>
        </reference>
        <reference anchor="RFC5482">
          <front>
            <title>TCP User Timeout Option</title>
            <author fullname="L. Eggert" initials="L." surname="Eggert"/>
            <author fullname="F. Gont" initials="F." surname="Gont"/>
            <date month="March" year="2009"/>
            <abstract>
              <t>The TCP user timeout controls how long transmitted data may remain unacknowledged before a connection is forcefully closed. It is a local, per-connection parameter. This document specifies a new TCP option -- the TCP User Timeout Option -- that allows one end of a TCP connection to advertise its current user timeout value. This information provides advice to the other end of the TCP connection to adapt its user timeout accordingly. Increasing the user timeouts on both ends of a TCP connection allows it to survive extended periods without end-to-end connectivity. Decreasing the user timeouts allows busy servers to explicitly notify their clients that they will maintain the connection state only for a short time without connectivity. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5482"/>
          <seriesInfo name="DOI" value="10.17487/RFC5482"/>
        </reference>
        <reference anchor="RFC9329">
          <front>
            <title>TCP Encapsulation of Internet Key Exchange Protocol (IKE) and IPsec Packets</title>
            <author fullname="T. Pauly" initials="T." surname="Pauly"/>
            <author fullname="V. Smyslov" initials="V." surname="Smyslov"/>
            <date month="November" year="2022"/>
            <abstract>
              <t>This document describes a method to transport Internet Key Exchange Protocol (IKE) and IPsec packets over a TCP connection for traversing network middleboxes that may block IKE negotiation over UDP. This method, referred to as "TCP encapsulation", involves sending both IKE packets for Security Association (SA) establishment and Encapsulating Security Payload (ESP) packets over a TCP connection. This method is intended to be used as a fallback option when IKE cannot be negotiated over UDP.</t>
              <t>TCP encapsulation for IKE and IPsec was defined in RFC 8229. This document clarifies the specification for TCP encapsulation by including additional clarifications obtained during implementation and deployment of this method. This documents obsoletes RFC 8229.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9329"/>
          <seriesInfo name="DOI" value="10.17487/RFC9329"/>
        </reference>
        <reference anchor="RFC9218">
          <front>
            <title>Extensible Prioritization Scheme for HTTP</title>
            <author fullname="K. Oku" initials="K." surname="Oku"/>
            <author fullname="L. Pardue" initials="L." surname="Pardue"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>This document describes a scheme that allows an HTTP client to communicate its preferences for how the upstream server prioritizes responses to its requests, and also allows a server to hint to a downstream intermediary how its responses should be prioritized when they are forwarded. This document defines the Priority header field for communicating the initial priority in an HTTP version-independent manner, as well as HTTP/2 and HTTP/3 frames for reprioritizing responses. These share a common format structure that is designed to provide future extensibility.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9218"/>
          <seriesInfo name="DOI" value="10.17487/RFC9218"/>
        </reference>
        <reference anchor="RFC8293">
          <front>
            <title>A Framework for Multicast in Network Virtualization over Layer 3</title>
            <author fullname="A. Ghanwani" initials="A." surname="Ghanwani"/>
            <author fullname="L. Dunbar" initials="L." surname="Dunbar"/>
            <author fullname="M. McBride" initials="M." surname="McBride"/>
            <author fullname="V. Bannai" initials="V." surname="Bannai"/>
            <author fullname="R. Krishnan" initials="R." surname="Krishnan"/>
            <date month="January" year="2018"/>
            <abstract>
              <t>This document provides a framework for supporting multicast traffic in a network that uses Network Virtualization over Layer 3 (NVO3). Both infrastructure multicast and application-specific multicast are discussed. It describes the various mechanisms that can be used for delivering such traffic as well as the data plane and control plane considerations for each of the mechanisms.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8293"/>
          <seriesInfo name="DOI" value="10.17487/RFC8293"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol. TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC8546">
          <front>
            <title>The Wire Image of a Network Protocol</title>
            <author fullname="B. Trammell" initials="B." surname="Trammell"/>
            <author fullname="M. Kuehlewind" initials="M." surname="Kuehlewind"/>
            <date month="April" year="2019"/>
            <abstract>
              <t>This document defines the wire image, an abstraction of the information available to an on-path non-participant in a networking protocol. This abstraction is intended to shed light on the implications that increased encryption has for network functions that use the wire image.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8546"/>
          <seriesInfo name="DOI" value="10.17487/RFC8546"/>
        </reference>
        <reference anchor="RFC8303">
          <front>
            <title>On the Usage of Transport Features Provided by IETF Transport Protocols</title>
            <author fullname="M. Welzl" initials="M." surname="Welzl"/>
            <author fullname="M. Tuexen" initials="M." surname="Tuexen"/>
            <author fullname="N. Khademi" initials="N." surname="Khademi"/>
            <date month="February" year="2018"/>
            <abstract>
              <t>This document describes how the transport protocols Transmission Control Protocol (TCP), MultiPath TCP (MPTCP), Stream Control Transmission Protocol (SCTP), User Datagram Protocol (UDP), and Lightweight User Datagram Protocol (UDP-Lite) expose services to applications and how an application can configure and use the features that make up these services. It also discusses the service provided by the Low Extra Delay Background Transport (LEDBAT) congestion control mechanism. The description results in a set of transport abstractions that can be exported in a transport services (TAPS) API.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8303"/>
          <seriesInfo name="DOI" value="10.17487/RFC8303"/>
        </reference>
      </references>
    </references>
    <?line 3634?>

<section anchor="implmapping">
      <name>Implementation Mapping</name>
      <t>The way the concepts from this abstract API map into concrete APIs in a
given language on a given platform largely depends on the features and norms of
the language and the platform. Actions could be implemented as functions or
method calls, for instance, and events could be implemented via event queues,
handler functions or classes, communicating sequential processes, or other
asynchronous calling conventions.</t>
      <section anchor="types">
        <name>Types</name>
        <t>The basic types mentioned in <xref target="notation"/> typically have natural
correspondences in practical programming languages, perhaps constrained by
implementation-specific limitations. For example:</t>
        <ul spacing="normal">
          <li>
            <t>An Integer can typically be represented in C by an <tt>int</tt> or <tt>long</tt>, subject
to the underlying platform's ranges for each.</t>
          </li>
          <li>
            <t>In C, a Tuple may be represented as a <tt>struct</tt> with one member for each of
the value types in the ordered grouping. In Python, by contrast, a Tuple may
be represented as a <tt>tuple</tt>, a sequence of dynamically-typed
elements.</t>
          </li>
          <li>
            <t>A Set may be represented as a <tt>std::set</tt> in C++ or as a <tt>set</tt> in
Python. In C, it may be represented as an array or as a higher-level data
structure with appropriate accessors defined.</t>
          </li>
        </ul>
        <t>The objects described in <xref target="notation"/> can similarly be represented in
different ways depending on which programming language is used. Objects
like Preconnections, Connections, and Listeners can be long-lived, and
benefit from using object-oriented constructs. Note that in C, these
objects may need to provide a way to release or free their underlying
memory when the application is done using them. For example, since a
Preconnection can be used to initiate multiple Connections, it is the
responsibility of the application to clean up the Preconnection memory
if necessary.</t>
      </section>
      <section anchor="events-and-errors">
        <name>Events and Errors</name>
        <t>This specification treats events and errors similarly. Errors, just as any
other events, may occur asynchronously in network applications. However,
implementations of this API may report errors synchronously,
according to the error handling idioms of the implementation
platform, where they can be immediately detected, such as by generating an
exception when attempting to initiate a Connection with inconsistent
Transport Properties. An error can provide an optional reason to the
application with further details about why the error occurred.</t>
      </section>
      <section anchor="time-duration">
        <name>Time Duration</name>
        <t>Time duration types are implementation-specific.
For instance, it could be a number of seconds, number of milliseconds, or a <tt>struct timeval</tt> in C or a user-defined <tt>Duration</tt> class in C++.</t>
      </section>
    </section>
    <section anchor="convenience-functions">
      <name>Convenience Functions</name>
      <section anchor="preference-conv">
        <name>Adding Preference Properties</name>
        <t>TransportProperties will frequently need to set
Selection Properties of type <tt>Preference</tt>, therefore implementations can provide special actions
for adding each preference level i.e, <tt>TransportProperties.Set(some_property, avoid)
is equivalent to </tt>TransportProperties.Avoid(some_property)`:</t>
        <artwork><![CDATA[
TransportProperties.Require(property)
TransportProperties.Prefer(property)
TransportProperties.NoPreference(property)
TransportProperties.Avoid(property)
TransportProperties.Prohibit(property)
]]></artwork>
      </section>
      <section anchor="property-profiles">
        <name>Transport Property Profiles</name>
        <t>To ease the use of the Transport Services API, implementations
can provide a mechanism to create Transport Property objects (see <xref target="selection-props"/>)
that are preconfigured with frequently used sets of properties; the following are
in common use in current applications:</t>
        <section anchor="reliable-inorder-stream">
          <name>reliable-inorder-stream</name>
          <t>This profile provides reliable, in-order transport service with
congestion control.
TCP is an example of a protocol that provides this service.
It should consist of the following properties:</t>
          <table anchor="tabrio">
            <name>reliable-inorder-stream preferences</name>
            <thead>
              <tr>
                <th align="left">Property</th>
                <th align="left">Value</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">reliability</td>
                <td align="left">require</td>
              </tr>
              <tr>
                <td align="left">preserveOrder</td>
                <td align="left">require</td>
              </tr>
              <tr>
                <td align="left">congestionControl</td>
                <td align="left">require</td>
              </tr>
              <tr>
                <td align="left">preserveMsgBoundaries</td>
                <td align="left">no preference</td>
              </tr>
            </tbody>
          </table>
        </section>
        <section anchor="reliable-message">
          <name>reliable-message</name>
          <t>This profile provides message-preserving, reliable, in-order
transport service with congestion control.
SCTP is an example of a protocol that provides this service.
It should consist of the following properties:</t>
          <table anchor="tabrm">
            <name>reliable-message preferences</name>
            <thead>
              <tr>
                <th align="left">Property</th>
                <th align="left">Value</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">reliability</td>
                <td align="left">require</td>
              </tr>
              <tr>
                <td align="left">preserveOrder</td>
                <td align="left">require</td>
              </tr>
              <tr>
                <td align="left">congestionControl</td>
                <td align="left">require</td>
              </tr>
              <tr>
                <td align="left">preserveMsgBoundaries</td>
                <td align="left">require</td>
              </tr>
            </tbody>
          </table>
        </section>
        <section anchor="unreliable-datagram">
          <name>unreliable-datagram</name>
          <t>This profile provides a datagram transport service without any
reliability guarantee.
An example of a protocol that provides this service is UDP.
It consists of the following properties:</t>
          <table anchor="tabud">
            <name>unreliable-datagram preferences</name>
            <thead>
              <tr>
                <th align="left">Property</th>
                <th align="left">Value</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">reliability</td>
                <td align="left">avoid</td>
              </tr>
              <tr>
                <td align="left">preserveOrder</td>
                <td align="left">avoid</td>
              </tr>
              <tr>
                <td align="left">congestionControl</td>
                <td align="left">no preference</td>
              </tr>
              <tr>
                <td align="left">preserveMsgBoundaries</td>
                <td align="left">require</td>
              </tr>
              <tr>
                <td align="left">safelyReplayable</td>
                <td align="left">true</td>
              </tr>
            </tbody>
          </table>
          <t>Applications that choose this Transport Property Profile would
avoid the additional latency that could be introduced
by retransmission or reordering in a transport protocol.</t>
          <t>Applications that choose this Transport Property Profile to reduce latency
should also consider setting an appropriate capacity profile Property,
see <xref target="prop-cap-profile"/> and might benefit from controlling checksum
coverage, see <xref target="prop-checksum-control-send"/> and <xref target="prop-checksum-control-receive"/>.</t>
        </section>
      </section>
    </section>
    <section anchor="relationship-to-the-minimal-set-of-transport-services-for-end-systems">
      <name>Relationship to the Minimal Set of Transport Services for End Systems</name>
      <t><xref target="RFC8923"/> identifies a minimal set of transport services that end systems should offer. These services make all non-security-related transport features of TCP, MPTCP, UDP, UDP-Lite, SCTP and LEDBAT available that 1) require interaction with the application, and 2) do not get in the way of a possible implementation over TCP (or, with limitations, UDP). The following text explains how this minimal set is reflected in the present API. For brevity, it is based on the list in  <xref section="4.1" sectionFormat="of" target="RFC8923"/>, updated according to the discussion in <xref section="5" sectionFormat="of" target="RFC8923"/>. The present API covers all elements of this section.
This list is a subset of the transport features in Appendix A of <xref target="RFC8923"/>, which refers to the primitives in "pass 2" (Section 4) of <xref target="RFC8303"/> for further details on the implementation with TCP, MPTCP, UDP, UDP-Lite, SCTP and LEDBAT. This facilitates finding the specifications for implementing
the services listed below with these protocols.</t>
      <ul spacing="normal">
        <li>
          <t>Connect:
<tt>Initiate</tt> action (<xref target="initiate"/>).</t>
        </li>
        <li>
          <t>Listen:
<tt>Listen</tt> action (<xref target="listen"/>).</t>
        </li>
        <li>
          <t>Specify number of attempts and/or timeout for the first establishment Message:
<tt>timeout</tt> parameter of <tt>Initiate</tt> (<xref target="initiate"/>) or <tt>InitiateWithSend</tt> action (<xref target="initiate-and-send"/>).</t>
        </li>
        <li>
          <t>Disable MPTCP:
<tt>multipath</tt> property (<xref target="multipath-mode"/>).</t>
        </li>
        <li>
          <t>Hand over a Message to reliably transfer (possibly multiple times) before connection establishment:
<tt>InitiateWithSend</tt> action (<xref target="initiate-and-send"/>).</t>
        </li>
        <li>
          <t>Change timeout for aborting connection (using retransmit limit or time value):
<tt>connTimeout</tt> property, using a time value (<xref target="conn-timeout"/>).</t>
        </li>
        <li>
          <t>Timeout event when data could not be delivered for too long:
<tt>ConnectionError</tt> event (<xref target="termination"/>).</t>
        </li>
        <li>
          <t>Suggest timeout to the peer:
See "TCP-specific Properties: User Timeout Option (UTO)" (<xref target="tcp-uto"/>).</t>
        </li>
        <li>
          <t>Notification of ICMP error message arrival:
<tt>softErrorNotify</tt> (<xref target="prop-soft-error"/>) and <tt>SoftError</tt> event (<xref target="soft-errors"/>).</t>
        </li>
        <li>
          <t>Choose a scheduler to operate between streams of an association:
<tt>connScheduler</tt> property (<xref target="conn-scheduler"/>).</t>
        </li>
        <li>
          <t>Configure priority or weight for a scheduler:
<tt>connPriority</tt> property (<xref target="conn-priority"/>).</t>
        </li>
        <li>
          <t>"Specify checksum coverage used by the sender" and "Disable checksum when sending":
<tt>msgChecksumLen</tt> property (<xref target="msg-checksum"/>) and <tt>fullChecksumSend</tt> property (<xref target="prop-checksum-control-send"/>).</t>
        </li>
        <li>
          <t>"Specify minimum checksum coverage required by receiver" and "Disable checksum requirement when receiving":
<tt>recvChecksumLen</tt> property (<xref target="conn-recv-checksum"/>) and <tt>fullChecksumRecv</tt> property (<xref target="prop-checksum-control-receive"/>).</t>
        </li>
        <li>
          <t>"Specify DF field":
<tt>noFragmentation</tt> property (<xref target="send-singular"/>).</t>
        </li>
        <li>
          <t>Get max. transport-message size that may be sent using a non-fragmented IP packet from the configured interface:
<tt>singularTransmissionMsgMaxLen</tt> property (<xref target="conn-max-msg-notfrag"/>).</t>
        </li>
        <li>
          <t>Get max. transport-message size that may be received from the configured interface:
<tt>recvMsgMaxLen</tt> property (<xref target="conn-max-msg-recv"/>).</t>
        </li>
        <li>
          <t>Obtain ECN field:
This is a read-only Message Property of the MessageContext object (see "UDP(-Lite)-specific Property: ECN" <xref target="receive-ecn"/>).</t>
        </li>
        <li>
          <t>"Specify DSCP field", "Disable Nagle algorithm", "Enable and configure a <tt>Low Extra Delay Background Transfer</tt>":
as suggested in <xref section="5.5" sectionFormat="of" target="RFC8923"/>, these transport features are collectively offered via the <tt>connCapacityProfile</tt> property (<xref target="prop-cap-profile"/>). Per-Message control ("Request not to bundle messages") is offered via the <tt>msgCapacityProfile</tt> property (<xref target="send-profile"/>).</t>
        </li>
        <li>
          <t>Close after reliably delivering all remaining data, causing an event informing the application on the other side:
this is offered by the <tt>Close</tt> action with slightly changed semantics in line with the discussion in <xref section="5.2" sectionFormat="of" target="RFC8923"/> (<xref target="termination"/>).</t>
        </li>
        <li>
          <t>"Abort without delivering remaining data, causing an event informing the application on the other side" and "Abort without delivering remaining data, not causing an event informing the application on the other side":
this is offered by the <tt>Abort</tt> action without promising that this is signaled to the other side. If it is, a <tt>ConnectionError</tt> event will be invoked at the peer (<xref target="termination"/>).</t>
        </li>
        <li>
          <t>"Reliably transfer data, with congestion control", "Reliably transfer a message, with congestion control" and "Unreliably transfer a message":
data is transferred via the <tt>Send</tt> action (<xref target="sending"/>). Reliability is controlled via the <tt>reliability</tt> (<xref target="prop-reliable"/>) property and the <tt>msgReliable</tt> Message Property (<xref target="msg-reliable-message"/>). Transmitting data as a Message or without delimiters is controlled via Message Framers (<xref target="framing"/>). The choice of congestion control is provided via the <tt>congestionControl</tt> property (<xref target="prop-cc"/>).</t>
        </li>
        <li>
          <t>Configurable Message Reliability:
the <tt>msgLifetime</tt> Message Property implements a time-based way to configure message reliability (<xref target="msg-lifetime"/>).</t>
        </li>
        <li>
          <t>"Ordered message delivery (potentially slower than unordered)" and "Unordered message delivery (potentially faster than ordered)":
these two transport features are controlled via the Message Property <tt>msgOrdered</tt> (<xref target="msg-ordered"/>).</t>
        </li>
        <li>
          <t>Request not to delay the acknowledgment (SACK) of a message:
should the protocol support it, this is one of the transport features the Transport Services system can apply when an application uses the <tt>connCapacityProfile</tt> Property (<xref target="prop-cap-profile"/>) or the <tt>msgCapacityProfile</tt> Message Property (<xref target="send-profile"/>) with value <tt>Low Latency/Interactive</tt>.</t>
        </li>
        <li>
          <t>Receive data (with no message delimiting):
<tt>Receive</tt> action (<xref target="receiving-action"/>) and <tt>Received</tt> event (<xref target="receive-complete"/>).</t>
        </li>
        <li>
          <t>Receive a message:
<tt>Receive</tt> action (<xref target="receiving-action"/>) and <tt>Received</tt> event (<xref target="receive-complete"/>), using Message Framers (<xref target="framing"/>).</t>
        </li>
        <li>
          <t>Information about partial message arrival:
<tt>Receive</tt> action (<xref target="receiving-action"/>) and <tt>ReceivedPartial</tt> event (<xref target="receive-partial"/>).</t>
        </li>
        <li>
          <t>Notification of send failures:
<tt>Expired</tt> event (<xref target="expired"/>) and <tt>SendError</tt> event (<xref target="send-error"/>).</t>
        </li>
        <li>
          <t>Notification that the stack has no more user data to send:
applications can obtain this information via the <tt>Sent</tt> event (<xref target="sent"/>).</t>
        </li>
        <li>
          <t>Notification to a receiver that a partial message delivery has been aborted:
<tt>ReceiveError</tt> event (<xref target="receive-error"/>).</t>
        </li>
        <li>
          <t>Notification of Excessive Retransmissions (early warning below abortion threshold):
 <tt>SoftError</tt> event (<xref target="soft-errors"/>).</t>
        </li>
      </ul>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+y9+3Ijx5U3+H8+RU0rNkxOAFBfpRblsc1mtySu+0I3Keub
9TjEIlAgyw1UwVUFUlBPT+w77APsPsvum+yT7LlmnswqgGxdPPPFjiNsNwtV
eT158lx/Zzweu67sFsVBdlhlhxdt1+TTLjtcrRblNO/Kuspe5puiyY6rrmjm
+bTIujo7a/KqXdVNl50WzXU5LVqXX1w0xfVBdnZ4chpedrN6WuVLaH3W5PNu
XBbdfNzlq3Zc6ivjh4/dLO+KAwf9FZd1sznI2m7mXLlqDrKuWbfdw/v3v7j/
0N3UzbvLpl6vpJfv4O+yusy+xmfuXbGBF2YH3HlVdOPn2KVzbZdXs+/zRV3B
MDYw1FV5kP2lq6ejrIUpNMW8hX9tlviPvzqXr7urujlwWTaG/2ZZWbUH2bMJ
znm5LBYLeshzetaUeRX/UDeXB9nXdX25KLLTm7L7sWgW0H329fLiG3qhqXGt
i1nZ1Q09KJZ5uTjIcGX+0ElTk+kV/Qa7URQdNAiLkF+Pv14vFuOTRd79mD2g
36dlB6v19P79x9n/tm5K+Wpar6sOl9EMIJ7Oq0n2XbH40c7lFXydFwvzvDdS
mtu3VXldNC10nNXz7E27qKORnrzJntU/ZA/uP72fPVuU1Qy2wgz1/qMHn2Xh
Kz/S13Vzk2/seixxPDfFH8p5OVmX9aSq4ym8nWQvqsurvJl1ZhZvi6It4h9o
1K9hdRflD9FQHzx8kB0uLpry8qrLvpPeeZgv6zb7Ou9qIIyjw+yLJ/cfPYzH
C6vQFbPstAOSbXEhDpcFrH/e39FCxjIBioxn8PUk+yovm6t109opfF3PGmg6
/mlg6Q8vimZWFFU0p+fFKm+6ZVF1+AqsQ1kVMLDqMnrrqyZv4Ui/ri+ASp+t
y8VM3+Dpa9Oj7PDZw8fZo29fJHQ1rTshKj9bOLjN5g9FcznJL2bVJJ9O1u/o
d6DLg+yq61YHn356c3MziV/5tEeYf1wXV4vippTmlTqbv+XpT7QoL2DZ27au
YtqBtyfv/Nt/KOSlybReRiuhX48PF4uiiE7VN0XzY31ZVE3eJcfq66JZ5tUm
HvnRJDspkB+1ZthHNRyB6PnARn69yNvL+iYa1+n0qq4X+OtRvVytO2Rzp9Oy
qIClhiHKl1n29YOH2dM//WmQRv8I385k2rI+03b1B/gvD2sCQ4qncgLMroRz
ZNnDyVW5KFer7DT6jWZzeniSnb6I+VUBvxTj065YXRUVru8psLb/5/8sss/H
Dx6ZGTy4/+TJ59kz4FFltW2R/bBXPIY/dDSA/oE6gy3I14uNGfZZvVxuzFMa
MF5uBVwT00k06DdVIT+d5M27hCMcrWG5YBtq4Aj5opzXTVXmyBkePP54ztCt
cEB/yLEzIklX1TDbDqgC753j8fNJuCjzZnp1ALdhNd/+TrlcLfDp26+OPn/y
5DP859nRyfjozbcnL49ff31Ancs1f2/aNQv4FZnlbD1FynoJY62mm6y7gpv0
8gpobg0jm43gDMBVioegqNdt9mq96MrxVwugOPge3qoui5ZEBPhnB9fFPV5P
mG/R4ni5X/zP8YsXL7Lj11+9OXrzCsi2vsgX/p7OTjfLVd2W62W29/XxfobX
fHtVr/Cv7OH9B0/3qZlwL+N/xr5p2nogy+N2kS/9U97+03xe/n29iH5Lvoyu
Qstw0uuw9+UfJ9k3JQgQV8mnf2xKWBUQDKJfk4+fw8c5CiPxt8/z63IW/ZJ8
B5fGYbMsu/yySD79uimq6xLYWPpCf6m+/lvRtsryzWp1BXCr6EcSzGgTnHPj
8TjLRUJ07uyqbDMQ79Z028yKdtqUF0DyMHF9KcuNGLkCQkLxBgnOC39ww5wc
j1Ck7K5AslSx0i1I5uyu8i4rqhyuqZZegGNfTKk1OFj+bWwaxLl6gZ3PHJAU
klC2AsYNI9zA5GAMi8Umg9YaOKblsgAuhsOHzn3787yFQcFEVot6g3Ny0EdV
3MSt+7+yeZF36wY+BCHrql5D08Xf1yXetRmQDh4NmZYzq9BixzCPVTEFwQb4
BI5gXi/gTPEM+5J1hgwAeMoUe3MXGxwBEAn2k7ebagpntoLTOYLZ1TBRXpZl
CXvIy7SE7QRigJ6PuwzmjGsPYtkMR9fAZEmkh1E+O30O8vD0XdHxuuQ8IGBP
S2iotOI/vh5Wn/ZqBG/g1iMNwoCIJm6uiqaAJ7NVDZ+3yCMXM9nDbN4A31si
R0GOG+8ZrXMNw4RjtBja5wkT47KczRaFc58gL2lq4Ga4xilp6mJ/JGlme7AK
+0yDgbpxScIrsDgrUCtI2nL40xUIk+NFcQ2c45adhDbnIJzNoDX3/v0/9Xn+
hw9w1IdaaTdAqMusXa/wOWheH0MFWX2NB+ujjw7vGgw3nCHacrPfrWw4UQHv
uePPWtrt7GfsttFHW96SfFavOvinnOIb4HzZBVxU85JpK8vh2QxZBm+Ob9af
W2pmiqO9rhfXhaxMYA7a/xi1mBWeGdhn5hhtaIDYEu2ICwcTH+Kb2DoMs1yW
PwLZwDpcFFfA4esmuwAJfJbB3uCrhhYdc5GCFxSXRhdrWlegiuECjD6W5fB8
5ovih/ICRCgQO7cyvUyYnl8lJAu/EyMaEc5KqM8OHWaH8uyc9I0MDhmxKHh/
DhR0kU/fuWWBwyzbJU7hCm7YrIbBNjdlizTBLOkCtwyUGLh4gOxQsKG1oIOS
FTl8Y7qcuIHzcazfyKhyoMk5iHi0Nvk7JNANnugS1SwUqpDVLUCYccLycOeE
aQiDKCumNM9T4N9XcOCghS+B0Kq6WjXEIlYon2WXa6S8rnZ++LQUOw4ztJdf
g2yIu5K9f//7vngH7AAZ2+ANIY2Arg29t37sdL7iS8tfoLinJNHyFut+4h70
TwqdJyLUKl9sWj4bQOrKvX4PcufT+188+fBhlMlfXzx8hH8h9fgnD5GlbZmC
vYmBvMpoDx3snGVGqBwByeQDzCJDda1ogBkjkeLn/MkFHGLahIiR1NCG/zLv
HPLzEnZAucDWoeaLttZFaKPTRmcTmU++wfaRqTREDb6hIMTgwoNM1uXI+jqc
kN86eDh9N3LF5HJC4pGeNxCuUXWEXtor4jR1tgBxs6h4MmHrZVYgZtY3cB/B
BQ2kzkfSwfqVfJOv26hXM0jsH8lyVrZwbzdwd9BhyVAZaIBPw5cjOKzTHJso
mZE2qFAUGTaQM6MBmv3kk+wMdDlQnRb15Ybm/Lrmfc3ef1LJPz9sJW5cbhyH
XMHEB4BnLVG5AjEge3PxN7piaN2Zq+A9b653HBrd2XDvfwlfHE71Hil678GZ
IJbAnBmmVnPz+N2La2TKo9AJ/8b8EO4H2oK4a2ZosBkwE2T49q5ebL6k8zFG
fRME8A73NW9BBkNimPGEeBC5jBgXr6BRCDNg0RF3VRfSjw9HdUEiygXKGSPi
g+tWFtByswNcxsNKepF7sSlIgfWzhJf+4z/+QzQGXvPs4F9kLff26cedzeRN
k5O9Q1Y0avAvf71zk8h9eJP4At01wslAW7JpuGE0LlrPodmNf8c7/tvfDYwE
7pEWTw5JF2YDv/RN4oXd5WU1+BpaHvLABPiDVSCDmytkcKiW8f3Vrufz8gcl
ijz7+1o07yWaKvANFDNqYM8TOxOZPjV8f8QdPPj9KJtMJvvyCk9x6A2Ztp4v
lrqgp1UupGwHjKQvRIoMAZnu+GIzvs4X68JLPROnRy8l86rWfcEetCURj4AD
fIn/2NCPKPJAs7hgplNcSKSLsT19l2xowI0ofuhgZfgE84pKAykTABZn/hwj
312gojatgYnvIT+G6xBm3bQjkG7xssY/4QR++LBPDFIOOzyhQQPjAipYkCmI
t9mrDzwQ0MA6pOaxo+sguvjGypmD4AVH2gpFa1LVSYwiWYb6sVzGjGeEewYC
ao1mpCkNFmXFSEjR0cBifVfwNbdEmQk3FXXuiOeAEIuXxmZVtMRDntX1osgr
dMHgpYYzJIELv2JKOO+adXGOi3wOUmFbnE/gMzQEXRZN77OSn/OnLb75ek3G
tN6bwGUWWbVeXkRvn3YoidqXcb1B5wWZxouU3559NX5KozjJDmcz+KklV9jx
yfVjHCf8/2egbNAPItw8+eIJijJ4I1Q4INoq+AgE3WW5IB5Ha4LNMy8mubWU
YQjzAL2R9iqjgz2C4wjjUqVQGAbPxdzPeMdfgpCHKhZ3jRIbdIajOUOrHQ2+
bkAWhF/IW4Y7hRqgal+8EzTCUbQaQB1opkSNPx+rED4j+QKnAn/De3gfwXcs
mJzvmRUYZSdNAdI/Gqn3z5HDJbuEfBAYFy5BmBstDfy7nClBwgAaGNOqZomN
3oPGdJaHeI+gpwNuPBjd+V/+ega/nI9IbIyXOJe5YsPUD3T7Y9HUuK9LEN6h
1WIhqhaaL6Lx4Uh4qbH9CTF/usLkFMIrzJLJO3adNyUJ78CYLrsrIj80KsNX
62poO2j7eRggY81p3TpdFOm+BT4j83ZfoewFegVND/jUVX2jwoGaNIDPTYsV
Glr6fAKmtwANcY02AIdzncIqc2PEgPVHz3FIQ7rEXe/QTCtqunAHrxooD8Su
lsA3iQ+y0HcaaVAwo7dGs2Xp5R2wdPTZttm9V9+ent0b8f9nr9/Qv9+++NO3
x29fPMd/n35z+PKl/4e+cfrNm29fwu9O/hW+PHrz6tWL18/5Y3iaJY9eHf7r
PWaq996cnB2/eX348p4KRs6recgvWIQjpg1HRc5JJI0+OzrJHjyGVfgnYA4P
Hzz44sMH+ePpg88ff/jgbq7Ql4ad1RXwB/6TL7TVqsgbIr4FXFT5quxyUrPh
0MMOwzYDXeB6Zm+uUSAGzVxoA8Xi57xF7z9ZAaOb4uFuRY6WzTPvBpPjkDLr
zREqq7jQJA11CVrLNQtyBWipdSPbKgaMYNgCRqyU41twwdaVbbV1nclAzbvR
MJ2qWweOZLEdijCKKsjIUDTEk0WMoIEuN1vsxmjK8jYe+FLW7URVw1PUhkQE
EksTi9LUT7Ap13LjX6K5YVXDrQssYcR7y3ZUr1NzF23hB+EyVrr4llrmIG4E
k8CAoII0g2xRZxOZqUD7RAZMdh+vVkdaalN2QWuEY7ug1ccGkxt/wFRoNDCW
CGRS+DVStezUhPdpXQVTNyryeZejtZXNDh1c3ctxDZtTRcaHllaNxAxoVcaS
6yqy1bxBv1MlujTIwzBN0Ir54KK0tKhxYjSKV2z+lI7kuoJDVoNW3bLhKRqK
vLEWR4iVCEF0RYV7loncR30B0cpfbAPFVVlj8MNiQ1q6d2xkQM+wF3B36Sox
GfBaWblt29xGkW2X2UpTIOMng5hses4uBbwS1g1dLWjukc2frclE118yElDH
MzQjVfG0vQIdbByRx4a9ADSLU2/fuCi6m6JA3oZXCFo4IsuvrC9KVyUrL5n3
ciIrukATJ0qomX4n5mtRwO0SsaWVBCKR0k9weXGJsIvnIPMC1e6dXD9Hxcd2
wzIduk1RghcTth48mtCLH3AZys4bYUhQ8efO35jBskxXRs6aw4j4vfIkDM8o
p+tFbo3wJalSnZA4qn5Vwnu2j6MtYIPRpGsNei2IJk3bjUnwGLDobW8OCGZe
Xq4bf2tPm82qQ/fIChYdtAfUE7zV0NJ1GEjQClcY5YDWKSCvaQP8MEihYe92
jIbe5oOpJ40bQMPmIB/nqBSS3Yyw1cCdhUfWdIoEXVsKoiiy1vvA7wH7QNK5
x9eB/XKPZR7qoAWiEX/BfF2JRs9nLzU1kgw8X8NdkM+u8wo9tGJtt2zcsFlZ
CXEotIXdPpAIkAmerkFWbzbOHVaJR6uE56iM6Ln1h1YcJjpPOFfBIgMC/NRM
FNfb7hMw8+gN1dn33r8H0Wgc8RNYF+eVC2MDSezO0BhKr+QfFGEito+mBOmM
08ivFKyu7zzmC2wvqUBTY48UzuEonUA0UKNF0HkMOxMfSRwuMyK80VTmVrMC
jO9TUAyQMQMznalL6m2xBK3FjybbKycF6FF5tqgv0VKdmcVFjjHK+E4nOqbl
ce9KlCPNxTzSvi/K8QwE7KnwUjg/cPWaJ3xXeLeX2H7pdHkXD9k/wh2tj4HG
7Qkgu4XXG3EP+ZQvNgMOKBCuSJ/Dj69pUYEhksFi2y2JDDEsxHiBqjcspnmk
AkM8LDV5ktFR1jwhaZIqUToDCYmNFhd4Rko0wKvnLqZx2SJqlN04hn68ZyT6
ZkRmqWt0YAGxV970guL1dIEj/zJDHnLM/RZ7+ywZyzgKODsjHhnb9sPu3zq2
l/RBkTgYk9GhBW/L8Ni/wMPjtnRwPBQZGnowQXsBxgrb9+M1yiuqvQ+OcFXg
dtf8/xGf4K7e+na0u9Aycljn3uCBjNYeRVttCa/Z3jFUyYgOIH7Q8fYX7PUD
XvLKx0ao9qFedXqNSLy59nehONEzEEyqGSoUoDjV3ZW7LvOs0Psr4RLSIJ89
fNGyab3rlBnnOiIM0VxqBAzoQ6AiD3TOO0YHeKIiLh3OwHdih4PviC2RVzCm
Bd7TTXGJu4s2iotNqmlM3IumqRvmuWxpBPHVq/YtWwmvUJWt0v6E/sKuTRxH
oaAADI9wzM2GaKfvOeHhkfbETg+glXpZyB+41e4qvy622UxRKM9BWvDTFJ+J
7SWYDRyciTWaW8jHcFnVLCJzV3ts7ipoHfbJW7tABpK1+byg2/iT7FvanRc/
5EtSeRP3zJp+LeTXDHTINd57cBegISeZ+5JCkpE/Iyvd4hPravbboM289Sd3
FHMNXFjQwmsSnwyrHMnBIE99Qd6EFk2QpJPJfcM2OLL2scDDPYxlEmwB9d0z
X6Pu9fize7J/6bHUf67c73ykXaIurYMxp3dwMNzflsEgm/mIoQTugzf6AhWO
tkRBM6fARzTZ5GW3ez111fQYqigaphB+4RngIO34iWIChYj5oxVuh7zI0+eg
59vGEDhVvfD0vaxRssD1TKYvFg01rMDPCzZiPkdWSnQ3x4U8ifmgo5/foG7B
dwe0nLyik82eeW41geuOpzTN0XecSAnEucWxT5FpxMDYYIZu+QVoFH4JYbGO
5xh24S21xlQyIEn7GW4ZpgvDBLJhrRNEHFzRoZWOVw1vQVk3MfS6i01XjJkx
j3reaIqC0/nRgpjXxa2GoVAucHRVtejeomsMqdkYJTheMlxn2aGo3HTNj9wg
g1EDRJ7Ft471IIduc2et435sPJR4CnTTwXsYqZCjdhBcZGQb/oQ4GQxYuKVE
7JVsXuRn2MlW1ighD9tOo+NjvSWekiJOdf1z5Tgjz/voGXMbcabSARJ7Noz6
4F+y18UNPdSTtLefvDT5DhQPnwa1dy+vNvcG35Fh7d3DFIkW3gn8/iSoStzl
wC/Q8cDTidja90SCKcbL9nIcJId99+mnW067Pc0FH3IS96VFEhDkYnXuVHR+
E8DAI+3/AAPtP5ycFt2e2BQ2o2y5OZZ/b31Z7qApzpMkkAI/Owp/wgLC3HiN
NywTp0y/bL23nG0zTC4s7sY6sEwnerYX7+LIR1Fv/8/AFt3ls/4awOy8hA9D
i8Y1UXndvDP+nTkXb0Uo/G149DtarTfIZPVEeGa7DEdcBO+JtqAilTOCnfyG
3RshHQbgu5UGkdze6qGTZ0fsoqfhjDG0Vz6KBVWQ7C9hMPiC7fkUDu1e1Dif
3n370tECbpY9oY6uXt1BSMJX94hBK0/y2gFdS3j9hNf3/apPsP29/d1TQUZD
E+EoC+KKRyTT/GSuiMoc2XOsTkzcueETYONMb2eRET+k7cLL6aZAA1YbMVBe
bhT21cuKHqMJCTQUN8EeoRDugWZ8tra02b23RT7bxKtzj29JdTPHvkzH8qYE
lXqz24jdvLxOqUnuJrl07caJyN+hCodmMIw2VFMyarD3wqv32GMYHjy8pyql
dLw/ojmgwokXXFhldRA7DOqBJu6h2oBbz9wpvV34qblektfo7vimbrvX0Nze
PZ02LOy94Xf/f3TPnGHO8JHSB7+of+69B74Lg/ozyK7zjdqzNypGJlcFygnd
uuEdRgEcBvNh291E3VK7csZ8n9GABi4oFtBvu59UX7rDDZUQwD/6ijqKRhdf
UsHmZV57iO/FzLoavEmAU/z2d9GH5nFguD2GIhaGjT32R9F1MnCLEM/bv8MN
CV+H2+9jBxEugrtcm8xq+/dmb0k+5mOcId2PKWekm3/w/hq6Ws0Y/DO63FK3
AZ35llX1rlhiVAkH6QwbWdFqFky0o3Bzj9AOib8GY+Ek6xsKr3JMvIBzJIbh
kdNsCfKyi289HiK7+vOW3fzwCn+L18SsJutVPp+j74PkA7MYqcGZQ87WLXHA
fN6RFMMWoahhO+KRsZBHrdOI0K9NYUc4jEn2DapkI72G8ov62l9GIxwuX30X
ElY17UKYFUsbMAS1O+N2XJXNLLoca3u94QUjliYxr8CWrDkXTfPYJJb2008n
E7ilmwaY6xrzdf4GTJBv/aEVh7HONSvDUNKjnRwkiE4nxc9QJ3f6jhzZrMVm
FSxFYrUKyrO1WBmdeqKrgS2TJ6vIFsTvQb2elZhg2R6gyQoFsNoabPQ+wG+9
8Tg7Pfv2teyAw/v/SFvZopZG75AkcAI97X3x9PPPgLWdduvqthaid1iWgCes
we9JZOQoE08UhjBSIhepKtiS/7TN/iX7SzScURa1/detMgmswGQyCQsY2WTk
vSEhYejbAYe5u6vSF+Zyl7vxL38dYe+va5W/w45nm6L7B1/KJIm1lOnmaSzM
hz0g8UGT1+lOI3kbRaCawsDQ7SFkzFSfzu9iDdQAZ2Za4McsPqXvkPEeWSks
BjNoH6TG5sEw5JkIZhSLyjIZ6RIcigVXSMeZJexZwA+RvU6cfk6zHaWtpZwl
TBhbOLRh4OpTIHXmEkN4OM6nlswPkh1NX9gADVadXnh6yXsBzHBcz8cXpF6h
VrRYaAJfVSzE1YCf0+V7enyi1/W+Azr+mJEpL+LZhr1mvXazKoBCYz2DPNE4
agrXtL9ojMA+J+7KnvqZkd++N5kw4NkQjXD6k1w9TCLKXZNQhAk0wOPZSyez
79I9DJ7E9FyTYKQ/PwcRM7WEiORmX/mJFgiRHQftI3fp55eRCnHtjzmhMzWC
2X0gEcUGKsjho+3ltNjB/Y1Ubry/OV4Ovjxryuk7BNk4ekFHucIgL7IK6OUf
pnVgVylstFeC7V6zLA5UepJ3V0ckxf32d7x0I+VOA1doxnZF1IVQ+sBW0AdT
YnwHLk7yNguMUzytwa8Ao0AZhb6tRz7hyx8DkmaxMb+yROA071pXdHjWuLF2
Qp4Uw8PtZPhTWVw5jzkWzZoF49kBK8kfyQH5o7jRPg/sc4ksIz7BXTKZDOxK
O0Q5WRbTDn2yFw1h/9bFDGftF1KESCz9xBjWjDTz/pMQORgkkA/OvUhym7Pb
LHQgLU8XOcYbYmb5yudetA5PpeQH7M45DpYuMZhRvDUwI5Dt+SwPzWHEEfC3
hXQjFgEbBFtCIxETy6KcFxguzdFVNjJgsDPiTrNSs41hxD6+dBSpTHjY1J1n
LFRoPNJ4MtPqnrq05TfaCww14UhSVPcpjKRzEizbC3AjiYlT0uh11ef4oGzE
h+aj1VwaTC6RKhxGjoyCY6pgE7eFYRzJuQmec47Yjy85m7m57sgWZ9fJ5SKu
DC5LU1CcLDQxI6bnbwO70uggFfZYLpfrjgJlB9tzPhyHdJtYNdZwNDhQrEoD
QexqBK7UpuRInigWLew77rY5tP3tNhFkfr99WiwpwujqdHCwKHJYDARbw6Xh
CzwEY1BimGOYeCTLF5hSzFpsoymb5idGilmG1pHGBrrZicULnKxLEs/5JVsT
t2wG56NIBEUlgtnCaRCNWg3YCpp4SmDd1YXcX3QRSswJY7Qoas4DYjB3cB5n
JEAW4HHZa/d18HGYhY972k51Ie7iKCW+HetDcC4LSn5Cn8q29cnS9fGO8ZYg
hFh4whslXq7XdSexHBrgGi9pxAEDhdvHdZXG65at4SDUNcxFwxqXSkgv8gYB
XZL0rC0HJ/fQRGXDEaNtHK+/Wvs02ghcAkO7Jj4YLogP9hqR5EjKT+lHntMn
+aL8EQ6TTZsZQDlQUjuVCTyaPMQ3B68lPvGoJa4ljZl2c2gemjvLLI+4vEbs
xaMtGf3HRLn6kXnjo1K2QCKkV90me03Z3pjMxQ/GlP79Yce16PcaEw68QWPD
eeO93E4MuxmXoCdUbUljbCk/llV/n23O/hj0Iq7WDSbHcJTsoQayhVxFD34k
u3IrFAvJgXnbhjdBfrP0oN4+yRrxSYl4DRFqFV+U2aqGS3EDzLmCH8m7UYv8
7afsqWhlLzeYcGGiseclxexIUGPb1Q0Z7MbZq/ydyl4k7kI7Yd53gJxZ1PU7
DCED1aHBlJzvMKoMc8xQjlnDubGIUz4v04flgFy3nvH+IL+ZXbFgp3pEluXA
bThlu0YZrOL0CKDJa36W7bFPm+PYR0IcV+VF6YOcJaXqakMIjZQTgyC4F/Wi
3cfEHNSUfM4P5jWhMdRnb5TJhMkS03YGhAla9MHRPkB8ujH3h/9ZhnJdtmvG
muKF0+EMCYZ6WvAUXIFWRwmIjPRSN5d5hUxDTOKOopf+7S//9lv6ZJVPi99N
/u2v//ZbbQof/9vvKAkFbWDe9eZfNzBfZLJAVaQBtVB0GFwhIJ/zyXlG2auY
G7zE7DrOaEaH+fhdVd9USKgEn8Kcy5M9h0gLdoASq4dbQANZnADusV0QOmQH
g+XhSBipwbmZwmnaLBXgLUxTolzzSKvigUAjLYE+Coaboj8RzKTvur9NoCev
Ua0RcDtoACmL8HVAOKW86cWavRf59rlsyPqIyd7ddDXBFs64gT/j1+fK/eHH
8bqrgcXv49L8GRgGHu4modbo+oiW6oLQGKZMOrlZGThHTTgFPm2hnWL29vn3
54EM0DqLRCKBxT7HgqDl2Aix8SEBWwaIg8d07+MXZ1/Z3CbSi3PVnHaslk4m
yvmFW44a9Gm/q7WIquo7evvVEbI0ul3IUUXvNwWmHSMXO6ziIZkF8kmNtFI+
68askl8hFH70uzZKze84JZwzwg3CFP1wfPj6MPTMWA8auN5sHJEAhTYIzHAJ
lwNC236KuQ6XDFD3qYd0k+97DyY/XHXLxb7crnQXzkid3nnOSECTxHWv0+FX
23Z4PECCE3dGObULzi6FI+PXIm91FbYugBIc5h1e17RwJNlsTGYhjwaTN9wt
w2ERgkKSKV1gJ/9N5QryOpYUIURhPoI1ybAwy2JxlHOIL4yhQWclK5sCF5Xe
pEuE0eLe22L7OMgw0Fb5u+J7HA6u+EnekoeDOwMJsxL7AQv2IlkY/MKtgtkZ
gXkYwYywM9RkM/ABynwmNtnApMTAAe/fe/grjP9+VbfdsFq+3VpB5gfuxkBx
UGes6iv7D9gcWYTZwTJ4BEkyJwFWstcFksLtnYgAMcoOkcBG6NcKjSr4B7nk
JYZnH2aLmSLC7hgWk0Qy/YqOliKaeNrz2nEKWkdACKdTeC1GQZiTMkZ4Yi3+
iv6VUF8ANDSGF4vxalFzb42QOY4QLnqgj3iChlIx2Jg2yb6mOeCYCHbS4A0E
+Q470L9ckNZCkAFm5RdJ4qhcv0Pp1hQ+wDc1Ba2RGBt97Y33CrY84pCCMLtp
Qen+rc8MdZqWg9mjii3C2QkcEl/VLBiS5VDwJBV5E9kUCrGLDa8w7qNaIhnI
zQWdJI5h9zIxwaBxtvCMcNIDRlIb4OwcGqoQX0vJ6157la+Kez4hwJeyQLg+
bU5leN+gYNa1TuxQmnlsB3NzVQPx5k2lbGyHTZb5S0WZDRtRm1H4A+nlsuDE
UN4mD7QEQifscJvjkUrFavSQOry+SFOvOsKxnIHYXFaaf8nTL33vZuAg9+dA
blNZoYjiZJX8GfOCDa2iOV4Ij82AEJ1NaHKeu/NQNReJbSuFIOURpgAnj5Up
qKMfw5aVDBKUJHSzfsq8QqwtS70X9VyjvMk5yXg0GE6l/JFZHWbfYzzoWuEf
fDobcEuf4W4XSRr3l4XYqLJkJqAuVZSjii8nsiYoC8VizvJzID+eypyQg2DA
ggCJ2otBNxOPK81V8A8IdGtjxkiwT9uYUqtr6MfEolbvitmMYpE/SO/W9CRe
xXDNbYeUYRgKm7Ju5BMLS4SEwlY3zmVUOaS3itAg6ZiSd8daJH5U1QHZgi0I
IXmnUnw4hWBQjBMDCR2mo+iCFNzl3X40rqFsKxOQnAlyjpei/Nn+KvhHKcAJ
NaCSCYWdBkPZz9rHSAg/sf1tsvNle/mGU43Oh8Ce9kDfuCZ6Golbsh7XKxAW
UM+flRiLplzTwA0TodWS1cWrjUtBURooSKqVvgLWvkDGvOG3UdOPsFjk2oG5
TrJT1uVxJNgdjvylOIDO+xMTy3cWzQZtb5SQSSCWvHgzRdutBeSobA1dcu0F
2s97pe4pKt9r0EGgzWKmaXQ6Aj9bzR1mmoTTp6Mloa74YYXxafcILy7hZppS
zywlNkTxId4mveI+i+nLoruj1QQZg5gf2ytSvUPSFuEmwF07nmPxnGaWCQAX
tGay/8p0LN7rEpsLzWn2mFMg0o1fRF6PkyuUp1EUTuEeOH2x9zxb0RdbIDHU
V2YUcWSKsfM1AG2zt01wYRimiORN+Dc6hzZezOBXPKi4ixtDXwytJTYw6Yen
CqpFhF4RAMqtX4dzmXNNqFc4iT1GUMAdWhPYu8DIw6WMSfcquUhNgy4XV4CL
YebNoiSuUmmNYxd/EHg+up7X2JsCflPLhGnclHj/JFEOAwmh/s4R1Puqlsgc
D+KvXtyh9VA1xb8Mu4t4AVvdjW6rXjNi1ZW2heP2ZsPOEbc36NULvsUhWBrs
1mG3/NM4/ASfBijY24MC//LXKFjyLrF5FBeYRF3d7bOfGAy4JR6QA7M7FGwx
3qvqhcwMGJEUFc0uSxm0l3NOgDp327OkJbfWB5mlIR6vDv81BPSJV2V7f94P
bqBBMM8YU4MHkiri6MIdkRF4Gzi2G1EI8QokTQK95ohHhmxIg1EMmD/sT0NB
bV4J3Wv3J/Fqpyfv45bbRdPfvca9pO+PW2TZ1K1ZcpOdVMSgh3ecLsdaj7t6
TOFCNtpao1WmQMk7sE04MZxANQkBfmBElhAG4ickXC0JvnBcOWVGf5LohOLD
YqE6TErHBFS8KC9LAe+zRkG7digguiAh8n09GLXG3D5AoxKUnlcoDKYwTYkc
NeOregmkclVjoiUrTB/TOhO7RSsm55sJQOdbSwRQib6bCaQgv9AUVHUCJUiB
0GWLT0xuQmtuySixW4lgaHcHknuj7e2RSB95YGBrQzag3eU+fELtBGCysppb
y/zE4C3t5jcB+sDhtSf5k7JUNkIqUif6ic28i15uISMUglqI9ugslaBE4Slj
x355uKgLHyYDuj/FqsXfd5xi0SaoEnZdmKLYKAGEKcuEu1rBrrYdmZJbtR/z
BgRZXVAq00lLELgLu37BIu1ICJbCHjh+PeaaQ9ShIomBYuIeaO0q0tFDnGnO
qjyTvPJbaGyKQLEuPWnoX7CJf96b2qOrgbAulqBdKkGH+hKU7+oRhQl0nLG5
MNaGT04M89CG0Ke9FMlcwl2USwMxFD6MNR7X1vA4AwJMsw2ze/9JJCHurPxA
hpOBgN4dwquj0Pc5m0cj4bUXcmgGFWOHYY5xUYomR73AyhL5HnxU1u6dkCMk
R07oO5mOVUPIvmQyVnOPp4nnTiyJvvaSzIjoAUePp9lgIxlYOfYBDF4MDJXf
xZYMZwD1+BRwbIyxquCA6GjAKMi9C2wHeMW85CMUbhpHAcTXJF6F++z4RBkQ
32jhF+IwEwI8TFfKV7zwKoO3agYgpjJMjmyWmkMNZ4C8tPvDG7wz31rKQ2Bi
VQa634PPxhfAwtYVCpAwCsG339Uy5WQ9fvzItyWHAJqrzJDVk8z6X77SEjbw
9ZdKr7leP5xpnlZakEwz9h+OOAjjVr+ptMgRSWOKXVYP6vaf2Jcq98Pz16fZ
6ds/69g82zSCw6716WWvyzIFOsn2hhD7d7V5fCJ4/3sPvng4uT95OHn4QBq+
/ZOH9+8/OJhdPD14/MXD+wfFwy9mB/lj+Nfnjz97cPD5/c8fHeRhkL5eXGUJ
TeOdyHqBNUURuKt6N5a0Kk/+eiPNWZ8mJi9FJXR6u7Fniuq+rhhy2nMJjz9X
4+hQEHF04cMBQ3tFuONcsI+mUmIU25hXcf2EcEcLLZK7LvsRBbnj5wLcez4v
nt4/ONAV/l9g+Of7DgWCqPLHebQh5ybmgBqd+U7xqjiPliQ7hwYuKcM2rS3n
M5B7JhHJALV84Fyt2irrILrrZsy7CbN0M4YdZgPb3ld/ev4a9EAsf2SLOFYZ
/sBSRrBrb5EYY6ujw6ppAm6mUgmPE89bW2BYVMaD8OGWgqBU5BLx7IOzOkYM
xSoU5bQTFDEt3LIFVd5HPaywxFNnkVaVK/MhT5myl30Gb51+/YNY8h3k/SFQ
akPxi/YOgbvxpvaF5aKfXFoUBE3M8HJKAGRXSM+JvfKYYTgjmDKJ65VreFWL
jthSZFe6O0MKcmSrrB2do/ApjmKkkiubmq8oM6mvDQxdxw6NA+gW0dlvNYUk
oZu2NhZxMSK3tTcoY6D0ctUJrAxqMTpXrkoXEsuAykAvxgA7LyMMq1cTw0i2
i8rCqbyE2lPnc65htsaiRY6CLuDdsZcJ71BXz2e9VhprIprAKPiVDJqhU5MJ
XX2REWMJPKemLFUJaNsKXIyh08DsphtH53Pmsds1zhyLSjK4NUn+djsaLVxC
s11xO2O1dvoJf+w90E9JoQSIugFRo6CYci2yR6sinqVZnCRIh4LyYF+L6CoM
nNcfdLW6cXuvD8/20SFGAHILA+Qnd2EKDvsJ4W9SXgASyhSNUZ5EYLbstl/q
b6PePEtBTPfYwV5ypKv10/RseY1O1E4f0weUP27rdTM13WV7h6ev9pEY+JcQ
bmVeOcVXwt8ELi6lBVq4kCREIohuEw9yQPYqFnB5l3Kv7IpIaKE2LXG6iDgT
lSBANA+lfIg9DvRun/eEAVYeM0xUr2RCAXfPv0jpxPiqvFBzpUICahhaS3kN
+8Yc9Faiwl3acCSH7AgzQLeevxdar6nhCrYBgz50zSI3RkAhI6CiwxTMXCLg
YuLIEpWuPwmG1iremcbwgly33rmjukyuRw8V/UWd+/Ky64qb8kOm5KfBDDFq
cEuSWM+rJC7YaFdf7d5Vxg6wlnC5+dmh7sKZwiBxCR0+x5zp84zvow6ZEe3f
ORZa2kSXoH5OpXmwrKaUb5uN8eZkK49gsvytFslpcISejm2uCw2Kfdw9S3ES
r5uIung7S/RckizaMkiz2J96Fsq4WZeONYUO5kLCSI6JVO5lqh47uyjmFHPb
I4cd6pDnnFQI4fhkj/5fuPMwphhprfg/r4klbQMpW72Eu6rb03+IKuJpVR0M
A9ePiFApW+wZePuiF2zqNmKw0AgWALxsPXq6owYEmSeG+QsRyz15S7inHBJm
VC6+SAZuEDMbitUQzq/i3tmV1rA2g3CqlHioe4pli07z10xMTPiKQWxKl3ur
PWWZMJMhPza+1ikObeTgCIYsWANNx/SFJEykioYKyfZ4/uFRBjQ1sL0cT7sf
RKmdrxu6c1S5xdzdcLtaWsIVkZQCDM2A+/0l7ube2dnLfWDFxcKHjV+BnlNQ
diGZB1Y5F7gXIQrag7GuMfZl60ef6Ue/xsEU2t+uxp/SDXJKF8jOE3pHV7D1
ClOj/oAPdA6c+A49D37aYw3xmbdyx9Zzv0sCcF67b4d0B3O8dvIC8REs2tqJ
C6gI4SbDgk+y10MXZI+lZyJvh0mThCYqPyEMkjTTu47dUG8RgxFDy1TOQ8s2
v6gl5wFzLjYDd0Kfy/ZQEGmRAqps6BIzE+aBhV/lM0FaY/VmS8suqHgfRxHb
BWgXsU2liq08l3e2lbyY8yjIiaodnP8ap93M8b/GRfwrn/mBd7ZJA6d8H2if
iovfytVATgx9JgrfkZYOYnBM79rE962zSQynsT5QBunf2xYospQ3lBuWKkNl
DXpz+WNwJEVAVzYWQd0x/pqFbc7GEdhnZe7guhoQD9V6KOc5GEi3QZSyFRln
PWQ+ntw6gOSQaCET0edbqUzpJ5zYc2AhgysohMfb2GDpbedIAtjJuX94PhCp
zLWm6lXI70APLYWmcKUjGLYCUp2vrmc724Df8euymi8I2F6WPNSfWtaq1nt7
d1gJLJFMeb1tNKfjaHWNpVJFLe7F4i/5xnfWNCy9u3ooKHN7lJ2l4KjkVqq3
9P23n4S8Ny3nau0q1geHTFFChX29P5TJZiE7x2DZmkwMte30ohtMjEkA3qZr
8uzl6acYSY2z+dO3x0cSzolmwCnVukbbdc1Y2KanYDxph/yftpAGo8eh4YgP
YOTw5LQVCsNXIAQufGWMvaEynsEokFRYnxljlqrwUWV4gmilcGaOKoAwcEBa
sBJWYD+2hYvuPuDy81PzRvaAzWBdolQ8SJUL3A6TUya1iX1iptgDQzJ/DB/O
i0oizjXW+PGMMl5t7jIpVZzbOomSYcUXpta1KAavQWlzD5fOeLzCJe6B3K8o
HJkCTqTm47nx6Z7TxaAk6Jp1pTW4aJceP340CjJqvIPApZ/C73SUcRiT7BmW
iCpSgzWqWrhBV4pLy7C3aTTbPxAhPPigHQ78jr0OvLqz523vU+9Pqfutr8Tb
m06CkEL/kqXY19nQZP4qGF3A4fzp2Va6yZfkga0NcgVSkJaj5eJOWik7qK1b
Cw6Z+IhoecRiFDnJxeXtMzULFEHpnpJix+HSVSwaXz/zm7Ozk9OMNvXj4lZ+
cbR5FvJuW5bEXWygRXFKP38KH+m/v0Okxt2m9PgfMSUbxfBRI08EQCXR1NzJ
4SQw/qo2gdAjDOBZFJ0lyd2h04PGjp9UVMcENvz02fx6A9umIoU9OGxTcSkk
xfREZBqxuv/iWaZFpshsAII8kRzpToRTdolSH2FreaxAK3gHyfXYV0BtKPv9
vA+it/FlzBJpPKToagR7VPHQO6V9iwatL/OoJ1FcwhYbquQyJ4ETOHPU4OG2
nha9WF/xUyv0YZUlEIS30pEJf/6Z9HJHFG1/URnXpt5I7z8Z0Ji33l90ZeF/
ey4tY9GANfhfa17Gw2ozZluA6ZvtLIQRSLZccsIAjc0QZoi8HiQIE+CNU1Dz
nIh3lh7CkGpzRwaIr95puXvv3WLbePjo0eThE+Sf97d9TEf3yaMnj7a90Dv/
bjhpB4eMgKeDiTmZ/nq3BKSPL0XVX+x/XPqR/5CX8PZCVkT7TI5irg566P9s
JLmFanYa+A1Zfrx9H/7z4IunkycPJg/u34f//jdhD//nP42wj7Tyx22kLboo
5op/NH323xw2MjOpPZg8fAy0svWzmFZ2Wpmf/mx2PSDaPvxvGv1laPQomtru
AisqD2z3xiGFigOLyVQUWWHIvzbVhnv7P51mf5aI8TEE/xO49n8fiTseidEO
Fh7VlxDZ3Ho1toC+pynuW1EHruoFo98F1NI5faqeiKDM/KZ1Br6jFW9VUO18
qKgOSZFeQbkigNFBFYzi1grtMkUtpz4Q03xki0EaX/PtuMVU6CsF+2XzlSSt
eUAXRRvwqNDpcEiQg7fHhp/ZbglzbKLYFGI+bPf9NPDfvnHCyA1+rkHU76Zw
MzwYS1KkxZ2ike1el24tegOCoIgqis5gdVXQKjJANFv2KCp2qHo1pekxSHIA
7BegtTga2llnSZSUNfW+SZNX1YTuMBC817ULrjDEUDG4YF3JPgichMFn4ygq
nmJZXVM+AiW2YtCdgpJ4f2svwdhr/3IsiiTLmb07TmbCDjguLRLwqDESKhc0
CvG3nKDHAkMrKTGCUzL2Tq6f79vX3fv3v3/71dHnT558Rj5B65YTxJHg4BWE
G943NDhYD4xukJNi55V0kzgXPcyx9x/oDhFlTBzWq4gmxE3x0T15dfbtSAPD
ZMNhuZ6fHp0AG/Sps2uuTDalRN2im3IkCturNXTcdrHdp3Pqi0YQhC25vCxG
np5UH5lRIH592S49xqaPKbVlWKMNo/SfH4umHuOhGmXPvzk6GfmUrreH+ztB
EgfyOAI+YWuKmjtEO4zADtm1dUCX3L9bqMR/z14w6tHP/c+/U9Nj85/oj5/z
H25aQRepM1kg5gCekXzKxShC6lFnUIBG2RzInVNKbsq2MKOWBeEn+sddWyUI
9WKWNOybjkAk9Sd8ukqf/uRFZ7xKbXrL8KsoJ+v2KfiVYVDMWxd9V/vJwv+7
e3+QfQK3zhjXYExXGPDGslsU/3JvIJrBrN9LeveemAATEDXK1SqqliKVqDgI
lfBQ2LPU3ophH9akHIkaYlv2d54SHxdV4DWZCOy5rUyTfie7gZ8dSky9xGIY
vGq5q21gBoseIyeTYDZLbuZLj8NJoXBDnAIh5imwPg7tcObGVSmH2uULSEEk
FVtP7n6Mc7WwlCnIIdU0fnH05tWrF6+fv3jOQXzFO4FqFCgvm4PHM3IEFWk3
QJKNvPs9IDbiPOUmGJpunJEZAW4GWZEgKIDpLhBxnppmVGbKkSSUEgtjl1TR
DKGTuT23jF/hbwTaw4uNzZix/g0GrsFQzKFWPCYeAUEIhqOTuucEClNqZAEf
Li2NYKM6YmS/uopfdTjASXZcMWa5YFFEgAviVsFTvkqcFl4qpHkayYnzH0MM
jlTm2PH9AO7tmRXj1c0myafhy2TmuN6U1YRpN5d5MyMIgHoeQlIMBYjs5vH/
kCNg3ZLKUqoF8ufjkNL7KA6Iw6x/j6hSii9KvOaqngj8f+746FopiMQ/Pz2U
YjT4lWDk9xg5P/KSYbqoM+TDJHJRhHHl9PFvbMmskIbDtXkRrPwSKIJdZ0SA
U+A3FI5CyG6rRV7tR7Wl8qjMUlotSxUl8dCzEtSvVjW6LZ0xjjeNBcoVFytx
WplIounj1wmZVcosDCtVCFXlS1s5eCxvlRUNZ8iAEGX6SmCLvB6Dq/CLYg36
2PrzpGwfRzU0rOjXmdpGkQzbG+gEtq2TeJsBTEYaN0mEHl1FAfmKa8LTkR9F
fu43Mdk6QawTvxdufmpIA5Wg23Jm0dD7eMCI3OVvjaD1MB5syewSIW4VHabF
BtCdKWds6Ho48H5cPQ0ofV9L4G2IuT0OitYtAwuyv6lvvX07mAE6qX9m1Gk2
FEiETeEZcot35CIUn9PlRMsKVnSRlN4hO4wkFpoyXQOR/ZrYomGkvcS2gTFQ
KiBebPga9X9ov7vEnBNEEx0clWRpXmyE+5gI3LAajss/J8nNF5vElMKFG5Ki
YjU1XlbQiy8As3RcBAc5VwcKGSlx2Md0QYryl0IW7CE2YdgwtyHIRd3+1iAh
beGHNyQWDhqfkAikAILEpyI8smYCXhSL+ma40hwHLla8ZJQvDU0MmXBCiTWB
e9Uya7xyUd4EYk4EUplkh71XsviV0fDYtKSgu+BqB3QsrorpO6sIlEUb5Vnb
XPBvVzUX5Sux6H3HIEz+7tqspCTIgHKgle6JHT+r60WRsySJEY9dg9VTlvBI
LEc7bG0hBJfudYZ1JsQIRWiiCzvEnobMt6HYEQLlmIO0pwMIWTdJv1paxKlZ
q9+/736SovKiAXEHPjZbqkz8DddxZKvpTaSaSvTruWg653TNnquuc852DQVe
k5U1kxyZ4mALuCDedAI8znGFu4oxAkMXElW0AU6BpdqEUey4ExIZoOWEUBlA
KVEQd+OxI9RIa4VBKviBPUdCzdCxZquTRifKSvo8So9DTMfbrGLuYt5mE6Nt
wHBAmz6ei/U16UuBzmjTBIOb4EK84YzS5rdSitYwroYLtPoiiaKFmT1k8ZP7
mpIVoTT3D8sg0UknU6lX6wbWzBrddpE2rxMXZsA6eo6oJ1Jn6MqV+Ys10kBK
xifpU18ygeH9ObirbP3c+SwprkxEe2jgwNNKIzDL74mXdk4acjJXgeZHnEcu
oNiuL4GT8WCRUHRTFS8w0bKnCwKlcL7kB4KS6PQYqIjCqt4Wi5IOEJbS5hVF
bX8vjH9far+MG3n1A5cwOnAHGT8icQ1kDjjO+DCwDeee86zwsbAOKUXiyT6E
xFnQBUto/uhxOamB3IKOkd9agtpncQoUDlJVSpN2Kxy2l5Fesd5Hij+auhdo
6ECYqbUpP/sdo3rIalHbna4WchfyUMw4KM+RHo/EUy5aEWuwFAxjP10lcXek
bC4orwEFtAsiSZ+AQmWYPIdSz84zDOzJm9JX5hlf+Cdmf1ZSxelVexm+uHWn
IqvkT90vqiKCjdxh63SYreJXZGE2Id1N9LiTohnrMrwN9KfrQKkTqOEN0StM
AZbi7UdQ7UeuRcIjVRpD8RfXYL5eWOB3z26cOUhZZGoUnqdan0+1LXuxm0Pk
Qof6jRo1ZIXUyDFAJ/Tqr3eSb/D2vQM9kKGJTbVsHUpP8gAYz/bD7a8TPuU5
bcZNzjVqPXxOkd0fvz07g6ukJRySOMlMMolO8zkKSW8LuA42xAiUEmVt7zdd
Z9YVvTlvuw5o7lcmtBu+fsp3HEO9pgytUOCBkLSG3Ks+SXdb2h2tP8UYkwxw
UQipLjae/TUeHLW3+tI68dJGqjqoetErJw4T1vES3pZi7HMxcr/33oGKdSla
sYI5/3Rar6RmgIVkIAoyzue23Tro/Qml4xILZ4yGlna98ZtOGq6PSW47kDuX
EWZLKfgTShXL8J4hDvMUpZ7bCIQf/4RDJ4UzyNXgl8kMl1SVhJ/I+NV6G3Le
eLxaiZgxW0MZFxcozGavk76lJdVk7b5aA00doRrYrnH1EAP1kszSp5KaKIs3
lXfGAuY7xhgrs4yIOqjt4Kc/n331Ak3oStPCWJ2aPC8RV7BzCOa65losZGBR
yYOWQiqh1lIhyMq6z00lGjsOplKWJ1y6mVylXXxErK9SwJkuEnwtC8lK0NZ0
WgtBIt8GMLHte/PWY6ls2x05p1s2CL6//q+yQZ6j/Hq7oyhwoAhV5XK99CGB
P3nD8FjhGl8PbBt8iyqCCB5UZF53aWr2Y+pfO+K3fsUL31xLsS2R0dOmvREv
WAoGaZmQQtVBO+9JzKhBhc9d+DzNBhJFlcNhbCNaHoxrlAm848CQSNaaAhXN
KCmIRAEOl3n4xYPHHz6oGQYumLKZrkG4uAAe+Q71gsoNf/j0/lP4UIIy0HNK
ETehdMYkO8Trp/ILYBUtStBeC5D08oLMsNT28NCDCzDxVTnCEaRr+Z5XbBSR
bHBn7lFQ699BP/XwZlj8DbaXMsCdKPlqiUh1nKEmR7rwZAyIjPrJy67s1aUI
afdVcckZZNIaLTiZ/0XblyPyx6JYAQfAN99/8g7+GNMf5nTgw0N89murSTvP
BrJ1F8ZnkZtuORreYSg2xdCI00bQdMBKaVtwHlk8svhgsGeQw566ZJdM4x55
0IyNVF1vZRrZJEkSKXuZu0CNNVcc1v6CYe6d37qxQlJle0ZSC2MZS4HtwBm3
5/YphwwpfIEU/LNACqds4tqzpV9NQdn9iEBeUImZPTJ/eZdb6tuvNqGf/ZSK
pHDYwD3Ddmr6vBfjGGIKHfqQgJ9c1o0IxSbekLQgruMRDLsjY9Wlf+NoBS6T
YlTO7QYvc67KaGsX+qXOjb04Y/CPBYJ8L9EV1A8T4OBNlihNWASV0IGrsSLj
Gg2WHPlUqYPCEymnuAXeiIr0NkWGy2wQK8nZj84WtuEImfjOL1tf4sN1a02G
39N9L2b7ZtYGrj6OSKZ6aaTZisMrxn3w+C2omMJdRX4r8jrl7xh9wcYSJagp
aEl2ZuWrWRIT0A/88LgSZwFi7xqOT/olgawmBbMZwZMa8GBUSZgMRRos64uS
LORcDyYJAT7/rhx/VYqf4EgCDM7T7gPY+pesSOQS9zwr2nddvcI7cLXuMOE2
avA7lLvcC+wTzkWv2RAZYcywfadAWnYQ9WAalQ/WDUZ0WViO6/WW85oPca90
CfSM9Y6RsInXlYiTtenXzPRaVjwyp0WqagFPi9a6VexcWiF5RpZiBCvsOLBk
LkEzbuviE20x0Czb1Uc4mGmRSli8lmjdQSlAipSuNDhQY0diWhugslDyphbP
nVRwLhnVrSpuNAgaZPyrql7Ul8jWLgoK5TMbSQFD+Q91VS83Q50RAVHAzfai
1gN072kdmUncotyZCAZ/gYYWBqbMOSas/mGjyompaWjYtMZqU9YJS8DrSv/w
oes0dQZir4Yt5LrmTr8NfQhTE4KOao+h33soSjzvgGmDQBhKFa4MbhRdXsxE
Q5BbCAFJ4MYsM8UL0UP6aca5jWIysF8S/xbwcDx4ni0K4b3vAp4pMetUezvU
lxgCMPMpFKF3LFjfeoNqf1m2iRC4Lsakej37lcUGjOF3TkrM0iVusMP2huEJ
9pO7zW2XMFSFSIJPLzYmP0ZSN2T73fZUg54ccvLn55EE4u4ggWReAhnoSICl
CmeiSQknFTrzQXVJ1KG/AyjSLaBXoddtoGqYzZGYEHwFqV3m7hfKYPZLjGGH
LJENyxIOFuxjpIhspxThPlKKyHZJEW63FKGDnnq53ciFNKu7SRKSjPL06f0H
cLZ5W1s9zKRpS9EQtLcInDQGB0EP7FybXeMuczSJ82WipJCweIh570l3CHWL
6e5m11FxnQe0asRX8kxaqhBxOQRMz+ACR200HBgMsGolEbYDkcalZ8Vy5vBz
smCp1OwDTUxwrDsyB8sEVeAIuGIwzpFXcSaSx8AuuJ48x9lyARxDnFdmxRWp
SW0B1lCcIx0PiDOJ30IVEDag4Jxt+TyYgPtzjQWW3sCWjo9PfJfEt1VuCTtc
dr4SNdvfZB+pYeTVVL9PovUHuuM7UgsYqkPY1JlZ1PW7DFN+nbmT9NxrzL9U
g6cgFt7CZNfUaX/R1IS1jBzH9YmED41nKuQK7PEaVpHCvR4iull4ol2sV9YK
gt6us2IJUg/mDDDUi+TehgsM1tC/Q6/4N26xi3AqAzIUzSNtpWCd5o7GRUAl
C4Lqr9MptL/eXSNWwJ/eXRmirF3nJ53ghI4o/5A9SoLee09Kh9wzOYPCmL54
+gBvgLCE4Q0qP+JTxFTKwdhZKgFZVu9iN1gbRFwJUclIbfUlKAdHVqCFCxq8
F94SuQpJFaMHzkjXIgWlpjp01yCR0kkjoyJbZkIqQnRJwanluHk6rxGAkFzS
rQ1d7/rLMJLT1weQdlKqCL9FaDCTjTKwmlLYwFf5xi8wAhKxJ0fbd1OYu+Zg
gsrPWJfzeSabyuJ4sBUy/KaeqdHgYPYYatbSwL5kJeKhxPUWZt+ul+xv8KHA
mpuKexESbageOlMvnNc1neqSyopj1c5qurF+RuIgQVsR8CN8Okawl9SxSAYW
f1SNsBmdVXZz9EvzmrITjG+vFUHF3KIneZSdSPH36LzfxX89oxs9UovxNiBT
EFXCnSHn5lRN533NBJ+K3hvJR/IOTU5Y0kAu7/MvqB8qmsglcpIPhJ/YqcMA
gH6oIoo2Z4RAFL4vLzGjBH+HadyUM1jp3GfMchAHSW3GFm1ET1ZtJ+5EHKIm
TO8ANkd2BHfnLLYLk81UD08yD4L7imJxQ5ha4XNZQg6NhrOuBxYFZVsK1dw6
BpA3mBoMG0gGdGvPyHKgJ6GfbV3ZsNedHaWhB+KnQCVDM+BroDQ++UOzjmsn
B2A4Xx7n3J+rE2rp3CQxtgHAm04k9wXSKwdtY3pDITnsOBIs7ey1UfIa6ukK
tnUeVFff5M2s9RB+iqQYxQdyOq/wDrl2VMTQvPUNW415Jc+9iNweLjpsM0xG
Vcecf9A5cL5P1/Vdoqh5Mr2cB4eM8lnrgzlA3YWXgS+QQBVRJTC9Ha/xIAny
XICZ5WUJ6lvAvsPEJg23w5uWr1HmE9hdvN/xCfkpK0IUU3A5Ro5zjuweQ1wb
gXWr2hSAxbEOBK7jtYriahCxJu5FH43YUMG5Mo5zQRCEBVthIWZvhYqEIsUl
MLeRD72iQuSDh41T8UxXnAtEm0y5DyZ2jThVVw8xK/RK5ighFQvSyTTI3ctJ
fnQGvNln6uYr1kDng8dYEeHLXc2eYWY99iy/tKF8Dc7v1cn3R4cnh89evjgX
ydnXpDw6oYqD7RWskdzOh0o5S0ECODSIlodBdvxE6Sfc1D2iCze2ZCtEt7VQ
2R1uVzMCI5TxysAImW6sCurtwpR+5/VnqegRMyyJvoszFSZ+HQIKSJCd7Knv
cT9TAzByAHsmYFH+zQXBtzSZGoZZet8MuZM/eVG0/Lm8ZeLQfz8yDvzWss7A
MPo0GlwI2y3TlLv0vY2j//4uTHMvvaVIbvyAxtLrYv9Lcg9w9r4ciu+BxPKp
UJEh8u/JthNqLNAxeE6mJzH8YOIa1WhjiVPpfabv3C6ZPiv9y/ni4+MhrV0h
ca8zxE8l5Wdnn9aNKRGFsuUky4Zls2hMAxLLct0G/BnTRdK+c99WtiV69a7N
YQOs8g8EQ6hw2A8oUNQRSgMYGoO8cNsw4pn8hIFIyUIdBYMDreOxRNSjuP5R
tkpA7kGtjoNYLra3MTK6rtvZGZ97ZgO5FVspGyuqxuB2dCicVLPJNNvidR3b
R4+PXp2AUjjvBLRXw9/zBtmTD9/CN8b0hrk78CEV66FG/5Mi2dGJTRg2PrGh
4kkNzMfn+ivLo+KpGYerBJOxceGjPU3SmpFlUlrZKMTthY7E0Bkgi1p3fqrr
c85p361K6WE1MVfWRDOoPGiEDtnrvtBrK1M4yuYBZcUOSBSlABp1gc5ZDE+h
qrBt3cNWwFbQIuDWnO+oBw3TVUPc2BPyPUhUC2kNZDFE77SYgChDkMq5wqKh
jxk9VMzGx5giN+ao7DSOlt94Cy88o9/vFEvbIyr0pWAhWU5cnlJQxlhqmcQn
RAoGqJWGrlHHH8hY0DiyKqo0TUzS0SxD1FBu7ohM1046pXxaWOC9lRgqsMn9
EeWTtp5/IeG2N1hGNIsOhrv7TTPDrQVaD5WBdIbjsXhrHNrF06mRzcjWqC2X
cJrw34tNVNjWZ8Ci6Yon02tGy9u6bY3ccA50Mk3yzFxWdaPH2MoWzlorpQ68
qeU1cW+94To+I8ZpAZI3We1BoYDFg1f5cvaB40ENGTmPVCVGMVfMMYeP7GGJ
P8EI8FtyN63EJF27xNhzenR2onHtkhzszBkyYdxMaiD5c3dNzWpIXv3f/5eI
SQSqjvD/+YJPqQVHVOTFzABMEnAG8I4LAvRDpER+B/OY5J0PAvulP2XhJxWM
z16eZtNyBUNv13De4bmgy5GvRs1ReKd0GEi3YTS0kdbXM6gDLbqEJBSFsnSZ
tc42Vb7k5/ZtyerYXkXptD9myUDXKVMWJrpS8HOkUQOgUjYINUJmUZaLyzlZ
wl2cXZ9kkhiP+BDgwIgjWrYNyLH2TGABYYYCC6AitMIC7Kt/wqdZBn6BfOIC
S01NO1sSSJKuV6uChxjDDnWEsldwDOTAhotcsYbduIA9gPPHwS4DlH8aweRo
BBPGT9WkjI0ctZ8kMJMPuPDe6IExjDiUmm5M1ooU/I46ZBgCisc34R1mBj4m
Pqn+LqMxGUJicP8Nc/LxFPePpKfiN/BU7hb7dH9ij5v3og2sI8M/mHmKnC9d
+k/todpX4TCqIBbAAk/6lhQjAvYzoHoBii9+mBYrqj2LeqMk+jKAjtIG+hN3
Z6qPkD0COYl7ep4QOmg7PsV4bgtc+bnHU163Boxi6DA3fuMpXiAJn5N1lDBO
Y2MI6Ep8O7FlAFZoSlo0jG1RYGHLdt3A07YQs60hN83Izj7NFnl1uUY5s6iu
y6autGAcWYBLnx15Cyuue3U3HVwVJMcMzVzDAVLeS0tCaPtk2Y2D7ifu0Ep9
cjgJ30V6yufJiWRTiuwZXs6ULxCyqXy9EQRYKtvpWgCIvKPq4UNMNViizmX0
GT8j441iv7gPURjcb1tCr2tV2ikyldxY/qSQPbIDRPAsIFF6+UfOQx7Z05CX
xd+YvpWpRMFrpccxG5ujtcKigESRBKgawvGY2loBYRpAfGYMpv4Pe75UpyzK
1mGSO54LrTHUKPcJXY6zNxWFjTEQWOBc2QWIQmgfS4uupyVfRAh1maLis2Bt
WmK4Lt4M83wi5uhF6GuZb6Adm9+nwaq9IpD9goWsEKshnlpS+vEvk+iJ8KbE
zLhXvq7o3OI68e9ypKGN/prsCsOM0yCEg6CMAy2BlNNm/VqA0ihSRYTBoJJU
q2DFjDLSdjWHUQKVNrMbhNnJwtlZ1rM1ruTeN6evWtApPCUn8o33waDvuhAA
BzzbEq442UaNBJjVv/7gNG+Owp/PaE5/+ev+thb6V+XWFojGt9Pp9IpC7TRg
B4T9sqpITKBSgdEGtlZS0LNJmgpoxoT66TdNQWuHmgn2AqAUBGUMxWA50Rm5
gAzD9o6Q7ttprT+r3fG+O/aH+x4PbdOmXjdmmY+wH7PK5i4YL/KNAWb1LlY8
g3uHL09e7ytMrw8qUdxJFiyRJWxtTslQ3LY+gb53C2T0HS4dlyT+J+z6XzDq
8REF4zHR+pqmspb4EteQt0cylo6ynmRKSd4illILamtdd/VStZCAqAgtMLHo
lNgYL77OuQSKeOywcEP0wQJ272e+WFWj7N7Vw3t+o0697ZEl/1GibeULDMDr
rpawPd96nGcJ/bqhCLMgemYeuwWHZnTgXbezmMIoKFhnNuIlwYPo+9dAMDye
LITwdTQgVcSlRbcxH535WAqu34OxrR4++ax5cG87vwmLAx+AgPT94YvT7x88
fPr910evvj/95hC+3/41qc+IbzX204JWiumszb/3nX8PfJZb0S0S3IYpKDCI
DlXBzYsnOWxIt66Q4u1r6EuckoNJVUuSVB37x8iJzxAkO1Zomf8wptaQBVDj
QBAPPtt3W1cnenmsPcMDDGuCjx99dv++nxcWPD6Fywfm8MeC/FVYq89PikKW
FoRlOm75Nbj5yBUGB73BWCITFYKIweN6Psa4lUn2guN9NZp9vquRsn+ZUjCT
WhgEQW2zEiOBD5xl5D/yJjfk/o5ioEwt+yKvJMYSRYEknMPyFUVMTYYrKBUF
439qfpxkz7jeifKmv4YxKnzkdPLlkJGKhZ9bbgU/uDEZXOh/lptjWS8tgmRN
UTq5IWU+KAp+JmWlkYam6CDioGFGFPA5iURiOGNfuVVM8BYAbLdaQIUEKL6J
vN/BcRvZ8rUpOOz7A7DBEpuCRbjJrjOoW9g7TZymKmuzLj2TuIMR5xPQs5r6
XVclaHpwUR/PzQK15ovd9kEfWiUVEkkUns3cwMpE1xNl49gOo+GQhZKa5hww
u9saW9zvgSMTOPqpo4/DmJAA1hUM4QrJaEpIg6H7ucmBukXB0RCOQUVn+2dv
7PS2K0lvFcXOu3WG9rtM0+3aYCLQ+BDmK2ItwItrALKWTR2U8aAYaaT+UhoR
sjsf6DCGO7Dy8C3GhBij/XiDrFH3ZsCnhLkTlCFHWuEA8tIzrmaNYbOqXLAt
dQLC9NTaWEfOrMGUKqC2rNSqNHubWVVC8zmPu+0c6h0LKeHCor5X6bwiMnHB
zHyxqAP65iXHk/Uy9hPcULZeznDjq8u1ADldqWmdL0wxxYtKniJ2E5eymhHw
X/mCbK62CHprsnFqSUyJSMWYloe0LtE5JCQeXUzvbl9XLS9CmvoZ7mUGPDU4
bLX5g+xYGpSI7eSy+k3LlMCec+ifWyGLHt01eMGFUftbRVDoYYHXReLp6LnY
aWrULuXO/Y/Jk/tfWJ3GEdx2O23KC2sNevLw6X2if0ZohvEpVcgB1z/33oNw
+emn2TdEWkrZTQFyWWWCu92HbWIcNf5ns3y+5ahbL+foxYjKGBz86rLYvt7G
kxGqJTFAGNuWVZvH950ETgaeaV4WRMWBCtayRkc6mrutkx/89oXRifZa3us9
0RJbgT3F5IsOo4iCPzjHztsYE8IUuGUNzqIX0iXlM0gvihgoNWaMcPl7MPBx
fHbI4vYlZ0hbmDFTDstNm82qA4aTr66oIoIsiz/reYg3Ia8U0j5FYdOUYoaE
BM7KD92UOr0g+vkkz+yEI72rXgEtp5qQRf6JZ6yI9GS1HMX1osVjSz/W1ZdO
nLLRW+KQ1XdQcGlLjMDKqwIzYTgPoWjGXT3G/5ePyQFpvazSgGf9sv/km7PH
nPS6Hmg0uyI5SDd7syqqAw0ewNgAjT7+oHHf7MYsJc3GB3VtBW5lyNM0AntF
iRAgoDBZsSMeP2VMQ9jehBlryPYkS4ahujJfbnjBuDiygC74XBOKkq/jwKHt
EL+a6oDcube7YjA2o91eOFLgR36v0PZiD0dpr0fzkti4qFmCuMlLj5pHSKC4
RGY+Ez3fyBvJE28CB8ishSyk4TPEgY71ar1g6/dgOQI1jKa7F6oa+IQ/bL/w
pmgOjCUpKC0Xrk3viVkmWCyM3UEE4yDbhlIXuUPbAUXyxA3vR+UkWO9VDuNC
pPuc1QM5/jZX8mzo5Mq11sY0LdUSWHoz36AOe1EUmMmkcFMBaFziUOKqFVR6
CJEBaEPw9YLLarGX21nu4xW5fjPCipqCTV58w2FclB+b04T8CBg0nUCpiWRK
MZ5PppUwWCKhWLg6GIRd+MJzerE3TuPIiovgetEAHW+VY3pzQcE/C9QrJfRM
CMtFcVmGkB+PgipZyCa9TBz08iZmaDGuWv+8fGmiczUekQBtWJC+x6iPWYB9
vOdD0FGzcTeS6pnCXEkVA1NkwcuhhOud4Fdi1mNl4Cs9NMGkV8meZWXvVw6R
2GYAPNuh3e5zsPHvMgz32vz2d4FRndMTCZnj2kJtv1E8A3aGeUoJFoenJnBW
cucSGa1J89xKd5wQab9w8VWOtiAcJ0UBanCfRmb4sDnceuIwXB+Jeapeq2aK
aeKbnZYEO/l5T4aWMJIXKODwtxxk8XtZ1sMqO++/dK6LK4n8im7vwQG2CFFe
k060SKnnMF8v5iWj6CWInnzrlt6pIPzD92iS+73AhLHRicyULYvCl2O1nmAE
cEHkCgR7cMS4plTO1McuMCuXVtPanV+qbN8k99Cxz8B3YZYgWWDM4IzkqRs2
jO9gRnpm7N4KJG567cmy2BJpPUhhgW+fYrRGEh/X19TKgISD0jcpywNBjXKU
nagzGL4iCEIioiaVWOXaxIOIfASDKzqPDMKXAFMhhihtU3i5WBIHuLFZXMwA
HPpm0XhZHr/Qmi/eOio36B4WgeFTMoZGObZU4Nd8iigLniwRg9jJAuEHnwK4
RepEkUilRntQaSlTMho5jqPQ3GtCK0ERkawSu4TGZBDuJ0iNqbQvof8qW/iq
ylEdqO21lvkXNamlcp9Geg5LfcHeOutLEk7sIDsUOZUKY/HLVgBCIcz1hLAs
FsLSIiqhVO5hunWOi8d6mdIGeYwkUE7CrsihZkmBgr/pOFKo/dnAVmzdBhXw
9H0V71RGcj9XvPMdcljyoEw3K4GyyM05zygdJRHxpIqUine+xZiEJqddvVJ6
eenVLTUpIVZnVxKQd3a5qC84yQorOGbt1brDIMabasTYU/oetuhyL9tIRnMA
O0sXM6FpuB7DPsmNPftteGQFj/6LiRQybGzrySIo+y8olFR5+YbXj1kugogJ
ZDfxMZK8xvLEXyFp/ScQI92O+4XoAtbHT3wv5lZjhGdBy6aLrnX2sOyP/C3W
572eHH3Wg0ZcpS6ytE9CSQxuHDQ8WOxuO+/I+bw/IpE/rFYftZdlehbZh0Ae
BO0VLeMiAIhlYmiTHW0yu+PIKgfCmQkwaeu6Esx+Cqm3yO32npV6Zdxa72AU
HdrsfOcvMTJ9z9afE8RaYaQ+qB+DQ8cUx86huevlBRI7grdRiYoYOMBj5Ue5
Hk5AaVDMytHlrHLl4KjOJTQ/VJETiAIf7QWSi6BcK0QrkQTrHbOGFx2GiELS
uqHiluTpZRi9dEvRSaZDdXLVbT+LfN1I1m8SqoEukkYs+MJVcUP45QZt+MCC
sCIC5kX6Ao2xTyxZO8OJZGcI0gublU1Bw9NVeYktUUeT7NlGIx0Ee8uP9rii
wJUi0jVxFlR1VQrMo9+qc2GW8Ei/y0RTtPZhy+p+aU3gZFjwty40kdd6l0pP
G0DeECxwbB/xwvQ2WT2wlmGpneJu/C29PwpDT7+/9VsZjzPCfcwWb5Gpw9wu
NoL0MLBDeJ2t4AbS/YAzyE8GFd7ogqPQBX45dCbyrdhv8f9jIjiwoEfvPwm4
KR8IuC+Yga0JeId/qm/MdANGYpEsY2kyvKYSwmFCNmK004jvPLY/k5RDEg6l
T2DXySYbVEXNCk2vKPOKiWLKyfrpaW+wSuS2A8B4RxT2sE3YHBm325BNnQL/
RHnx4uPAa5pJVg+RuDNTkzqbQyZuHy69fWVGYlkirmR9BVRyZSOuZps5MdQ+
jc4NLfyWUi2R4YlvQwGQ8rapeMYkUqT6l3VzYxOVK0OSYj64rMT0g7bdV7Nc
XNWQXDykG/uLB5jBhQK+wTWjQPnEHLF22hDwZ7CrcUIfZrpf+aB+jcXBk8BY
r5LgpWtNafaxq2jv+OjFvkbdP37MiZoiV4T4G8YMbgPSLZWpAwEJrWivD89C
SnVCYB44ByvMwrzojseAf7SX4Tzg4+yiJLunht7CTDQuDtYV1WAgim87XB4t
CItf7Z2effs6DP3pF1zUwH/Cdfmw2hYC++YNST7wods7+/Zt+PAzBMaU7Ew5
a8TJ/VbX1fBthUKleu90RjwBnY+wtL/8lRYl3CF/+StToCfjnhYtY9jbj2yc
Mi4kH68a4vmmGzWlcwaviwndSVkGrdYo1rApIq5YyI2FGr1UemsKQi6/Zoxs
Dt1NDoZ6JeN1onPCPGibB60daflrjtbw0UfByRL4RoyyF4ftig0yXQheKb57
wiJKGfomVHt0IvxnnBsuyR8EyUvmAgVXkCTFAK7FtR0ZqJQBP3sac2l5DEty
Mtpgv+y1q1E2rgcrDTx2yrHRwQGOGZ4VSx5SO0SzABR8kSKOuIpohEIoXKON
9zNh11vuehcyWdpCAjLhjIlUPI3qmA9e3GyyEbu5Q0t7ckFH6AWWXfhDtyF4
2VDuy2+y6/XKfAr1MRMOwugo7QDxxDcQNUfz57rOnDG7sDGWI1uAmzIN8oa3
GREGXkR81hU/yMaKrnl6fCIvPHr42QPmZt8VF2/PjhTE9/HnTzH5n+iHBuIn
PXJa+poA5MzQsI+qWERhMLuuUUObOwQhX73d5NXW1ZClaVCuO5zNuPG9lBfG
HG+n1KNloX014zvdwuyUi4BnuCjRiOHoUrEdRGgHrBH5Rz2sZ3yUCOlgG5qy
sDaRQFO0f72tGzTgYXQERnGuCV8dVKbRVklxh6OYKdmK48/hCP72d6JZDO0d
O+Ci14dNY1vaTAxjsVJvTWIqWvejqr8aNlMZfBVRom1X2NIOY1jc+ZfZgFnK
NI/WkaTxxARmCz9uk5/Ztvpxtqgtq6qWKPczLVGZWKKOxHZMBavJXhETgThX
LbUlNmjSvdwWCzNhoyZiwOTnmho0cs2d/ERTQ9B00Rt4F1vDFr9galMIKk3/
5azvIBxt8w66ngSaeAeHqCyySLhbLBJmCbxJYhsXuNVyRHYGQ9RUnhFNCmKg
jnx88qO67SQCwwSlHaF9fGdkkwkgoZf35kgHze9H5qAHmtFIpyN1TkkHqQt6
gyliCffkQpNyQmmEN7Wl5QPm6zmVybVcV4Rn3xlWdA0hOTNyJSs7EIeADYtB
xto3hUboLNqSitGCDi8QVmmoBOn8g2dOGcHA6lQbOVdtEXu0ZrhOvWgeFZ3S
9Zuk5UcHlpiSUVD+tqtozn3B6APnuMEnTYmJV5vzqOzgSp5iGQkn93M07oiN
YMQmbCp6iWcHGXHBUioQSLrv8Ie0t3FQTRrlwzNysfXZ++iuhoa08bUfaU3b
JL56KsNzNP0zjtbj2TuZfSgqNjzEgSVn5cuO0hG2phcuRWpV99Gtw063eZAW
3EusKRe+sdAnye7S3bgqOUaz658I4nXTmG45PaWUmpnTvMWcOQKsbqL5FC7p
rL9qPntIvit9SNzW2dKy9adMx1m9xzzLlEmdm+BLcalQwC5s+qDFUdOWqQgK
dn1RwPVb1o3ehCYxTNyHdeoUDOxXnbknvcQ322XtyysG8BJu+vg5m2sIrAj+
/0/fHh/BtFVGMo2QxpGQI3s4qCg0xUZoubUoTvAw3X29OVDbF57l8TNDbemv
6GbA7EAQt6WaUGd2w53z3WHXX1YwvoikbCTJVvpiGbLLFho/6hiLD9qIhzCU
7p/KgUjrykR7l8IguZNkidpu/313xTHooihuH1V6Tkk+4NsLftkQ5BC3zoeL
+ap+7yHmOTACi92QcQWrFplGMdsI076OO+/T8oYWKqgFmpl0as8VBoj7tMtt
x8tfXfR3MTMNyC3v6dV8HLQltdBgWeHwqbNn+lIOMpv5tkoj/QHsDaRSiiOx
NzPqRGEHrPyGMGIl29hF5tbt99FJtn2btcUabb8XRH3zSSgm7sSJMtMOuNcl
vvRvGMcThSqw3SNfsE4itujEhe9CpVetR+Ltz4NJrGoJStrxyOGYhJ0vAooq
6ETzdTXlY10y8rfPygrn5VgmwlfD7YIJgmqoj+EHWspLAjkZYYU2D4DYKqoX
MiWPL03crCRoShsEdrGW0j4GoReENrS6oexGBv2q4KoskfEzOfyCQqcgwKAh
Q0vjG0LJIeMCLZcP06HYMdq3wULoo9i+mexLCqdM+f46Dq196ZizihfXwHOT
tTx0BWswbMaJgu+LqhXILa6YNUVpdItYRlAFJZpzMeAfrxK/NQwbY+cyjQ95
Lqc7e0EIm5UWY2YKCZ4m5lfWO5Fvn4KLqE9k0/JHQWXcWtL+/fuzo5Px0Ztv
T14ev/76wwfvvPjiC67qxbZyuoyJJ/dTqQJB5LJBLOgPRliH39NggOjbwFI4
XpnkqZEaB4yKE8xUnlfJkVNpDC0qbHgfqJOjFv6U67Q+tSsaFd2/lJ2CV7wL
NtjNgA6SZCwK3DbPx2vxA5bFUG9xXWkYRthZVSLYx5YPCsmk+5EMKXHPHoPI
7sYWgVnv3FLbkIB9MSVEC56zHKLi8t1WcV+dyrE8PDQRDv9lLehWzulMkQq8
d7wXM28543PZXhql7UBuogXqseyQ9R4TrXangBiC+3TrEEYy5WS4ePwcYcuJ
cob4o6iJ8Fg8mpnE+/jDi9tHvr+hRmmFUfiMWpbgn6RpUIh1JtqJIEXwxAY0
birUzt51ThPA3TpFqI71ooiqQYhC2OpvFOh8KvUWeRjjEq6KHCMHufpe3RSa
hDfzqOBoXaILzrjUk0V+/wmIF2PvPf7gjK6SVG4ghTvg33iU9yy/yYW/2gKr
qVqKeCnW99fz7CvrYGAsg+UrsRvBca2VS1zsfcfMvOwccwvYJGosrkmmMlsb
EKGeDyR6lWUbnRQG12Rg7U/Vf67zLDWvyAN7pRlVA/VQzHoF5Ik6yW2EeTsW
xoZCT9PiswpUyIH7KaKFhq8GM2bMYW0J25JyKiycsjAwnBjBtRQUDUj/PwDS
ewZH5B0MyHjLnj56SpcccSPvOfLuDZsnzAAYNu9raAlalyxX7w683UGVkBhb
qVjQ9TCKCbMlvADGK0aiIjc+1hA1U1p6mN6hYZv96rXO4qPCPSc9c7Na+Yzo
OzRKNMoynhoyBuGd9OROfPlWBLoSpwTwhGL3vnSU/5iYBTE2TTbe7lk68f7+
2B63bZHnVLjQvCn9yB81DZCwLf6JechixdUwTjfyvIbXGu2BJBbWb5IuMCGR
F7d1ffHZr+5Bj/WZYgGh6jdvvWuBdaEaXou+RZ+V85BCg+FEi/46st9Fs3Os
N0EKi+K0B/YXKJT8GFKlnBdfnxjtMj6GjjNJ8N1eUEZXf0r2BEsQdNdkr5Cp
9xEDSjRpUQASPIAb5Tlng/QzQciKTgJoggWCdYzH+6lCHANJ48d/X8M17V0P
xnBiTZLUS7uppldNXaG3xAaN+NRJg+1PcSR0U3UEeNkzJqMFqg//H+dBGc2m
F8QTI5ZG3Xg43yTaEGkTERvStC7N1x/uWUKfpP77KKhVWF6umS0UmKXHOIju
DLguS/jCzXI3WDFe6vHyT521eEZq59c8mOHdEryBuaaB8VUtzmMUkNpQ8szt
NHUmDdkEUoKK2ILECJL+hgLgMVO8M3WbJdfJGzfmBUHIecDslopi1jUwhymW
aFyUBHp2sUnx/HmHtg+cIvnh7iG8CsI4ldKN5LjG0K4QfRgVEEkUcKwySGUO
UWgHsRExWwzsKsPsGkpkBH3GT2XIMpVo3r44evPq1YvXz19wNVvX38J05T0S
iC1LyDKGWEz6iK8akpF3Azu7vauQi0fI+lGt+JCasoo/8kKayCpJdRlOpRAG
s9nSea2V3Q0lc2n3LR946YMLceSzMY3d51t3gh/k+pzSZ50v4rMQ4xUk+oxH
nDOIH6dFp7pg4p8lXnZUz4rEIGq+2Av1CJPUFqwXTgVZMDajAqaKBjA+ebbE
vCo48zou2tyzIjTireCUFjSo2G0VVbbqy9Fqz19rFbb9fsIsBZoTaJOkminD
x7HTJNTDcO7X5Dx7I8l8p3i8pQSLT8wL0cWRzESxflJ9BtmDMQP2vZXbqewu
rkAnKHAYbuh9Xdtde9QljIPMZpyLpvkyISeNjFUhIWUAJCqvdp2QXja7mVZi
dPc0Br/t7UtKT/SOafZrQj9kKth35Xz4rW/ydu+Ca9x9Xzffh/KE3/tvOSxu
MpkwHT9Pjad4Ma8HoMt4JVT4GL7IaD8E78swOyN7wLn757QUFokCvpKDABAG
EvEx5QcuizCbRuEv9PEcLagMId3i+G/MVTR+duqFs6f/Gc3AQ3pIIiNSSAIh
WEQNoc0bn1JjGWhKSQti4sJW4GdbGK3sET3Z2MQj6GN3+qUroZ1zXxbr3Ndu
Wg9WGzunmubz4E2ErwMEx/lXcDIXYvakGAsuaB55yhlSm04WG7zm+BGdjrsu
ntZG662f/LBrCXkF4Qd/pYbCTb/yGuJW3X0BNYRuIsjOfpi8YGMp1UUlsZDq
F1S8CJrD4D+8B6PMoynjHg6Ipr4mDbyFeKHQ9VW+mI+nROcI7W21lH9OIhDN
LXzLicEjNsyS94ak0v2AMQ/X6jpfpOazGxJOtFgHhf2QF80GyPqdglZSwSFl
vgHpph7IemCE7cXAfSKFX89DWa1zb8IsfuAscTQ7MesUcyduE9uZyBonVA9r
pfXA/K3MBmyfBeQn7DcSRxYnA9h1SDP6fci/gLNjeFFmXhqa4p2Wi1opfgKt
HOxweiVoo9BHwBsVIPJY+YTVbyo1XmRkHNjToihbqqCeqd+D8libELXKSQkn
f35u+0AI72WRoxtuSTA2g60S2bOUoCm98F3kbokcZaJhaMHcoJRHhSBJW0I5
Ox0UtC1R8k8wo0dLFlFEgSyT+AsSHcUuniaxCHSrLB0nTO5WUN5/0ju+7g46
TdAm2UgkxXjNGOJF1Qg2wX8OBgaKl4kCFTDQJnF5mc4lHubWms6kOmkh3Agh
mS3RhMPacdWruFhzYFW8/iyv29qEfu9F79USgW+12NKrsiqX6yVMoWnWKx1Y
J2M8wpuVS5VgVK1eYLwTeA1ejzmyf700FQPx+ZE8flmYmq7oX0dz9l4FO1gV
l1SIGHGB4EZa09Jyd+dxdeP0Nx8OZKrUYfYHt07qb0DRw31eyiRDmv7FBp1p
JQML8QXoY6bofJiaMpQBo2igOt2JOzQ3uk8k9HjRsGBYoD1AknkvVUbmm6lM
Rz2GtgpBlqq2FOmOJMRRO3NCTK9mGGXAMCRh80wge8XHpGNGri5a/EVnGheP
PFSLiWS4w8v3CX5dGWoIt1/BOSm0GDIxACF2TOP3a8SlH3xIaK+sVrqz3Jnz
9wACPDVhtDYVK8wr3pXsMMWOdpocLUKdHqi075JqlJpCUWMBrUfTksouhHb+
bUVqIt7Gam3TNesDSHv/o5wZ73YNx8V6f287K9HBeHD/flqvtaToIfOFb8db
M/Xa0pEwUUSys2uKBX+NwSu7Qi574eXoduk7eBXrYY7Mrw3QDDoGSi+7ogJn
Yvt3iVGESmFrlIEdqvaqxdHI+qiq8KjPKKgciMYfs6/Qhp7ZkLtyUkxCCLDc
v7pod9Tvt4ay7l7XgVi713V2uc6BoXdFIVgt3rjiQ1DZQJxkuvhB4+QuYVur
L92OABqFWSQ/WryAqiTscGeb2kV4FCRkmn4+VJdP5MimY6FB1PGpkI/DoXjN
lJXtwXEuw+WhoPXJvWEeD10Z0lhyX2xDXUWcdw4DYGDILEn8rjmPDesXeR+0
z8onu/IFQaEQgklUnLaXsnQ4w0A/7svWnGXYQorTRQuxOMm8uzuKOyakAw3k
4+7J/GyCaXUpNFo1sGcx5IQFpDUyVwHmzcjGInuVgAfyuQ7DoTmmKc98fcu/
KN+1xPauKFZwNeEW8W2FAiQ+HNPDAYrDHw/xt1+O7LYth4SLcUi3KSsdZ+Kq
zWVgKqDLhrmQCeLuFE4SUf4DSUQIK95d0RVAKEDAxhCu3BD1HrK5OeU3oXHL
Zkw5HQ3DfxRcfLnbD9qTOUBkx07SOjmcJ8/CVFSy+IcdDbvG0RCAgX29Lmdc
AieYww1y0DwK6x8nCYyYKeirLYSqi17W4jYuyeiDGlHeC0LTE7Y3kGjSbBGo
wrnimAP+U1R6MZLOhyb7n3xye+GYZxZ90kdb6XURQqziC8O/GM7ui1DKNDqm
3xUovMLKfZWDYvWndbEmnCwx853KYB5NPsMFo617+Nl9WPtU4rKFwPGA+KF5
gPJ+yBwL6W4gCrWjdAy8JkVKCOpnCMEzEWm2BY2WK1qXlCMmpb6frIWbLlFd
ftREtwMFInj2uls6FFAV54hJ8/4TXI8xDBE1DnyUbIx+IR/cvj3yT9/D3jNk
lS/mc0Si274HuGQwelJt1RYRIsPJ9tDkcy7+63GSo4xNVVbgvVlRz+f9WFnq
uVjlYjghb23JlgxyUYdAeq/rG/sKl0eSIfqhSVg3R3HJ4spKkgJTCKSZaGZi
vIbj9zxAmu0K65Y6UVICgQLxnPUl2/p5FLAOzEaKMvmVAEbe3SCTnyHey4j/
D0bUMHIwV0jTmuxdiIUaJGJbzrs35WD149owncS8wWqRO9/tqv15NtTgq8N/
9YkZ5NUQJyXaxBFHRkdCIfx9hNI2MqrAaLC4PTrGgaeKrUbC+9h8//wULdyN
KaEaantS0RoZl8Ead4PZ+ib/gbf4Eu4kkOaqQkJ5lVF5NvX5Z08+xxOPISM9
qHCtpNgQil05C9a4ZMEOnMsyfxyz7KBnk5CZkcrWh3MpKRJKokq1cbSUcvOT
7aTKEia5K1Y0tFCOpberBIeBrnwTZkVL75Mw0JzOpM95aNQivaIM5is21JBZ
izjdw8efP4YFPIET9k29yp6xarUGTfzkm2doqIQmpyDwYGDm8NKIllkGeCjS
b3k9WnXLoceBc9sjP5PW/0K7zrq5xOSLYDyOwE9GxldF1WfpbKeEyyX5dMAx
qvNUshhlHMhhaJWkpKaySuI8pMiPC2LAGrTyX2AbX7JxFDihuSC8ofrpZ1jk
OoONo317CUfwZU4JLZ8a8K6tu2h2UGBtyP7awmK0La/6gpubgKhKBjopcS2j
vSg8K51pCWwkg4p5Y8JBmSKyu7JQYhitdX0nDlDjclBHpNZ39bFGVkKc1jkI
sdNeCtESzd7ekAmLwhNvkJ68QvI6v1wUv2lDydH9L9l/gisWajaA9IJxoiBA
XvKV3NRLreCKYcvBkkqzS8G2hwI7v+RoPLi1yH12C0n+MgTpj6ln0GTcj2g0
528O25Z8LIbR7B1+9fjBCP7nIf7PI/yfx4qW9vDJF58LyWbHFRAIVtQLR1F8
NzZiH+9wrGUsOpNx66gEJMeVUGtD6CQsxCpkKNJYX0CzM4Kq6LHFRw8ff8aA
SVIx7OlnT3icbe9svYYL+dbzlZwlPUmSRo5OuB4T/clnDBrzp+wXPmOmkPGw
N/GjqA6vyF+G7jAmYZDyHiLlPUTKe4iU93CI8hw70cm/O36LVHOqWaDDm5nc
bZ9GVxray9jBTw0yGXIAsZF2klKGz4k34l4lXFJmyyXqybOzZefvuMdcD1wk
ysgPbcP7ydNhi5OfUEC4TU3zCdhWCWko+RrjQ0zmpyZuwxHQBLOUGPJWDkjD
Tr1p2UzXJVLZBWzEu6IJBgWUVuiKJlDqfJavyDA5xdSRtjP3/IKw5v+nI9hH
SLCPkGAfIcE+2kqwMr7xaVG8+8mUyh59tY8xqaL4zHdQyVCm/YWV6jSZek7I
9UGCCyxPyaCcyLVuFZn6C49H5xe6oXpy1M476gEu/ANc+Ae48A8GFp7nZ/SQ
x5Onqok8fvLFY59V1JsBZ/H6OJM0fiSnSg/LeuaDP3IM7h6rM5Aidg12UWQv
UqNBgoKxoYhJx1WgvKFCjRonhMQkehw2+8qni5wFq977T3wWyZixm4ylw//E
bd1u5cDqkEg4uw0aHCGyCuPTEo3EG5hwOTrby2ycaqcKu/cqYTTgVY1wpsDF
BubncTXY3qC2PrWKhanDxpDZGVZNoCSCagm6o84L55iESrJtWNFGDAIpsFg6
bd7KECLNaTLemAvi5SWGpklODkkQhLPEKXfIkrmUFNsCuqumaK9qBJjyWLLF
dEHpZNyEvh+Xm43ij6aUP2gkmo+ZVxVsKSLkCFBrgA9W+W5F0XUVx/swSbPd
eccuy8KwieSiqAq89vIFQ1ldgkxP0jyPQo+LjkMjyC7yBVq64Rq9zDGuSyRJ
Ruwki4WHo6JO8X5Oom71bWSgrCxqJ/iFVJRiMyN+xTfq9KrGVDkF0xO/cPQl
cUxaHI24V3cTwwWwQY2LtBHT8OuGde2rdLXIUsc1pGmjplcIFakKbtDncPEC
2E4Yt9dvsh1GKOcOLy/RF9ttJ5WYSnD6u0dKVxLS0ZBJGHVTPokbuoko9zQy
7FBdBK2mPZcAvll5Xc7WcpRaCTzhMEisqdMVl5v+NO2ZsBGBTIC5sCvOS8n+
3//9/xjy5HAFQd783B51RehHjvwM8aTJNHdKmZMaggStYVZMYLtlhS+QnPop
/gWvXetf+Q/2t/wH/e1W7963FS0Zejo+/ce9E7sSo2/v+Besi3QiLDmcXAMG
RVtISU6gYsOJ46oljUlI1kvGB00ElRNxdTE+aq8g3I55NkfjprEmDchILEVp
4AeBGeyP1PKUC8fgURhxTVBE5WLABjw8UiTV+TCLWVEsXRnKrcC5mq8Xmm5H
7RgjqIRYeu3BNkk9cxAINM8xHDUhyrDJ9KrIZyL34T8dBXMGK7o1t2wV+fjE
mQGFcFc4/Rcoba4I9gB6lkAqENyweK7EQfkJkPhZV8WY32UNmW4YaB0rvZA3
TradVQp7NIBG/kfanwsO/1EAWF3WUmjO7ISXW3xJFY6sHHEEMIeRYDVy7sIj
LxQVJ/lVGxds1Ny55AH3HJyG6jWDPsQkMPmUpojEZIcLPvZrRg3/co5NdusZ
5k/FfALvIhcd/izP78yUtjGK22Nd5EBKErwPiewFUPsS11xAjU11DFOOs8es
6GWBXw+k2vymVWifU8VnqrcVNkJIIpTi8I90UOfh5aTikC2rRFAybDiaajW4
AMbCsFv9bK0UFS6JdPqKFJSt5bB2jVoVRimsNcnu7F3/lajwuK0XZMWRog/v
Pyn5CbALevLBE6T8IG8GgnzGiQUx2c2Bt2BE7ndsJuN0lK5Zc9VpS4OSVyW1
xWN8M9XjclzOrltgYVcUuCK/0p4WrpARA4djyzNFYdTv4FbbJ6uJKiRErorf
NpwewAbGHUF32WG1kTzvgC9CTL1sbehjCD8JgDJEU3cO72M8qKhuGAe1oGDY
5teF5pszRmCI8u0HCv5/7X3ZchzJseV7fEUa+CBAXYXm1nckUlcyNpcWr7jA
CFAam4c7SFRlAWksVEGVVSTRVJvNb8zvzZdM+PElPCKzCmB3644ehmZtTQKZ
GbuHL8ePK0OIZR51FKyuS+TdU67xBx7C7Nrxxvz9wwe0oV+Onx22zXoGsN+4
Xk0uYDYX2p9dwoZTBIVJU38gIxzF0VKCQ2w2lI6nlDWSmBgqJliSbQkE/oRL
hqGMX/Xu5CSQpnEJjeKwKvpkG5AP2rQ5p2h2Bpvg2oXCi8fgeM3x3ZaIYFnA
Y8FULK9+KmOt5zdmJthXRMtYE4lO4qpW4qpeLjp3MwPN8N5QdAzyBAtkzDrT
eTOHRAEhFoqwxKcQhSuU84zwwDvBh5wAjvI4zkaUB6cuGYf+KalbyFQ75dyt
08c9GGmeHK2JlpJWTf8YL1dT1LnBjpSJqcVkeEZmoc6KJT26malhOQxIuXxO
5CrU1NE1dvVqsY0MZlsSZtZBtWV8H7PEwqyb8vQ/uafeGWqdfS2+UPWmHZMR
KmVnX6zqc8cksYrT7v4to4qK5pgyMOO+nsXn3cBoA2yiduC9d6+789jibfNG
3lDFZaO5OC2mA1nq6dejhILPYZA6tI79NKb8BKCE1JPaLugk0NmWwJpYJ7Ns
EqxUDoUqD4V2NQlY3NhlIorUuJxbMJui/H/f1FqYIgyugRjGaINTADt4oOtp
bYdxoBBByLA3+uUjBl7iw/uvj44PnG1iKQLZNuvVzNnnYiG8o66melnSBo9S
Nzbx6uj1yftnRjpFzIoHcl9xO66kJfuWGK1JrpKPy5bKPlIFTuii/SkP+arg
4nMPiS2WwjD8mKBT4YtQ79il3w5qoiJeRQQysWt50YSUYhlIUCenjhDCZ4lF
VMd6ueTw+VcohsU+/3W0Q62Ee/fgcNdZVwdMcZxRy9ud5fjPW5/dUmzd+lwW
rCxM+iFnoDxnuVKOk0aQR5fdVJiQluQu+SZyrd00OSrJi/mhNLgiK+7/yfyI
UP91pshlsQ9MUk75kdSdR9X7Ljah+Py3nKu2//7k7UGctfXkarxZL1mDGvZT
ZfmkncHWKJF865eTJryFimRkJ9LIaJR6GlR6+C01oYGFdcoZ7Se4wzvD7iah
H57hZe8/ZQV7t0togEWHKdM7n3B7lhJbZ5YEPJB1f6iTitgG81pMKzDuxFEZ
/4mkh0bptjknx11Q8LlcH2T0n3J5m5RGiJgCCAfWOR2VchoFkfS/v/8AVI1o
FheJtsfFOeIJWK44it9Ve4lLek+W0GWeCEpyO9J1OQOqxLeylfOY3EDIflnK
/VlpZB7V3IZSM9/SRH9qhZ+49IzDgAnR4mRbhVx1snRy+7hvGV0IFjUtRUao
s0RCEcUT5nOddvaDFsxIVuNARLoUI3JE73qUTrMD83whaH6ihWDLHTSHiAIm
J/GT6UdqjPSG7HUIisdF1Qc9mVJu2ftipziVxSGXvEC8R0sSrdJm0blIQ2mX
PtAQ83cPf3ffArhb+pgkcJQzh7EPK/nFX6nvA4LYPG6Zr6MYlAho6D2p7HXq
gXIR7ZRQCqXCKLYVYE2kMrRDpLY1gTwARiDKxVOf91T3k+zyai0ujcS7iIZ2
xdaps9/fyjtUWCjqfvQmCabp5K1sY6aj4tAzxlQQRLad56tA0Ti9upkQUe6o
Ii2M6WXps1sH5h/ZOTYclVsPrV89pr8aQbkS2exPWnrtZ6Zf8WzF+4UktMyN
coDotSULAdk5UMhmYGOI9+iwV1/qVTtrJteTKFGewwlrLJEIKsdf4kAUObr0
S2Uadq7bggQ84RZl2YipsXrOlF1f7nTxX2Mm8IqKwpOcGNIRV/aKXIwSL1jJ
/Sjzhb+HbdToyQ+Cub9aa4BrjaFo5cnXR8JCpsYDkEAJX9kD5iaf4QUBMRcK
LNtK/Z+S1mowj0Oo0xzxrDxOjMYalis+V6S+tWvh2A/MNZy8dhIBTB9PIRvA
i7BEfUp7m16to864msTCbEnwjsJZzhAXy4q3ToK9+EXga19qmHpqLQ6Vu0Fm
G+8i8b8fVlpwD3su4GAJ6yVQIKnmXTRSrWqUo+nDA0WMXkkTAxc91R9x7Q9A
+4mbVXI3RE/i+Hiq/CxNgcylBrEDTGor9icOyi2T7nmzedbvsEvpROO3X+6Q
O0fDuUTsSr9uhTsrCUxWvxTnreqJmOSlDwG4Y6X6ZsUF0bd61VrImVEZZ43F
TQiyJMc74cmpA1rS5sudaDjFHj4nxIkaNzQRJCpUw9GfiwO76GjNPOr9AkhR
JyLuF6hAx6DIEmHkDqpLqdcPKFs35AtV2K7hnSuPt1liECu+RI9zr0GxmTIH
85Q64t+07A8MQcbqIyA+KCcMPSlyLUu4YnjTmvsqUDlbF2V/KWZQ5n08WX+O
c//e3CDymDwl9UyH6QSVeFNLr7qJyjlHRmKEDK+RAc34N4mki75N5aKAHLJP
y9PyizH9QjxKRoVaD4/C5jGr1in7Qti1xSnni1sDCaVPMU+z8NXpdpCafkMF
uBxhaJ8E2e8E6aoQfOb9P4ybo8/nqQDHvyoBY/HSeUa9qAVkux5C0nVTwxdO
T3dpcUNGfhw1xUzzpovi4NnBM3bUxXTMP9KlTvOaP6r+cXt6F7llPyuNnrWq
oqWiLdPdrxtfzOUPzTp/Zv8gZNXnh9/JHtHaVP4wJhko+5nUnDl5ns8vmO0/
44by0lewx5ruwTuKrq0xXxwhCfVCUNM80LEZOKliV87WqJO6DkZL61qe9r2q
lv0arZNmPsurv4Q/n5wc5eNgH2m6hCo8oqyDOjTyTEkUPpVQGgEj3a6MlaN/
C+Ufw4Ff0XVt2nOqo8XOr3RyrUwbcEssuksF4zddqaNB/JJfJqBM/ZJodeur
bgOHAM3EYkJcvXE3MlglrUwNbO4nwafqOyG+E/+5BAUdv4K1oiwse/mwX1sO
nZaBBzcnSp/UkI9GiUok/J5hFEXYQ5WE4cAPuYVwZAepLAXlPaDcXxZkmEWR
GgTdbqVNLa5YpJUKgKr5iEq9vAOiESX3fGLUUc654p671tGlrGTS8yaNb7tr
QmqJd1HvQzJd6o4asfTvQcRSvjcpKsY2J7a5nGVywynGNV+rvgRDjVe28+kr
eVFgXhdcccJnW9RbtOQSVG3lcPmcs7pF+i5XSb6yGuxNNS7vkdSZS6J4nJD2
tDDFhDUiQS9LqkEQDZcKtxH+rKlXU5qAgXDxE9/XaJSskued9nYQxp1yXpgt
hHe/8OqKRmArICvZgVMlrsTnIFRp3QVl6cstQj6X3z+4/3thLaI4CssnMCFw
CbLy0wesfMsfSjd5KWCW/YOqQnwEf5GJxd8R1I6ivsKff1T2J/31P90Pdz33
j+y5b8bxz8ex/Ul//ab84TfBv8t/3HIXf/Tb7jPpr/9Z/vCb2/fY/8h9XD83
+Bz+Z5eR/8XP+94/cUZ5PxMF6L/8jH7vBPi/4oxmNXf9zVp++3Z/vvGn9suj
6s6sPR9z4dmxBJfb9bz5973S13LBKJ5SXO/95GFP8UaalxIYJqhAZTvxkPM1
ezWvJ8xb/7EJJevTUgMLlbvg+JYeuJhGBhYKntaC7cepBNzHVXJHjfk+TnEh
rg1INgDXwwr4IHVdod/J8Fway7yqLyuv1zAwmYT51ZKcYi1XQ2c/EzLEYbap
56QP79ZDHqDVuLSEpFbqmCSghThBVg6wV3h4Ahbk1XW/uGYetHkczh3Pk/3O
G6iFOT9jmDGocXJkHL2t8Qgr6VZ+JXab6uR4pB+GVPQ/N1Stmqwv4pSpBii5
tdqgUgnVfBosEEOqoq5DMSproc6/+zj0ozv6qpQlZKCBXpkdUxMrpK2aq8uO
W4hd7MKsXXUSzNPXtqjEeJuPT1TdEXh2enCP4URvcihRNdIEJ2wFFNPbH6gY
gCwcyIh703yiN+VFkfFkbHv+6bjI8ht+USy7Y2ic5dKTu4E997lWFzujZYCr
jMt6lHSu5SzoZy6pDrB4jUVZgmp7JZA+liiMpkxFSaFyE+EQf60sDIUt+0IW
4zX5WASZlrlXDOu78Hu7GxXGaQ1lUcZtzoLgnAmY/8I3s89M/eSH+ukgEeGf
xk9ZMXDSoxkMtOCuUtwgtrwW49Yo4eKvYzOJJIAVwsZKgOP3VxTnVVJlZUaV
HVCWSVrp99W+TU/AT2ysWQGiQTsyRkOSCItgNjl82+7SewcLYhdhJ4JlDeCO
Y/LX+rev/lqxiOZEvzSc+LDgMOnMxq0St5sRD0XD/e+bcmOKY/kyXw0+AfkS
xe2fPwV/1EwsmQ9Nckm5vQXlWF6jPTWq8m/IkcHGKvArriZ2sVe4ym7uJ0KJ
WyuYO18uP/BMNlwKQa7imvm0QBzcc/fumBB40dxQD8j9jm9y/zPe9RZhoSHB
I7E13q2yUIIBMKZwEuV4l5OMtDrfxXp99eIm8UR1UX72SqYWRtUeZ37sxb/R
77+9WF/O9w5cZGfAefjlTu66DeGJlwtE4SzEdYA5a+jAsWRHJQQuIZzS2Oyq
zijo98tzoull5DqZamDDMkQdm/0uZ1XB7+VpjQ/EouaKMJzl6ByLIlcL1+0u
vzJ7xBiws+lSsKQX1hBXuArEYacySMZSXjxnXNEPpM24Dwmy06a4CXMcI/az
r6nw/ARTAhJtJOI28yXxR5VZMhY008IiSHfoY7bahHUqww1FRWjK1tPCygFs
eh0oPNbLVDfyrDlvF1rcPInC5vNVS15+rus+B1UcZ7nTY4nRPQqBdUo6I//8
k21xgSU4PLrkFVWsWdqjS/1Olci7prnIwNUZj93eRRO7tffzDyRlbsSu0Hn8
2YKVrocOd9UKVwYSq7A9NHZmJgfYU0mXyPs2AiLj75s29gEFEZfY4WwgKcyn
mFAjMtPCxtcDAuNQy5Blwd6a61fC9bciF9/Axhf+iEJ+pxtgwj49cu5cXq3L
AelyI6OSbB4UaGXKFt3YR5mywkaaVBN7yY2s6cZaNYrcQmbPYDvBl1AyQ8h2
lGk6+MKVn51+YMbp6cNjkjwk86FN9Mbki8f35bB6S2pq70sWe05GZZ1LsZGZ
hMzRIRJec+6GeyZptFwrIO4HLfMq9oU0QP7Kw4ElD1ne1o3TIDOQwms6D34t
gGtoWhpI4L2ftpTuawHDropCpubgTiU9MtXd97yffKjI034SYpPNg2BY4Wuc
tz8KlF3p3tvkcL5KdnQqLaIlN7156XeUUoHF641Sm8kCWad++NCfkB7l5IJZ
FeN8fMBsICzPjPPWvOAOirhQ3SOAIRPHZYGps1+zfdQFfBrvx7f0M0p9NSBW
dkkkMNkh/LS5WwejHdhsw1OytTZTPvprKnzRWXlFkXL99YHyUk9bLorQ3zvX
TKraavqFJ8DRPaBhZaXKw4WqkrMremaRYrvWSglaXs6zcOro40+rxEZ7KkVk
OBSe/FkBs2WIbVpA33H3taQLC712oOV8x2T58bvUiGDXWNxDUZlQxpBbv/k8
6N3fGn7F39KeUtO3nsopCDio1XKbWS96q6aA8ZRquly5a9kXDmtSzhtvQj0q
A8XdTuP/XmvDPNvC1t+4jTIAnLgOKWmwx5joNpWl0KawqZuOfiiIRgENlbCn
C6lhkCxgCb5n1wLnrCafQ54vo+CI3GWzRau1kTwS38QrhRcyWkXRhp5/qTvX
h3Zl0mdIzqjMk3RtuFfWxkBBiMHtR6cPLPc34fo1qsXA7E60KLI1+iT3s7XW
M6S+KJi7jdbhvPlYC2iLUmuX4HR1hXHCPlXgdgw4KTJL5DrW6A4A/Xgs7WWZ
vFO5fbNzp6m6fMpIGaKApc0haRGsoZN2fGwFZeUTv3GPwu3LC1FmnJRhQNJV
AzX8KR4rIUyfky2PD1n+v9VZyRhvSzASuCbXSf/VfKuaC0DRwbZ9L7U7rh+X
IqxGUQIVdDZDBjvtn+t0U+0nK08b0pKLMMdO1AWE7JJFy4hTm7c+Y5UnIcKx
cRWIqJWBAkTxx79W/aGcuMyXGKrTpPerC5km7Mt5RtOyviwjx9trC1mCVL+6
kDP3+Cq3ObnP+xj3daZMFs/dU0sJ182Nj98dOU5a/bHT4TdSrbEOnCY6JloZ
zzLF23gj2vxItE9LKJbEjMT4r9URb8Nfrm/9qMnk21LmRQbU2fVtNhkZkRNX
uuo0jCuHJk91BngT215wWiV7qBVJIAQeaYaCK9k3Z5Krs8ZI4OmCS8RR5lXt
Hksv+jWK9ESIvigHYsn/ys+DPLI7CYC2uKL4vvd1N1XMDBT7O9WgHlo4JRcM
SiekLPYDvonwA7pVeN8lWxH1SDdnLN4THaBKuAR291hGxW8n4M9yYQIN7/Qg
d1qF2loe1A/EQ+MULxtqxgfCKrBoczlwBUYMepI8ZinNMHMMiCIno1BdSufu
sF8MzRe091VdLTjpoEJgCwYOTr43CrqTsgXy7qbYm/Fyxr9M84nKMFIJN0VI
rPxtRoXqy1K6qV4vQ9rcyiODOUyXszdGe+llav+KpVvwsfymy83bkIgAHWzr
Fvu3Z/uEHRZtncWajusZ0aS+a67m9TVuTz6QHX6+sh/7HGP8Kr1xywQk2nnC
SnNafuI0u7MyFYf0tPi0ZXIPJ2iFxG+11MKc5iQtPL8vueJEl9DxtbRBmoZu
mbvjdycnOR9ytY7yDaGbTvMoCWrd12z4XcCoysRCSRTK8wtdXZJ0Is1DRTqG
4nqLEyS+nCsuxGi8kdMNf71xcdzAO//9s6NRLlFckc1UnHqPV6hKG2AP0Otk
PXmaJgoHsnWfInNZ3RUhGRRYlz4zCgMbwReYNPdSpiw7EyXz8BcxYbLaigY5
01VY0Zh0nwYz0AsqWZkQEDZXr98fn2wzrCx6C1pUPkVc7jwdHfz768+LBDxU
I88OhwX3Ueqhl7JDEgXnprg4NIOP8zWcC8l2WBAUCKeWDKdFDrF0m9uSHYug
YQ5cYNzYlxRoqAXTC38HJYqzDPQGPeFshMzhxcs3fM7TVKS9ywtg3Zgs6aNr
2s0dhydlUBDYUnuGwhVvZ+Z9ORo8Znpfcf7VXB0VGuno1aFkn5sNUui3hio6
km7M3U6nn7Dm80/1NRDTHbsTZBmsxSiZkM1kGGRoLfyl5IczN1SqQQm497Uo
/vYku0wgsVbC6WOodZynepGZCil/SXg5di1GPSdSlOtgJerKLTngyTAHGXGV
ZUYvS9RhzwZfbLLHhmsqv+KSe5Jy06+eHH/8L1k82ZUKxDmaJBxJ55SXqDQR
opfGD6ALAcbJHhq05Q2vuxZGA1UDRdMLrrLxlMlslKaXcGOc+Ihrte161pGy
JsDfDyOZ8GXNuVohuiCk/eo6lOwXec1LfSr4myLaohPA4KYjKx72X1Hp+C25
IHtVjLuQXDYjd9CETV7TEz+28Vhfq1FLxMnpaim/yQl8nHA91T2u7tEi13Bf
hnAg+7vn08j2uX7kn2BmZT5rNbK0NzCyuOBavOVKqsKt+mB3ofESbPh2oZd8
FJVpLQdSYZoFkbR2HGUUjILlXIrqXnoBw1Nfdzj3SCf5muyLMOSV7tMefq1X
esh7dShzJ45FxI0vGoEHWrnkvMuQnMqh6AMjz0wXKsRS3wt4U8VirWWUa8Zd
MLiF99slh4FIeiE3yf27bOthmZPS1vON/ksYZtmO/wVmmaE1yiKPb9Xz8+VO
VkAhv7q+ttBju4gr0yq/bKnRpeFN+lUk08H2hSetRKcTwlv8k25VfmP1VugS
sdqPZJapyui9HI9ltbf7xjC/Q50OQ8Pbd56GfDCH/8Vb6/aT/wv22Jtl9UbI
2l7hJs95BGWDKTug22GLZfbkzyIgua1895nxQV1PO5j/APozOizFiLiCkwJb
lSzNIe5AKRueeJTc71q3QxVLahWPu17J4/QVDuEV7eaVppktyXiX4DP/G8dz
ODbiqipbsLYQ2OtlYKPRa8lqcgng2k+ATGG33KwmTT4P0jhDN14efXwoO7kI
LtLHn8Wju7btQ/zioq+Q91Geeak4SjJ2mJ3P6v+ULvxiTEx5loxuEK2VRZtT
RupvOktqVE5a8N7G9pSyTQpc40P7pzsJME+ZE8YNeHhnMDq+WbFLGMGCAQ8B
efnpAB0Xm4ohPrLYksG50lyD+fXQLKF2sXi4dFvxuNwBL5hAF8uxdX+crXZ2
vP1bvxr5tCm/+cHg9M31MssmzWbW2bda8NAWXRcUK2mzr1I5O21sGBAouScG
dpyC3LrGKFcbAUFShIwPxq0OY7aF5TprUhX2teFeB46THaKPD63mwczqPha0
2O4s8NDpyMXdspsTk7vX/b85YrsQC4dfIWYRk/erHtRpMyRdg/MTSJ6FLEw8
DgLKG/RsJdWdyfxdQNED29LG+f5ar/2R8S8s/k71zulWUBdVMt9hw2Ksxrji
dRwXvvP8DUi0MQBxdukz4Lh2jE0jresHxpJdbBAJsSUYZXMK8WiNlx+n04wr
4P8TFMZ/2mGdQ/qYQaLLIFeCD2ZjelRS8dyIxf3TKHP0/UmwuezLP3Uvnqpr
lWNRDGaUg8MTd5p/+VRcqeEW1DcwzG5mvzHkNK4SptbKmFd2sN94SANn8gji
x7aTn4fKAM5JG1HAuud0a11+TexSKFdTqW2+R8KXbhpRJHlzci+QlMlpYYqF
dvU9C08qKAg6OS8MXpFr7xkS1Qkiz8lv5TmSTMwcGp0Dn3fAxXfsK4fpthqS
LqVrAP6GqdMQ42AKJKMMl1rHSxE0VhW9BBNwpcwBiNn/+V//u8sdIDbczMue
+mkQVOBF6uv5siYHc9IvNPFT4mrvnx259h5XnL+PXJl3fMtrTj/9zE9kCMco
ijWQ/EFCVKVRvYqX3qpetaT6AGeQIrjkC4AnwZFH2HSxs3SAmDeKxDI3jglq
1lmiiTO3MiplWLmTHvHyTwdK9RQ1j0WTtU6tBi1CksUjLczwskDIGic1sn3T
tV9wHgdwHqtrfIsDHTcqaqV65Lj3lFvmCbxAkPNxfwSfEoKwExep72sNwgpD
m2FSABLaTFPjqJQVTLPNZPzitD5CN0hNMKuhyg25hkJ41X7g0hN1quUxzCc7
FEkAzDvdfsDDMB9i6Iiwj0RiwYuYOcNb2ABS+XiZxKKtZnj+uQY1D2XZygRT
F9You8AIvFPYBW4lDgwUMtgSaarIGCSsVWIPyeBCLrnIYdYTK95AgpFQDkp0
UJNyGu5/oP7768l1zTIYi/6UcOU0LUGwh5KlHzUzZwgYG4rL8amToAb10WZN
9YrhSQmu12f8LZtYXTzrq9x3WwiHxcuQ0pWKgDyyAEEXxM75fC+xoso5phkg
1U8bI64u68XCQ4g4h1u+LvvSApKh3VXNUMNaaz4Z658G6R/jL/6QqyZ/TJcV
70dZViHOFzJnK9LjNhFTN8qlOuVs8hETEZluRICcjApVVy9RJ3KQnoloaIlX
YNMiwbudZlPUjYSvZfAEjkUr3uN4Q23xSMclltpltKfJa8y44x74tNrHmIJy
xbacdsPlF5HBo74gtetBJcnMT3W8iwgdpDe0GB7ByKuLpz80q0Uzl5ccOPEg
WTIDC7RrU1S9RbXUudoyqptCQQyWo5NPRXyK92i7VmbfuOv815XSqkgVIyfF
GUAzwKhTrqwcWSv4fbncLNaUgcODhwN/zYnwDWQxLg3N2M2p5OZSJS0/gwqP
AUl6Z6g0goEj7LnUOhHa+ZEuLrc6ZfYGWcEWNQWxJ7cHOGAHl2OH95Lj9NR2
osXPlkULXDBsQHZLXIJBx6zItHjMRXgOnnR5asdhz2XjDeddplXFtTix5fC3
YKAgLgnbqaZi11qt2IaZA9CdJWLZAj8d6L2QoPFSIEuKa7k7EiU0xNO/SBUw
LfeGwgNyt801t2TeFMRo/enYcVLM8vqqk2KwA3Tb1BcoV1tENT9aLCFhs+tu
ufiTrOWToXInsoqDqyBBeo3v0UiZvuLRV5ZGSflJfADIQOlT7RG1F137HWn2
pHFuVhZ82SrgmWg3CBvvQPaJlfoskr8y3j9bY0dqkYSiTtktZGKx0uHGla6O
ROc6BiGaRuNExQpS5gPIbRYOWUS4L0B5KTQ0XcRwgrMSHGNygWs8ccPhUsxA
dpOm5Be0hxGjJVzOoXdeNlEoXhOdLSmBnPciWyBHnuhVYk1sFh8WcsFvmBoG
KthRnvbui7tkSVKWyLzIHRPqc04OiuFsfle+CJ4nTLk4X8+c7412MDa0y8Tu
Uio206MPpljLx6ABe6zYNu6bDvsiWzhSWE3KFYSAv5T9o5+iPuTW2AvZ7Maf
wn//NS603IM20Ay5TspWaO5+SSMsB/V0dJlA2J7wnSwFufGhkZI+Cejesvc6
62QcOSOPQrverKUciaDLuwaMlFGZaecQFNlIiVgGyDetnV2vJ1R4LxcSZ/LT
n0BHGW+kzYQ9B1rF2LvDDAXcXe7KA4BFFzK9iX061FalBm7uEY6b7xxarxwf
Cb64JLXgZL8BQMxRpxWtU5+0pDpytOMJ6iYa1bI6AOzZ9nWeHBcpeuucPc4K
r6+JpVmnnRGvKoTES8JjbdVTaCag0WeKt1qAcdQRM+L5XWlui7bNrqdFI3Fk
JnfV5elNLSzq1JHSUU29wPbY30kmcftfPl9M9XvGanwswN8ngOFWb6+axSOj
zPxbPEB44MsdLQk7ring36CiGCrv9kjikstN6wg1ubMWH0LSSrcUGUg7k6nG
7JhBgpcdMR00Kp1n7aLpBr6sCSjxRsw+CZnQiweQ6MlB4WWbmRAKPeLIXX/K
yMLXvS11Pv7kaJfokLqCGT1KhYSMkJM6FZrieb3KUwcSLL4/yWELut/FWPpw
eAMqZ6jx3XCw2Dp4ZAiBQDDOgXyKdqE1vsQEUJUgKKzGnIaF9/uw+psaIpxo
0EyZ8o7oPwu4tpnvym1bba6wywwyk/VqNLQzqX+I3ky4HKQ9cipXv6dWJ/cc
01lkURRSBzk2WOkVkOdY4wu9tkWKeeekBcoYdz10knp6zJrSHoJDeGtkgivb
UphlYiGMoeG1l5fNlH5GbhF6JxTvoOVRupgn9cemXiu+B+NW64B5XNiSkQpo
oRAlE2UjgiB1WEnLeXbh4uDV/dyQxI5+7hdYHwOKXze9s1uebtkYqvh7EP12
/1MV5Wov+3GnT9LuX9ITC5I+drsIioeuH+69eMUkk9dn+mKfewTmI2BBU54o
W+QpQZSDmlku6UAWab9uWI0ywcI3bl1dw/eGNG5g0sibVzD5kZP4EzldPhKZ
quQnX8Uvc2Fp2rI+tcoG17LzMY/59wjBfYkLbH0jWWKj7Oqqqclxh28hYXe/
5nwVxCAFcqNJwVlPUobwga9M4w5YbITrYgvN9f17v6O5GywzKtLyHAR7vgCQ
Fn8m6gNyqKTpJMdnueht05m6q8m5u13ggJSxVlssO+mhIdstSlQbu9TBeo5r
xWheouRfAU9BfC1S9y5hjARfR1tCOOIORnA+aUp3iiYt/M/v9gq7m7gSqk33
7JZv3AuZ/pC0/XMu0R6AoNcUV8F/WM7rIAKElMsbsB8paZaro2wWUlC4CaeW
CuTQ447KZbNo7Qm5M04Jy8HeTYXAjhIuwSPYXZbroRsWO8185CsYQ+kohSXy
oE7KQk4YFYna+GzFRfMpcOSmDxoWUiv82iIB2tmRRIzZPQWNfUIOYorbkIUg
Hrp+aAyRGYnxk92gnMK+BIwEl7YVKwGU10FOKHpR3Yhtl1030A7IH7puQz2n
FIMt3eFwLFRW5etdLkoDSve2OrFpiMrwlbBEuIWeGxrinbJzus07Zk067mHX
F8YT4XJRZ0HnU3VyLw9fIP1qtkEgoMIgKfM74gKA8T0hnPLVMFFUg1LUM+Rz
R85+Yhs0qsK+maRE/pft4uVCV55zt/40oki7/F206AxlZePG1K8p1L80gEGJ
FOkyx5qFx3X36OMJRzNYe6ka6GeqAJ6SKS/EnKfzVECqxMNBAf52IYXJy7ys
IhTNtG063MPKzUJYZ34xZXexlKOUWIUrrz8ryeZIzRcny8LKuOWtEJTUdUCQ
xXN1Eo5OaaJaVNGjRiFP+WzmXRbZCN8yz5mQjUjJjuQoVamUy471qj0/B4sE
RpiXsEvFUKQC/MqZHOb5dN4dmyAoubPmU7wo8ao9LPLCksdmq4bqsItntUCh
CC8yuysDssoGfK0SZh0kZ9DhMhfRmqvdNsS/qBMQZS8TJ3WDu9OXWia30wVZ
IgPnI4DFHt5hSDulgLczGCfvfCNWXUoayuEwBSWc7O+UteUPVWsQ0zmKycRt
xoPXStrwd2shWN4v2HDWIbfhJXkVFHuXHp7XDkCKJdVyKVtR689vhRZViSLZ
/OtZlKKMfLRDV5un/5iK2/w0KCxz4LgdZCiQNGyjUSpKSZYTLJBbJR6Qk8Db
WYj9rvMT8XiXuTORtGGqM9YfiJqvODekEAW9XxZ+C0VhsFJu4sJecIi4wwrj
hospHzxE0NA258LbVD0KSTbza3ZPLGgNLSQtCHHhtjRgHxWWZA1IqvtdpSjS
LNVai79PHCjhjimXTcIzFcqIlFjsq11GFFO3mofroj45R0zukinuasfZeBa3
HgwI2N/LAjfNVThcAgLFCJeCwGNju55ee+Uv6SM5qHAgPI7hzAEld2SSHDZM
HtRMoHWqkkFhB5fcBFvlg3sjhVDczPVgABDNQj8ti3xdNBbFcjFvGgl1s7BZ
OBpMlH413duT9XgsnJ6JGaCJ0JIVAeCKP63Yv22/anVN2U8zp4iAoE3a+XS8
QVUJogKsufyC3ObQ5un0jaxd8Y+EobWXhCASO/UAHjOKLW+1/bpoqv6O346o
6u/2Xx9UpdLKHVHT+IYi9/r8H7z3uHAIp+C9Pq3Ag/x+NL4i3I3lvXtIgWSL
X5PuzqEtqbPg8pfXXCc3A7GnXHgj0hYu9oI11b5j0LuuB3CXLZCj5PneTZEj
q4mMgMy1ZQ5/YrIcLZutub4p7gYdxVyHuQIE9oJoqdXXh1kXDHpv2qJ3jAsh
jRRDVeQ8T4IVorTxIs2Q8vrk9nG/zCLrRYSxQMQXVPHHvjKqKMQQe14F0dIr
lMnerjeiGqbwimoPgQEXnF6eQnWDtQDLja1h+LS/E1Jh+/aWt3bt8puiHj48
Kifi5dA+rxJ5ambnGJZ2hL9Sr0sIQg+pq3jnYR0kribXK2gXbJbpVUCWinJE
50HhUqKBm4Wc3x/8bQzyJUpn0espuccZYdDrjxqjGcO9bzoublD8wZZQ98gF
RbNY9Gxen+esbgDcWDcyOBEnDGmwQooOMKtIBlkXb29aoMAORL12z+srLUMp
0GFVRjUYIy/TiIhCBQtxviEcWplbRDp7UZFFe/EEA2v5qANcub4gO+uqbehK
2n9yb1Q9uR//e4BKtmZbf3/De9/H976P733/4GAkktLxrCmgRxiXpyOmKe4t
q/AgyOLGZy415+/vGyiNcwKyk/x7VFFPtVXuMbU+ChIU8RtdJc9wLXBozFpa
m34nYyohD2kKaXzfj+BJUJqmw+rPWr2+6C739MkDib4gVImtcyhkNs0u61IV
YfUhavUXdmwY5+y+3IzU1UGH47CTQimQh8+7LIei3IPbvTNfwz4heAwuBwcF
QVcehfDb3XC2lDd1qUd3ayHUKDIZgvRjUwIL++aoWCedC4X6XJJgxRkf39jF
3lksuxo/1q/a6rsnZW/yit+UBCPS2xJhZIjCU+U/kcLMgrzlckmKu06mZjSk
/zkDWizL8WA7bq6ydCpvDfhki14YZOd60yj6tWZJ+2XdyDSiPu9DCuYIpy7j
l+KODQzls6DHDPSVPPOkY7PyRAdzUezsbVYau8a04IeetmhoxH/du3v3rvhp
EMcFphemTE4nh2v93nd3746hrqULgxzsnSswI58P2b4vwHHb/AfbPcRROlFP
D0L49luTN+xvTyMw7YUNBJUkt1d/9tO3Dm5SfUpEG5B2fwy37jwgTt8Ndn0B
w+yrO//dz+47CcE/Gq7I9EoFOptfYyvW2b9wM9x5SEVh58Q24qatQiJoNpdo
l7MNg8RhFLBSxNXIBfuXPCDx+o0Pm15WuFXO4CTiCktasFiZ0Iosy2I4k3oR
XCggIz/Zlyu8FYfgequ1cyBQDtzvLjV7fp3mRiH+xF1N0LWLmss7uYweF3hL
ATkDQcqc2fOi2qWQZ5yg0MczW3gB4GBliN8o0Eca8WT4xIr6kaqBa4f7FimN
T8o2mi+9M0JCq2HSDvt57aqIPZ4hHkQzGxv56Gj+UlQ27DsSbXoqcQT+dIAI
ZRn/2TU6Dn+wVtY0q3IrMXO9rHXGO+jCxD6fO3WFhTzXpegow2XB0XhfjJvK
xyGzA7uzkhD9fNl1oIdpUYAi5+qixMqnRwfmChXCSz1uqt0f0gWgqhJfj6u4
gtHoOSNiePZbMVhDLieXgOXkA+BMaIIwnoy2Tr/mY6Mr4r7E4888rQN5BJBO
H7VuJhyuJeZfC//By+JqjtFeS4DHdigN+3HQSJq81HpNrS19/ykHHE6Fjg2q
5vMV2FE1M06rjdZzuF3HuJ4HhuYTVZWbr0zDK/wVPVoAxQqKHM38oocFtN0G
KfHbwQIh758d7Y9fRXX+wNxsllT9qHr+9I2/LyYLrWXqwm46UmtuQkqEuMsy
zsHnn+kgRXH9lHIEOxyoN5DKcjL3Y3sHUQ1o5pZo5EKRJXRjvjw/V2TwtDnb
4F+MWKZfw/1qLIxq2TMtJXEoJ+eXbwS+pgKxpMfUksXaaE1R8oQiMxIiO4FE
dDLj9+Mco1fx/5jqypmLXeP2rKCdUoHmiU2UenZ5fBdQZ3kjVn2qFPWIeakn
W4kATr+7//sHP/00Cmmr0MNW0ZmLNNNzd3/3HajhOM2tjjd2jruJW4J++BPE
GmK+qIvtcDa0/uqHp4yTSjM3sVM+oa5ODU1ZfUX4Ykh4ODBkCtLCCaEcmUrG
CFmlHJa2HDXRCdpZyPaAUmgjz4Ab1EwFVmjjDSz82+3M/56acQzzTVR0iuoM
sANT1gMAn2GypdsG09Jw7smr4+re4YNRNYm2zSLrmswnQ4Cbabis6Sjx5euX
9uHDf5MaKEQZozGwrrjcY3dxxyXRxeHsTlLGrVk4ZhGHkBo8JRIZloT0O5Om
Qa3R2If2qnVst+JPoOkpll3iI5gSq+uaiTKRLYQnh8PMPBAghY9aHfrjBtBa
IbOi3LIEQTSK36bqlQECyMcKnQI73ayYpnjLTmTPNDqe4qPz69zDS1/I+KOL
auZ200E3Et1TT07sFrOHuvoRbQeRlXNS9yjEkSPgSkpq2Kygfx71Us5QHBJQ
BYtNu8T+aKEDNtKfLDaTvW0BFnBvSg7xfidSAFFgbS9YrcRTULM7hctfrjKe
5aKkWXblYZnq/addDCfwKDZ0eAYJxV2+dNmbw7yCL6YLAkwhJG/eEi89yCd8
2Y50l/IIeD1FdIZeSo+xkZGblHxjW0h5wCd2PRR/teXId44tivfSZ4xfYjvF
Xe2PwonTG7/c8bof2YkeLc4LZU6QadUeqE7zakmgfeX0lYz/3nXm8syfElk9
sXbgLz8QWpT+9eQsrtUpCDzwV/6FJK0cRNGemix58l2bAwUgfnnThKJE86IH
LGfJmhOFv9aUE0KURlWH5gRxWN1y3LSvVROSD9pNNUlwTm6Q9GF+M6WZI/G+
1N81isNVCrPmQ2o+G1dG9J466tmURScHoPemjoVdHdsyJzLv/f7054TaDDsG
7m4Wbsg+ztgScoEMTo/rSTY94eunx+blK/sYXB/jEZXdrdla2L2XNS8AIyG6
9rKl6D2o4nUsXdqKcgh0z2EQXSnaf8lGO4DHY+SUKxhG3BnfcdQq7nFJV8LM
Sk4dBS5R7YZoujVSq5Wif1NJQyr8ATn4L8o48Ep2PWbePIGTCoYigRKX8dIJ
eRXstJZ5zo3vIWf9B29q86ybSVhIJSm8t+jWpDHrruYp8l+RnEbiApH1MjFb
FEzldKQuvtYxy1091xQVhMwuUwoTAQIS8jc+cF4L8qvARJgSMAhi84UluNxG
WS2mhHIfVu8p+yvOHFlr7A7s97hrgu/zaNA7j22ZhFci/inZkHrVC8VQQYBL
ikHX7rJklNpH4KWYhkNRQ3o/9FuVLkVNop0ZEb7T6GimbP/6m1gBZDwwc5Rx
NowrXuDSonwyhZuUHySvIgdTcdEcUlC8xicWnfobPNKdKRdzjQNTZEwMYHFh
h5TNCE0CzTXTxBsFJePWCH01J4OlH0DA+/uO0K+YVrblB+Kt7Lktrs0Lthps
a3lfq9JbDSkIGNFcvEBZHgX1aSVe/xLS2ROklikj3jTyj/Wd8TzAP4i/Xe+h
bYdaY/sucs8Iusu6XWQsp72NFG7YSGYwEDKLwplGWQ6+V2G76O8wy/0sLmhv
te84sttvwHCbW7q/h/CM7qFMkzlf1ZOGhcxWoZnV4ulf32UBTpmEIsqwVQGo
A1//xtQhdewyeEcniWUsiACwTKyuasA8xg5VGd2gWop8nFWR+VLuEBeNkS8T
hawgdr98wTtUChKok20KS8gXLJd1tgGG1MbsDEbTSWDHJiqcydqFtI+t1Au9
2fQqZtnhYuDqlBPNAG/kadkiW9A52xxej/v6HaHZvzsl8Fec2PIk5ROZH6d6
x1qxufBz1ctbHK5sEp8MNLFLTD+q7h2I08snFZcpFYGDM1LKSqylEZkN9w9K
YWIGbX0m7MZSWNLhdvA5f1XxaA92i/SFzYrpbfjQgGgfkOz5tPwhj6zmtvXx
movATLkUq3gf3qoLmt0ViYqTnk71N6X0wRY8sBDYa0ow9GXHfsshugyS+5uO
nJqc8DG5ri6XcXEOK0nxWNftHPKKEoeEpdKYNigIISeSzaf4kKZNAK3WdldM
KzIaKNTsAjLecdMaas9NGKZAkoQKTZ7bexTCmHwhUeP4wx9Lpi7vrBA6GpZK
KdV+uQrVUDK/71KczucuGR59OkS7qQGDJ9++E69As3VKuJ1bNfaOJu3Hj8tN
9yze01/RUHrx9o2pvrKjkeJD/AZ/w8ShFjsaD/EB/KwFc63GweC82pdx+a2l
dmLWn4KerVy9m7uza7BiBVYuvXbB2gEuk0m7mmwuiZ5xYilcKWozbYWY90IR
hsZaJpu/rHMoPnk9cInXgTk2atdXnh94FXVaJHrPokz+hAKasv/bgxuoVPZ/
+9uDkM37mP78MdtO8qOnosGM3b+bKTf5jxvaGfrznz//1X/wq9+Mv/7PNwPw
naEtHQLNngikUTUkIUZVeZQDzafZCKPenfLHbLW+PKruzNpzAvIuZI+s2/W8
+fe93lXzjHfX3m4WDEeDke3NHi8C/XqZbq6QoqciiEGF+8fTzIPDe7PU7ESV
Kap9u6gCHW+u+d0kb24vJVP4XZdGUqeVKBIhbPwO3zjiVc9vowMVrkl+l3jb
Xt+NcpNuXbfjH4OtN7ZnhAnpZhL/mdhf3glV+tSyqwTXU1/yC3CCDYPsexjO
m+UtVoC1Lh4E28GPhW1Y9DFqOt0D5kzeKspXgyLVUE3Wi7LH1QkJTwlRsh2q
hch9B/ofyk0FkF0zS32lw+9jPAGgADAZ+jB5+RLdtW4z5lUUFbXadmyA2ZKk
N80Xr+dCk9fHtDJypnr55A3CKERyImdHNLvpcrKxSHhUU1XdIguR3joMr5DQ
R7Fg1ZXW2YtscPLVyQ2tmnMyK1upG4KqNQRoKEsVXFeLaNewArrtl4Qa7nzF
NvrVGL9iXBCIej7WE+bpOdbQej5Y5uihp8YafP+pnADN7yEbRbtMMz7D3Rrn
oGbSGHHpbnc8ggzT5gl6Mihqms4KyqlOyhovwCGu2lRCB3BAEcS4Ub+dbMhe
DYBZ6FPjxPFAhvZLl4pBhGiXl2SrkaWyT/mHbRf/egCPshYfqefnRKNyQZ4C
x/tGqZLX1HlkyMX+ZlS7/U4mUkCRhLunyNZpkq+T4GQycIto9zx6leEpncGG
Uqv7mq0JzdYSQ0UL1jafUTQzJys4iwK86Tv4dzA/qZP5byQBXGxhQdkYHWeS
GoUxhA+IM/i1LrdQEiwLdn69iXosTY6WZtDvpEDuQIde5vYOvSbUZJorB+t7
3p6t6tW1eeSMVW0ADy/o7/Vq06GuY9zW18m9yX3zmVpyMZNCXHBJZpNKziHy
lDO7JWXSs866rrsPHSMdpetc5HTLgGVdgXQQNKTdvza8nauuwlhXH9B0XqDD
kDJkbiLAA0xZCOslbUMVAjqAm4XBZbXShqrcrcS/wtWSyI8Z1ttdwPJcXGd9
tVUcKERp6ZTaLOAaYgj4HsDDcBheLztbs8E2lpLQtPUSWikqmLN+pUomM91j
Q5VoiHp90QWfde/PSRLNMCGI8+GYbkuhms6gfIkakYW+vWP8cq1eSau4fnFT
bDjvMM5qFOBRqnegCGWumjMi3FIK646LreUyIO7HtzNqdtXxouQTKrVRdOK5
yW64zeQ1iuscpKbbKKcWI4Tgur1UdCLlDrE7w58zrWb3seUdB1qz9pKaFDDX
dwTmSllezO9qZWxh3JngBmfburybcEqjhIr97zQg49aBqFtaIbD0m7ddhMmc
GNcY8c9Qe3pZ4NvxOcDdAAxiHCWlwceObj9gjnB2crFc5sBHr2TzKPvYOonw
odAEWRR0/U3ibxP1h79BHA39PK6EFt7q43w4Xzh2qZ00Wpq9vBWVaRZT5+T8
ZvWxuU4HLiEnf3//PsBFUQiieBZwkaPhYzpzF7Yds7TOwTQBZhuj2ASNYi5W
uf+mR0Etz5ALic7qxp42vCIyy9SQE5EM60qRB4WwZlsq9NqDLBSuDoyFug9s
ahQmo0pBBM/a2Yy2RPxcXG5fRXGUAkv5XRdsxAPiEvqcPTBJNX45KhLnaEad
l6rAFOccgP+dgb5rZQE6CbDk0kEp+Glild4BiDegPclFsg3hyeGJaeyWVEWU
MnV8I2bJshYj2X5D4TA3n+PuJLudlGegFeYb3u/4Qsqts1LdXHC9Cyfv372h
WXv59HmqNkSXqvbYhvGRtZaZO6GyrqzyUJRMaqZCBtGCz6ADU77kLIqQM+S+
E73euOCQ9Uzy7Q0jLviXZM1QVxebk2Cr1J9PqfIt89ZqgIwAa5ecT+GrRd9d
rdeoqxRFRAb/JQDnZEW5FsZawqNm2OdWJK9ReOCq2nYidcITv4Yi+PREdtLe
lt3KFDo0fAx7vXQkUrKDlXTdMJgpg3OH8iWMVpqqS8H7eJeNWdrFa1wF65xy
k3KIR+2ZIlJW0wADUrr1a6ndivz91WaRzhmXypvlUF2BX07p/l2cb2inqq6n
OfCJIXAx7acc76ZDaSQtgbZBMrpw1/TjU0s+ckSnSMYriS4tj4QYUaitErp1
krcY9QyLftYaI3s9nRLPC5PG4YOHgrOXh8Ju7ubCWlgbP72PgzTrzRVaXkzi
6okqP4m3Ek2/v/X1nuRbFWJ0DpV8zdsS5tsSgJgeDLokZXbqkDXhM2UyBb6p
PyD5FLkXGasYct26tZ7wBMVKgo9w2xdL4rljOVc9e3OsQYRw8ur4wKhkZW1J
qJFuywUFcXFMuYNcZfYE57C4AlgqKoMub8cMq/YpN1Wm9XWhuJ0v6znrFztt
kLUVYQ0YkBPktfdpdPyq1JbGmpZlhIXZAfD3rkiDkRtseh13HR/scBa/TFUM
MZx2sVh+dJHFRfOpn1xlDVK4WQ5Cu5Y9qOVeao4RSqUWhzXoz7D0rDx0Ua1t
5jPW024RwsS0QTbt0qpEJjvdsJaiDSxCkG1DcWAURZ/1OiUSolOvY8aBlimR
y/hO3Fdf26CpuwO6j0/hsNQf6UQqys0dOAwvGKlFcJnYBjtcgMVnJTCjF/JY
faYuGuYqY3ZOLaTJJ0ynm0jddcbxd7C50cnYTaos4HgdQBxZPeHScZrqxZLL
bxt11s6YEzdzZt+pnkzIHRsnFaW51VkKVfiidokKcQohki2G/3xDsxKH/H6B
cHc8yqv2x9je/bv375LwiTKdpM2C/Hh6UqjnFDK5FEgNwYloL5yvGsFSvlke
Vv/28OGDBw+r/TfPn5zwPOGnv/vdw/v3qv3XT16/ZNJS31FgFzLi+VdNe7Zo
fySv6Y9YQ+QL0jgwGc9e/FCNqx/i8tSL8E67+wKkB9TVR9UPy/V6hhzEv7Xz
i2Z+qZ8cH62a2Pb9u/did1785X9UL55X3/23u98+HN+7Tcdo9t7/pXpOFCaN
olmm1dHFdQc2/uNJS8lrXerV09iruM7ZnD0/+vbd3Yf3Hj7879/eu2Wjve/F
aXizXEXNRr5M1vHeyfLqKp6b7sNeSKvlahxWe2+fPnn38s2TPZ1UNF8vPkA0
Ha83ZME/jVfERUvWzX8sozbyw6qOt/i8idfrszru3TjIKJPrH1s2nZ+TvP5L
3CdkUQvlZLsqoQ2cxkgyjAqmEzmJJ0X/czx719Xz6+YMMGiWbxdNbC1K7niZ
zkH+MmVpRDOFKn3S61f1BhfV04tNzSlK/0FAk7jijfjFW9zP7HVikvUjMluP
l1yx3pVIlMvOeNxsVRoUfp66dgMK4cYTHM/Ri7isH0Sp6D4gQriMlzYgtZD7
Z7WAuIppIa/pClvGMjshK9uzDUdPuP4QjMyl1BmM5hUt23g8Bo8iQif5V1/H
6WxR7Jqau+R/SaSTdgwLmgUlYxsimxTlMyK1jAeN7hzC0IOViB4k4kn6qYL4
AG6e11FdtVQs/tlV1MQguEELgmynK1SbEHE8a+r1ZiWa7ELqXWFF7Gvqz9ZP
HaJiDOokq4btndJ1yg6liyqIvsR4ell/hhjwdhWROvgtYjngcCQzjY8Cg3lW
WRPVZE5pyt3IC2ugC4mjCFtNcXtMxcuhN097bhjqOLnUnsQE7typTq6vNF+O
S5Kv6QfVJT+kXpiooUnWOf2eNRxmtV7Q/JLlaFllkEf02hWCQxPuHmQDwG8y
77GrcSte1FeugDXET9jCV8h3vcQzPAAUAe8ni+plnNNzOMgXrpcFi0zs11Op
+nHaLiStiCiiTkdRCOKOJmjOsoRy6u6Il9eKfOaa2zm5OIytv4xfJa/MyYaM
3Mu61yyUzdM4ys1kzUSd8HRcNpdnXIiNL1yK5KNl4c3GWvgAffwUMIeEuKRW
j67j7luMaESJCMH1AyHwgZ6s6YHTjOmKaM+T/jqmtgkb0vBadDTMJ1HJWO8a
3vTRo6hvnWKWv/mmUi6IU/lh/Bx3+FBmrN36tQVzHtonLtrzuKnH83hc2CaP
3+Lp3KyEkRr1M65WLZB9cKMS5cM0auELKwehWljBW+j2N/jMOYNnaPeEZKig
zF7mazXFrbfb1ZY5rN5yDwJ40LL6TJ2Hm3QsPRiaRlmTqvDGrTqecx0B0pcy
M4O9EzzG8ZLkPHWaj1ecKeUOVjKnpyPJ9tBZobXQdO6kN0KCIzrVILN6xak9
fO2mIxKEIdtcbwWhNXIqzX9yWWC448+p3kTIZqR09WipruRPyiZMyHsvKH2l
qJU8pPOTT34BoqeLYiWEZIX4VDQkwznHCgllPYSSNkWbypzlnArfGZkv3QLM
P2Ib61BeH1WgP8GOv5aQH782wmowwsKLcsQTzAXtzVBnIecitMvi7vTZuKfJ
ZNBe+a+PQkZEDbQ7oHTG3dlO2+WlRYjypoLKyVEi8bxOpeVSESWydibIDFFH
QxRhsMYlAX0Rms/K3iLE9fAbK0G2boVeugb4b7R0qitofOSKpD6x6rD1Iu30
RarawNhhBZ704oqWrSNgBQZlfbq4dvOFpVtJOcTqhJjDnqnXP+CfU40rsZzv
A3QdV++LTLFo1979t9jgFkHhxAnldY/cjy6pXIX9nCFOLA6A8v5Imda4FPEr
iveNRWRWp9rfU1ZBRKxrnnLcptAkqxeqrGCkT6ZTZqIynvCMkCbxhxNs7iNp
ibpE7jmuGLJiDWeepFK8SMKxxeyOci7fOIvVaWr3VGIwDBErToRfePF+q9OE
M9J4FLiVHeU53z/tYVyD04F+H8b7cZ/is/9TUTlRSn9cttMDImLOa5INvv+E
Hs6/cHAqpf2Gnhc6zn17ePApnpMbHnqzTFN3w6Pcy5vaXF5E+bt2jwmFWtU7
k9f0F4or8QYRPJPEmjouFdrUml/TGQXOsPtqVC52yE558gHiEmCI1kCX9FKU
UIf5uqhflMAjJGSIQ+Py0IgZS4i0d3F7dQ37VZJ/6HGB8ZTMFtLxl0ypRf/i
KhCZnGeyIcurHLcLqIbCgywXkkxeApTq42QGSz1Xj1xK7s/Qp8k5DCdPj6wE
OZf4zePl6iBU8CpANPgmSLyVHoTlcp91NM1KHFz1j7QIPdxw9VdoxoIh/sej
rTBh/yt6UiaAFYLimxqf4G8WxLe7nkxT9ZRn6sZvvu7Ov2eyTJJaeHKx9BJG
hkbQ4nV9tmqXCinest7u3Y7QxdnWEPa8bXtCfj2WziF43N8nYXifDNApHYbj
pyf/f6P8szaKf1L3x2VveyhV5sC+oLoJ8hSZUGSlbNsadaVPbBETpPCQzupn
y2Dqh5QG/bUbgPbN+2dHyvpPG6D7l9sBuM3tm7t2QPHkjh0wKABuvxXiP8ui
ta4bxF5aCJXNVDfNwIYo903BvUPxd8YbrfMcuPIqZ8LbwLMA6yuFKyV8Kp8z
zxhNC8W6UAE3p2Vk9INlPLSWXZOhj8pA/9d0N0V7pXfBwwQUkasgG4nfmL9h
Ul/VEwE54XP6/VFwSIn4lGo1UnNU4UHOiNfYFdx1wnYZECh2pEv8OfntWF7h
6tX84W2PSJAGcKpADFpcNKS7aK+s8gPVgKLYQgMBPKBkkYL8nIDlDEULwXBa
D2LzRuPacVE4fKzjj/VkiSwSAbIV2CbzviQ/izJF2tMoglMj/2BhsPUxA0A8
YN4cvzSCp0ej6vUR/hcFzMioA0cV7is4Wp4/+/7JiaOvRLfuHdhJM7S7x5Zm
vK/0mftWgPm8McJscqCwENSEsrIcLAEmScXap4o9XCYqOTvR3wMO2DqSQaI0
I7AFiqNYVTk/38DgzgTKrABb9mWRnswemDOinU2wagscwEfeotZDFXfTsZhc
Dw/v0VjSco+qzdUUk9/zGwg+naEH7hvf5V/gkbmOVdjtCJWa+zHBEhM1BMCI
Hbpdk/NW91gWvLeNELsQhQM56z5XT+g5v2mVtReyz8Lm8XBfAkeLt/eILbS6
v1ft22QcuO88uPtAqpyU3gGZzWLRscy335qCP5AgLnLNZgJ9AXgyw/tzHELb
Q/WDC3eIaNZAhUIli3QzewjpIXH+i1/lUXBJn3IA9r98UQcMJ5z8VjyV8WHJ
pnWPormFPngsFTeTi0I8O/CUfbtcafa5sU8zk3kOERMwUmxPnj5NhT2LIt55
Z+HwH6gZ3hvYOPZGJCp3/FnbQTJguWLD7ISs1xeeqfjLF/vxmBK59eU/00oK
MNoYA5eqbV87dk4REtfJyUkj7A6MDmcLas6t01cN6ynnAPhJR16/hIu0rf2C
LXnNIqqS9RJi7tgJeufE1sTcIPx67R6mXtHDY2laOyQve7aLXfwF2CXLJTzj
sflh/gVqq8eeHPfi5vwcZTakST33TbN6hAJGe3Gpe1S+pHtW7wkZr119K6jI
9ydvD/bQ1uRqvFkvtZ2MlzfuzpdPXx+Jm1DVddQKqOdxBN1yxrl8eOsaGxiX
Of1CaOZ/YqzD6bE+68aZHuvSGkMHqrV8dwNsi9biVWSdJ0dZWJo/4Rt4VY/1
5XzDYw3tw9akJUCkyuwEhITCI1U89B35firC3ft8qsLOX99TKaIKTqUaErtb
FFKOOm97mKs9Pb/2CkN8OXyz9yjs4B/vcY/z7BO3jb7B582/sktHK0ahZTf7
o/G4JeWf3TYeR9rFYzMyTBrdVr53m+SS670/yHfxidsM0rTMYpzPXjAfNfVn
sXwRR2j3Yf5ZmqUxSQyqg6ef+QHBx8+HrsS6nh7Uk5FymNdWLl1lDumKM2ks
TuXLo4oTTRJCybnvDJ1BR1F6cOJMkWiNvUbJzYEZjL0b006JQora+zkdTyiq
G/pGq3WbvtBz2pG3Z2B5JyJyrMMjw9HX29nWLX62g1V970bm8z1fj3yy6G+N
46j/8uYYpb39pqYEAkvHpF8959J2AvPTJKvq9FXUZZ5/jjNcPUNFye/jElOs
PD53Ipfradx34EeC1Nfgr6mlh9+Vqi2rRQPKZI2LeD7nbEvKXUZU2BWuoDV4
Klah2JhDJ8dbhFHHP2pWY6sKJ36C/b13Ug1KyBHPNlw8VPDYewfI4Sk7QNJs
V/s4Yq5tCG2wWHHWuakmnkkJtLXKpMT80lpHwSrXMxhZFdO81A4jGaAdkz39
KGgpbO2+CO4eISuhTUFiR9kp0FjIp35ZL5C4FtdxDuSkGmZbTY/D+/kab1EM
9kBDNEQm9WsOXwT5rdui9f9F7W2f75LslfsSt0eUekZuoC9bvQrRl1ILIAyH
JTnaToZldE5CJKooelA9bVmPdz1FWaq/DnuiSVD0X6n1zGx/j1fk/aKvmNvL
cRaVYlF/mR28UvMWDQPn+53zLIKL23DK9rpzPibVT910KFqhh1iRa3TUZbDx
yPSkt2gvpYOYie1FmV/rJmO0jZGer7JtSVjrVTfQ8bzIF0p2pwJpZUpgf9az
6qVeguYe0yH5OSn1TTbRpD9uuh8FnapX7awhhX9gqsxk7sRSGbM/RCAw6b7R
69t7imWe5/J527pvBbil7xgP6n6W4RxtcS19t1kI2OvA9uPyVh+Z1d1aP2Kf
wMjpGvu03H6V9fZhb25o6mQopzpWaUOHWtxTXNkZUilDjlf7x0+e/uWAfWKX
ashrPtpF8kNY/l1LZbhUcqWyhQOj2Z3zNxHYvaCUChC+8jBvubyPdl/elXgr
Bi/eoUNZXMAsktgyhjLziv3Q375Uz+PH5lSmmXljcV738RpVDXA74xJcKGSN
pwqtJo/MKhjzz0zTL2s17yeNzSpC20oLdW1av39CU+o12C1eqD8vy6IzlsvW
t69/Tj+Lspr7Awl5w5Y+aCEpm5N2Z2z8+eerdpWNu+GfJJM+vtEz6WmrqOXf
byfVMkCdJWGtQUoSEvi1+Ah95lFevYVOxJKtgnVZIsjfaOu8N+vhfiwry5UU
Qoy6txAmuUoaybQ05fDzEntbZvr5ZxS5/0hSP6voVe1zyuCnegVdit2e7OPC
5MWVuVjOp/G43M6h8n8BGjJwNZyfAgA=

-->

</rfc>
