<?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.15 (Ruby 3.0.2) -->
<?rfc tocompact="yes"?>
<?rfc tocindent="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<?rfc compact="yes"?>
<?rfc subcompact="no"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-sarischo-6gip-aiml-security-privacy-02" category="std" consensus="true" tocDepth="3" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.21.0 -->
  <front>
    <title abbrev="AI/ML  security privacy implications">Security and Privacy Implications of 3GPP AI/ML Networking Studies for 6G</title>
    <seriesInfo name="Internet-Draft" value="draft-sarischo-6gip-aiml-security-privacy-02"/>
    <author initials="B." surname="Sarikaya" fullname="Behcet Sarikaya">
      <organization>Unaffiliated</organization>
      <address>
        <email>sarikaya@ieee.org</email>
      </address>
    </author>
    <author initials="R." surname="Schott" fullname="Roland Schott">
      <organization abbrev="Deutsche Telekom">Deutsche Telekom</organization>
      <address>
        <postal>
          <street>Ida-Rhodes-Strasse 2</street>
          <city>Darmstadt</city>
          <code>64295</code>
          <country>Germany</country>
        </postal>
        <email>Roland.Schott@telekom.de</email>
      </address>
    </author>
    <date year="2024" month="June" day="14"/>
    <abstract>
      <?line 142?>

<t>This document provides an overview of 3GPP work on Artificial Intelligence/ Machine Learning (AI/ML) networking. Application areas and corresponding proposed modifications to the architecture are identified. Security and privacy issues of these new applications need to be identified out of which IETF work could emerge.</t>
    </abstract>
  </front>
  <middle>
    <?line 147?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>Artificial Intelligence (AI) has historically been defined as the science and engineering to build intelligent machines capable of carrying out tasks as humans do. Inspired from the way human brain works, machine learning (ML) is defined as the field of study that gives computers the ability to learn without being explicitly programmed. Since it is believed that the main computational elements in a human brain are 86 billion neurons, the more popular ML approaches are using “neural network” as the model. Neural networks (NN) take their inspiration from the notion that a neuron’s computation involves a weighted sum of the input values. A computational neural network contains the neurons in the input layer which receive some values and propagate them to the neurons in the middle layer of the network, which is also called a “hidden layer”. The weighted sums from one or more hidden layers are ultimately propagated to the output layer, which presents the final outputs of the network.</t>
      <t>Neural networks having more than three layers, i.e., more than one hidden layer are called 
deep neural networks (DNN). In contrast to the conventional shallow-structured NN architectures, DNNs, also referred to as deep learning, made amazing breakthroughs since 2010s in many essential application areas because they can achieve human-level accuracy or even exceed human accuracy. Deep learning techniques use supervised and/or unsupervised strategies to automatically learn hierarchical representations in deep architectures for classification. With a large number of hidden layers, the superior performance of DNNs comes from its ability to extract high-level features from raw sensory data after using statistical learning over a large amount of data to obtain an effective representation of an input space. In recent years, thanks to the big data obtained from the real world, the rapidly increased computation capacity and continuously-evolved algorithms, DNNs have become the most popular ML models for many AI applications.</t>
      <t>The performance of DNNs is gained at the cost of high computational complexity. Hence 
more efficient compute engines are often used, e.g. graphics processing units (GPU) and 
network processing units (NPU). Compared to the inference which only involves the feedforward
 process, the training often requires more computation and storage resources because it involves also the back propagation process.</t>
      <t>Many DNN models have been developed over the past two decades. Each of these models 
has a different “network architecture” in terms of number of layers, layer types, layer shapes
 (i.e., filter size, number of channels and filters), and connections between layers. Three 
 popular structures of DNNs: multilayer perceptron (MLPs), convolution neural networks (CNNs), and recurrent neural networks (RNNs). Multilayer perceptron (MLP) model is the most basic DNN, which is composed of a series of fully connected layers. In a fully connected layer, all outputs are connected to all inputs. Hence MLP requires a significant amount of storage and computation.</t>
      <t>A convolution neural network (CNN) is composed of multiple convolutional layers. Applying various convolutional filters, CNN models can capture the high-level representation of the input data, making it popular for image classification and speech recognition tasks. Recurrent neural network (RNN) models are another type of DNNs, which use sequential data feeding. The input of RNN consists of the current input and the previous samples. RNN models have been widely used in the natural language processing task on mobile devices, e.g., language modeling, machine translation, question answering, word embedding, and document classification.</t>
      <t>AI/ML has very many applications, however, many areas have recently emerged that involve networking. 
One is the network optimization, time-series forecasting, predictive maintenance, Quality 
of Experience (QoE) modeling and the other is speech recognition, image recognition, video processing. 
In the former which is also known as network analytics used in the mobile network, the end device is the base station 
and the latter which is mainly used in the vertical markets such as autonomous cars, 
smart factories, etc., the UE <xref target="TR22.874"/>.</t>
      <t>AI/ML has other applications as well in improving radio access network (RAN). DNN models
can be used for the New Radio (NR) air interface. Use cases are channel state information (CSI)
feedback enhancement, beam management, positioning accuracy enhancements <xref target="Lin24"/>.</t>
      <t>This document aims to present Artificial Intelligence Machine Learning (AIML) networking issues that may require further protocol work, mostly on the security and privacy aspects of networking.</t>
    </section>
    <section anchor="training-and-federated-learning">
      <name>Training and Federated Learning</name>
      <t>Training is a process in which an AI/ML model learns to perform its given tasks, more specifically, by optimizing the value of the weights in the DNN. A DNN is trained by inputting a training set, which are often correctly-labelled training samples. Taking image classification for instance, the training set includes correctly-classified images. The training process is repeated iteratively to continuously reduce the overall loss. Until the loss is below a predefined threshold, the DNN with high precision is obtained. After a DNN is trained, it can perform its task by computing the output of the network using the weights determined during the training process, which is referred to as inference. In the model inference process, the inputs from the real world are passed through the DNN. Then the prediction for the task is output. For instance, the inputs can be pixels of an image, sampled amplitudes of an audio wave or the numerical representation of the state of some system or game. Correspondingly, the outputs of the network 
can be a probability that an image contains a particular object.</t>
      <t>With continuously improving capability of cameras and sensors on mobile devices, valuable training data, which are essential for AI/ML model training, are increasingly generated on the devices. For many AI/ML tasks, the fragmented data collected by mobile devices are essential for training a global model. In the traditional approaches, the training data gathered by mobile devices are centralized to the cloud datacenter for a centralized training.</t>
      <t>In Distributed Learning mode, each computing node trains its own DNN model locally with local data, which preserves private information locally. To obtain the global DNN model by sharing local training improvement, nodes in the network will communicate with each other to exchange the local model updates. In this mode, the global DNN model can be trained without the intervention of the cloud datacenter.</t>
      <t>In 3GPP Federated Learning (FL) mode, the cloud server trains a global model by aggregating local models partially-trained by each end devices. The most agreeable Federated Learning algorithm so far is based on the iterative model averaging whereby within each training iteration, a UE performs the training based on the model downloaded from the AI server using the local training data. Then the UE reports the interim training results (e.g., gradients for the DNN) to the cloud server via 5G uplink (UL) channels. The server aggregates the gradients from the UEs, and updates the global model. Next, the updated global model is distributed to the UEs via 5G Data Link (DL) channels. 
