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


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

]>


<rfc ipr="trust200902" docName="draft-ietf-jmap-filenode-05" category="std" consensus="true" submissionType="IETF" updates="8620" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title abbrev="JMAP FileNode">JMAP File Storage extension</title>

    <author initials="B." surname="Gondwana" fullname="Bron Gondwana">
      <organization>Fastmail</organization>
      <address>
        <email>brong@fastmailteam.com</email>
      </address>
    </author>

    <date year="2026" month="February" day="17"/>

    
    
    <keyword>Internet-Draft</keyword>

    <abstract>


<?line 35?>

<t>The JMAP base protocol (RFC8620) provides the ability to upload and download
arbitrary binary data.  This binary data is called a "blob", and can be used
in all other JMAP extensions.</t>

<t>This extension adds a method to expose blobs as a filesystem along with the
types of metadata that are provided by other remote filesystem protocols.</t>



    </abstract>



  </front>

  <middle>


<?line 44?>

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

<t>JMAP (<xref target="JMAP-CORE"/> — JSON Meta Application Protocol) is a generic
protocol for synchronizing data between a client and a server.
It is optimized for mobile and web environments, and aims to
provide a consistent interface to different data types.</t>

<t>In the same way that JMAP Calendars (<xref target="JMAP-CALENDARS"/>) replaces
CalDAV (<xref target="CALDAV"/>) and JMAP Contacts (<xref target="JMAP-CONTACTS"/>) replaces
CardDAV (<xref target="CARDDAV"/>), this document replaces the use of WebDAV (<xref target="WEBDAV"/>)
for remote filesystem access.</t>

</section>
<section anchor="addition-to-the-capabilities-object"><name>Addition to the Capabilities Object</name>

<t>The capabilities object is returned as part of the JMAP Session
object; see <xref target="JMAP-CORE"/>, Section 2.</t>

<t>This document defines an additional capability URI.</t>

<section anchor="urnietfparamsjmapfilenode"><name>urn:ietf:params:jmap:filenode</name>

<t>The capability <spanx style="verb">urn:ietf:params:jmap:filenode</spanx> being present in the
"accountCapabilities" property of an account represents support
for the FileNode datatype.  Servers that include the capability
in one or more "accountCapabilities" properties MUST also include
the property in the "capabilities" property.</t>

<t>The value of this property in the JMAP session "capabilities"
property MUST be an empty object.</t>

<t>The value of this property in an account's "accountCapabilities"
property is an object that MUST contain the following information
on server capabilities and permissions for that account:</t>

<t><list style="symbols">
  <t>maxFileNodeDepth: "UnsignedInt|null"  <vspace blankLines='1'/>
The maximum depth of the FileNode hierarchy (i.e., one more than
  the maximum number of ancestors a FileNode may have), or null for
  no limit.</t>
  <t>maxSizeFileNodeName: "UnsignedInt"  <vspace blankLines='1'/>
The maximum length, in (UTF-8) octets, allowed for the name of a
  FileNode.  This MUST be at least 100, although it is recommended
  servers allow more.</t>
  <t>fileNodeQuerySortOptions: "String[]"  <vspace blankLines='1'/>
A list of all the values the server supports for the "property"
  field of the Comparator object in an "FileNode/query" sort (see
  Section XXX).  This MAY include properties the client does not
  recognise (for example, custom properties specified in a vendor
  extension).  Clients MUST ignore any unknown properties in the
  list.</t>
  <t>mayCreateTopLevelFileNode: "Boolean"  <vspace blankLines='1'/>
If true, the user may create a FileNode (see Section XXX) in this
 account with a null parentId.  (Permission for creating a child of
 an existing FileNode is given by the "myRights" property on that
 FileNode.)</t>
</list></t>

<section anchor="capability-example"><name>Capability Example</name>

<t>TODO</t>

</section>
</section>
</section>
<section anchor="filenode-data-type"><name>FileNode Data Type</name>

<t>A FileNode is a set of metadata which behaves similar to an inode in
a filesystem.  In <xref target="WEBDAV"/> terminology a FileNode can refer to either
a collection or a resource.</t>

<t>The following JMAP Methods are selected by the
<spanx style="verb">urn:ietf:params:jmap:filenode</spanx> capability.</t>

<section anchor="filenode-objects"><name>FileNode objects</name>

<t>The filenode object has the following keys:</t>

<t><list style="symbols">
  <t>id: "Id" (immutable; server-set)  <vspace blankLines='1'/>
The Id of the FileNode.</t>
  <t>parentId: "Id|null"  <vspace blankLines='1'/>
The Id of the parent node, or null if this is a top level node.</t>
  <t>blobId: "Id|null"  <vspace blankLines='1'/>
The blobId for the content of this node, or null if this node is a collection.  NOTE the
  zero byte file MUST have a non-null blobId.  The blobId is immutable after creation.</t>
  <t>size: "UnsignedInt|null" (server-set)  <vspace blankLines='1'/>
The size in bytes of the associated blob data.  This must be null if, and only if, the blobId is null.
  Size is optional on create, but if provided it MUST match the size of the provided blobId, or be null
  if the node is a directory.
  The size is immutable after creation.</t>
  <t>name: "String"  <vspace blankLines='1'/>
User-visible name for the FileNode.  This MUST be a
  Net-Unicode string <xref target="UNICODE"/> of at least 1 character in length,
  subject to the maximum size given in the capability object.  There
  MUST NOT be two sibling Mailboxes with both the same parent and
  the same name.  Servers MAY reject names that violate server
  policy (e.g., names containing control characters).  Further:  <list style="symbols">
      <t>The name MUST NOT be "." or ".."</t>
      <t>The name MUST NOT contain a "/"</t>
    </list>
TODO: are there other characters which we should forbid (e.g. ':' is not allowed on Windows)  <vspace blankLines='1'/>
A server MUST order creation and deletion operations within a single FileNode/set such that
  the sibling constraint is retained at the end of the transaction, but replacing an existing
  file can be done atomically.</t>
  <t>type: "String|null"  <vspace blankLines='1'/>
The media type of the FileNode. This MUST be <spanx style="verb">null</spanx> if, and only if, the node does not have a <spanx style="verb">blobId</spanx>.  <vspace blankLines='1'/>
Valid values are found in the IANA media-types registry.  <vspace blankLines='1'/>
Servers MUST NOT reject media types that are not recognised.  <vspace blankLines='1'/>
Servers MUST reject media types if the value does not conform to the ABNF of <xref target="MEDIATYPE"/> Section 4.2.  <vspace blankLines='1'/>
The type is immutable after creation.</t>
  <t>created: "UTCDate" (default: current server time)  <vspace blankLines='1'/>
The date the node was created.</t>
  <t>modified: "UTCDate" (default: current server time)  <vspace blankLines='1'/>
The date the node was last updated.
  NOTE: this is not updated by the server, clients must store a new value when making changes.</t>
  <t>accessed: "UTCDate" (default: current server time)  <vspace blankLines='1'/>
The date the node was last accessed.
  NOTE: this is not updated by the server, clients must store a new value.  See Implementation Considerations
  for comments on the use of this field.</t>
  <t>executable: "Boolean" (default: false)  <vspace blankLines='1'/>
If true, the node is should be treated as an executable by operating systems that support this flag.</t>
  <t>isSubscribed: "Boolean" (default: true)  <vspace blankLines='1'/>
This property is stored per user, and if true, the node should be displayed to the current user.
  Some servers may not allow this field to be changed for some or all nodes, e.g. only for directories,
  or only for nodes on which the shareWith ACL is actually set for this user, not nodes which
  inheret their ACL from a parent.</t>
  <t>myRights: "FilesRights" (server-set)  <vspace blankLines='1'/>
The set of rights (ACLs) the user has in relation to this folder. A <strong>FilesRights</strong> object has the following properties:  <list style="symbols">
      <t>mayRead: <spanx style="verb">Boolean</spanx> The user may read the contents of this node.</t>
      <t>mayWrite: <spanx style="verb">Boolean</spanx> The user may modify the properties of this node, including renaming or deleting children.</t>
      <t>mayShare: <spanx style="verb">Boolean</spanx> The user may change the sharing of this node (see <xref target="JMAP-SHARING"/>)</t>
    </list></t>
  <t>shareWith: "Id[FilesRights]|null"  <vspace blankLines='1'/>
A map of userId to rights for users this node is shared with. The owner of the node MUST NOT be in this set. This is <spanx style="verb">null</spanx> if the user requesting the object does not have <spanx style="verb">myRights.mayShare</spanx>, or if the node is not shared with anyone.</t>
  <t>role: "String|null"  <vspace blankLines='1'/>
An indication that this directory has a special role.  The role MUST be null for files.  <vspace blankLines='1'/>
TODO: we'll need to decide if there's an existin registry or whether we need a registry for known roles.  <vspace blankLines='1'/>
The initial known roles are:  <list style="symbols">
      <t>"root" - the base of a filesystem.</t>
      <t>"home" - a user's home directory.</t>
      <t>"temp" - a temporary space - things stored in here are expected to be cleaned up automatically</t>
      <t>"trash" - a place where deleted data is moved to, it's expected that data from here will be deleted either automatically or manually.</t>
    </list></t>
</list></t>

</section>
<section anchor="filenode-methods"><name>FileNode Methods</name>

<section anchor="filenodeset"><name>FileNode/set</name>

<t>This is a standard Foo/set method, with the following differences:</t>

<t>Since parentId creates a tree structure, an attempt to move a node to a parent for which this node is also an ancestor is an error, and an <spanx style="verb">invalidProperties</spanx> error will be returned.</t>

<t>There are these additional top level arguments:</t>

<t><list style="symbols">
  <t>onDestroyRemoveChildren: "Boolean" (default: <spanx style="verb">false</spanx>)  <vspace blankLines='1'/>
If false, an attempt to destroy a FileNode which is the parentId of another FileNode will be rejected with a <spanx style="verb">nodeHasChildren</spanx> error.  NOTE: if all the child nodes are being destroyed in the same operation, then the server MUST NOT return this error.  Servers must either sort the destroys children before parents, or only check this constraint on the final state, remembering that JMAP <spanx style="verb">set</spanx> operations must be atomic.  <vspace blankLines='1'/>
If true, then all child nodes will also be destroyed when a node is destroyed.  When deleting child nodes, the server MUST include the ids of all deleted nodes in the method response.</t>
  <t>onExists: "String|null" (default: null)  <vspace blankLines='1'/>
If null, an attempt to create or update a FileNode which would cause a name collision will be rejected by the server with a "alreadyExists" error.  <vspace blankLines='1'/>
If "replace", the existing item will destroyed.  In this case, the server MUST include the id of the replaced item in the destroyed response list.  NOTE: if the replaced item is a directory which contains folders, then the server MUST respond with a nodeHasChildren error to this action unless onDestroyRemoveChildren is true.  <vspace blankLines='1'/>
If "rename", the server will change the "name" field to not clash, using an algorithm of its choice.  If the server changes the name, it MUST include the new "name" value in the created or updated response field for this id.</t>
</list></t>

</section>
<section anchor="filenodeget"><name>FileNode/get</name>

<t>This is a standard Foo/get method.</t>

</section>
<section anchor="filenodechanges"><name>FileNode/changes</name>

<t>This is a standard Foo/changes method.</t>

</section>
<section anchor="filenodequery"><name>FileNode/query</name>

<t>This is a standard Foo/query method except for the following:</t>

<t>There's one more property to the query:</t>

<t><list style="symbols">
  <t>depth: "UnsignedInt|null"  <vspace blankLines='1'/>
The number of levels of subdiretories to recurse into.  If absent, null, or zero, do not recurse.</t>
</list></t>

<t>The following filter criteria are defined:</t>

<t><list style="symbols">
  <t>isTopLevel: "Boolean"  <vspace blankLines='1'/>
If true, the node must have a null parentId to match the condition.</t>
  <t>parentId: "Id"  <vspace blankLines='1'/>
A FileNode id. A node must have a parentId equal to this to match the condition.</t>
  <t>ancestorId: "Id"  <vspace blankLines='1'/>
A FileNode id. A node must have an ancestor (parent, parent of parent, etc.) with an id equal to this to to match the condition.</t>
  <t>hasType: "Boolean"  <vspace blankLines='1'/>
If <spanx style="verb">true</spanx>, the FileNode must be a file/resource, not a directory/collection.</t>
  <t>hasRole: "String"  <vspace blankLines='1'/>
A role name.  Only nodes with precisely this role match this condition.</t>
  <t>hasAnyRole: "Boolean"  <vspace blankLines='1'/>
If true, any node with a defined role matches this condition.  If false, any node
 which has a role does not match this condition.</t>
  <t>blobId: "Id"  <vspace blankLines='1'/>