Then the UEs can perform the training for the next iteration.</t>
      <t>Summarizing, we can say that distributed learning  is about having centralized data but distributing the model training to different nodes, while Federated Learning (FL) is about having decentralized data and training and in effect having a central model <xref target="Srini21"/></t>
    </section>
    <section anchor="architecture">
      <name>Architecture</name>
      <t>A new framework for protocols called Service based architecture (SBA) comprises Network 
Functions (NFs) that expose services through RESTful Application Programming Interface (APIs) 
has been defined. There are providers 
and consumers (publishers and subscribers) which are new functions in the system <xref target="IsNo20"/>.
SBA provides built in security using Public Key Infrastructure (PKI) managed certificates
in the mobile core network.</t>
      <t>For AI/ML, 3GPP core, i.e., 5GC network, aka mobile core network, has a new 
server function: The Network Data Analytics Function (NWDAF) provides analytics to Mobile 
Core Network Functions (NFs) and Operations and Management (OAM). An NWDAF may contain the 
Analytics logical function (AnLF): A logical function in NWDAF, which performs inference, 
derives analytics information and Model Training logical function (MTLF) which trains Machine 
Learning (ML) models and exposes new training services. The Application AI/ML operation logic 
is controlled by an Application Function (AF). Any AF request to the 5G System in the context 
of 5G System (5GS) (which consists of the 5GC (5G Core Network), 5G-AN (5G Access Network) 
and UE) assistance to Application AI/ML operation should be authorized by the Mobile Core 
Network <xref target="TR23.700-80"/>.</t>
      <t>NWDAF relies on various sources of data input including data from 5G core NFs, AFs, 5G core 
repositories, e.g., Network Repository Function (NRF), Unified Data Management (UDM), etc., 
and OAM data, including performance measurements (PMs), Key Performance Indicators (KPIs), 
configuration management data and alarms. An NWDAF may provide in turn analytics output 
results to 5G core NF, AFs, and OAM. Optionally, Data Collection Coordination Function 
(DCCF) and Messaging Framework Adaptor Function (MFAF) may be involved to distribute and 
collect repeated data towards or from various data sources. Note that AF contains a Network 
Exposure Function (NEF) if it is an untrusted AF. NEF may assist the AI/ML application 
server in scheduling available UE(s) to participate in the AI/ML operation, e.g., Federated 
Learning. 
Also, Mobile Core Network may assist the selection of UEs to serve as FL clients, by 
providing a list of target member UE(s), then subscribing to the NEF to be notified about 
the subset list of UE(s) (i.e., list of candidate UE(s)) that fulfill certain filtering 
criteria <xref target="TR23.700-82"/>.</t>
      <t>In Next Generation Radio Access Network (NG-RAN), AI/ML support requires inputs from 
neighboring NG-RAN nodes and UEs. No special new node is added to the architecture for training
and inference. AI/ML model training can be located in the OAM and model inference in the
NG-RAN node or UE. It is also possible that both model training and inference are located in 
the NG-RAN node.</t>
      <section anchor="aiml-for-vertical-markets">
        <name>AI/ML for Vertical Markets</name>
        <t>Vertical markets cover automotive such as  cars, drones and IoT based smart factories
are the major consumers of 3GPP-provided data analytics services. 
They play important role on the Exposure of data analytics services from different network domains 
to the verticals
in a unified manner. They define, at an overarching layer, value-add application 
data analytics services which cover stats/predictions for the end-to-end application service.</t>
        <t>In order to allow the vertical market industries running applications over the mobile network
a service enabler architecture which specifies the procedures, information flows and APIs<br/>
called Application Data Analytics 
Enablement Service Enabler Architecture Layer (SEAL) for Verticals is defined <xref target="TS23.436"/>.
SEAL applications can be hosted on the Edge of the mobile network for UE use at the Edge.</t>
        <t>Example use case is the Vertical user leveraging the Application layer Analytics capabilities
for predicting end to end performance and selecting the optimal Vertical Application Layer 
(VAL) server <xref target="TS23.436"/>. VAL uses the SEAL layer to realize its services.</t>
        <t><xref target="TR23.700-82"/> expands upon the data analytics as a useful tool to optimize the service 
offering by predicting events related to the network or UE conditions. These services however 
can also assist the 3rd party AI/ML application service provider for the AI/ML model distribution, 
transfer, training for various applications (e.g., video/speech recognition, robot control, automotive). This takes us to the concept of the application enablement layer can play role on the exposure of AI/ML services from different 3GPP domains to the Application Service Providers (ASP) in a unified manner.</t>
      </section>
    </section>
    <section anchor="aiml-in-radio-access-network">
      <name>AI/ML in Radio Access Network</name>
      <t>AI/ML for New Radio (NR) Air Interface has these use cases: Channel State Information (CSI) feedback
enhancement which involves overhead reduction, improved accuracy, prediction; beam management,
and positioning accuracy enhancements <xref target="TR38.843"/>.</t>
      <t>For CSI, time domain CSI prediction employing one sided (usually at the UE) model training
done by the vendor and inference done at the UE. This technique avoids CSI compression using
two-sided AI/ML models  where Deep Neural Network models are used by UE to encode,  to 
compress  CSI feedback information and a corresponding CSI decoder is used at the gNB 
to reconstruct the CSI from the received feedback data.</t>
      <t>AI/ML is also used in beam management to support downlink beam forming with one sided (UE or gNB) 
models and positioning accuracy enhancements with direct UE side AI/ML positioning or UE-assisted 
or gNB-assisted LMF-based positioning.</t>
      <t>Protocol mechanism is called data collection. It is for the purpose of AI/ML model training,
data analytics and inference by the network nodes, management entity or UE. Xn Application
Protocol over Xn interface defines a set of Data Collection messages used by an NG-RAN node 1 to request from 
another NG-RAN node 2 the reporting of information to support AI/ML in NG-RAN <xref target="TR38.423"/>. 
UE data collection is done by gNB requested by OAM and reported to the Access and Mobility management Function 
(AMF).</t>
      <t>Radio Access Network AI/ML operations are based on Data Collection protocol procedures which
are used in model training and model inference operations. Data Collection set of link layer 
messages are part of Xn Application Protocol defined in <xref target="TR38.423"/>. Stream Control Transmission 
Protocol (SCTP) is used to securely transport data collection messages
in the Radio Access Network <xref target="RFC9260"/>.</t>
    </section>
    <section anchor="security-and-privacy">
      <name>Security and Privacy</name>
      <t>AI/ML networking raises many security and privacy issues. <xref target="TR23.700-80"/> and <xref target="TR23.700-82"/> 
identify a number of key issues  and <xref target="TR33.898"/> presents a study on one of the key issues 
which will be detailed here.</t>
      <t><xref target="TR23.700-80"/> studies the exposure of different types of assistance information such as traffic rate, packet delay, packet loss rate, network condition changes, candidate FL members, geographical distribution information, etc., to AF for AI / ML operations. Some of assistance information could be user privacy sensitive, such as candidate FL members, geographical distribution information.
There is a need to study how to protect such privacy-related assistance information. In addition, Mobile Core Network needs to determine which assistance information is required by AF to complete AI/ML operation and to avoid exposing information that is unnecessary for AI/ML operations.</t>
      <t>Because of the use of Restful API which depend on the use of HTTP protocol, OAuth <xref target="RFC6749"/> protocol seems to be the natural choice here for authorization.</t>
      <t>One solution can be developed reusing existing mechanism for authorization of Mobile Core 