A FileNode must have a blobId equal to this to match the condition.</t>
  <t>isExecutable: "Boolean"  <vspace blankLines='1'/>
If <spanx style="verb">true</spanx>, the FileNode must have a true executable value.</t>
  <t>createdBefore: "UTCDate"  <vspace blankLines='1'/>
The creation date of the node (as returned on the FileNode object) must be before this date to match the condition.</t>
  <t>createdAfter: "UTCDate"  <vspace blankLines='1'/>
The creation date of the node (as returned on the FileNode object) must be on or after this date to match the condition.</t>
  <t>modifiedBefore: "UTCDate"  <vspace blankLines='1'/>
The modified date of the node (as returned on the FileNode object) must be before this date to match the condition.</t>
  <t>modifiedAfter: "UTCDate"  <vspace blankLines='1'/>
The modified date of the node (as returned on the FileNode object) must be on or after this date to match the condition.</t>
  <t>accessedBefore: "UTCDate"  <vspace blankLines='1'/>
The accessed date of the node (as returned on the FileNode object) must be before this date to match the condition.</t>
  <t>accessedAfter: "UTCDate"  <vspace blankLines='1'/>
The accessed date of the node (as returned on the FileNode object) must be on or after this date to match the condition.</t>
  <t>minSize: "UnsignedInt"  <vspace blankLines='1'/>
The size of the node in bytes (as returned on the FileNode object) must be equal to or greater than this number to match the condition.</t>
  <t>maxSize: "UnsignedInt"  <vspace blankLines='1'/>
The size of the node in bytes (as returned on the FileNode object) must be less than this number to match the condition.</t>
  <t>name: "String"  <vspace blankLines='1'/>
A FileNode must have exactly the same octets in its name property to match the condition.</t>
  <t>nameMatch: "String"  <vspace blankLines='1'/>
Does a glob match of the specified name against the <em>name</em> property of the node.</t>
  <t>type: "String"  <vspace blankLines='1'/>
A FileNode must have exactly the same octets in its type property to match the condition</t>
  <t>typeMatch: "String"  <vspace blankLines='1'/>
Does a glob match of the specified type against the <em>type</em> property of the node.</t>
  <t>body: "String"  <vspace blankLines='1'/>
Match the content of the referenced blob, see the definition of <em>body</em> in section
  4.4.1 of <xref target="JMAP-MAIL"/>.  The server may use any technology to extract meaningful
  text from the blob for searching, or interpret the string in any way, to choose
  the nodes that it believes the user wants to see.</t>
  <t>text: "String"  <vspace blankLines='1'/>
Is equivalent to <em>body</em> OR <em>nameMatch</em> OR <em>typeMatch</em>.</t>
</list></t>

<t>It also supports the following additional sort properties:</t>

<t><list style="symbols">
  <t>tree:  <vspace blankLines='1'/>
Sort by tree; which means by name, but any directory/collection node is immediately followed by the recursive application of the same sort to its child nodes.  This is similar to the output of the <spanx style="verb">find</spanx> command on a filesystem with the depth parameter provided above.</t>
  <t>hasType:  <vspace blankLines='1'/>
Sort directories before files (false sorts before true)</t>
  <t>type:  <vspace blankLines='1'/>
Sorts directories first, and sorts by media type for files</t>
</list></t>

</section>
<section anchor="filenodequerychanges"><name>FileNode/queryChanges</name>

<t>This is a standard Foo/queryChanges method.</t>

</section>
</section>
</section>
<section anchor="access-control"><name>Access Control</name>

<t>Since nodes create a tree, ACLs created by shareWith automatically apply
to children as well, so if <spanx style="verb">mayRead</spanx> is set on a node, all its child nodes
are also readable.</t>

<t>If a server does not support changing access on non-directory nodes, it
can set <spanx style="verb">mayShare</spanx> to false on those nodes, even if the parent directory
has true.</t>

<t>Nodes which are not "discoverable" MUST return notFound errors if
fetched with FileNode/get and MUST NOT be returned in response to
FileNode/query.  Nodes are discoverable in one of two ways:</t>

<t><list style="numbers" type="1">
  <t>If the Node or an ancestor of the Node has mayRead true.</t>
  <t>If the Node is an ancestor of a Node which has mayRead true.</t>
</list></t>

<t>In the second case, the Node itself will have mayRead false, and appears
only to give the full path to the visible Nodes.  This means that
a query with that Node as the parent will only return those of its
children which are otherwise discoverable through the second
discoverability rule.</t>

<t>This leads to a sharee seeing the full path to anything that they have
access to, but nothing else.</t>

<t>E.g. in a unix homedirectory environment where user Alice had shared
the "forBob" folder, one might see, when logged in as Bob:</t>

<figure><sourcecode type="artwork"><![CDATA[
/home
  /alice
    /shared
      /forBob
        file1.jpg
        file2.txt
        ...
  /bob
    bobfile.txt
    ...
]]></sourcecode></figure>

<t>While Alice would see many more files and folders at the home directory level.</t>

<t>This does lead to potentially large changes in the visible Node set, so when
Alice first shared that directory, Bob would have been told of a large number of
"created" Nodes in response to a FileNode/changes query.</t>

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

<t>TODO: lots of "filesystems are risky" - I guess look at the referenced
RFCs and what they said.</t>

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

<section anchor="jmap-capability-registration-for-filenode"><name>JMAP Capability registration for "filenode"</name>

<t>IANA is requested to register the "filenode" JMAP Capability as follows:</t>

<t>Capability Name: urn:ietf:params:jmap:filenode</t>

<t>Specification document: this document</t>

<t>Intended use: common</t>

<t>Change Controller: IETF</t>

<t>Security and privacy considerations: this document, Section XXX</t>

</section>
<section anchor="jmap-error-codes-registration-for-nodehaschildren"><name>JMAP Error Codes registration for "nodeHasChildren"</name>

<t>IANA is requested to register the "nodeHasChildren" JMAP Error Code as follows:</t>

<t>JMAP Error Code: nodeHasChildren</t>

<t>Intended use: common</t>

<t>Change Controller: IETF</t>

<t>Description: The node being destroyed is still referenced by other nodes which have not been destroyed.</t>

<t>Reference: this document</t>

</section>
<section anchor="jmap-data-types-registration-for-filenode"><name>JMAP Data Types registration for "FileNode"</name>