Network assistance information exposure to AF. The solution is based on reusing the OAuth-based 
authorization mechanism 
OAuth <xref target="RFC6749"/> protocol which extends traditional client-server authentication 
by providing a third-party client with a token.  Since such
   token resembles a different set of credentials compared to those of
   the resource owner, the device needs not be allowed to use the
   resource owner's credentials to access protected resources.</t>
      <t>UE privacy profile/local policies stored in a database can also be employed to authorize UE-related 
Mobile Core Network assistance information exposure. UE privacy profile/local policies may 
also contain protection policies that indicate how Mobile Core Network assistance information 
should be protected (e.g., encryption, integrity protection, etc.). NWDAF via Network Exposure 
Function (NEF) sends the UE-related Mobile Core Network assistance information to AF when 
the local policies/UE privacy profile authorize the AF to access the information. According 
to the local policies/UE privacy profiles, NWDAF may need to protect the Mobile Core 
Network assistance information with security mechanisms.</t>
      <t>Network Functions securely expose capabilities and events to 3rd party Application Functions 
(AF) via Network Exposure Function (NEF). The interface between the NEF and the Application 
Function needs integrity protection, replay protection, confidentiality protection for communication 
between the NEF and Application Function, and mutual authentication between the NEF and Application 
Function and protect internal 5G Core network information. The NEF also enable secure provision 
of information in the 3GPP network by authenticated and authorized AFs.</t>
      <t>Security should be provided to support the protection of user privacy sensitive assistance 
information being exposed to AF. TLS 1.3 <xref target="RFC8446"/> is used to provide integrity protection, 
replay protection and confidentiality protection for the interface between the NEF and the 
AF <xref target="TS33.501"/>.</t>
      <t>As for Radio Access Network AI/ML networking use cases like CSI, beam management, position 
accuracy enhancement, UE uses NR-Uu interface to  communicate with NG-RAN node using RRC protocol
to send L3 cell/beam measurements, location, sensor and timing information. Radio Resource Control
(RRC) messages communicated over the air interface causes security issues because they are not 
protected. Transport 
layer protocol SCTP  is used only when two NG-RAN nodes are connected over Xn. In this case SCTP
should be run below DTLS 1.3 to provide communications privacy, prevent eavesdropping and detect 
tampering or message forgery.</t>
      <t>Any location/positioning information sent directly from UE to NG-RAN node causes privacy
concern without user consent. Location information may be sent in RRC IDLE/INACTIVE state
and also in CONNECTED state after the connection is established <xref target="TR38.843"/>. Location information 
received by NG-RAN node is sent to Location Management Function (LMF) in the mobile core 
network.</t>
    </section>
    <section anchor="work-points">
      <name>Work Points</name>
      <t>Security and privacy of AI/ML Networking based services and applications need further work. 
<xref target="TR33.898"/> provides solutions to only one of many possible key issues. Each key issue has 
been in depth investigated in <xref target="TR23.700-80"/> and <xref target="TR23.700-82"/> from which new solutions 
can be developed.</t>
      <t>We list below only some of the key issues identified:</t>
      <ul spacing="normal">
        <li>
          <t>Enhance the mobile core network to expose information to the UE to facilitate its Application AI/ML operation (e.g., Model Training, Splitting and inference feedback etc.)</t>
        </li>
        <li>
          <t>Expose UE-related information to an AF  ensuring that privacy and security requirements are met.</t>
        </li>
        <li>
          <t>Additional parameters to be provisioned to the mobile core network by an external party for the assistance to Application AI/ML operation.</t>
        </li>
        <li>
          <t>Whether and how the existing the mobile core network data transfer/traffic routing mechanisms 
are re-used or enhanced to support the transmission of the Application AI/ML traffic(s) between 
AI/ML endpoints (i.e., UE and AF)?</t>
        </li>
        <li>
          <t>Information to be provided by the mobile core network to the AF can help the AF to select 
and manage the group of UEs which will be part of FL operation.</t>
        </li>
        <li>
          <t>Enhance the architecture and related functions to support application layer AI/ML services</t>
        </li>
        <li>
          <t>Support Federated Learning at application enablement layers</t>
        </li>
        <li>
          <t>Enhance the architecture and related functions to support management and/or configuration
for split AI/ML operation, and in-time transfer of AI/ML models. The management and configuration 
aspects including discovery of required nodes for split AI/ML operation and support of different 
models of AI/ML operation splitting in which the AI/ML operation/model is split into multiple 
parts according to the current task and environment.</t>
        </li>
        <li>
          <t>Support transfer learning at application enablement layers</t>
        </li>
      </ul>
      <t>The last key issue will be elaborated in the next section below.</t>
    </section>
    <section anchor="transfer-learning-use-case">
      <name>Transfer Learning Use Case</name>
      <t>Transfer Learning (TL) is the training of a machine learning (ML) technique where a model pre-trained
on one task is fine-tuned for a new but related task. Transfer learning assumes a baseline model
is already available in a repository in the mobile network provided by the source domain
can be fine-tuned to quickly perform the same or similar tasks in the target domain with lesser
amount of training data.</t>
      <t>TL support involves many entities in the mobile network. ML models need to be stored in the 
 repository
 entities. When storing, some information elements need to be added to the model, such as 
 identity of the model consumer that is initiating the request, i.e. model consumer id.
 For transfer learning, Base Model ID could be added.</t>
      <t>Transfer Learning solution should aim to provide support for Transfer Learning (TL) by 
discovering and selecting the base models to be used for similar tasks as pre-trained models.
It involves first discovering repositories of pre-trained models in a given service area 
and then sending request messages to the repositories and collecting responses.</t>
      <t>Security and privacy issues in all the messaging need to be investigated.</t>
    </section>
    <section anchor="future-work">
      <name>Future Work</name>
      <t>A use case document is needed. We have listed the identified use cases and elaborated 
 one of them  above in this document. New set of use cases on Rule Based Automation, Autonomous 
Networks, Automated Testing, Energy Efficiency and so on could be added to the existing use 
cases. All or some of these usage areas of AI/ML can further be elaborated in a use case 
document. 
These use cases should make it clear why the security and privacy protocols are needed.</t>
      <t>A problem statement on AI/ML networking document is needed. Such a document should identify 