<t>IANA is requested to register the "FileNode" JMAP Data Type as follows:</t>

<t>Type Name: FileNode</t>

<t>Can Reference Blobs: Yes</t>

<t>Can Use For State Change: Yes</t>

<t>Capability: urn:ietf:params:jmap:filenode</t>

<t>Reference: this document</t>

</section>
</section>
<section anchor="todo"><name>TODO</name>

<t><list style="symbols">
  <t>support SYMLINK types (RFC4437)</t>
  <t>design and document the capabilities object</t>
  <t>create real-world clients to test this</t>
  <t>security considerations</t>
  <t>a way to get or query all ancestor nodes</t>
  <t>QUESTION: should all the file-related fields be embedded in a sub-object?  There's lots of "must be NULL if and only-if this other field is also NULL" - we could enforce that more easily with a sub-object.</t>
  <t>We need to address how shareWith and myRights expiration are done; because both a potential <spanx style="verb">fullPath</spanx> and the real <spanx style="verb">myRights</spanx> depend on changes to parent nodes.</t>
</list></t>

</section>
<section anchor="changes"><name>Changes</name>

<t>EDITOR: please remove this section before publication.</t>

<t>The source of this document exists on github at: https://github.com/brong/draft-gondwana-jmap-filenode/</t>

<t><strong>draft-ietf-jmap-filenode-05</strong></t>

<t><list style="symbols">
  <t>Renamed onDuplicate to onExists for name alignment</t>
  <t>added "role" for directories</t>
  <t>added a "TODO" for putting more restrictions on node names</t>
  <t>changed hasParentId to isTopLevel with reversed boolean meaning</t>
</list></t>

<t><strong>draft-ietf-jmap-filenode-04</strong></t>

<t><list style="symbols">
  <t>Documented that blobId, size, and type are immutable after creation.</t>
  <t>Documented that creating a file and deleting the old copy of the file within a transaction is legal.</t>
  <t>Added onDuplicate top-level option for FileNode/set, giving both "rename" and "replace" options.</t>
  <t>Updated the definition of shareWith to say that the keys of the hash are Ids, not arbitrary strings</t>
</list></t>

<t><strong>draft-ietf-jmap-filenode-03</strong></t>

<t><list style="symbols">
  <t>Added 'text' and 'body' searches (added JMAP-MAIL reference as additional information for body search)</t>
  <t>Updated JMAP-CONTACTS and JMAP-SHARING references to published RFC numbers rather than draft names</t>
  <t>Noted that the server MUST included the nodeids of deleted child nodes.</t>
  <t>Added isSubscribed</t>
  <t>Renamed mayAdmin to mayShare to align with other specs</t>
  <t>Described the inheretence of ACLs</t>
</list></t>

<t><strong>draft-ietf-jmap-filenode-02</strong></t>

<t><list style="symbols">
  <t>Convert to Kramdown-RFC format (no intentional changes)</t>
</list></t>

<t><strong>draft-ietf-jmap-filenode-01</strong></t>

<t><list style="symbols">
  <t>Refreshing draft only</t>
</list></t>

<t><strong>draft-ietf-jmap-filenode-00</strong></t>

<t><list style="symbols">
  <t>upload as a working group document</t>
</list></t>

<t><strong>draft-gondwana-jmap-filenode-01</strong></t>

<t><list style="symbols">
  <t>require a blobId for the zero-byte file</t>
  <t>make size also null for collections</t>
  <t>add more to the TODO section</t>
  <t>bikeshed; FileNode</t>
  <t>correct UTCDate, UnsignedInt, and normalised UTF-8.</t>
  <t>add some fields to the capabilities object</t>
</list></t>

<t><strong>draft-gondwana-jmap-filenode-00</strong></t>

<t><list style="symbols">
  <t>initial proposal</t>
</list></t>

</section>
<section anchor="acknowledgements"><name>Acknowledgements</name>

<t>Neil Jenkins and the JMAP working group at the IETF.</t>

<t>{backmatter}</t>

</section>


  </middle>

  <back>


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

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



<reference anchor="JMAP-CORE">
  <front>
    <title>The JSON Meta Application Protocol (JMAP)</title>
    <author fullname="N. Jenkins" initials="N." surname="Jenkins"/>
    <author fullname="C. Newman" initials="C." surname="Newman"/>
    <date month="July" year="2019"/>
    <abstract>
      <t>This document specifies a protocol for clients to efficiently query, fetch, and modify JSON-based data objects, with support for push notification of changes and fast resynchronisation and for out-of- band binary data upload/download.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="8620"/>
  <seriesInfo name="DOI" value="10.17487/RFC8620"/>
</reference>

<reference anchor="JMAP-SHARING">
  <front>
    <title>JSON Meta Application Protocol (JMAP) Sharing</title>
    <author fullname="N. Jenkins" initials="N." role="editor" surname="Jenkins"/>
    <date month="November" year="2024"/>
    <abstract>
      <t>This document specifies a data model for sharing data between users using the JSON Meta Application Protocol (JMAP). Future documents can reference this document when defining data types to support a consistent model of sharing.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9670"/>
  <seriesInfo name="DOI" value="10.17487/RFC9670"/>
</reference>

<reference anchor="MEDIATYPE">
  <front>
    <title>Media Type Specifications and Registration Procedures</title>
    <author fullname="N. Freed" initials="N." surname="Freed"/>
    <author fullname="J. Klensin" initials="J." surname="Klensin"/>
    <author fullname="T. Hansen" initials="T." surname="Hansen"/>
    <date month="January" year="2013"/>
    <abstract>
      <t>This document defines procedures for the specification and registration of media types for use in HTTP, MIME, and other Internet protocols. This memo documents an Internet Best Current Practice.</t>
    </abstract>
  </front>
  <seriesInfo name="BCP" value="13"/>
  <seriesInfo name="RFC" value="6838"/>
  <seriesInfo name="DOI" value="10.17487/RFC6838"/>
</reference>




    </references>

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



<reference anchor="CALDAV">
  <front>
    <title>Internet Calendaring and Scheduling Core Object Specification (iCalendar)</title>
    <author fullname="B. Desruisseaux" initials="B." role="editor" surname="Desruisseaux"/>
    <date month="September" year="2009"/>
    <abstract>
      <t>This document defines the iCalendar data format for representing and exchanging calendaring and scheduling information such as events, to-dos, journal entries, and free/busy information, independent of any particular calendar service or protocol. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="5545"/>
  <seriesInfo name="DOI" value="10.17487/RFC5545"/>
</reference>

<reference anchor="CARDDAV">
  <front>
    <title>CardDAV: vCard Extensions to Web Distributed Authoring and Versioning (WebDAV)</title>
    <author fullname="C. Daboo" initials="C." surname="Daboo"/>
    <date month="August" year="2011"/>
    <abstract>
      <t>This document defines extensions to the Web Distributed Authoring and Versioning (WebDAV) protocol to specify a standard way of accessing, managing, and sharing contact information based on the vCard format. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="6352"/>
  <seriesInfo name="DOI" value="10.17487/RFC6352"/>
</reference>

<reference anchor="JMAP-MAIL">
  <front>
    <title>The JSON Meta Application Protocol (JMAP) for Mail</title>
    <author fullname="N. Jenkins" initials="N." surname="Jenkins"/>
    <author fullname="C. Newman" initials="C." surname="Newman"/>
    <date month="August" year="2019"/>
    <abstract>
      <t>This document specifies a data model for synchronising email data with a server using the JSON Meta Application Protocol (JMAP). Clients can use this to efficiently search, access, organise, and send messages, and to get push notifications for fast resynchronisation when new messages are delivered or a change is made in another client.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="8621"/>
  <seriesInfo name="DOI" value="10.17487/RFC8621"/>
</reference>


<reference anchor="JMAP-CALENDARS">
   <front>
      <title>JSON Meta Application Protocol (JMAP) for Calendars</title>
      <author fullname="Neil Jenkins" initials="N." surname="Jenkins">
         <organization>Fastmail</organization>
      </author>
      <author fullname="Michael Douglass" initials="M." surname="Douglass">
         <organization>Spherical Cow Group</organization>
      </author>
      <date day="4" month="November" year="2025"/>
      <abstract>
	 <t>   This document specifies a data model for synchronizing calendar data
   with a server using JMAP.  Clients can use this to efficiently read,
   write, and share calendars and events, receive push notifications for
   changes or event reminders, and keep track of changes made by others
   in a multi-user environment.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-ietf-jmap-calendars-26"/>
   
</reference>

<reference anchor="JMAP-CONTACTS">
  <front>
    <title>JSON Meta Application Protocol (JMAP) for Contacts</title>
    <author fullname="N. Jenkins" initials="N." role="editor" surname="Jenkins"/>
    <date month="December" year="2024"/>
    <abstract>
      <t>This document specifies a data model for synchronising contact data with a server using the JSON Meta Application Protocol (JMAP).</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9610"/>
  <seriesInfo name="DOI" value="10.17487/RFC9610"/>
</reference>

<reference anchor="WEBDAV">
  <front>
    <title>HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV)</title>
    <author fullname="L. Dusseault" initials="L." role="editor" surname="Dusseault"/>
    <date month="June" year="2007"/>
    <abstract>
      <t>Web Distributed Authoring and Versioning (WebDAV) consists of a set of methods, headers, and content-types ancillary to HTTP/1.1 for the management of resource properties, creation and management of resource collections, URL namespace manipulation, and resource locking (collision avoidance).</t>
      <t>RFC 2518 was published in February 1999, and this specification obsoletes RFC 2518 with minor revisions mostly due to interoperability experience. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="4918"/>
  <seriesInfo name="DOI" value="10.17487/RFC4918"/>
</reference>

<reference anchor="UNICODE">
  <front>
    <title>Unicode Format for Network Interchange</title>
    <author fullname="J. Klensin" initials="J." surname="Klensin"/>
    <author fullname="M. Padlipsky" initials="M." surname="Padlipsky"/>
    <date month="March" year="2008"/>
    <abstract>
      <t>The Internet today is in need of a standardized form for the transmission of internationalized "text" information, paralleling the specifications for the use of ASCII that date from the early days of the ARPANET. This document specifies that format, using UTF-8 with normalization and specific line-ending sequences. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="5198"/>
  <seriesInfo name="DOI" value="10.17487/RFC5198"/>
</reference>




    </references>

</references>



  </back>