the problems that possibly need a new protocol to be developed or need to identify extensions 
to an existing protocol. One possibility in that direction could be refining the work points 
identified above and formulating them in terms of existing or to be defined in the future 
security and privacy protocols.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>Security considerations of AI/ML Networking is TBD.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>There are no IANA considerations for this document.</t>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>We acknowledge useful comments from Hesham ElBakoury.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC6749">
          <front>
            <title>The OAuth 2.0 Authorization Framework</title>
            <author fullname="D. Hardt" initials="D." role="editor" surname="Hardt"/>
            <date month="October" year="2012"/>
            <abstract>
              <t>The OAuth 2.0 authorization framework enables a third-party application to obtain limited access to an HTTP service, either on behalf of a resource owner by orchestrating an approval interaction between the resource owner and the HTTP service, or by allowing the third-party application to obtain access on its own behalf. This specification replaces and obsoletes the OAuth 1.0 protocol described in RFC 5849. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6749"/>
          <seriesInfo name="DOI" value="10.17487/RFC6749"/>
        </reference>
        <reference anchor="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="RFC9260">
          <front>
            <title>Stream Control Transmission Protocol</title>
            <author fullname="R. Stewart" initials="R." surname="Stewart"/>
            <author fullname="M. Tüxen" initials="M." surname="Tüxen"/>
            <author fullname="K. Nielsen" initials="K." surname="Nielsen"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>This document describes the Stream Control Transmission Protocol (SCTP) and obsoletes RFC 4960. It incorporates the specification of the chunk flags registry from RFC 6096 and the specification of the I bit of DATA chunks from RFC 7053. Therefore, RFCs 6096 and 7053 are also obsoleted by this document. In addition, RFCs 4460 and 8540, which describe errata for SCTP, are obsoleted by this document.</t>
              <t>SCTP was originally designed to transport Public Switched Telephone Network (PSTN) signaling messages over IP networks. It is also suited to be used for other applications, for example, WebRTC.</t>
              <t>SCTP is a reliable transport protocol operating on top of a connectionless packet network, such as IP. It offers the following services to its users:</t>
              <t>The design of SCTP includes appropriate congestion avoidance behavior and resistance to flooding and masquerade attacks.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9260"/>
          <seriesInfo name="DOI" value="10.17487/RFC9260"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="TR22.874">
          <front>
            <title>Study on traffic characteristics and performance requirements for AI/ML model transfer in 5GS</title>
            <author>
              <organization>3rd Generation Partnership Project</organization>
            </author>
            <date year="2021" month="December"/>
          </front>
        </reference>
        <reference anchor="TR23.700-80">
          <front>
            <title>Study on 5G System Support for AI/ML-based Services</title>
            <author>
              <organization>3rd Generation Partnership Project</organization>
            </author>
            <date year="2022" month="December"/>
          </front>
        </reference>
        <reference anchor="TR23.700-82" target="https://www.3gpp.org/ftp/Specs/archive/23_series/23.700-82/23700-82-040.zip">
          <front>
            <title>Study on application layer support for AI/ML services</title>
            <author>
              <organization>3rd Generation Partnership Project</organization>
            </author>
            <date year="2024" month="April"/>
          </front>
        </reference>
        <reference anchor="IsNo20" target="https://www.ericsson.com/48df60/assets/local/reports-papers/research-papers/secure-federated-learning-in-5g-mobile-networks.pdf">
          <front>
            <title>Secure Federated Learning in 5G Mobile Networks</title>
            <author initials="M." surname="Isaksson" fullname="Martin Isaksson">
              <organization/>
            </author>
            <author initials="C." surname="Norrman" fullname="Carl Norrman">
              <organization/>
            </author>
            <date year="2020" month="December"/>
          </front>
        </reference>
        <reference anchor="MaTeMaFiWeKo21" target="https://www.ericsson.com/en/reports-and-papers/white-papers/accelerating-the-adoption-of-ai-in-programmable-5g-networks">
          <front>
            <title>Accelerating the adoption of AI in programmable 5G networks</title>
            <author initials="J." surname="Manocha" fullname="Jatendra Manocha, et al.">
              <organization/>
            </author>
            <date year="2021" month="July"/>
          </front>
        </reference>
        <reference anchor="Lin24" target="https://www.comsoc.org/publications/ctn/overview-ai-3gpps-ran-release-18-enhancing-next-generation-connectivity">
          <front>
            <title>Enhancing Next-Generation Connectivity</title>
            <author initials="X." surname="Lin" fullname="Xingqin Lin">
              <organization>NVIDIA, USA</organization>
            </author>
            <date year="2024" month="March"/>
          </front>
        </reference>
        <reference anchor="Lin23" target="https://arxiv.org/pdf/2312.15174">
          <front>
            <title>5G-Advanced evolution in 3GPP Release 19</title>
            <author initials="X." surname="Lin" fullname="Xingqin Lin">
              <organization>NVIDIA, USA</organization>
            </author>
            <date year="2023" month="December"/>
          </front>
        </reference>
        <reference anchor="Srini21" target="https://www.kdnuggets.com/2021/11/difference-distributed-learning-federated-learning-algorithms.html">
          <front>
            <title>Difference between distributed learning versus Federated Learning algorithms</title>
            <author initials="A." surname="Srinivasan" fullname="Aishwarya Srinivasan">
              <organization/>
            </author>
            <date year="2021" month="November"/>
          </front>
        </reference>
        <reference anchor="TR33.898">
          <front>
            <title>Study on security and privacy of Artificial Intelligence/Machine Learning (AI/ML)-based services and applications in 5G</title>
            <author>
              <organization>3rd Generation Partnership Project</organization>
            </author>
            <date year="2023" month="July"/>
          </front>
        </reference>
        <reference anchor="TS33.501" target="https://www.3gpp.org/ftp/Specs/archive/33_series/33.501/33501-i30.zip">
          <front>
            <title>Security Architecture and Procedures for 5G System</title>
            <author>
              <organization>3rd Generation Partnership Project</organization>
            </author>
            <date year="2023" month="December"/>
          </front>
        </reference>
        <reference anchor="TS23.436" target="https://www.3gpp.org/ftp/Specs/archive/23_series/23.436/23436-j00.zip">
          <front>
            <title>Functional architecture and information flows for Application Data Analytics Enablement Service</title>
            <author>
              <organization>3rd Generation Partnership Project</organization>
            </author>
            <date year="2024" month="March"/>
          </front>
        </reference>
        <reference anchor="TS38.300" target="https://www.3gpp.org/ftp/Specs/archive/38_series/38.300/38300-i10.zip">
          <front>
            <title>Radio Access Network; NR; NR and NG-RAN Overall Description</title>
            <author>
              <organization>3rd Generation Partnership Project</organization>
            </author>
            <date year="2024" month="March"/>
          </front>
        </reference>
        <reference anchor="TR38.843" target="https://www.3gpp.org/ftp/Specs/archive/38_series/38.843/38843-i0.zip">
          <front>
            <title>Study on Artificial Intelligence (AI)/Machine Learning (ML) for NR air interface</title>
            <author>
              <organization>3rd Generation Partnership Project</organization>
            </author>
            <date year="2023" month="December"/>
          </front>
        </reference>
        <reference anchor="TR38.423" target="https://www.3gpp.org/ftp/Specs/archive/38_series/38.823/38823-i00.zip">
          <front>
            <title>NG-RAN; Xn application protocol (XnAP)</title>
            <author>
              <organization>3rd Generation Partnership Project</organization>
            </author>
            <date year="2024" month="March"/>
          </front>
        </reference>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA7V923LcRpbtO74CEf1gcqKqeJNkWf0wU6JINcckzSEp228T