<!-- ##markdown-source:
H4sIAAAAAAAAA71c63IbN5b+30+BYn5YUpGU7diZhPmxS0vyjDK27JHkcVKZ
qSXIBknEzW5OoymJyTq1D7FPuE+y5zsHQKOpi53dzKSmaqxuNHBwcC7fuYCD
wSBrbFOYkfru9fitemkLoy6aqtYLo8xNY0pnqzLT02ltrpIxZ1VusryalXpF
n+a1njcDa5r54KeVXg/mNKKkEYPHzzO3ma6swyyX2zWNPT25fJnNdGMWVb0d
Kdfk2Wad099upL7+6unjrJq6qjD4O7PreqSaeuOap48ff/P4afbBbK+rOqdZ
ysbUpWkGx1g6c40u8//QRVXSClvjsrUdqR+batZXrqqb2swd/Wu7wj/+nmV6
0yyrepSpQaboP1vS2i+G6o9VmV/rUvND2dmLuiq7z6t6MVIvtWtW2hb8xOBf
IzWloYt/n/s3jdGr4axaZVlZ1Svd2Csz4tFg4eDozfnJSJ2/POIdx8cXfxqf
n579kd9889Uf5M3rk+PT8eUPb+WDr77+8usss+W8O+vR+NXx+K884vnzZ8/9
s/Pj8PCrL58/bdd5PT59FZZ/klA1fnVydjw+vyD+Do6H7XnONJ1nrmuX7uDs
cnx0eeFpfSK0vj95EVZ89s2Tr/nZu7PTozfHQv3zJ98Q9YPBQOmpa2o9a7Ls
cmlErqbaGbWuKzq2qlB7njv7eHRlc+NUQyP11Ba22aqmUpt1Uelc0cmrvLou
8Uem66mleeutmtoS/0eSpYdKXS6tSx8p+pN2VRj6XvWmRTXt9XmmmS7V1KiN
MzlxWdEQVdG6tZAYNcINQThNEp8oneeOJlsZkq0c9JmbdUU7wuT0Au+gF27r
GrNSkNWFurbNEtvKGtINp6o5PtdMYLPUjdK1CdvP1XTrSanNqmpMOlvgGsgC
d1c2zwuTZV9AUeoq38waqHHGm9j75ZcohB8/qv/5r/9W3128OVOvaWk1Xq8L
S+qJHb31s+6DW1otTGlqO8viEZEMklKVsyVJvv3Z0n6Y8qlpro0hhqhZYU3Z
MF+1cqa+MvUwO20wXbVu7Mr+TNvCLKtqCsODgddmqkx5ZWnOFX3s5Fi0XdH5
V5lnBuamQ7C0eZrfwhjM9cyA67mdz02Nx8JGMJa4clqy+DjSanWtt8JeZsdR
EO6WMUEPPn7cJ2avC5raZTSOZBuDRNnwEqTJJFXZkDQnc3j92JmizuMcrJz0
uk+0EEPImG6w4Tia6SU5hFS8N1P/nWgYfZaBb7clQc/oU2z4CzXOc8vnSFzB
XEd6LdpjafI3059M0L5Z+qLiFzii2jQbsrE5ZHet6waENEFZLwzb9EyGf0un
a1RHrvo0hKVOPQ26EreYm7ktaS3NWsNE6qIlY6venZ9iC18oImAEOzQiAvTK
jWCORsG97FC/VZMHh09IMiGk69o4ERtWvR6xrNqUTcqeHjRqbWqakzYNMmUM
Dke+dspt1mvyLXwOYEtwiyx3EDsyOxcs806kzZazYkPvmw7RsDLkthRrAan7
g+TggF6/u7gk8+GqMGGGCSO9sivVm925naHw7EoXGyPnSeey+y0fsJMD3pko
i2OZjCl0lhzgGoxiSfjkAi0zH7m7N9uuYVlEvEQyD3nVGZTN0zqviqK6xrFG
nwipLL256co21JVm9njEKTk62FkhY5RlB2qlb8JRHpt1sxyp3jsyNQvSBDKm
f/vPclMUvYxdG3ZKw+1qsyKZprFBRaIsLK0hbzRbbtWeHZphn4+az5nWLXmS
Jpmk3KymRDTLHOkx4TAY3jjbigzXUl8ZshlEOQjBFgSuVKoggwr+8xYuyLaG
784YyqS7uIN+0pFFs+zjiPbeXb4cfL2vqllj2ACDxd5Sg1pAI6aRJwmrBC8b
BaOhOQkNqSePH2MOcoubxVJZb1sIG5EtIL/GkzivKLwUM4g3Mvdz/2Vj6u0F
adubNc6X4Frvoqnp1P/249/9Xsa0f8c2Cj67CTIoZtQLg1dZF3fSC6LW4znm
1hR5OMOjagUrQmcQbSJLby9s+PAfoKrHCFPtkQHkOYLV+/777/cjS8Y/RO1P
NJkNgbjIvKK/y6rhKcCcRWnJ9O+BUHOjV+vC9NWMgHC1SmdwazOzRHXOtKkr
YqiXh4hLQMQRL+KPhmQA8qfLrdqUH0pCTumM3ihiCvDTi9P2qDYE0S+r9Stz
ZYrAATqGFxWBdV3KIZzOgdZNP7iumiV2xt+mcgxmdRgly1rGl8HUMjbSIuV0
ELSB05z2svc2KjAfI88O/SdIsLR8fDwLmaUb2gDexHXpKBYEmUtAKT7+1fbc
LpZNx96XbBKyVLL34Yu+aB3oVp3ImZCxe3P8Bs42rnEM1IFQJ8vGnZWBgJoO
xLte2tmSVAUqTWdJ6lvoGt6aiLclf0ahV+LdafuEY1oQoBrwoqyKarFN+QsQ
S6GO4cmMBWjMgJgI7wrPiW+aRrhqU8+MN9mtJWX7/5pxrGMI6gw+FAgK6fiU
n229m3jxSJgokvML+vFBvZba7Zh0Cvcc22RLIV/vNO+RFV2tNo2eFuZbr9QD
4up+a85O810bzCIcBIinuWXD249knAJZrY213o3xITbVmuwaKQEP4smB8O+b
Wt5FgwPXhQWCZ7x7oTKKTHtmdPZnby5Ponb+bOqKzsOjP1FtCBJUpioHPJ8s
PuxQgn0EHiqKnU1QIVoCm3HkOO50edDaOxiO8VBfkOICG7Vz1cxqFhlathOF
rciKwT/4HQu+r8piy380HUoxZihmlZeRuIHRIkmxGJa+mm4asC4GStbjBAID
s6XYf3wdjjjGU7wMc9+TI9kAGdaeQW7JIJMb2A53Nv0JTkoGwTsqLxLviIeD
K+ssvmE/ugsfb7lR/u7MNIN3pZ2BKMcTkhnwkTXZAXi96G7JDmqE1kQPnYv3
6+JlNx5KVR3UwbsRw+hRVYKpPazjfdciekwaCSPIa64rhd2AotfaFtPqhsSA
bfe0apZt0OU1iw47oh5+DiYkSBmusjZMJd546HxlqwI+RCSQJ1hXFKcSrDLD
BcEqGeuBIWjBP2uKUSMvHBzhy00NYziSwzjgs+RTSLfUG/YgE73hsHfvsABB
teodBm0nTzBic4kljI/V2/W9ub+mXRASKtgmTG0uO1CPRo9Y4Ksmwi2S8PeW
HPq12w8Qx+MYJqOq80TiJA1CdlrsO/kyfixHwYQ6YkvRytkhvJHbsIKIu/Oa
ImeJ8LqpaYshFKR/IhRseJQpo8WkQaXTbKJEEyV+ZY/c+mAPrwoTEiw5gDCB
q5VFGmbLCtNwgjAgu1tA2+RW4vlbFr6rMRN8OLnbtLBWB7AV7OVELMFkKIv9
VRd0LB494jznhEfyoBqn47Ox0DKQpE1tFrRHWAeP/7wgB1Hx0tyS79rcDoiI
aC+/a4Y7vvYGSkKsuBc6MMQ/QbfHL85egk+//BLzh2QnAuZ6Nnw6bDnLPP2U
NRNjCy/37vKIQI4hh0BxvN4UzYiQac3a7eWzsSuTuAhkd1vuX5Ob95MJuqxy
hrC/z8wFTKAklHOx1/Cao+jAwSr/OqBAmbrvobh3UIi92Jeaa8/p6yXZx5X+
wNpBwduC80oHPuPyu9IfpvxdN8BGluQXuBVZGDEbR0ij5cFaiJoCVXN0RnNV
ZZqHYiI4SuKtmxszE4lJIoFk83NduLDdTmwQnKu3hPAjIhGcJy2TiTnrKdaM
+C4w2CuQj+Y8UYVeME3WXWymblbbKR/JHVSBjHgGneyEE65xkoDjF7Eg9hbp
Ld25dWTutiYPihcOHJ976FKtTAxwERBFI5/wE5/TdCJYghcdvgNSLwRrUiTO
roINGgYEYEJxW9/XJtqX/AWOT9wOywn5IvMernl89IqxzazZwPpyZCJAhJ7K
xkGkzMET+EIJPBu7AFvzJPOaAlLtnbuosw+pRhIouxBg3YMeJSSqeZDaoynd
fhs9IiKwCGUK3SYywbGqIJEdkkM8OEgWOTi4P5RoQ9zo/Okozo0mIZl4IZkw
STFuJYnMU9DuOqh92M7yvraNuXcatm/bAD1DnN0NACQ5ADqJj3qFf+B82Z2z
uaHAlt4ka17gLO9dU8QoHjrPl8YWe0m61hedkFIG/A8yIuHMjwl7/95xyeQE
9RqzYtFTll9/ihAkPHTdYIZnzhmPDJna6rqUXFdUqxSF+YwAJMT7d/pfdO2t
jNTmH+SnmU145gWg6+InQSiHgXMThv07UB/jEyqRIiGUwlJNUPIeaDIGaM5D
yYQNk+TzQ9TAwqglVUNxC2byERn+GVFLyOZJuD9MMeW1eQQTYMTI5DQP6J0L
znzkEpwVwQh2Rw6LISghTv5Wt2+xjqR+QINLsACh5wZkJm+BVKLS9Oqqanpq
IIGaFrfQyVGEgUsyXxio+ZyITDzYDaZoHH2zlnH4V8XFO7dGNQeLELujVab9
MbIGcjI3a0lJeLsJJaC/NmulN4Qq6TQYV8ZFau2WsgpXV8AcmoU1jD4LJcFV
dcVTkkYiPd0ugmPlQWzw+Ntriwi7nUPyLN3lOauvy42HuGkqxOdXJLOUgnJf
LJGMEeraus7Vy6piwC7VxX4sHCYWLhS+ZmziLsikmJj28ICL8xe14RByQ7a/
Nn3OxzfgPIeFYABnEHIupgXLzgITHEmaoEAZAjP4bLXP2Ju6rrzvpL8mtrwC
pH4brd9ERkQWhkqTZKL8CdPuSLqS+lCbedH1ggtJkhyqymNavK7ImoP8I28s
73b+E8Ykk/2Qr+Q/d7mQy3xpSk02b12SJZKskS4l0GtHxk39JMLjE5kTMO1P
2gX6PBOGAeDZNnMtiUzxvmCF1K08VSaGIhw/x1CP4UmZpruTEAT8laMLi4Yo
g8Gil10ncMqEpVz0PETCHHhSdu76EWrMlmb2QWZOQkaPGucW50ZCjCxNTagT
1Q2x1KH6OiGpnqTxakgPSWw4vJVXlpp8yiFmOEvi1CRMYryuo6jGF7T393jV
9a4BYe2yLy3a2dyF+kJQeqHAn4cv/dfGrWkn4jiq8gSm2e06j0Qk8XeUR/yx
K44+gQ63ysD/tlxeMxydacB0LakKZA4tZ8lvCWQnbAji2dMFAM9WyO15OQlk
9XxVuicciql1i5ozL5Dy99TL2kw78ymWBgDgF8hlSs/R9jQDU6UqkejMHd92
knaeQz5hE7Cju0dbZJmoszsq681WgKGS9VCbknyfu88Msc0g4U1ZiQPq9buH
wEIdUVuPh7ShAUf4FBsu++RNfW5FFwvC/s1yBRbaBspa2RnAxek8ndsHq7F0
148J0vQkECf6VSXeDalAH5hF6UvOQsiLgYPNhzvubPGAO1tEd7b7lSf43i/D
hu7+mqty937Lb4OmmpuZWTcxBRt96cj7oUeurdfGKNHHeTwR+5/8M6rEbWGX
PRjbEbeZQkolgGP8TEFv7cD5ppJT1FP0GvS9VSAykfXvE7oNmSOMv1W/maP9
DOkbUofaanYh0nKRSzXFhULebgHvjiid7XEoLKS1OIYLMcNO+iWO+na5JQYM
bTUsR+x2a/o4M0F69vciVg+sE3DHb1wpASx7smg/AB06l/DENLPhfogEYKlu
kfUAZQT6pd/xNoMn4PCk320UiG6PofRhqM1JHJ6Ys8OkIuTXOU9jE1lmLLGF
z62/gaMOvpJ2s6a5rDPFVjbCQ8M+xI93NzIut36Nu6u9KCVLAkusppe1ZGLj
dqfugi/5HpOKtZaQib+Pkdy9FCblt9sCkMqXryt9tnRZd3JXguszDtIviPdp
LkvycEk29QWjqiRz2FqMmNhnj59GyXs66c3ySGunwrof5cnjNglJOdt4/349
UWMkf/+ZNPkCNOeYP4uwkCJ+gF1hyL+QXWHJ+/n1OxH1m/kV8scP8CsM+Rfy
Kyx5P79+J6J+u3zZ8uJW2TuhKy0f+74MX+/+TXRFw0PULVjXuP3Mg2UPER4i
U9q6/tlkMpr9LXTdVei+0wSbG4LMxTYJXrnDDHQCv3LckuKshxZ8jXe7qx5X
nONYoOdAPvbsaBuleBG9QCwgse4Bnhx0Gj4DA29XJf8fu+Mq2yd2F9b7v26O
1+hsDk8e2Ny0yre767xO6Wq7VYy0FCHBJL0TfW76lTBtznlDKN5cHWDSA2zb
CVDhWZ8Nnw2fSEUy3kH4+HEYygAcqSB1zSEsAYLGzJa+s4l76fm2AAF3jfL+
fCO9Gg09l5QcpyPBGa6cGPRc0jjJ8qI9fO3rFqF7gnv5tmgF73OIvawqZ2IV
XMCSdO1CJwprrtqObArXNMoB9B1xQISECNnl46mDxtsr9JdzHO8Z8+ZcZI75
LH/GMz9Aq3oj2YzYrdjN8yUZMc7XdCobB5zf89laNExysE+PvvXICgx0eCiR
IAr24MNd+DKmTuyKy8+N4dKS707wSQSJQSzgTnJzIAgmtECSSpWPUGOqJfS5
2E7nG6fwN816E4VuQqKVT7ggKdX87j2KmAiV/lvuRzMwrLHNR08pGu9g8oQ7
SQkt+DKeXO0xNmXi4xtfOPQmoZ3FdaaZ29o1kvz0X2/T3oWY4r8rbD36ROSb
DkrCXzVmx8m3EAg0h+yvSHFsv4QY9FG1i/V3kNYWBbuZaxznNmPV8IkM8iHX
BnEoWs8J/fr62URJlUaORupZSJHtnHeGKJTlGmkmwGGI+jxeDGmBfqjrcpjP
Ei+7Y4ksB21mx6fsbJOhqQQkTGJ9B8IkR8juDhdxQg2V+5w67X5xyowLh5Kt
OWuLn7FXo5dbNyNxqkF/L6SMOLlKr19ynwjniNClkc0NQh+fTEpzIiwcabEr
+mYu4fjsSlNlXelA2ivmhFNKVLhDMOd+LDJqsAVPhiERJG6+7gS+VfIKu/an
GXb/tPux5PXTj7VK8o93TBAu3Bg4tyQTKNM1FH7OJevFvjN8HCPCHAJocOWM
08x0mmhQE1MoWQjovRiM0E93ltoVMXTc26QlWRNsBRl1JkKnyXyhhdeK2fJK
qltEbBaVoJUHTvtfo0u7cxTNsuY+93bzWfteWurqTWHCnRiKKHMnpRbWRHxk
QjGzs1My01wOU77GaOQuQOa1A0UrWHOUIzDKFJwZOkHHAPd/bUp7wzW4VoGS
e1a+IMbebUx2HEKR+2ooXzDpkeF6UU17PoHqbzKgqgqK+5JuJ3e98M3oTtFo
ksJff/1V1ySV9YfsEKuT1TzUWIDN56FfQfF/h7KG/0saxp4Mf1ovOk+eDpub
Jj4ZDlFJPJz6z+j/MSYOwWsiIcveL9F9JluTdDnQywrOb9WafQiezxCHXrdu
2VLyd+2NJiNHiANaVwBLlq0nubOFiZlXn0pN5RTmii0p+JYJWew5QgVaSo5h
2T646elmhZnihl1TyXUF7deLWcas5y18z1uMrl1JCggxmSoWBs7kAi4dcjrr
9gZlUo0uKumE6LVeWCxSbd2HLWqsp2qxgUgWVfUhcLHFjtn5yyNh9HUUZKcl
dyzddbvrkpv0N/ViV6qvZAvagEvthW5yAl88CXctcmuAFInlC+PvfcTRt2bW
zmMcmNDkuVyi+cR9tAtB4h4Fhftuvnkr/Anb2PDVF6jbiKENoL/49eDEC8TI
fFk6iwfC95dqQpSz3cPZWaKf3q7IWg6ecP3iiEXiNgt3qh2fx8ndj3YX6jJ0
5+Vot8Lym3lzbNDrxU3hI8m0Y81bBVP0EMDApyFMuE6bdDmJbsHTs361Na0s
Ow9f3jrNwNx48+Mu3gZ9+zymxtE7M3eZyU9ELuOdfBLZUkVa1QtcPh6pH4Ap
8eYd6f9LoucCNVklXI2vg6x/Uswf4IWSCzEHEcVd/PD61enZn33vKm51P3v2
5R/2pXCCLIa/wO2vhnLYefs+apueBHwsBuRPUPD0DY/AAcZJ4w2vfZ8FOyDL
x7d/CU4AsdYeGQCvRnAjcJXG/uXdycXl6ZuzUej3C/V5cGLAXWlo1UMRzHF+
h6xvnofLWG4zHQjx/+ab5x+51niGZMvZu1evuPTvO5UH4Q6IyKZU2EKnBQbD
wF4jNAdBBj2/MyPOgt2Y0c4W25CJb2ngAOi9iV1EFEXWsNHL6joNAYiK0CuF
7hfrRZgBJzn8b4lkqTJzc79ufR7FaQRW3hJWmfAsYvPxPMw3QYhmJISLJckq
vXEj15ZjDHRyfHr55nyk1rjXYPiu85VPNfrEQuxK2ExD6OmLYVI9iU1vUby4
cM2hxIL2u5mSexqpZdOs3ejwUB7hVxsO+cccDuV3LRb+5x+6v21xSAw9eOCH
Lw4OwPFzrvViz8cbCY/Z/4auAOnU5IxUQarAOnSAs6FPeih/9HYbPeNrrXpQ
NRlA8TKX41kEalgtO5N2ihDG8wUJKJFvMCXE/jYp5LUlQRGd2qA5BFZSih4h
8fLwpp/Jpo89twOKCRdtkJ8UbC95KqL1/pbz29MkN/3m4dcCYhMHJw5gEqp1
zHLxqHj/IbmooBh4L3SBZcbMzu4BrQfSaCS3jZjFaYtWH8EIVmUtCAV9Jig2
SvhvHZZ45wvnt3NlreohmRR+lwDjcPctbIQOS2KO09z5imD8nQvJZ7mHD+ZL
ORjZ6iMkqx4xtY+QkXrk82WcJ+YRMUHX+ktuzG4zT8lla+YO5vHT7Ccb7vwU
Qvy1hNBy2s4ulgBa7BAwk5PwWJa8pGZDyPlo3mAU5bMqisY9LSZ5TOb51p3Q
tpPmoSJf0s7xRHUpNB3nK1tKylbSC2xBobGiLWKrkYYFXQJJpn513zPNPCQK
kH55+KyeylkR1KHtcObsz+SD8QsnA/BF+K72yooTm2X48QSxmvsPz/0kWKU5
GQkOE4Wl8DwPf/lYvgy/uYLMFGI6TLGggHedYIAwzd12MxIB+GPrpC4b2jDQ
4zCINxu57vHBFzfYC8ZO2TZV6c2iv1kvWQFYx5iBPlBT+8FAuL5tsRJZw6qG
ZVW+FNVXSWFFLBX/ek+B2zmKb8UP/UrcnO9df+j8vxO2fIIZnq+h7RbJ3Mrp
QpJ6aMItTL7g+xokNmfGFuo7U35AI1PwsowQu2fhNQIImfzhL1M9+7BCP1n9
MftfE2jdlPFJAAA=

-->

</rfc>