WYVkFZoooBoJkKp2dET/xkSc83P9JbPX3jsTCVSRdp/2cYQlEpe87Oval4TG
43HiGlNm/22KqrQf0qZubZKva/7JNceHh98dHidZNS/Nim5ntXloxs7UuZsv
q/G7Rb4em3xVjJ2dt3XebMbrOn8y882Y3pqb5kPqmixZ5x+SNG2q+Yf0m411
38gv1Wpt5k3vUmbXzZKunOjveZnZMnrEbVa1fXDRhapu+ldo2BW9E13JyyLH
1qIn+hO7dtZdK6tvkiZvCrxwp5tKiUDpjWwsvViti5y2llelS6uH9OTzzU06
vTi4ukyvbfNc1Y95uUjvmjbLrUsfqjp99/mbxMxmtX36oA+mnlypkivNo1GT
T6ah6Y8Pj98kpm2WVf0hGdM2aE8fJ+kdEf/RbAwtvKoXH9IvpXl4yIuc3sno
mvDpo13ObRM/a1cmL4gdeuU/cmvthAbwI9/SyMTSpglj3FYF9h2u8myfbNsQ
6216bwv7WK3out/ajluOmGOJqheZGd8uq8y68V1TG+dsegxOEAXoPVOvSAaz
hnmT0czv3hx/95Z/a8umpkc+23plyk23DVnbRNb2H41MOMlsUlb0ZJM/WUjc
7fnpu2/ffKc/vn/z5p3++N3xu8MPSZKXD/Hj97fHx5P3377BzyR+IgRg5Cat
StIH0HmezpemJlGxpAJNPncsG2tb80jl3Ka1/Uub15aFkNkvLF/RzgoMUroH
WxPN07ef73giZXHKv4yFzCd1Rpsubc0Skd6YuqFf3DJfkxxWf7bzhp/OvKAc
jY+OZQcnk28PD8fvD3dv4u3n9G7jGrtK79r1mpSnW+F4Zpwldtv6KZ9b97st
7Xi4tGNdmqkXkI1l06zdh4OD5+fnyclivYZQHjw064O7tZ27A1PPl8Sfg+OT
/3ZEc+sOwjj0k/wwPnxzOPlrvt65ZbMOmpUWZkO0d8Otkzr+zpt+Q0uiKxfu
ujo+fHm/tKG5c1U5Iftz8OZ99vDu8ADa0biDopqb4qC2WKkbrw2JmKNfnQVB
/O9sRuz4wWZYmc3GBd0uyf6M83L8djFeVbO8sONS7JKbrLOHHo349fTcv55e
6usinukVv+7NWo86Shw2HVcT2qh5xEb4sjcgV0QlGmhwj+n5zTfxAKeT9Lqq
oT+9909NXQxuxC8HYh+KhMGqQkDGUGtlH7Hg7Ows/VxUM1Okp+Qb2jIY79Oq
JFW0UNq9z5c/fDw7/eHqigfcH5E1m9vVzNYjvkCDXZl7e2XO85/s99Xx0W/k
qS0DC8lOeLY9L/PG+l/MfE7mC4JFbGuWdmyyao0FjqsH8q3g5LquFrVZrcyM
mElsLWOGKC+n0TApDZP6YeCjphfgaDwM2Fv+Cl//c0KbLisyeD22/CfRvSQg
4G+OUvI0ppi8xqKj8eG3L7LoTCmW/gS6kHIRXejWZV4ev3mZzkReV83ZWqzb
WXCeB/OmPKieoND2GfSDTXFjsrvjmghENm589H5syyUZa1C8tF+b8SKo9nhe
lSWpc/5Evimm75l/g9SB3oiMwWn0Bl54gZw9Gv5MA/2FWEJ77JHt+seLTxfT
UfrlbvrNlkU52aYgSzeJ9V01H+nf5H7ny7IqqsWGlvrs0r3T++v9VAl6spug
pv6aPwktsweyq0fHk6O3R9++iSnw9vN4mj3Bx2WpfaqKlndPm2AEdCvETY++
+/9EgJOdWm7qn/MnkmxLQKps5NcP3fqFHXd0L39NZx+zsl3QVcdKC3k9ODo6
yPIHtQ/jjJx9nc/ano3dYXZNsagI1y1XbrJsVkVMvk9htHRGimdtmUajpn6I
lETXtW6XUe4Gf0ljeySe5m75bOqNkf0/Gfe6GSUMcfSijn7/SSnEMlXYhgAQ
vOs0rIlMZrQdQRl0ccc+rkk9YVpJVti6HjE8ODmZvP/uvU44dOIuRuIeM8Ow
kYchUJaTcb8oCQYW+QIUPrgyhBpK2825x45+X0GO9/c8XAQQnDi+3w0GnIjZ
u7+jzb09fEUAXwE+JwH4yCD0F/05zk+2IY8n0hSvNrQaeHeJXSrSWvpNEGlA
gTvk6P9xn4Lx7gibvTl5968DPBqE/qI/x38+3NrneVvOsS5iuhnuNEB6WvZD
UT0rBI8wIAVXJp3SyxuG72cl3CHQuoe+vxdRYLFT4f77ycnhKzDwNe6/D9zn
Qegv+nOcH21R5dZkecUwwDkP2f6YXt/ifybN9efx7fQ6/YEMjCkKAjhuXucM
EX7PHYsuv5+8f/OCq/lnNkyD0F/05zh/GeC/YAOg8vs7DAFZAZYJUCVHIEaW
7MH8fmyHLqTdf54eb15yvf8UPY6ZHsegxxZBhL9/TH/uxzyE+pBsKdK9n8vp
zf7vKt3xf8l4PE7NjFwARcdJktwvc5dm1bxl3aJVPOUZW9zUo7OQPYGovsLJ
g/Qlc+4hLF2a9JTc1ARGWOrnFD9Yt67KDO/RMtYVPACF45hKrX5TCWTuWRP6
P0f6iZ6z2SS92+WCcuday2kgep/QT0m76vmT0tJkNPwsHiyt2gbvUBwwXxKG
uz8XEsyrtiBstbIkIZOECbrKs6ywSfIHUKSuspYtX5K8JvTpkvZO1G/IM1MQ
WWxodqAN+0A0JH/neLNunvMb2I4tF3SLxAyxAy22zYuMNUPGbdKVMMClc7Pm
8IFWPzd1vcEb2E1j3KPD0MuWojUwnoLC0q3zmmZ8qKsVz/lsNvJAOqsNuVoO
P0Z+9A4DsZJCfPpLJtrRumhqx7rfLE2TLkhJHOf0CHfU8pyhsBWcoq3wkOkz
IRSscmYxuv0KBpHSbEJIxAzOQY68wcQzW+T2CazDHBhzhfXKNEadjy00y0N3
TG9fkJ3371JaRgFpLG1bkzCMZKCKbq6rdVuYOr26hLjUFREAukF3Wocl/uPv
/wcv0SQq4f/4+//1VOBMEkXMvfsE868J5Tfm0eIhNmygvnpCz4Cy4t95V0bX
9Y+//4+Ld0ZvEroHVU36bPPFEuDNtSuVcrpNT6ZPpiDJJ60bEKW/bLpZNkQR
WbnSAfTqBpKcjKhCTUE38TN11crqDKpu1dosyPTgvZVX18Fwoio6nq5VlzHS
8YmzpnBVCq2AWIHOS3rNamqIqDxJ7yGo0b6dkK8iASW3weyL31G2FU1OsMOK
TMliM79QEr2wU7+UNXI5EB4RbJBOHnODtU/SJBnyemmeICW8FuIl9l9b3TqJ
WT6xk1F0F0uPl8wrVhokmbXrAddImD6RNEGDmYG1cY3fC/3+BDvGzHZLGqR6
HpPRb9lqEsq47plRhAXX1/Qn0722FALVQhgD9aapvdLDDGSkuyvzV+xtRhb8
kbZVtYulSx3r5vHh0SGzG8nglHAOFgIUuGX5Z3ZuWsfisqGd0mVaEim0aCnF
a0+WXpuTRedAoqaAlohjv85hrkWT/d0JIaVomWmD8Dr/C0QTM7h2DW8Gn0KS
ekBDtWV0De6wsQuUArDntqkATsUqi22iddVMMbqYIo5luejCESZSj6QMX+aF
cS64sEn6E5k4EugC6CItW46vSJB6kioGiFeX0xBx1poeBZ+gzFYFPidRjCyp
/cqenUZcLJWAD9bogvB8bZ4psCpdVW8AE0xqHhAkikFz2JHjnXekBBAIazYr
ZPuxEH6ZZqxmDRtTYgyFzsiw2AGB8LQp1ZC4NaE4llmYERpqQ/Pwnk35GHz8
LF/IBDJ67J1Icgq4pCITQtVmnWfEJ5I9CJXNelYSnnDu8QC0JC/bqnXFZmzZ
fGZRvC5KALVF8A8aqyUnvYpcAVt2YS9L+PSiByYmjKrsTr6RZVvIdtRfzTE2
C8BiOTDR+K2wX2ntk/RPjAESthUW9Y0clFN3qrhALFxF3Cwh8kQdOyG8RY5z
vUQItUZ06ZjNbQmp2ft882Wf6ZJ4P7D9zDU9M0HOam3qzlTmISUrZrIqmQHq
kNhWkorS9p9NnSV+WOFXA9/LcsVL1UKME0MYsw4rAzoyCzDdVW2NXIC3GUAA
wQPCarHYmPljsOwKqzEz8eQKrCImePYplxlxkZZUawA+SDrGWbMpfa7o3pzM
HTnQM4NtegCpYySAcCb1GahGAIGQMrYFgAVwf7Zesd/oFN9rvBj8ZrO24Rey
2mvUOvbETzzkBfTU5X+1o2iAOalNibWAWvKM2x95aeeMJyyUz2XJfPCe8ERJ
EOvgGpyX1Q/pCt5S1kKyPLdrQrYlQN8NZoCH8dnFLb90SgPoKmoAcibO1lO3
eGqSXr04z77W43LXKeLMuHyOFUZoAVLD8QIMjSbG8PNDCwOudED2Tnd/ASS4
8yY8YOfi2QGHB+AZ6CabMed1klbZiTDNnS9KNvfIcgZT6aVYuBIknKRy+god
mYz7w/0xV8gwxC/CWuvWEF4x3H8y5D1aN3hMJWSUnnaaAMdLZpLDKZA5ch3b
drxDhDDPQANcSM87Cwm7SCCLttt3fqLPa2sFQVZEKEG5iEkm6e0LcsJisu/X
ajiBVNEqRFu8tHphYF9P7FDIwS4EpohDz/uwdnqLRgVtHLm7gOX8CuQhrJeN
QW2fmJTOwCJjrbvMyDNFjiRQML0e65ZwvMycctGCIpF9xbYRTUvxD0YIqU4x
2qPuDZ5GcZeEX1ycLpikoxQAR4nrnjkyHME3Ijyd2Szj37GPEOEPAQmJINdW
YcnI+m3EpcX+bJQuq2eShnqk9xi68b7Fg9OmJRjWOEzNci/qT36glecuRswp
Cl+r/K+6E/rZjlV1SYTI7rqGl0/kz3KBFYjuyGfApY7S/2oNg56EmHf2FWBJ
Quv/qs72A9kCE0VkaAXbEjhSce1dQhqkivhFW7gQpsKph1DIhyqPZfVcAiwH
8x9Sl7FAKLNDvINrFuxh7nsCIfstUIwYm/gdEMubeF4QYyBvxCTBbitTP6IK
4Fp6Fj6KEG1ZrdgeMNpKHD3SpA8EFSuQHNXB+UQW9OUs/eUX32Xxt79NYhER
MvZyJ3T12bJdRHsMEkhE9prTnEbSnJ0mTxGudE44gemZWdkD7Aamv7bPmiXd
u77d72f/JukXh5jIKdpR78fEsr2s8t7p3cV+AtVnTCCVRE4EjGhGs4IsE9Pl
AhlXZjsLjA83olccEYTrnEyNQc7M5CuGrWopX0x07sqO9ZNjPk/FWrQyG+9Y
yFXVTPeQJBTpgT8spOsFAcOuzJchcZ+LgYvUEYmqew/D8Ph2+Yd26R+AjHtN
AJdFAolzccsMRwtCB8G9HJgg7aMWXiNdrIfNDzlf4sTGWwFfD+d0grfHEt+H
1AEJDjIZkB9oSi1IerYRe80lddPBS2cb7xU6YMx5xjlRbVyYmeXQunvBm/d7
9Wm7nBh7txLNeLBBPTxLEyIIKdqMU11+Ij8A1BQjOnFE4bVAWQd3a5kLBBxr
bngqOKiL4xZ6KGvn4qkrLRIUFUHc9As9VIipqGQ82mH1zMyzPkeHFIRbVj54
Ai2RdpMAhJ6b546TSy5EXkRyjhDNgPAjOH0ocMxw9mqzjaIcz1TNrPQzJhpy
xnzOLCAyrzNra393SKkI+A0yFSEsYYgXsnBRuNKLRATJ7YosWWLW6PFhiiG7
0Ukgca/0wIA9k4oFrxX7B/F4x5P0fEtcdFK1fOv8K1CEBsgQj5HKIa0BzYYN
S5PcNy2s4jM8r05HcYCtd6QkPKnFLgKBIph10lNG7y7MyiKqi5LuUMeOV8P0
VupNNVuCWUg4cIay9Kris4j0EJqK5owHqxnKEmRzOPfRE+XOX3DCWsbknDVt
SysDkqtwu6ASbAWnuYOECCbtlL5LPu1o8csln8UVBMkdMBlSbTMB3BY+64TC
TQ35MZLaNQYFhO/hDSC5wJxkpAuJGkgZ+uvesbCwfpMupAdKs8cqxQ3cqa+l
hkT0wPzwvBT2kqN4cVrANbIYFEOGUH5eVK0sGjet4HfTf1KnAFqkFcUNBMGZ
YcEEIhAld7pf0kV527F1AEYK3j/l3jmiN9sf/qXHP5bnGuE9O7OBf9eXSRtD
Bgq7UfJ1kxAdKJBmWyJTBHqJ8CkCwEqDn/Ey/5wXnIbRbjQrK+U9agSCfBsw
yMKq3Z173qXtGkU4pzwEXmMK7Vyk6pb3aL4OIuaiARHKWKuHLJswW7hGt6OP
Y+/8cj+aXF5mytaeN32xA83MYlHbhbSpRbtyotig/Djyv0ySDseqh+Nw3dA4
lpX0tVYZsk+ERRmfS+uHal7wg7oyA4e3wKvPEPOZCA+xjVfQsbbRAilpN+Cs
eijXV5jeTDJ+RhJaVCaL843TC0+tzmENRAmsiPwCzajthB0L81X3OAk2BfEu
3ZNYbwHtDn3I6mb2+/qpK3jKDdpCWnIMJeHpL8RZnwASmutznn2ajItm8Lv6
cuYkMlQ5jQUzlK6+NiIz8kzWlxJg4MgS6HJpXL9KbuG45IV+6i00iSjlehCi
xx9PDfT+dSyFEbprVxS+MGgka2F5CGfUHe1s12IQO4NSaVEmtm9sOWdt9Krn
c99XYI9dro9NBhur3cLNejecNrNbE3N8F4Px3GfS/UvBGut6fvlFW+X+9jeK
RgjLx51EyCmhvk0eaWXZjIGOPnJwvqCkXTSqBL2S+t7dx+k+W/E6R6B17SGA
7+hBWvjc7Qu57VekprpeLQ+Xbs/u7h/aolfvv9E6LjZ14WM6ioNuLmg0TqbG
JXCWaC3xa2MC4YBEU5sO0IdWwl2lbskVPsCFdoaGmRnSoBEQYIqE5audVzz0
yy/SAI7gjrbeNUGgwA5I34VWYgFuuJE1/d5uaBcPKLtp8jTdu/n+Yl9DS1ql
lVAQ+pX0MwDzqu5Kh8TDcw9PRmLHcd9XCN9+Pu0yBubR7BpjlEoqGvtM1Aj4
/X5gy+C5OGis8jwllv70aXq+H7eA+GdI7LXHPDnFnH6ooTyA/j+sVU+FHVch
yk73fpheUfQ/LVOeiQNcRYxMmaRbVFEtGNQ+hMVNy8vz/Q8U/G3dynW8ABu8
rQ+gf4Tqac0NCN2eYizBC2XNCjHv9gqu7mkFOoe6TR/RJ/22JZ+qRMcGK4dj
tkRxYh15yVg/BFZWnoSyijThDDD6Slhz4Z3L3msdD4mBoDAB1HNOHtiuItyd
KVF6Y0hYVuTPupt7bz/f7ad7ss9hfhSSSA+ksRTsj7jl+Jpv9Pva9kVZv5yR
aDgMxLUwWs9re6bgFO01CDW4/YkN5WzD86sU8vSJl0LOVfnzNNBhusUCVqM7
hAMHnwv3NSRfvZQ8r8TsAUKzi6S9sHqRXI+ImG4UriRw7S4PaTN24X4tt/7e
Jlas23Mi0pdScgCsf7FafPl0te/Tb0wv0hMFwt3K4mLiiiKV1h9d2ru5QqUF
tugmeuaCYjoiMAKnve9hXmls4uZDvmiVzl3+q3NDpsAhr4GOqkFgsWnrMtIh
DesTj2eIsx3dlGy6oQkZBglgEGcyDU4lRJLe/KqmbQ6kOdn7dHp6LmblisRK
gN958GvTzKxphxGlr85hwbBoNHKVWuBlr+0xgdQ7NTzrEi5azEa50iFAZiHw
YsM3VXZwBoYbXMj1EYGikDe4yTMoPZ/Y6UTgjNaVP2jbEqkvTsy1DjNPz2nI
MyG1aImizgPpOgqK4s06/BGFf1kr+e0nkxeMr7+c7TlGjRJ752sJmaLRgpJ5
se1QSzBhBK+mhatGPV3zWxus0VnPQFIoQDmanBeJXMz5JUFXBp2c5ktEjATO
FLlUvaXJkgSaq5m8AQacZXDjiro4L0xEkhY9tEexLgm0SqRdYob8mx9ZiKGl
U3+RYGKWA8nKbQUwBFIeONAjbw1fJCUyTJzQCvCj6dmYY7IxEggDIMfdmLt6
e4n33PBJG9NDbHqsLRQN4yxUUiITNqt4eu0EltBUDCmLn+RQuUL2LCE2ZCrL
OhDeg3NxgiHR5mufJduVEfHRKGKcpqstwCrh7WFGTW4n0WKhP1/OKPBtQnmE
FMLlnKkBxWcUPQ8n7S2MIVs0P3M4mgEJ7D/o4rG9H33d40rqHkny47ASMpcu
FnT2VBxQ+tKIFkSyuiqVzBfVvcLiQZEkMVohXZk/o7cngFDtkB2rqQzA3hvK
zuMj9CGTWhhOfpEcoFBMjt36ODQYD++jtkcRUYkCEZW0rFqxKUpUCnw1iLGn
QUMHK80KYVjN4GOjUHuUShqP88mQHSAgKYdzPn5M0tW3RS8tzeMGEBvJR3fQ
JUm7+NaW2bipxrZ/rMOPIukM8giSYeHetV3lLZKMrIVdp3nrthQxiitToZ2j
X3ZLjJ+JFgLTWfcVRvaghQqNjNfhaMZox+EFSA2CmBRpUgZprxxlSLbPMujx
hrp/JOSSWyL27s6m2gvvhdrFTbdkmvQ8B8cv9HCfCKrNy8pFGc2zbBGKLH3i
8ERfzriQrj1KeJh4cvaV89J8BxU4X60MqkY36hR9A5qiaQboVlo8OkKEnC9U
S4JUERU0/5ZszOzg1LYkhNnr+NICykc0eVhFPKNQMNn7ERRU99mjV0p3sG7Z
CRNPO3EqrgYQ+OTEZVDghFg8cAYA+bQul7Zrny/uKwcHZjQJouGmqgpumpOq
l1U/KlJASPxBPM9s0yPGE0M9wrNxu2ooozO/5sjiS/8ZNDuOyLV8Lyl8NseR
D8eBAgCGzQ7E4dflg++gv7Hb6HImwBWJPzo/6udxPJTqiabmv7jUfrCrLl9X
5Cp87DOKrPc+Ngn5M4/c4Bm1vaJ/yIt2vBnbaZ2wmPNOMMSx+bWR+e0fOh9a
XQ7TvcnV6WPZ86p9EzIXe9O7m/10ly3mHA7Plu9GEb4Ezydi+vXxaV5HuZSl
dJ+7Tk1xcFur5HdcDboYVslTXyVPopK3r7H5FjvY0qU1mZQffdsEZ9CzUDMf
RSWxP26V2Rl8/JZSuz+ZxNV2ZEZoldIgogTHhbj6ZskwVXLIgcJxxy54r3Ut
lxfUin3xXSEdGMrwtIaWpGIZCh89GMIPhPe9zPnOYsLeVU56j8VwtgydIlUp
SaKE+DaWlUTaQh6CE9fSrKz94gFddy1O3BBBKyPFZis45/Q9fk78TCnPGxoc
hvkMMzhSg4czi3E4y84T6M4W1x8ZM0D1Ssll8XUev6uNcs9/1s3ISW8vmB7o
+W6UAe85MlDgyzl2ZIX5Gaya8/korUTco52jTnn9cR9tryGh8uviwwNlOYrv
IB+GUw7E77LRHIsdRPgjc3UXLq/O9RBq9Bbt9sZ3YKws8tm5W3F/njj9uPLH
mWpBwN5qrtuaU6XBtAwqkUNQ1ZdFlVNv9TX7HJEYNaJm48H3z70UUbduxkQ/
l11LjQIJbl60bDmH0fmKY2/rglSS4Yzh/pF4S8k2SRjjW/Tix45VjiAE0v7b
E9pIQoIp1NfVIrw5PuHQi7g6oDTjIVVmSLMuRlbrAxeZufOfamEl+ae154ic
URpienW+T7zfGd4NImtR31BZGpIyNPB0eFIMbRK0HucmtkOjYdTVTTjZmkTZ
yDomri4JLJS+hpof6ItIGkTEI0taSZ/yd00NlT0Vf4xkaelWuRi9TsL27k7v
b/aDkeGcAD5gglYWvCFGYMBAv0CfJt9J619+0Y8CSZbvD+muLz95ixS1VREh
AfG4cr+zS0r6ribDVCI/M0R7iR4Q3CDbHtqwH204ZRjekqPy9Eo4RGT0SFwl
h30UpUTvJuJ1ufA8g2o2Jodlgc8gCRyuz+nnq4bIpUMp3FHO7SNdAjbWOh8F
+88mIRtEXpzsOwkRiZzZhN+4qUjuR8fGBHSmUgQng9TlWM4vNbFDVxe20nMI
po8Y48WEHsQKmTVp2EgP0p56kRCik+XlDc199pijEc9gNJHkAI6jsON/YaGT
RApTuVRcVMiZs0uEqtw3iihOJvPfWvP4fffKpSs9yxT67kq/YSrGmqFPyle4
dtOCG6Q4y8SGcHouvWSI4pqtnKDUISsBNSJNXEqPTTR395JeoyMeCltvor6a
iElJ8lFPaaiI64+3ZJS5JnhzoSvP7BoxnqJvfexP9/c3wVSOyIC35NJZ+fGd
MFYotTXOWmm+nEkk5Ruu58sK2Ju5xP0sWkrwbffoRna+614j5O4YSG2lzme/
5tyDHDn7rcGw3p1liRd4EtSUpVyL9uErLVH7g1+E5N5oSsUjSX/6bmnJK3QS
Ytuv+CSQ67UTSY527PsGWmRfm5Dmmfn0v/ZWLvMan0dCuCgvCtxC6vzRkgjr
6VyIPc6h81W0O5B6FbZ/VEa91BytidwJJccculNGApV4mGV3AAg9RBxdhr4s
VQtCHFw0QrZIhtCThRih//Y3rjdtExqVVW1ZBEK+PwHg8IaEnnggXst3vwgb
4oQybQwHPMRjGnZt3MEdwm1alkQo2qjo61qAoN4oJLsU/ldkaJL++sqQsk/k
NK3WWnWTDEf8U9q3n0mbE4zYP7GcpCvZdQTU2J7ASr1Za7hIkHOhn1P0SxCb
T+G81JvQOeJnC5nQZFBHcSLEyx79/on1in95Rpkh6Zp5PC0OtmkacYyB43kk
MtLgE1lxwixczFqEPOyvjk9+pyu3eX/iXciLdc8XdscKGVBOMA8wytt1+4DM
tIsjTslJAVtST7SeKFG0o/TsAJOJNzsZ2OefP4fj4w9/NM3XePx5h3iaTgRE
2XeLEiH8wvQvcc1TNb3/uBzPjT81R+Zux1J27VbKmqu2adGQ2beZvzZGtxU9
Ms9cZnLAHvvquodYPdm692NCnyWhpSwUMy1IfBBYKaLmfJUfFUFct2w5FB3X
26fnkJcAr3sKLhWOKFzT/HjT1QJ3Y69YYpN4heF7D5UGDOwYL+/So8mJ+DN8
FJT8WRRTdFXpXZKQbImCPxH5mjQ0v0kuE1JUJJHlO09SDJxKlP9KhBiFIyEz
RyHao5Xk1otHUsh470hzjDRFT7Pcjr+00aqJNNstq3EYLqji9vY0oIOEQzTa
3eVJOrdFcSCLiboMRlKMY9JKP7ZQI18NIOJESXDr/a3GiskeTbjfZRKiFUan
bntHfVIGkK4zZRoi9b4ZwK1d5PiT4HgmEpayYCZ6qNSjIASmaRAiPrPMXgAH
ffvF1t65T02ZdJ28XP3AYJHnq9tSj1t88pIbSem8/0lLVQ1Olz5x7sY8WZfV
1XrtA35A/Dlq22a1lpoAes+FfpC1ha03LHkU03rmHMQZrl6Ux10euRxIkRSN
ZBZjwVB669oSTqVHH2VhnUaCkMaapJc6ZW8abbxwcoSSZezi0+XZwcX19PT+
4sczOY6QSKcJWTAkcn+4vj47vT/7pEcV5GMEmsovu+wOBQ5G+vyyfoJ490qS
kK4kSxdvEgcANR8ZXrzakfTZu7w630939Oz5o/JkHpGB+AkaflOR1LrIXg4/
fzf87PSvfd6OMYA/9KVfFxlkFLRJz4cO7KJZojWxwMmOUHbvUgx6kj1c4IpB
wm2X/BWLdcNJf5wqXfjy+29Ji7BQSZiBtoRuXckwvMJJECs9GaIwvGynYf0g
IdJ9jekDCfu/6fc97RZbvGPjjnyGMgPEp33ZDfrM50A43B1D0Oa1XjQFsf3e
wFF6h3M5zXbXQnfaEJiWlytriXDqYFno5DtPybQ7f97JNN3hPa52qkz1PlgN
A7WyOFTzb+k0C8Ec4TOzsvKBpSq4a6CCLu25i2qS00V4WOswzSZ4xN/cuser
+WlpWWqx9qXW7UMc/dL80n2llcODkIuq2n70jebfGqHgWAx47V3iFhxp4tSk
StX2ynUidAp5Z6/JQ/KGa1Zq30JEosNA7nz/37HLiz4XY2CkefoXhFPjB+jE
0hbrKJ6QsrZ0AAoQ0Nb9ql37/qp+dtDncc+HPIiVZOvTi14Qu27oiHbbX+Ee
fHmbRvefJN91nqN5teTq/rXFRcl5/YZPr6ORWwgcVHO73U30dMwlxPBx934d
xh9a6U3Sn4GYo8dpo5bR3HG3Cxv6kG0TGPHigrRTXbbVy9f6WldYW9QYG6xO
OIO7o7XvIBzOkJlJiKvumxEJZMYhdtUY1dfN9cMHfHxRPjX3lNdVCTpMYqYH
4hW/necga4EPqnROx4swsXtW1XGbGR/2cOr42T/408oyb5A1HAQ/JT/KB5UH
9/bu5ehF7zgJfxtk9zfsupKuVGeN1lsInvljTonm7P0BT5RIxk1b6sF16bzH
GZLQpUEPTrp1d/RyaBpDLgwoAP/mhUyWcAm1tibbRE2dnFGqu67ind8R2DI+
Cr6lWO4dcLRi4joJ6vwRn0GLTt44s+LmPUe4Hic35WuBOqX2amoBXs7s4RRj
nXTfOekfiCKARFFckPPQSiCfBUO1Mu/O3PV3NIm+sxR9m7FLs3EgFhEmCQNO
4IJKfpSdNQOLXvbMfw8wGrjXPcnzdoWCREGIHE3tTgX59r+QFs/RtmKCo9Mi
pJziGL6TEwzi46RbCjVKPyK8EMxx8akraPAaAfm35T0kkDUeMfkqjj7if0nh
BWVBh643ZR7Y9ButOKWpLBGiha829OXFuFhvvHFNLiIJeMhr16TxfHFTPci8
PYKognxQwDcm4VMk4QMZHOZkMpjUokO4qYztTSLWvfBblFYJZ3t5jx3fEMUq
Cjllvwo96fHnQyPszJbrvGXv9pN08XTdc+H7EblIInj7k5XvqhTShMD5iO5z
pF3egC10ZzqTqJq4wr/0QlQVJYm+UzHhxiHNundDoW25JcX7yCHJVL98B585
7b4Z4jOHbuSfoGfvrX6g5ay09WKTnul3yTxwRTwykF7PiAAIsY6EFzJJp/jw
Uh0HAtzFxN9N4k/OBJ8Ig+ajoy0nYjoSJ93ek/t+U5TXlBW+xInvGED9yPqr
/dwlAN0ROjlQZlUd+cAYfJ6EsMzTADGjtM8uht+xjelu6apCiTnR3BqG1yy9
xnSaKBa/EzIcIoPRB83qIJthTK4COYnNJAIJ7PDjTFIUyGQmaYzItfonSYRe
obVGu0D4kgO7I4HOSSS7IpP8jTIyxG0RzOSq92G0sJKqDnsJzQgY/0G0KXmd
Qxyc9zsETnGUKfMVykjH570bO8N1Ytj9x08TOWt5Mb2ebo12Hw4qlpU8MRhW
gqlYHeXg5hwfDipsJpDTcWhsuou+bdT/c1kSZv/JuqVZpWfFR/NInn6DsfAV
Yu7h+19OCaKILGwAAA==

-->

</rfc>
