LibNGAP_Templates.ttcn 758 KB
Newer Older
Yann Garcia's avatar
Yann Garcia committed
/**
 *    @author   ETSI / TTF033
 *    @version  $URL$
 *              $Id$
 *    @desc     This module provides templates for NGAP protocol.
Yann Garcia's avatar
Yann Garcia committed
 *    @copyright   ETSI Copyright Notification
 *                 No part may be reproduced except as authorized by written permission.
 *                 The copyright and the foregoing restriction extend to reproduction in all media.
 *                 All rights reserved.
 *    @see      ETSI TS 138 413 / 3GPP TS 38.413 version 16.12 Release 16
Yann Garcia's avatar
Yann Garcia committed
 */
module  LibNGAP_Templates  {
    //  LibCommon
    import  from  LibCommon_BasicTypesAndValues  all;
    import  from  LibCommon_DataStrings  all;
    //  LibNGAP
    import  from  NGAP_Constants  language  "ASN.1:2002"  all;
    import  from  NGAP_CommonDataTypes  language  "ASN.1:2002"  all;
    import  from  NGAP_IEs  language  "ASN.1:2002"  all;
    import  from  NGAP_PDU_Contents  language  "ASN.1:2002"  all;
    import  from  NGAP_PDU_Descriptions  language  "ASN.1:2002"  all;
    import  from  NGAP_Containers  language  "ASN.1:2002"  all;
    import  from  LibNGAP_TypesAndValues  all;
    import  from  LibNGAP_Pixits  all;
    group g_NGAP  {
        group g_NGAP_PDU  {
Iztok Juvancic's avatar
Iztok Juvancic committed

Iztok Juvancic's avatar
Iztok Juvancic committed
//            /**
//             *  @desc  Send  template  for  NGAP  PDU  with  InitiatingMessage  payload
//             *  @param  p_procedureCode      Procedure  code
//             *  @param  p_value                      Message  value  according  to  the  Procedure  code
//             *  @see  ETSI  TS
//             */
//            template  (value) NGAP_PDU m_initiatingMessage(
//                in  ProcedureCode  p_procedureCode,
//                in  NGAP_CommonDataTypes.Criticality  p_criticality:=reject
//                //in  anytype  p_value
Yann Garcia's avatar
Yann Garcia committed
//            ) := {
Iztok Juvancic's avatar
Iztok Juvancic committed
//                initiatingMessage  :=  {
//                    procedureCode  :=  p_procedureCode,
//                    criticality  :=  p_criticality,
//                    value_  :=  omit//p_value
//                }
//            } // End of template m_initiatingMessage
Yann Garcia's avatar
Yann Garcia committed
//            } // End of template m_initiatingMessage
Iztok Juvancic's avatar
Iztok Juvancic committed
//            
//
//TODO: check value_ not allowed anytype                        
//            /**
//             *  @desc  Send  template  for  NGAP  PDU  with  SuccessfulOutcome  payload
//             *  @param  p_procedureCode      Procedure  code
//             *  @param  p_value                      Message  value  according  to  the  Procedure  code
//             *  @see  ETSI  TS
//             */
//            template  (value)  NGAP_PDU  m_successfulOutcome(
//                in  ProcedureCode  p_procedureCode,
//                in  NGAP_CommonDataTypes.Criticality  p_criticality:=reject
//                //in  anytype  p_value
Yann Garcia's avatar
Yann Garcia committed
//            ) := {
//                successfulOutcome  :=  {
//                    procedureCode  :=  p_procedureCode,
//                    criticality  :=  p_criticality,
//                    value_  :=  ?//omit//p_value
//                }
//            } // End of template m_successfulOutcome
Yann Garcia's avatar
Yann Garcia committed
//            } // End of template m_successfulOutcome
//              
//            /**
//             *  @desc  Send  template  for  NGAP  PDU  with  unsuccessfulOutcome  payload
//             *  @param  p_procedureCode      Procedure  code
//             *  @param  p_value                      Message  value  according  to  the  Procedure  code
//             *  @see  ETSI  TS
//             */
//            template  (value)  NGAP_PDU  m_unsuccessfulOutcome(
//                in  ProcedureCode  p_procedureCode,
//                in  NGAP_CommonDataTypes.Criticality  p_criticality:=reject
//                //in  anytype  p_value
Yann Garcia's avatar
Yann Garcia committed
//            ) := {
//                unsuccessfulOutcome  :=  {
//                    procedureCode  :=  p_procedureCode,
//                    criticality  :=  p_criticality,
//                    value_  :=  ?//omit//p_value
//                }
Yann Garcia's avatar
Yann Garcia committed
//            } // End of template m_unsuccessfulOutcome
//            } // End of template m_unsuccessfulOutcome

            group Send {

                template (value) NGAP_PDU m_ngap_initMsg(
                                                         in template (value) InitiatingMessage p_msg
                                                         ) := {
                    initiatingMessage := p_msg
                } // End of template m_ngap_initMsg

                template (value) NGAP_PDU m_ngap_succMsg(
                                                         in template (value) SuccessfulOutcome  p_msg
                                                         ) := {
                    successfulOutcome := p_msg
                } // End of template m_ngap_succMsg

                template (value) NGAP_PDU m_ngap_unsuccMsg(
                                                           in template (value) UnsuccessfulOutcome  p_msg
                                                           ) := {
                    unsuccessfulOutcome := p_msg
                } // End of template m_ngap_unsuccMsg
Yann Garcia's avatar
Yann Garcia committed
            } // End of group Send

            group Receive {
Iztok Juvancic's avatar
Iztok Juvancic committed

                template (present) NGAP_PDU mw_ngap_initMsg(
                                                            template (present) InitiatingMessage p_msg := ?
                                                            ) := {
                    initiatingMessage := p_msg
                } // End of template m_ngap_initMsg

                template (present) NGAP_PDU mw_ngap_succMsg(
                                                            template (present) SuccessfulOutcome p_msg := ?
                                                            ) := {
                    successfulOutcome := p_msg
                } // End of template m_ngap_succMsg

                template (present) NGAP_PDU mw_ngap_unsuccMsg(
                                                              template (present) UnsuccessfulOutcome p_msg := ?
                ) := {
                    unsuccessfulOutcome := p_msg
                } // End of template m_ngap_unsuccMsg
Yann Garcia's avatar
Yann Garcia committed
            } // End of group Receive

        } // End of group  g_NGAP_PDU

        //9.2
        group Message_Functional_Definition_and_Content{
            //9.2.1
            group PDU_Session_Management_Messages{
                //9.2.1.1
                group PDU_SESSION_RESOURCE_SETUP_REQUEST{
Yann Garcia's avatar
Yann Garcia committed
                    group Send {
Iztok Juvancic's avatar
Iztok Juvancic committed

                        template (value) InitiatingMessage m_n2_PDUSessionResourceSetupRequest(
                                                                                               in template (value) AMF_UE_NGAP_ID p_amfUeNgapID,
                                                                                               in template (value) RAN_UE_NGAP_ID p_ranUeNgapID,
                                                                                               in template (value) PDUSessionResourceSetupListSUReq p_pduSessResSetL
                                                                                               ) := {
                            procedureCode := id_PDUSessionResourceSetup,
                            criticality   := reject,
                            value_        := {
                                    PDUSessionResourceSetupRequest := {
                                            protocolIEs := {
                                                    {
Yann Garcia's avatar
Yann Garcia committed
                                                        id := id_AMF_UE_NGAP_ID,
                                                        criticality := reject,
                                                        value_ := { AMF_UE_NGAP_ID := p_amfUeNgapID }
Yann Garcia's avatar
Yann Garcia committed
                                                        id := id_RAN_UE_NGAP_ID,
                                                        criticality := reject,
                                                        value_ := {  RAN_UE_NGAP_ID := p_ranUeNgapID }
Yann Garcia's avatar
Yann Garcia committed
                                                        id := id_PDUSessionResourceSetupListSUReq,
                                                        criticality := ignore,
                                                        value_ := {  PDUSessionResourceSetupListSUReq := p_pduSessResSetL}
                            }
                         } // End of template mw_n2_PDUSessionResourceSetupRequest
Yann Garcia's avatar
Yann Garcia committed

                    } // End of group Send
Iztok Juvancic's avatar
Iztok Juvancic committed

                        template (present) InitiatingMessage mw_n2_PDUSessionResourceSetupRequest(
                                                                                                  template (present) AMF_UE_NGAP_ID p_amfUeNgapID := ?,
                                                                                                  template (present) RAN_UE_NGAP_ID p_ranUeNgapID := ?,
                                                                                                  template (present) PDUSessionResourceSetupListSUReq p_pduSessResSetL
                                                                                                  ) := {
                            procedureCode := id_PDUSessionResourceSetup,
                            criticality   := reject,
                            value_        := {
                                    PDUSessionResourceSetupRequest := {
                                            protocolIEs := {
                                                    {
Yann Garcia's avatar
Yann Garcia committed
                                                        id := id_AMF_UE_NGAP_ID,
                                                        criticality := reject,
                                                        value_ := { AMF_UE_NGAP_ID := p_amfUeNgapID }
Yann Garcia's avatar
Yann Garcia committed
                                                        id := id_RAN_UE_NGAP_ID,
                                                        criticality := reject,
                                                        value_ := { RAN_UE_NGAP_ID := p_ranUeNgapID }
Yann Garcia's avatar
Yann Garcia committed
                                                        id := id_PDUSessionResourceSetupListSUReq,
                                                        criticality := ignore,
                                                        value_ := { PDUSessionResourceSetupListSUReq := p_pduSessResSetL}
                            }
                         } // End of template mw_n2_PDUSessionResourceSetupRequest
Yann Garcia's avatar
Yann Garcia committed

                    } // End of group Receive
                }
                //9.2.1.2
                group PDU_SESSION_RESOURCE_SETUP_RESPONSE{
Yann Garcia's avatar
Yann Garcia committed

                    group Send {
Iztok Juvancic's avatar
Iztok Juvancic committed

                        template (value) SuccessfulOutcome m_n2_PDUSessionResourceSetupResponse(
                                                                                                in template (value) AMF_UE_NGAP_ID p_amfUeNgapID,
                                                                                                in template (value) RAN_UE_NGAP_ID p_ranUeNgapID,
                                                                                                in template (value) PDUSessionResourceSetupListSURes p_pduSessResSetL
                                                                                                ) := {
                            procedureCode := id_PDUSessionResourceSetup,
                            criticality   := reject,
                            value_        := {
                                    PDUSessionResourceSetupResponse := {
                                            protocolIEs := {
                                                    {
Yann Garcia's avatar
Yann Garcia committed
                                                        id := id_AMF_UE_NGAP_ID,
                                                        criticality := reject,
                                                        value_ := { AMF_UE_NGAP_ID := p_amfUeNgapID }
Yann Garcia's avatar
Yann Garcia committed
                                                        id := id_RAN_UE_NGAP_ID,
                                                        criticality := reject,
                                                        value_ := { RAN_UE_NGAP_ID := p_ranUeNgapID }
Yann Garcia's avatar
Yann Garcia committed
                                                        id := id_PDUSessionResourceSetupListSURes,
                                                        criticality := ignore,
                                                        value_ := { PDUSessionResourceSetupListSURes := p_pduSessResSetL}
                            }
                         } // End of template mw_n2_PDUSessionResourceSetupResponse
Yann Garcia's avatar
Yann Garcia committed
                    } // End of group Send

                    group Receive {
Iztok Juvancic's avatar
Iztok Juvancic committed

                        template (present) SuccessfulOutcome mw_n2_PDUSessionResourceSetupResponse(
                                                                                                   template (present) AMF_UE_NGAP_ID p_amfUeNgapID := ?,
                                                                                                   template (present) RAN_UE_NGAP_ID p_ranUeNgapID := ?,
                                                                                                   template (present) PDUSessionResourceSetupListSURes p_pduSessResSetL := ?
                             ) := {
                                procedureCode := id_PDUSessionResourceSetup,
                                criticality   := reject,
                                value_        := {
                                        PDUSessionResourceSetupResponse := {
                                                protocolIEs := {
                                                        {
                                                        id := id_AMF_UE_NGAP_ID,
                                                        criticality := reject,
                                                        value_ := { AMF_UE_NGAP_ID := p_amfUeNgapID }
                                                        },
                                                        {
                                                        id := id_RAN_UE_NGAP_ID,
                                                        criticality := reject,
                                                        value_ := { RAN_UE_NGAP_ID := p_ranUeNgapID }

                                                        },
                                                        {
                                                        id := id_PDUSessionResourceSetupListSURes,
                                                        criticality := ignore,
                                                        value_ := { PDUSessionResourceSetupListSURes := p_pduSessResSetL}
                                                        }

                                                }
                                        }
                                }
                         } // End of template mw_n2_PDUSessionResourceSetupResponse
Yann Garcia's avatar
Yann Garcia committed

                    } // End of group Receive
                }
                //9.2.1.3
                group PDU_SESSION_RESOURCE_RELEASE_COMMAND{
                    }
                }
                //9.2.1.4
                group PDU_SESSION_RESOURCE_RELEASE_RESPONSE{
                    }
                }
                //9.2.1.5
                group PDU_SESSION_RESOURCE_MODIFY_REQUEST{
                    }
                }
                //9.2.1.6
                group PDU_SESSION_RESOURCE_MODIFY_RESPONSE{
                    }
                }
                //9.2.1.7
                group PDU_SESSION_RESOURCE_NOTIFY{
                    }
                }
                //9.2.1.8
                group PDU_SESSION_RESOURCE_MODIFY_INDICATION{
                    }
                }
                //9.2.1.9
                group PDU_SESSION_RESOURCE_MODIFY_CONFIRM{
            } // End of group PDU_Session_Management_Messages
Iztok Juvancic's avatar
Iztok Juvancic committed

            //9.2.2
            group UE_Context_Management_Messages{
                //9.2.2.1
                group INITIAL_CONTEXT_SETUP_REQUEST{
                    }
                }
                //9.2.2.2
                group INITIAL_CONTEXT_SETUP_RESPONSE{
                    }
                }
                //9.2.2.3
                group INITIAL_CONTEXT_SETUP_FAILURE{
                    }
                }
                //9.2.2.4
                group UE_CONTEXT_RELEASE_REQUEST{
                    }
                }
                //9.2.2.5
                group UE_CONTEXT_RELEASE_COMMAND{
                    }
                }
                //9.2.2.6
                group UE_CONTEXT_RELEASE_COMPLETE{
                    }
                }
                //9.2.2.7
                group UE_CONTEXT_MODIFICATION_REQUEST{
                    }
                }
                //9.2.2.8
                group UE_CONTEXT_MODIFICATION_RESPONSE{
                    }
                }
                //9.2.2.9
                group UE_CONTEXT_MODIFICATION_FAILURE{
                    }
                }
                //9.2.2.10
                group RRC_INACTIVE_TRANSITION_REPORT{
                    }
                }
                //9.2.2.11
                group CONNECTION_ESTABLISHMENT_INDICATION{
                    }
                }
                //9.2.2.12
                group AMF_CP_RELOCATION_INDICATION{
                    }
                }
                //9.2.2.13
                group RAN_CP_RELOCATION_INDICATION{
                    }
                }
                //9.2.2.14
                group RETRIEVE_UE_INFORMATION{
                    }
                }
                //9.2.2.15
                group UE_INFORMATION_TRANSFER{
                    }
                }
                //9.2.2.16
                group UE_CONTEXT_SUSPEND_REQUEST{
                    }
                }
                //9.2.2.17
                group UE_CONTEXT_SUSPEND_RESPONSE{
                    }
                }
                //9.2.2.18
                group UE_CONTEXT_SUSPEND_FAILURE{
                    }
                }
                //9.2.2.19
                group UE_CONTEXT_RESUME_REQUEST{
                    }
                }
                //9.2.2.20
                group UE_CONTEXT_RESUME_RESPONSE{
                    }
                }
                //9.2.2.21
                group UE_CONTEXT_RESUME_FAILURE{
            } // End of group UE_Context_Management_Messages_
Iztok Juvancic's avatar
Iztok Juvancic committed

            //9.2.3
            group UE_Mobility_Management_Messages{
                //9.2.3.1
                group HANDOVER_REQUIRED{
                    }
                }
                //9.2.3.2
                group HANDOVER_COMMAND{
                    }
                }
                //9.2.3.3
                group HANDOVER_PREPARATION_FAILURE{
                    }
                }
                //9.2.3.4
                group HANDOVER_REQUEST{
                    }
                }
                //9.2.3.5
                group HANDOVER_REQUEST_ACKNOWLEDGE{
                    }
                }
                //9.2.3.6
                group HANDOVER_FAILURE{
                    }
                }
                //9.2.3.7
                group HANDOVER_NOTIFY{
                    }
                }
            //9.2.3.8
            group PATH_SWITCH_REQUEST{
                }
            }
            //9.2.3.9
            group PATH_SWITCH_REQUEST_ACKNOWLEDGE{
                }
            }
            //9.2.3.10
            group PATH_SWITCH_REQUEST_FAILURE{
                }
            }
            //9.2.3.11
            group HANDOVER_CANCEL{
                }
            }
            //9.2.3.12
            group HANDOVER_CANCEL_ACKNOWLEDGE{
                }
            }
            //9.2.3.13
            group UPLINK_RAN_STATUS_TRANSFER{
                }
            }
            //9.2.3.14
            group DOWNLINK_RAN_STATUS_TRANSFER{
                }
            }
            //9.2.3.15
            group HANDOVER_SUCCESS{
                }
            }
            //9.2.3.16
            group UPLINK_RAN_EARLY_STATUS_TRANSFER{
                }
            }
            //9.2.3.17
            group DOWNLINK_RAN_EARLY_STATUS_TRANSFER{
        } // End of group UE_Mobility_Management_Messages

        //9.2.4
        group Paging_Messages{
            //9.2.4.1
            group PAGING{
        } // End of group Paging_Messages

        //9.2.5
        group NAS_Transport_Messages{
            //9.2.5.1
            group INITIAL_UE_MESSAGE{
Yann Garcia's avatar
Yann Garcia committed

                group Send {

                    template (value) InitiatingMessage m_n2_initialUeMessage(
                                                                            in template (value) RAN_UE_NGAP_ID p_RANUeNgapID,
                                                                            in template (value) NAS_PDU p_nasPdu,
                                                                            in template (value) UserLocationInformation p_UeLocInf,
                                                                            in template (value) RRCEstablishmentCause p_rrcEstCause
Yann Garcia's avatar
Yann Garcia committed
                                                                            ) := {
                        procedureCode := id_InitialUEMessage,
                        criticality   := reject,
                        value_        := {
                            InitialUEMessage := {
                                      protocolIEs := {
                                        {
                                          id := id_RAN_UE_NGAP_ID,
                                          criticality := reject,
                                          value_ := {RAN_UE_NGAP_ID:=p_RANUeNgapID}
                                          //presence := NGAP_CommonDataTypes.mandatory
                                        }, 
                                        {
                                          id := id_NAS_PDU,
                                          criticality := reject,
                                          value_ := {NAS_PDU:=p_nasPdu}
                                          //presence := NGAP_CommonDataTypes.mandatory
                                        }, 
                                        {
                                          id := id_UserLocationInformation,
                                          criticality := reject,
                                          value_ := {UserLocationInformation:=p_UeLocInf}
                                          //presence := NGAP_CommonDataTypes.mandatory
                                        }, 
                                        {
                                          id := id_RRCEstablishmentCause,
                                          criticality := ignore,
                                          value_ := {RRCEstablishmentCause:=p_rrcEstCause}
                                          //presence := NGAP_CommonDataTypes.mandatory
                                        }//, 
                                        /*{
                                          id := NGAP_Constants.id_FiveG_S_TMSI,
                                          criticality := NGAP_CommonDataTypes.reject,
                                          Value := "NGAP_IEs.FiveG_S_TMSI",
                                          presence := NGAP_CommonDataTypes.optional_
                                        }, 
                                        {
                                          id := NGAP_Constants.id_AMFSetID,
                                          criticality := NGAP_CommonDataTypes.ignore,
                                          Value := "NGAP_IEs.AMFSetID",
                                          presence := NGAP_CommonDataTypes.optional_
                                        }, 
                                        {
                                          id := NGAP_Constants.id_UEContextRequest,
                                          criticality := NGAP_CommonDataTypes.ignore,
                                          Value := "NGAP_IEs.UEContextRequest",
                                          presence := NGAP_CommonDataTypes.optional_
                                        }, 
                                        {
                                          id := NGAP_Constants.id_AllowedNSSAI,
                                          criticality := NGAP_CommonDataTypes.reject,
                                          Value := "NGAP_IEs.AllowedNSSAI",
                                          presence := NGAP_CommonDataTypes.optional_
                                        }, 
                                        {
                                          id := NGAP_Constants.id_SourceToTarget_AMFInformationReroute,
                                          criticality := NGAP_CommonDataTypes.ignore,
                                          Value := "NGAP_IEs.SourceToTarget_AMFInformationReroute",
                                          presence := NGAP_CommonDataTypes.optional_
                                        }, 
                                        {
                                          id := NGAP_Constants.id_SelectedPLMNIdentity,
                                          criticality := NGAP_CommonDataTypes.ignore,
                                          Value := "NGAP_IEs.PLMNIdentity",
                                          presence := NGAP_CommonDataTypes.optional_
                                        }, 
                                        {
                                          id := NGAP_Constants.id_IABNodeIndication,
                                          criticality := NGAP_CommonDataTypes.reject,
                                          Value := "NGAP_IEs.IABNodeIndication",
                                          presence := NGAP_CommonDataTypes.optional_
                                        }, 
                                        {
                                          id := NGAP_Constants.id_CEmodeBSupport_Indicator,
                                          criticality := NGAP_CommonDataTypes.reject,
                                          Value := "NGAP_IEs.CEmodeBSupport_Indicator",
                                          presence := NGAP_CommonDataTypes.optional_
                                        }, 
                                        {
                                          id := NGAP_Constants.id_LTEM_Indication,
                                          criticality := NGAP_CommonDataTypes.ignore,
                                          Value := "NGAP_IEs.LTEM_Indication",
                                          presence := NGAP_CommonDataTypes.optional_
                                        }, 
                                        {
                                          id := NGAP_Constants.id_EDT_Session,
                                          criticality := NGAP_CommonDataTypes.ignore,
                                          Value := "NGAP_IEs.EDT_Session",
                                          presence := NGAP_CommonDataTypes.optional_
                                        }, 
                                        {
                                          id := NGAP_Constants.id_AuthenticatedIndication,
                                          criticality := NGAP_CommonDataTypes.ignore,
                                          Value := "NGAP_IEs.AuthenticatedIndication",
                                          presence := NGAP_CommonDataTypes.optional_
                                        }, 
                                        {
                                          id := NGAP_Constants.id_NPN_AccessInformation,
                                          criticality := NGAP_CommonDataTypes.reject,
                                          Value := "NGAP_IEs.NPN_AccessInformation",
                                          presence := NGAP_CommonDataTypes.optional_
                                        }, 
                                        {
                                          id := NGAP_Constants.id_RedCapIndication,
                                          criticality := NGAP_CommonDataTypes.ignore,
                                          Value := "NGAP_IEs.RedCapIndication",
                                          presence := NGAP_CommonDataTypes.optional_
                                        }*/
                                       }
                               }
                        }
                    } // End of template  m_n2_initialUeMessage
Yann Garcia's avatar
Yann Garcia committed
                } // End of group Send

            }
            //9.2.5.2
            group DOWNLINK_NAS_TRANSPORT{
                }
            }
            //9.2.5.3
            group UPLINK_NAS_TRANSPORT{
                }
            }
            //9.2.5.4
            group NAS_NON_DELIVERY_INDICATION{
                }
            }
            //9.2.5.5
            group REROUTE_NAS_REQUEST{
        } // End of group NAS_Transport_Messages
        //9.2.6
        group Interface_Management_Messages{
            //9.2.6.1
            group NG_SETUP_REQUEST{
Iztok Juvancic's avatar
Iztok Juvancic committed

                    template (value) InitiatingMessage m_n2_NGSetupRequest(
                                                                           in template (value) GlobalRANNodeID p_globalRANNodeID,
                                                                           in template (value) SupportedTAList p_supportedTAs,
                                                                           in template (value) PagingDRX p_pagingDRX
                                                                           ) := {
                        procedureCode := id_NGSetup,
                        criticality   := reject,
                        value_        := {
                            NGSetupRequest := {
                                        protocolIEs := {
                                            {
                                                id := id_GlobalRANNodeID,
                                                criticality := reject,
                                                value_ := { GlobalRANNodeID := p_globalRANNodeID }
                                            },
                                            {
                                                id := id_SupportedTAList,
                                                criticality := reject,
                                                value_ := { SupportedTAList := p_supportedTAs }
                                            },
                                            {
                                                id := id_DefaultPagingDRX,
                                                criticality := ignore,
                                                value_ := { PagingDRX := p_pagingDRX
                                            }
                                        }
                                }
                        }
                    } // End of template m_n2_NGSetupRequest
                }
Iztok Juvancic's avatar
Iztok Juvancic committed

                }
            }
            //9.2.6.2
            group NG_SETUP_RESPONSE{
Iztok Juvancic's avatar
Iztok Juvancic committed
                    
                    template (present) SuccessfulOutcome mw_n2_NGSetupResponse(
                                                    in template (present) AMFName p_amfName := ?,
                                                    in template (present) ServedGUAMIList p_servedGUAMIList := ?,
                                                    in template (present) RelativeAMFCapacity p_relativeAmfCap:= ?,
                                                    in template (present) PLMNSupportList p_plmnSuppList := ?
Yann Garcia's avatar
Yann Garcia committed
                    ) := {
                           procedureCode := id_NGSetup,
                           criticality   := ?,
                           value_        := {
                              NGSetupResponse := {
                                         protocolIEs := {
                                                {
                                                  id := id_AMFName,
                                                  criticality := reject,
                                                   value_ := { AMFName := p_amfName }
                                                },
                                                {
                                                  id := id_ServedGUAMIList,
                                                  criticality := reject,
                                                  value_ := { ServedGUAMIList := p_servedGUAMIList }
                    
                                                },
                                                {
                                                  id := id_RelativeAMFCapacity,
                                                  criticality := ignore,
                                                  value_ := { RelativeAMFCapacity := p_relativeAmfCap }
                                                },
Iztok Juvancic's avatar
Iztok Juvancic committed
                                                {
                                                  id := id_PLMNSupportList,
                                                  criticality := ignore,
                                                  value_ := { PLMNSupportList := p_plmnSuppList }
                                                }
Yann Garcia's avatar
Yann Garcia committed
                                          }
                                  }
                           }
                    }//end of template mw_n2_NGSetupResponse
Iztok Juvancic's avatar
Iztok Juvancic committed
                    
                }
            }
            //9.2.6.3
            group NG_SETUP_FAILURE{
Iztok Juvancic's avatar
Iztok Juvancic committed
                    
                    template (present) UnsuccessfulOutcome mw_n2_NGSetupFailure(
                                                    in template (present) Cause p_cause := ?
                    ) := {
                           procedureCode := id_NGSetup,
Iztok Juvancic's avatar
Iztok Juvancic committed
                           criticality   := ?,
Iztok Juvancic's avatar
Iztok Juvancic committed
                           value_        := {
                              NGSetupFailure := {
                                         protocolIEs := {
                                                {
                                                  id := id_Cause,
Iztok Juvancic's avatar
Iztok Juvancic committed
                                                  criticality := ?,
Iztok Juvancic's avatar
Iztok Juvancic committed
                                                   value_ := { Cause := p_cause }
                                                }
                                          }
                                  }
                           }
                    }//end of template mw_n2_NGSetupFailure
                }
            }
            //9.2.6.4
            group RAN_CONFIGURATION_UPDATE{
                }
            }
            //9.2.6.5
            group RAN_CONFIGURATION_UPDATE_ACKNOWLEDGE{
                }
            }
            //9.2.6.6
            group RAN_CONFIGURATION_UPDATE_FAILURE{
                }
            }
            //9.2.6.7
            group AMF_CONFIGURATION_UPDATE{
                }
            }
            //9.2.6.8
            group AMF_CONFIGURATION_UPDATE_ACKNOWLEDGE{
                }
            }
            //9.2.6.9
            group AMF_CONFIGURATION_UPDATE_FAILURE{
                }
            }
            //9.2.6.10
            group AMF_STATUS_INDICATION{
                }
            }
            //9.2.6.11
            group NG_RESET{
                }
            }
            //9.2.6.12
            group NG_RESET_ACKNOWLEDGE{
                }
            }
            //9.2.6.13
            group ERROR_INDICATION{
                }
            }
            //9.2.6.14
            group OVERLOAD_START{
                }
            }
            //9.2.6.15
            group OVERLOAD_STOP{
        } // End of group Interface_Management_Messages

        //9.2.7
        group Configuration_Transfer_Messages{
            //9.2.7.1
            group UPLINK_RAN_CONFIGURATION_TRANSFER{
                }
            }
            //9.2.7.2
            group DOWNLINK_RAN_CONFIGURATION_TRANSFER{
        } // End of group Configuration_Transfer_Messages

        //9.2.8
        group Warning_Message_Transmission_Messages{
            //9.2.8.1
            group WRITE_REPLACE_WARNING_REQUEST{
                }
            }
            //9.2.8.2
            group WRITE_REPLACE_WARNING_RESPONSE{
                }
            }
            //9.2.8.3
            group PWS_CANCEL_REQUEST{
                }
            }
            //9.2.8.4
            group PWS_CANCEL_RESPONSE{
                }
            }
            //9.2.8.5
            group PWS_RESTART_INDICATION{
                }
            }
            //9.2.8.6
            group PWS_FAILURE_INDICATION{
        } // End of group Warning_Message_Transmission_Messages
        //9.2.9
        group NRPPa_Transport_Messages{
            //9.2.9.1
            group DOWNLINK_UE_ASSOCIATED_NRPPA_TRANSPORT{
                }
            }
            //9.2.9.2
            group UPLINK_UE_ASSOCIATED_NRPPA_TRANSPORT{
                }
            }
            //9.2.9.3
            group DOWNLINK_NON_UE_ASSOCIATED_NRPPA_TRANSPORT{
                }
            }
            //9.2.9.4
            group UPLINK_NON_UE_ASSOCIATED_NRPPA_TRANSPORT{
        } // End of group NRPPa_Transport_Messages

        //9.2.10
        group Trace_Messages{
            //9.2.10.1
            group TRACE_START{
                }
            }
            //9.2.10.2
            group TRACE_FAILURE_INDICATION{
                }
            }
            //9.2.10.3
            group DEACTIVATE_TRACE{
                }
            }
            //9.2.10.4
            group CELL_TRAFFIC_TRACE{
        } // End of group Trace_Messages

        //9.2.11
        group Location_Reporting_Messages{
            //9.2.11.1
            group LOCATION_REPORTING_CONTROL{
                }
            }
            //9.2.11.2
            group LOCATION_REPORTING_FAILURE_INDICATION{
                }
            }
            //9.2.11.3
            group LOCATION_REPORT{
        } // End of group Location_Reporting_Messages

        //9.2.12
        group UE_TNLA_Binding_Messages{
            //9.2.12.1
            group UE_TNLA_BINDING_RELEASE_REQUEST{
        } // End of group UE_TNLA_Binding_Messages

        //9.2.13
        group UE_Radio_Capability_Management_Messages{
            //9.2.13.1
            group UE_RADIO_CAPABILITY_INFO_INDICATION{
                }
            }
            //9.2.13.2
            group UE_RADIO_CAPABILITY_CHECK_REQUEST{
                }
            }
            //9.2.13.3
            group UE_RADIO_CAPABILITY_CHECK_RESPONSE{
                }
            }
            //9.2.13.4
            group UE_RADIO_CAPABILITY_ID_MAPPING_REQUEST{
                }
            }
            //9.2.13.5
            group UE_RADIO_CAPABILITY_ID_MAPPING_RESPONSE{
        } // End of group UE_Radio_Capability_Management_Messages

        //9.2.14
        group Data_Usage_Reporting_Messages{
            //9.2.14.1
            group SECONDARY_RAT_DATA_USAGE_REPORT{
        } // End of group Data_Usage_Reporting_Messages

        //9.2.15
        group RIM_Information_Transfer_Messages{
            //9.2.15.1
            group UPLINK_RIM_INFORMATION_TRANSFER{
                }
            }
            //9.2.15.2
            group DOWNLINK_RIM_INFORMATION_TRANSFER{
        } // End of group RIM_Information_Transfer_Messages

        } // End of group Message_Functional_Definition_and_Content
    group Information_elements{

        group Send {

            template (omit) AdditionalDLUPTNLInformationForHOItem m_additionalDLUPTNLInformationForHOItem(
                                                                                                          in template (value) UPTransportLayerInformation p_additionalDL_NGU_UP_TNLInformation,
                                                                                                          in template (value) QosFlowListWithDataForwarding p_additionalQosFlowSetupResponseList,
                                                                                                          in template (omit) UPTransportLayerInformation p_additionalDLForwardingUPTNLInformation := omit,
                                                                                                          in template (omit) AdditionalDLUPTNLInformationForHOItem.iE_Extensions p_iE_Extensions := omit
                                                                                                          ) := {
                additionalDL_NGU_UP_TNLInformation     := p_additionalDL_NGU_UP_TNLInformation,
                additionalQosFlowSetupResponseList     := p_additionalQosFlowSetupResponseList,
                additionalDLForwardingUPTNLInformation := p_additionalDLForwardingUPTNLInformation,
                iE_Extensions                          := p_iE_Extensions
            } // End of template m_additionalDLUPTNLInformationForHOItem

            template (value) AdditionalDLUPTNLInformationForHOItem.iE_Extensions m_additionalDLUPTNLInformationForHOItem_uPTransportLayerInformation(
                                                                                                                                                     in template (value) UPTransportLayerInformation p_uPTransportLayerInformation
                                                                                                                                                     ) := {
                {
                    id             := id_AdditionalRedundantDL_NGU_UP_TNLInformation,
                    criticality    := ignore,
                    extensionValue := { UPTransportLayerInformation := p_uPTransportLayerInformation }
                }
            } // End of template m_additionalDLUPTNLInformationForHOItem_iE_Extensions

            template (value) AdditionalQosFlowInformation m_additionalQosFlowInformation(in AdditionalQosFlowInformation p_value := more_likely) := p_value;

            template (omit) AllocationAndRetentionPriority m_allocationAndRetentionPriority(
                                                                                            in template (value) PriorityLevelARP p_priorityLevelARP,
                                                                                            in template (value) Pre_emptionCapability p_pre_emptionCapability,
                                                                                            in template (value) Pre_emptionVulnerability p_pre_emptionVulnerability,
                                                                                            in template (omit) AllocationAndRetentionPriority.iE_Extensions p_iE_Extensions := omit
                                                                                            ) := {
                priorityLevelARP         := p_priorityLevelARP,
                pre_emptionCapability    := p_pre_emptionCapability,
                pre_emptionVulnerability := p_pre_emptionVulnerability,
                iE_Extensions            := p_iE_Extensions
            } // End of template m_allocationAndRetentionPriority

            template (value) AlternativeQoSParaSetIndex m_alternativeQoSParaSetIndex(in template (value) integer p_value := 0) := p_value;

            template (value) AlternativeQoSParaSetNotifyIndex m_alternativeQoSParaSetNotifyIndex(in template (value) integer p_value := 0) := p_value;

            template (omit) AlternativeQoSParaSetItem m_alternativeQoSParaSetItem(
                                                                                  in template (value) AlternativeQoSParaSetIndex p_alternativeQoSParaSetIndex,
                                                                                  in template (omit) BitRate p_guaranteedFlowBitRateDL := omit,
                                                                                  in template (omit) BitRate p_guaranteedFlowBitRateUL := omit,
                                                                                  in template (omit) PacketDelayBudget p_packetDelayBudget := omit,
                                                                                  in template (omit) PacketErrorRate p_packetErrorRate := omit,
                                                                                  in template (omit) AlternativeQoSParaSetItem.iE_Extensions p_iE_Extensions := omit
                                                                                  ) := {
                alternativeQoSParaSetIndex := p_alternativeQoSParaSetIndex,
                guaranteedFlowBitRateDL    := p_guaranteedFlowBitRateDL,
                guaranteedFlowBitRateUL    := p_guaranteedFlowBitRateUL,
                packetDelayBudget          := p_packetDelayBudget,
                packetErrorRate            := p_packetErrorRate,
                iE_Extensions              := p_iE_Extensions
            } // End of template m_alternativeQoSParaSetItem

            template (value) AMFName m_aMFName(in AMFName p_value) := p_value;

            template (value) AMFNameVisibleString m_aMFNameVisibleString(in AMFNameVisibleString p_value) := p_value;

            template (value) AMFNameUTF8String m_aMFNameUTF8String(in AMFNameUTF8String p_value) := p_value;

            template (value) AMFPagingTarget m_aMFPagingTarget_globalRANNodeID(
                                                                               in template (value) GlobalRANNodeID p_globalRANNodeID
                                                                               ) := {
                globalRANNodeID := p_globalRANNodeID
            } // End of template m_aMFPagingTarget_globalRANNodeID
            template (value) AMFPagingTarget m_aMFPagingTarget_tAI(
                                                                   in template (value) TAI p_tAI
                                                                   ) := {
                tAI := p_tAI
            } // End of template m_aMFPagingTarget_tAI
            template (value) AMFPagingTarget m_aMFPagingTarget_ext(
                                                                   in template (value) AMFPagingTarget.choice_Extensions p_choice_Extensions
                                                                   ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_aMFPagingTarget_ext

            template (omit) AMF_TNLAssociationSetupItem m_aMF_TNLAssociationSetupItem(
                                                                                      in template (value) CPTransportLayerInformation p_aMF_TNLAssociationAddress,
                                                                                      in template (omit) AMF_TNLAssociationSetupItem.iE_Extensions p_iE_Extensions := omit
                                                                                      ) := {
                aMF_TNLAssociationAddress := p_aMF_TNLAssociationAddress,
                iE_Extensions             := p_iE_Extensions
            } // End of template m_aMF_TNLAssociationSetupItem

            template (omit) AMF_TNLAssociationToAddItem m_aMF_TNLAssociationToAddItem( 
                                                                                      in template (value) CPTransportLayerInformation p_aMF_TNLAssociationAddress,
                                                                                      in template (value) TNLAddressWeightFactor p_tNLAddressWeightFactor,
                                                                                      in template (omit) TNLAssociationUsage p_tNLAssociationUsage := omit,
                                                                                      in template (omit) AMF_TNLAssociationToAddItem.iE_Extensions p_iE_Extensions := omit
                                                                                      ):= {
                aMF_TNLAssociationAddress := p_aMF_TNLAssociationAddress,
                tNLAssociationUsage       := p_tNLAssociationUsage,
                tNLAddressWeightFactor    := p_tNLAddressWeightFactor,
                iE_Extensions             := p_iE_Extensions
            } // End of template m_aMF_TNLAssociationToAddItem

            template (omit) AMF_TNLAssociationToRemoveItem m_aMF_TNLAssociationToRemoveItem(
                                                                                            in template (value) CPTransportLayerInformation p_aMF_TNLAssociationAddress,
                                                                                            in template (omit) AMF_TNLAssociationToRemoveItem.iE_Extensions p_iE_Extensions := omit
                                                                                            ) := {
                aMF_TNLAssociationAddress := p_aMF_TNLAssociationAddress,
                iE_Extensions             := p_iE_Extensions
            } // End of template m_aMF_TNLAssociationToRemoveItem

            template (omit) AMF_TNLAssociationToUpdateItem m_aMF_TNLAssociationToUpdateItem(
                                                                                            in template (value) CPTransportLayerInformation p_aMF_TNLAssociationAddress,
                                                                                            in template (omit) TNLAssociationUsage p_tNLAssociationUsage := omit,
                                                                                            in template (omit) TNLAddressWeightFactor p_tNLAddressWeightFactor := omit,
                                                                                            in template (omit) AMF_TNLAssociationToUpdateItem.iE_Extensions p_iE_Extensions := omit
                                                                                            ) := {
                aMF_TNLAssociationAddress := p_aMF_TNLAssociationAddress,
                tNLAssociationUsage       := p_tNLAssociationUsage,
                tNLAddressWeightFactor    := p_tNLAddressWeightFactor,
                iE_Extensions             := p_iE_Extensions
            } // End of template m_aMF_TNLAssociationToUpdateItem

            template (value) AMF_UE_NGAP_ID m_ie_aMFUeNgapId(in integer p_val := 1) := p_val;

            template (omit) AreaOfInterest m_areaOfInterest(
                                                            in template (omit) AreaOfInterestTAIList p_areaOfInterestTAIList := omit,
                                                            in template (omit) AreaOfInterestCellList p_areaOfInterestCellList := omit,
                                                            in template (omit) AreaOfInterestRANNodeList p_areaOfInterestRANNodeList := omit,
                                                            in template (omit) AreaOfInterest.iE_Extensions p_iE_Extensions := omit
                                                            ) := {
                areaOfInterestTAIList     := p_areaOfInterestTAIList,
                areaOfInterestCellList    := p_areaOfInterestCellList,
                areaOfInterestRANNodeList := p_areaOfInterestRANNodeList,
                iE_Extensions             := p_iE_Extensions
            } // End of template m_areaOfInterest

            template (omit) AreaOfInterestCellItem m_areaOfInterestCellItem(
                                                                            in template (value) NGRAN_CGI p_nGRAN_CGI,
                                                                            in template (omit) AreaOfInterestCellItem.iE_Extensions p_iE_Extensions := omit
                                                                            ) := {
                nGRAN_CGI     := p_nGRAN_CGI,
                iE_Extensions := p_iE_Extensions
            } // End of template m_areaOfInterestCellItem

            template (omit) AreaOfInterestItem m_reaOfInterestItem(
                                                                   in template (value) AreaOfInterest p_areaOfInterest,
                                                                   in template (value) LocationReportingReferenceID p_locationReportingReferenceID,
                                                                   in template (omit) AreaOfInterestItem.iE_Extensions p_iE_Extensions := omit
                                                                   ) := {
                areaOfInterest               := p_areaOfInterest,
                locationReportingReferenceID := p_locationReportingReferenceID,
                iE_Extensions                := p_iE_Extensions
            } // End of template m_reaOfInterestItem

            template (omit) AreaOfInterestRANNodeItem m_areaOfInterestRANNodeItem(
                                                                                  in template (value) GlobalRANNodeID p_globalRANNodeID,
                                                                                  in template (omit) AreaOfInterestRANNodeItem.iE_Extensions p_iE_Extensions := omit
                                                                                  ):= {
                globalRANNodeID := p_globalRANNodeID,
                iE_Extensions   := p_iE_Extensions
            } // End of template m_areaOfInterestRANNodeItem

            template (omit) AreaOfInterestTAIItem m_areaOfInterestTAIItem(
                                                                          in template (value) TAI p_tAI,
                                                                          in template (omit) AreaOfInterestTAIItem.iE_Extensions p_iE_Extensions := omit
                                                                          ) := {
                tAI           := p_tAI,
                iE_Extensions := p_iE_Extensions
            } // End of template m_areaOfInterestTAIItem

            template (omit) AssistanceDataForPaging m_assistanceDataForPaging(
                                                                              in template (omit) AssistanceDataForRecommendedCells p_assistanceDataForRecommendedCells := omit,
                                                                              in template (omit) PagingAttemptInformation p_pagingAttemptInformation := omit,
                                                                              in template (omit) AssistanceDataForPaging.iE_Extensions p_iE_Extensions := omit
                                                                              ) := {
                assistanceDataForRecommendedCells := p_assistanceDataForRecommendedCells,
                pagingAttemptInformation          := p_pagingAttemptInformation,
                iE_Extensions                     := p_iE_Extensions
            } // End of template m_assistanceDataForPaging

            template (value) AssistanceDataForPaging.iE_Extensions m_assistanceDataForPaging_NPN_PagingAssistanceInformation(
                                                                                                                             in template (value) NPN_PagingAssistanceInformation p_nPN_PagingAssistanceInformation
                                                                                                                             ) := {
                {
                    id             := id_NPN_PagingAssistanceInformation,
                    criticality    := ignore,
                    extensionValue := { NPN_PagingAssistanceInformation := p_nPN_PagingAssistanceInformation }
                }
            } // End of template m_assistanceDataForPaging_NPN_PagingAssistanceInformation

            template (value) AssistanceDataForPaging.iE_Extensions m_assistanceDataForPaging_pagingAssisDataforCEcapabUE(
                                                                                                                         in template (value) PagingAssisDataforCEcapabUE p_pagingAssisDataforCEcapabUE
                                                                                                                         ) := {
                {
                    id             := id_PagingAssisDataforCEcapabUE,
                    criticality    := ignore,
                    extensionValue := { PagingAssisDataforCEcapabUE := p_pagingAssisDataforCEcapabUE }
                }
            } // End of template m_assistanceDataForPaging_pagingAssisDataforCEcapabUE

            template (omit) AssistanceDataForRecommendedCells m_assistanceDataForRecommendedCells(
                                                                                                  in template (value) RecommendedCellsForPaging p_recommendedCellsForPaging,
                                                                                                  in template (omit) AssistanceDataForRecommendedCells.iE_Extensions p_iE_Extensions := omit
                                                                                                  ) := {
                recommendedCellsForPaging := p_recommendedCellsForPaging,
                iE_Extensions             := p_iE_Extensions
            } // End of template m_assistanceDataForRecommendedCells

            template (omit) AssociatedMBSQosFlowSetupRequestItem m_associatedMBSQosFlowSetupRequestItem(
                                                                                                        in template (value) QosFlowIdentifier p_mBS_QosFlowIdentifier,
                                                                                                        in template (value) QosFlowIdentifier p_associatedUnicastQosFlowIdentifier,
                                                                                                        in template (omit) AssociatedMBSQosFlowSetupRequestItem.iE_Extensions p_iE_Extensions := omit
                                                                                                        ) := {
                mBS_QosFlowIdentifier              := p_mBS_QosFlowIdentifier,
                associatedUnicastQosFlowIdentifier := p_associatedUnicastQosFlowIdentifier,
                iE_Extensions                      := p_iE_Extensions
            } // End of template m_associatedMBSQosFlowSetupRequestItem

            template (omit) AssociatedMBSQosFlowSetuporModifyRequestItem m_associatedMBSQosFlowSetuporModifyRequestItem(
                                                                                                                        in template (value) QosFlowIdentifier p_mBS_QosFlowIdentifier,
                                                                                                                        in template (value) QosFlowIdentifier p_associatedUnicastQosFlowIdentifier,
                                                                                                                        in template (omit) AssociatedMBSQosFlowSetuporModifyRequestItem.iE_Extensions p_iE_Extensions := omit
                                                                                                                        ) := {
                mBS_QosFlowIdentifier              := p_mBS_QosFlowIdentifier,
                associatedUnicastQosFlowIdentifier := p_associatedUnicastQosFlowIdentifier,
                iE_Extensions                      := p_iE_Extensions
            } // End of template m_associatedMBSQosFlowSetuporModifyRequestItem

            template (omit) AssociatedQosFlowItem m_associatedQosFlowItem(
                                                                          in template (value) QosFlowIdentifier p_qosFlowIdentifier,
                                                                          in template (omit) AssociatedQosFlowItem.qosFlowMappingIndication p_qosFlowMappingIndication := omit,
                                                                          in template (omit) AssociatedQosFlowItem.iE_Extensions p_iE_Extensions := omit
                                                                          ) := {
                qosFlowIdentifier        := p_qosFlowIdentifier,
                qosFlowMappingIndication := p_qosFlowMappingIndication,
                iE_Extensions            := p_iE_Extensions
            } // End of template m_associatedQosFlowItem

            template (value) AssociatedQosFlowItem.iE_Extensions m_associatedQosFlowItem_alternativeQoSParaSetIndex(
                                                                                                                    in template (value) AlternativeQoSParaSetIndex p_alternativeQoSParaSetIndex
            ) := {
                {
                    id             := id_CurrentQoSParaSetIndex,
                    criticality    := ignore,
                    extensionValue := { AlternativeQoSParaSetIndex := p_alternativeQoSParaSetIndex }
                }
            } // End of template m_associatedQosFlowItem_alternativeQoSParaSetIndex

            template (value) AuthenticatedIndication m_authenticatedIndication(in AuthenticatedIndication p_value := true_) := p_value;

            template (value) AreaScopeOfMDT_NR m_areaScopeOfMDT_NR_cellBased(
                                                                             in template (value) CellBasedMDT_NR p_cellBased
                                                                             ) := {
	            cellBased := p_cellBased
            } // End of template m_areaScopeOfMDT_cellBased

            template (value) AreaScopeOfMDT_NR m_areaScopeOfMDT_tABased(
                                                                        in template (value) TABasedMDT p_tABased
                                                                        ) := {
                tABased := p_tABased
            } // End of template m_areaScopeOfMDT_tABased

            template (value) AreaScopeOfMDT_NR m_areaScopeOfMDT_pLMNWide := {
                pLMNWide := NULL
            } // End of template m_areaScopeOfMDT_pLMNWide

            template (value) AreaScopeOfMDT_NR m_areaScopeOfMDT_tAIBased(
                                                                         in template (value) TAIBasedMDT p_tAIBased
                                                                         ) := {
                tAIBased := p_tAIBased
            } // End of template m_areaScopeOfMDT_tAIBased

            template (value) AreaScopeOfMDT_NR m_areaScopeOfMDT_ext(
                                                                    in template (value) AreaScopeOfMDT_NR.choice_Extensions p_choice_Extensions
                                                                    ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_areaScopeOfMDT_ext

            template (omit) AreaScopeOfNeighCellsItem m_areaScopeOfNeighCellsItem(
                                                                                  in template (value) NRFrequencyInfo p_nrFrequencyInfo,
                                                                                  in template (omit) PCIListForMDT p_pciListForMDT := omit,
                                                                                  in template (omit) AreaScopeOfNeighCellsItem.iE_Extensions p_iE_Extensions := omit
                                                                                  ) := {
                nrFrequencyInfo := p_nrFrequencyInfo,
                pciListForMDT   := p_pciListForMDT,
                iE_Extensions   := p_iE_Extensions
            } // End of template m_areaScopeOfNeighCellsItem

            template (value) AreaScopeOfQMC m_areaScopeOfQMC_cellBased(
                                                                       in template (value) CellBasedQMC p_cellBased
                                                                       ) := {
	            cellBased := p_cellBased
            } // End of template m_areaScopeOfQMC_cellBased

            template (value) AreaScopeOfQMC m_areaScopeOfQMC_tABased(
                                                                     in template (value) TABasedQMC p_tABased
                                                                     ) := {
                tABased := p_tABased
            } // End of template m_areaScopeOfQMC_tABased

            template (value) AreaScopeOfQMC m_areaScopeOfQMC_tAIBased(
                                                                      in template (value) TAIBasedQMC p_tAIBased
                                                                      ) := {
                tAIBased := p_tAIBased
            } // End of template m_areaScopeOfQMC_tAIBased

            template (value) AreaScopeOfQMC m_areaScopeOfQMC_pLMNAreaBased(
                                                                           in template (value) PLMNAreaBasedQMC p_pLMNAreaBased
                                                                           ) := {
                pLMNAreaBased := p_pLMNAreaBased
            } // End of template m_areaScopeOfQMC_pLMNAreaBased

            template (value) AreaScopeOfQMC m_areaScopeOfQMC_ext(
                                                                 in template (value) AreaScopeOfQMC.choice_Extensions p_choice_Extensions
                                                                 ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_areaScopeOfQMC_ext

            template (value) AreaScopeOfMDT_EUTRA m_areaScopeOfMDT_EUTRA_cellBased(
                                                                                   in template (value) CellBasedMDT_EUTRA p_cellBased
                                                                                   ) := {
	            cellBased := p_cellBased
            } // End of template m_areaScopeOfMDT_EUTRA_cellBased

            template (value) AreaScopeOfMDT_EUTRA m_areaScopeOfMDT_EUTRA_tABased(
                                                                                 in template (value) TABasedMDT p_tABased
                                                                                 ) := {
                tABased := p_tABased
            } // End of template m_areaScopeOfMDT_EUTRA_tABased

            template (value) AreaScopeOfMDT_EUTRA m_areaScopeOfMDT_EUTRA_pLMNWide := {
                pLMNWide := NULL
            } // End of template m_areaScopeOfMDT_EUTRA_pLMNWide

            template (value) AreaScopeOfMDT_EUTRA m_areaScopeOfMDT_EUTRA_tAIBased(
                                                                                  in template (value) TAIBasedMDT p_tAIBased
                                                                                  ) := {
                tAIBased := p_tAIBased
            } // End of template m_areaScopeOfMDT_EUTRA_tAIBased

            template (value) AreaScopeOfMDT_EUTRA m_areaScopeOfMDT_EUTRA_ext(
                                                                             in template (value) AreaScopeOfMDT_EUTRA.choice_Extensions p_choice_Extensions
                                                                             ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_areaScopeOfMDT_EUTRA_ext
Yann Garcia's avatar
Yann Garcia committed
            } // End of template m_areaScopeOfQMC_ext

            template (omit) AvailableRANVisibleQoEMetrics m_availableRANVisibleQoEMetrics(
                                                                                          in template (omit) AvailableRANVisibleQoEMetrics.applicationLayerBufferLevelList p_applicationLayerBufferLevelList := omit,
                                                                                          in template (omit) AvailableRANVisibleQoEMetrics.playoutDelayForMediaStartup p_playoutDelayForMediaStartup := omit,
                                                                                          in template (omit) AvailableRANVisibleQoEMetrics.iE_Extensions p_iE_Extensions := omit
                                                                                          ) := {
                applicationLayerBufferLevelList := p_applicationLayerBufferLevelList,
                playoutDelayForMediaStartup     := p_playoutDelayForMediaStartup,
                iE_Extensions                   := p_iE_Extensions
            } // End of template m_availableRANVisibleQoEMetrics

            template (omit) BeamMeasurementsReportConfiguration m_beamMeasurementsReportConfiguration(
                                                                                                      in template (omit) BeamMeasurementsReportQuantity p_beamMeasurementsReportQuantity := omit,
                                                                                                      in template (omit) MaxNrofRS_IndexesToReport p_maxNrofRS_IndexesToReport := omit,
                                                                                                      in template (omit) BeamMeasurementsReportConfiguration.iE_Extensions p_iE_Extensions := omit
                                                                                                      ) := {
                beamMeasurementsReportQuantity := p_beamMeasurementsReportQuantity,
                maxNrofRS_IndexesToReport      := p_maxNrofRS_IndexesToReport,
                iE_Extensions                  := p_iE_Extensions
            } // End of template m_beamMeasurementsReportConfiguration

            template (omit) BeamMeasurementsReportQuantity m_beamMeasurementsReportQuantity(
                                                                                            in template (omit) BeamMeasurementsReportQuantity.rSRP p_rSRP := true_,
                                                                                            in template (omit) BeamMeasurementsReportQuantity.rSRQ p_rSRQ := true_,
                                                                                            in template (omit) BeamMeasurementsReportQuantity.sINR p_sINR := true_,
                                                                                            in template (omit) BeamMeasurementsReportQuantity.iE_Extensions p_iE_Extensions := omit
                                                                                            ) := {
                rSRP          := p_rSRP,
                rSRQ          := p_rSRQ,
                sINR          := p_sINR,
                iE_Extensions := p_iE_Extensions
            } // End of template m_beamMeasurementsReportQuantity

            template (value) BitRate m_bitRate(in template (value) BitRate p_value) := p_value;

            template (value) BroadcastCancelledAreaList m_broadcastCancelledAreaList_cellIDCancelledEUTRA(
                                                                                                          in template (value) CellIDCancelledEUTRA p_cellIDCancelledEUTRA
                                                                                                          ) := {
                cellIDCancelledEUTRA := p_cellIDCancelledEUTRA
            } // End of template m_broadcastCancelledAreaList_cellIDCancelledEUTRA

            template (value) BroadcastCancelledAreaList m_broadcastCancelledAreaList_tAICancelledEUTRA(
                                                                                                       in template (value) TAICancelledEUTRA p_tAICancelledEUTRA
                                                                                                       ) := {
                tAICancelledEUTRA := p_tAICancelledEUTRA
            } // End of template m_broadcastCancelledAreaList_tAICancelledEUTRA

            template (value) BroadcastCancelledAreaList m_broadcastCancelledAreaList_emergencyAreaIDCancelledEUTRA(
                                                                                                                   in template (value) EmergencyAreaIDCancelledEUTRA p_emergencyAreaIDCancelledEUTRA
                                                                                                                   ) := {
                emergencyAreaIDCancelledEUTRA := p_emergencyAreaIDCancelledEUTRA
            } // End of template m_broadcastCancelledAreaList_emergencyAreaIDCancelledEUTRA

            template (value) BroadcastCancelledAreaList m_broadcastCancelledAreaList_cellIDCancelledNR(
                                                                                                       in template (value) CellIDCancelledNR p_cellIDCancelledNR
                                                                                                       ) := {
                cellIDCancelledNR := p_cellIDCancelledNR
            } // End of template m_broadcastCancelledAreaList_cellIDCancelledNR

            template (value) BroadcastCancelledAreaList m_broadcastCancelledAreaList_tAICancelledNR(
                                                                                                    in template (value) TAICancelledNR p_tAICancelledNR
                                                                                                    ) := {
                tAICancelledNR := p_tAICancelledNR
            } // End of template m_broadcastCancelledAreaList_tAICancelledNR

            template (value) BroadcastCancelledAreaList m_broadcastCancelledAreaList_emergencyAreaIDCancelledNR(
                                                                                                                in template (value) EmergencyAreaIDCancelledNR p_emergencyAreaIDCancelledNR
                                                                                                                ) := {
                emergencyAreaIDCancelledNR := p_emergencyAreaIDCancelledNR
            } // End of template m_broadcastCancelledAreaList_ext

            template (value) BroadcastCancelledAreaList m_broadcastCancelledAreaList_ext(
                                                                                         in template (value) BroadcastCancelledAreaList.choice_Extensions p_choice_Extensions
                                                                                         ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_broadcastCancelledAreaList_ext

            template (value) BroadcastCompletedAreaList m_broadcastCompletedAreaList_cellIDBroadcastEUTRA(
                                                                                                          in template (value) CellIDBroadcastEUTRA p_cellIDBroadcastEUTRA
                                                                                                          ) := {
                cellIDBroadcastEUTRA := p_cellIDBroadcastEUTRA
            } // End of template m_broadcastCompletedAreaList_cellIDCancelledEUTRA

            template (value) BroadcastCompletedAreaList m_broadcastCompletedAreaList_tAIBroadcastEUTRA(
                                                                                                       in template (value) TAIBroadcastEUTRA p_tAIBroadcastEUTRA
                                                                                                       ) := {
                tAIBroadcastEUTRA := p_tAIBroadcastEUTRA
            } // End of template m_broadcastCompletedAreaList_tAIBroadcastEUTRA

            template (value) BroadcastCompletedAreaList m_broadcastCompletedAreaList_emergencyAreaIDBroadcastEUTRA(
                                                                                                                   in template (value) EmergencyAreaIDBroadcastEUTRA p_emergencyAreaIDBroadcastEUTRA
                                                                                                                   ) := {
                emergencyAreaIDBroadcastEUTRA := p_emergencyAreaIDBroadcastEUTRA
            } // End of template m_broadcastCompletedAreaList_emergencyAreaIDBroadcastEUTRA

            template (value) BroadcastCompletedAreaList m_broadcastCompletedAreaList_cellIDBroadcastNR(
                                                                                                       in template (value) CellIDBroadcastNR p_cellIDBroadcastNR
                                                                                                       ) := {
                cellIDBroadcastNR := p_cellIDBroadcastNR
            } // End of template m_broadcastCompletedAreaList_cellIDBroadcastNR

            template (value) BroadcastCompletedAreaList m_broadcastCompletedAreaList_tAIBroadcastNR(
                                                                                                    in template (value) TAIBroadcastNR p_tAIBroadcastNR
                                                                                                    ) := {
                tAIBroadcastNR := p_tAIBroadcastNR
            } // End of template m_broadcastCompletedAreaList_tAIBroadcastNR

            template (value) BroadcastCompletedAreaList m_broadcastCompletedAreaList_emergencyAreaIDBroadcastNR(
                                                                                                                in template (value) EmergencyAreaIDBroadcastNR p_emergencyAreaIDBroadcastNR
                                                                                                                ) := {
                emergencyAreaIDBroadcastNR := p_emergencyAreaIDBroadcastNR
            } // End of template m_broadcastCompletedAreaList_emergencyAreaIDBroadcastNR

            template (value) BroadcastCompletedAreaList m_broadcastCompletedAreaList_ext(
                                                                                         in template (value) BroadcastCompletedAreaList.choice_Extensions p_choice_Extensions
                                                                                         ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_broadcastCompletedAreaList_ext

            template (value) BroadcastPLMNList m_ie_broadcastPLMNList(
                                                                      in template (value) BroadcastPLMNList p_list
                                                                      ) := p_list;
            template (omit) BroadcastPLMNItem m_ie_broadcastPLMNItem(
                                                                     in template (value) PLMNIdentity p_plmnId,
                                                                     in template (value) SliceSupportList p_ssl,
                                                                     in template (omit) BroadcastPLMNItem.iE_Extensions p_iE_Extensions := omit
                                                                     ) := {
                pLMNIdentity        :=  p_plmnId,
                tAISliceSupportList := p_ssl,
                iE_Extensions       := p_iE_Extensions
            } // End of template m_ie_broadcastPLMNItem

            template (omit) BluetoothMeasurementConfiguration m_bluetoothMeasurementConfiguration(
                                                                                                  in template (value) BluetoothMeasConfig p_bluetoothMeasConfig,
                                                                                                  in template (omit) BluetoothMeasConfigNameList p_bluetoothMeasConfigNameList := omit,
                                                                                                  in template (omit) BluetoothMeasurementConfiguration.bt_rssi p_bt_rssi := omit,
                                                                                                  in template (omit) BluetoothMeasurementConfiguration.iE_Extensions p_iE_Extensions := omit
                                                                                                  ) := {
                bluetoothMeasConfig         := p_bluetoothMeasConfig,
                bluetoothMeasConfigNameList := p_bluetoothMeasConfigNameList,
                bt_rssi                     := p_bt_rssi,
                iE_Extensions               := p_iE_Extensions
            } // End of template m_bluetoothMeasurementConfiguration

            template (omit) BluetoothMeasConfigNameItem m_bluetoothMeasConfigNameItem(
                                                                                      in template (value) BluetoothName p_bluetoothName,
                                                                                      in template (omit) BluetoothMeasConfigNameItem.iE_Extensions p_iE_Extensions := omit
                                                                                      ) := {
                bluetoothName := p_bluetoothName,
                iE_Extensions := p_iE_Extensions
            } // End of template m_bluetoothMeasConfigNameItem

            template (value) BluetoothMeasConfig m_bluetoothMeasConfig(in BluetoothMeasConfig p_value := setup) := p_value;

            template (value) CancelAllWarningMessages m_cancelAllWarningMessages(in CancelAllWarningMessages p_value := true_) := p_value;

            template (omit) CancelledCellsInEAI_EUTRA_Item m_cancelledCellsInEAI_EUTRA_Item(
                                                                                            in template (value) EUTRA_CGI p_eUTRA_CGI,
                                                                                            in template (value) NumberOfBroadcasts p_numberOfBroadcasts,
                                                                                            in template (omit) CancelledCellsInEAI_EUTRA_Item.iE_Extensions p_iE_Extensions := omit
                                                                                            ) := {
                eUTRA_CGI          := p_eUTRA_CGI,
                numberOfBroadcasts := p_numberOfBroadcasts,
                iE_Extensions      := p_iE_Extensions
            } // End of template m_cancelledCellsInEAI_EUTRA_Item

Yann Garcia's avatar
Yann Garcia committed
            template (omit) CancelledCellsInEAI_NR_Item m_cancelledCellsInEAI_NR_Item(
                                                                                      in template (value) NR_CGI p_nR_CGI,
                                                                                      in template (value) NumberOfBroadcasts p_numberOfBroadcasts,
                                                                                      in template (omit) CancelledCellsInEAI_NR_Item.iE_Extensions p_iE_Extensions := omit
                                                                                      ) := {
                nR_CGI             := p_nR_CGI,
                numberOfBroadcasts := p_numberOfBroadcasts,
                iE_Extensions      := p_iE_Extensions
            } // End of template m_cancelledCellsInEAI_NR_Item

            template (omit) CancelledCellsInTAI_EUTRA_Item m_cancelledCellsInTAI_EUTRA_Item(
                                                                                            in template (value) EUTRA_CGI p_eUTRA_CGI,
                                                                                            in template (value) NumberOfBroadcasts p_numberOfBroadcasts,
                                                                                            in template (omit) CancelledCellsInTAI_EUTRA_Item.iE_Extensions p_iE_Extensions := omit
                                                                                            ) := {
                eUTRA_CGI          := p_eUTRA_CGI,
                numberOfBroadcasts := p_numberOfBroadcasts,
                iE_Extensions      := p_iE_Extensions
            } // End of template m_cancelledCellsInTAI_EUTRA_Item

            template (omit) CancelledCellsInTAI_NR_Item m_CancelledCellsInTAI_NR_Item(
                                                                                      in template (value) NR_CGI p_nR_CGI,
                                                                                      in template (value) NumberOfBroadcasts p_numberOfBroadcasts,
                                                                                      in template (omit) CancelledCellsInTAI_NR_Item.iE_Extensions p_iE_Extensions := omit
                                                                                      ) := {
                nR_CGI             := p_nR_CGI,
                numberOfBroadcasts := p_numberOfBroadcasts,
                iE_Extensions      := p_iE_Extensions
            } // End of template m_CancelledCellsInTAI_NR_Item

            template (omit) CandidateCellItem m_candidateCellItem(
                                                                  in template (value) CandidateCell p_candidateCell,
                                                                  in template (omit) CandidateCellItem.iE_Extensions p_iE_Extensions := omit
                                                                  ) := {
                candidateCell := p_candidateCell,
                iE_Extensions := p_iE_Extensions
            } // End of template m_candidateCellItem

            template (value) CandidateCell m_candidateCell_candidateCGI(
                                                                        in template (value) CandidateCellID p_candidateCGI
                                                                        ) := {
                candidateCGI := p_candidateCGI
            } // End of template m_candidateCell_candidateCGI

            template (value) CandidateCell m_candidateCell_candidatePCI(
                                                                        in template (value) CandidatePCI p_candidatePCI
                                                                        ) := {
                candidatePCI := p_candidatePCI
            } // End of template m_candidateCell_candidatePCI

            template (value) CandidateCell m_candidateCell_ext(
                                                               in template (value) CandidateCell.choice_Extensions p_choice_Extensions
                                                               ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_candidateCell_ext

            template (omit) CandidateCellID m_candidateCellID(
                                                              in template (value) NR_CGI p_candidateCellID,
                                                              in template (omit) CandidateCellID.iE_Extensions p_iE_Extensions := omit
                                                              ) := {
                candidateCellID := p_candidateCellID,
                iE_Extensions   := p_iE_Extensions
            } // End of template m_candidateCellID

            template (omit) CandidatePCI m_candidatePCI(
                                                        in template (value) CandidatePCI.candidatePCI p_candidatePCI,
                                                        in template (value) CandidatePCI.candidateNRARFCN p_candidateNRARFCN,
                                                        in template (omit) CandidatePCI.iE_Extensions p_iE_Extensions := omit
                                                        ) := {
                candidatePCI     := p_candidatePCI,
                candidateNRARFCN := p_candidateNRARFCN,
                iE_Extensions    := p_iE_Extensions
            } // End of template m_candidatePCI

            template (value) Cause m_cause_radioNetwork(
                                                        in template (value) CauseRadioNetwork p_radioNetwork
                                                        ) := {
                radioNetwork := p_radioNetwork
            } // End of template m_cause_radioNetwork

            template (value) Cause m_cause_transport(
                                                     in template (value) CauseTransport p_transport
                                                     ) := {
                transport := p_transport
            } // End of template m_cause_transport

            template (value) Cause m_cause_nas(
                                               in template (value) CauseNas p_nas
                                               ) := {
                nas := p_nas
            } // End of template m_cause_nas

            template (value) Cause m_cause_protocol(
                                                    in template (value) CauseProtocol p_protocol
                                                    ) := {
                protocol := p_protocol
            } // End of template m_cause_protocol

            template (value) Cause m_cause_misc(
                                                in template (value) CauseMisc p_misc
                                                ) := {
                misc := p_misc
            } // End of template m_cause_misc

            template (value) Cause m_cause_ext(
                                               in template (value) Cause.choice_Extensions p_choice_Extensions
                                               ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_cause_ext

            template (value) CauseMisc m_causeMisc(in CauseMisc p_value := unspecified) := p_value;
            template (value) CauseNas m_causeNas(in CauseNas p_value := unspecified) := p_value;
            template (value) CauseProtocol m_causeProtocol(in CauseProtocol p_value := unspecified) := p_value;
            template (value) CauseRadioNetwork m_causeRadioNetwork(in CauseRadioNetwork p_value := unspecified) := p_value;
            template (value) CauseTransport m_causeTransport(in CauseTransport p_value := unspecified) := p_value;

            template (omit) Cell_CAGInformation m_cell_CAGInformation(
                                                                      in template (value) NGRAN_CGI p_nGRAN_CGI,
                                                                      in template (value) CellCAGList p_cellCAGList,
                                                                      in template (omit) Cell_CAGInformation.iE_Extensions p_iE_Extensions := omit
                                                                      ) := {
                nGRAN_CGI     := p_nGRAN_CGI,
                cellCAGList   := p_cellCAGList,
                iE_Extensions := p_iE_Extensions
            } // End of template m_cell_CAGInformation

            template (omit) CellIDBroadcastEUTRA_Item m_cellIDBroadcastEUTRA_Item(
                                                                                  in template (value) EUTRA_CGI p_eUTRA_CGI,
                                                                                  in template (omit) CellIDBroadcastEUTRA_Item.iE_Extensions p_iE_Extensions := omit
                                                                                  ) := {
                eUTRA_CGI     := p_eUTRA_CGI,
                iE_Extensions := p_iE_Extensions
            } // End of template m_cellIDBroadcastEUTRA_Item

            template (omit) CellIDBroadcastNR_Item m_cellIDBroadcastNR_Item(
                                                                            in template (value) NR_CGI p_nR_CGI,
                                                                            in template (omit) CellIDBroadcastNR_Item.iE_Extensions p_iE_Extensions := omit
                                                                            ) := {
                nR_CGI := p_nR_CGI,
                iE_Extensions := p_iE_Extensions
            } // End of template m_cellIDBroadcastNR_Item

            template (omit) CellIDCancelledEUTRA_Item m_cellIDCancelledEUTRA_Item(
                                                                                  in template (value) EUTRA_CGI p_eUTRA_CGI,
                                                                                  in template (value) NumberOfBroadcasts p_numberOfBroadcasts,
                                                                                  in template (omit) CellIDCancelledEUTRA_Item.iE_Extensions p_iE_Extensions := omit
                                                                                  ) := {
                eUTRA_CGI          := p_eUTRA_CGI,
                numberOfBroadcasts := p_numberOfBroadcasts,
                iE_Extensions      := p_iE_Extensions
            } // End of template m_cellIDCancelledEUTRA_Item

            template (omit) CellIDCancelledNR_Item m_cellIDCancelledNR_Item(
                                                                            in template (value) NR_CGI p_nR_CGI,
                                                                            in template (value) NumberOfBroadcasts p_numberOfBroadcasts,
                                                                            in template (omit) CellIDCancelledNR_Item.iE_Extensions p_iE_Extensions := omit
                                                                            ) :=  {
                nR_CGI             := p_nR_CGI,
                numberOfBroadcasts := p_numberOfBroadcasts,
                iE_Extensions      := p_iE_Extensions
            } // End of template m_cellIDCancelledNR_Item

            template (value) CellIDListForRestart m_cellIDListForRestart_eUTRA_CGIListforRestart(
                                                                                                 in template (value) EUTRA_CGIList p_eUTRA_CGIListforRestart
                                                                                                 ) := {
                eUTRA_CGIListforRestart := p_eUTRA_CGIListforRestart
            } // End of template m_cellIDListForRestart_misc

            template (value) CellIDListForRestart m_cellIDListForRestart_nR_CGIListforRestart(
                                                                                              in template (value) NR_CGIList p_nR_CGIListforRestart
                                                                                              ) := {
Yann Garcia's avatar
Yann Garcia committed
                nR_CGIListforRestart := p_nR_CGIListforRestart
            } // End of template m_cellIDListForRestart_nR_CGIListforRestart

            template (value) CellIDListForRestart m_cellIDListForRestart_ext(
                                                                             in template (value) CellIDListForRestart.choice_Extensions p_choice_Extensions
                                                                             ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_cellIDListForRestart_ext

            template (value) CellSize m_cellSize(in CellSize p_value := medium) := p_value;

            template (omit) CellType m_cellType(
                                                in template (value) CellSize p_cellSize,
                                                in template (omit) CellType.iE_Extensions p_iE_Extensions := omit
                                                ) := {
                cellSize      := p_cellSize,
                iE_Extensions := p_iE_Extensions
            } // End of template m_cellType

            template (value) CEmodeBSupport_Indicator m_cEmodeBSupport_Indicator(in CEmodeBSupport_Indicator p_value := supported) := p_value;
            template (value) CEmodeBrestricted m_cEmodeBrestricted(in CEmodeBrestricted p_value := restricted) := p_value;

            template (omit) CNAssistedRANTuning m_cNAssistedRANTuning(
                                                                      in template (omit) ExpectedUEBehaviour p_expectedUEBehaviour := omit,
                                                                      in template (omit) CNAssistedRANTuning.iE_Extensions p_iE_Extensions := omit
                                                                      ) := {
	            expectedUEBehaviour := p_expectedUEBehaviour,
                iE_Extensions       := p_iE_Extensions
            } // End of template m_cNAssistedRANTuning

            template (omit) CNTypeRestrictionsForEquivalentItem m_cNTypeRestrictionsForEquivalentItem(
	                                                                                                  in template (value) PLMNIdentity p_plmnIdentity,
                                                                                                      in template (value) CNTypeRestrictionsForEquivalentItem.cn_Type p_cn_Type,
                                                                                                      in template (omit) CNTypeRestrictionsForEquivalentItem.iE_Extensions p_iE_Extensions := omit
                                                                                                      ) := {
                plmnIdentity  := p_plmnIdentity,
                cn_Type       := p_cn_Type,
                iE_Extensions := p_iE_Extensions
            } // End of template m_cNTypeRestrictionsForEquivalentItem

            template (value) CNTypeRestrictionsForServing m_cNTypeRestrictionsForServing(in CNTypeRestrictionsForServing p_value := epc_forbidden) := p_value;

            template (omit) CompletedCellsInEAI_EUTRA_Item m_completedCellsInEAI_EUTRA_Item(
                                                                                            in template (value) EUTRA_CGI p_eUTRA_CGI,
                                                                                            in template (omit) CompletedCellsInEAI_EUTRA_Item.iE_Extensions p_iE_Extensions := omit
                                                                                            ) := {
                eUTRA_CGI     := p_eUTRA_CGI,
                iE_Extensions := p_iE_Extensions
            } // End of template m_completedCellsInEAI_EUTRA_Item

Yann Garcia's avatar
Yann Garcia committed
            template (omit) CompletedCellsInEAI_NR_Item m_completedCellsInEAI_NR_Item(
Yann Garcia's avatar
Yann Garcia committed
                                                                                      in template (value) NR_CGI p_nR_CGI,
                                                                                      in template (omit) CompletedCellsInEAI_NR_Item.iE_Extensions p_iE_Extensions := omit
                                                                                      ) := {
                nR_CGI        := p_nR_CGI,
                iE_Extensions := p_iE_Extensions
            } // End of template m_completedCellsInEAI_NR_Item

            template (omit) CompletedCellsInTAI_EUTRA_Item m_completedCellsInTAI_EUTRA_Item(
                                                                                            in template (value) EUTRA_CGI p_eUTRA_CGI,
                                                                                            in template (omit) CompletedCellsInTAI_EUTRA_Item.iE_Extensions p_iE_Extensions := omit
                                                                                            ) := {
                eUTRA_CGI     := p_eUTRA_CGI,
                iE_Extensions := p_iE_Extensions
            } // End of template m_completedCellsInTAI_EUTRA_Item

            template (omit) CompletedCellsInTAI_NR_Item m_completedCellsInTAI_NR_Item(
                                                                                      in template (value) NR_CGI p_nR_CGI,
                                                                                      in template (omit) CompletedCellsInTAI_NR_Item.iE_Extensions p_iE_Extensions := omit
                                                                                      ) := {
                nR_CGI        := p_nR_CGI,
                iE_Extensions := p_iE_Extensions
            } // End of template m_completedCellsInTAI_NR_Item

            template (value) ConcurrentWarningMessageInd m_concurrentWarningMessageInd(in ConcurrentWarningMessageInd p_value := true_) := p_value;
            template (value) ConfidentialityProtectionIndication m_confidentialityProtectionIndication(in ConfidentialityProtectionIndication p_value := required) := p_value;
            template (value) ConfidentialityProtectionResult m_confidentialityProtectionResult(in ConfidentialityProtectionResult p_value := performed) := p_value;
            template (value) ConfiguredTACIndication m_configuredTACIndication(in ConfiguredTACIndication p_value := true_) := p_value;

            template (omit) CoreNetworkAssistanceInformationForInactive m_coreNetworkAssistanceInformationForInactive(
                                                                                                                      in template (value) UEIdentityIndexValue p_uEIdentityIndexValue,
                                                                                                                      in template (value) PeriodicRegistrationUpdateTimer p_periodicRegistrationUpdateTimer,
                                                                                                                      in template (value) TAIListForInactive p_tAIListForInactive,
                                                                                                                      in template (omit) PagingDRX p_uESpecificDRX := omit,
                                                                                                                      in template (omit) MICOModeIndication p_mICOModeIndication := omit,
                                                                                                                      in template (omit) ExpectedUEBehaviour p_expectedUEBehaviour := omit,
                                                                                                                      in template (omit) CoreNetworkAssistanceInformationForInactive.iE_Extensions p_iE_Extensions := omit
                                                                                                                      ) := {
                uEIdentityIndexValue            := p_uEIdentityIndexValue,
                uESpecificDRX                   := p_uESpecificDRX,
                periodicRegistrationUpdateTimer := p_periodicRegistrationUpdateTimer,
                mICOModeIndication              := p_mICOModeIndication,
                tAIListForInactive              := p_tAIListForInactive,
                expectedUEBehaviour             := p_expectedUEBehaviour,
                iE_Extensions                   := p_iE_Extensions
            } // End of template m_coreNetworkAssistanceInformationForInactive

            template (value) CoreNetworkAssistanceInformationForInactive.iE_Extensions m_coreNetworkAssistanceInformationForInactive_paging(
                                                                                                                                            in template (value) EUTRA_PagingeDRXInformation p_eUTRA_PagingeDRXInformation,
                                                                                                                                            in template (value) ExtendedUEIdentityIndexValue p_extendedUEIdentityIndexValue,
                                                                                                                                            in template (value) UERadioCapabilityForPaging p_uERadioCapabilityForPaging,
                                                                                                                                            in template (value) MicoAllPLMN p_micoAllPLMN
                                                                                                                                            ) := {
                {
                    id             := id_EUTRA_PagingeDRXInformation,
                    criticality    := ignore,
                    extensionValue := { EUTRA_PagingeDRXInformation := p_eUTRA_PagingeDRXInformation }
                },
                {
                    id             := id_ExtendedUEIdentityIndexValue,
                    criticality    := ignore,
                    extensionValue := { ExtendedUEIdentityIndexValue := p_extendedUEIdentityIndexValue }
                },
                {
                    id             := id_UERadioCapabilityForPaging,
                    criticality    := ignore,
                    extensionValue := { UERadioCapabilityForPaging := p_uERadioCapabilityForPaging }
                },
                {
                    id             := id_MicoAllPLMN,
                    criticality    := ignore,
                    extensionValue := { MicoAllPLMN := p_micoAllPLMN }
                }
                // TODO To be enhanced
            } // End of template m_coreNetworkAssistanceInformationForInactive_paging

Yann Garcia's avatar
Yann Garcia committed
            template (omit) COUNTValueForPDCP_SN12 m_cOUNTValueForPDCP_SN12(
                                                                            in template (value) COUNTValueForPDCP_SN12.pDCP_SN12 p_pDCP_SN12,
                                                                            in template (value) COUNTValueForPDCP_SN12.hFN_PDCP_SN12 p_hFN_PDCP_SN12,
                                                                            in template (omit) COUNTValueForPDCP_SN12.iE_Extensions p_iE_Extensions := omit
                                                                            ) := {
                pDCP_SN12     := p_pDCP_SN12,
                hFN_PDCP_SN12 := p_hFN_PDCP_SN12,
                iE_Extensions := p_iE_Extensions
            } // End of template m_cOUNTValueForPDCP_SN12

            template (omit) COUNTValueForPDCP_SN18 m_cOUNTValueForPDCP_SN18(
                                                                            in template (value) COUNTValueForPDCP_SN18.pDCP_SN18 p_pDCP_SN18,
                                                                            in template (value) COUNTValueForPDCP_SN18.hFN_PDCP_SN18 p_hFN_PDCP_SN18,
                                                                            in template (omit) COUNTValueForPDCP_SN18.iE_Extensions p_iE_Extensions := omit
                                                                            ) := {
                pDCP_SN18     := p_pDCP_SN18,
                hFN_PDCP_SN18 := p_hFN_PDCP_SN18,
                iE_Extensions := p_iE_Extensions
            } // End of template m_cOUNTValueForPDCP_SN18

            template (value) CPTransportLayerInformation m_cPTransportLayerInformation_endpointIPAddress(
                                                                                                         in template (value) TransportLayerAddress p_endpointIPAddress
                                                                                                         ) := {
                endpointIPAddress := p_endpointIPAddress
            } // End of template m_cPTransportLayerInformation_endpointIPAddress

            template (value) CPTransportLayerInformation m_cPTransportLayerInformation_choice_Extensions(
                                                                                                         in template (value) CPTransportLayerInformation.choice_Extensions p_choice_Extensions
                                                                                                         ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_cPTransportLayerInformation_choice_Extensions

            template (value) CPTransportLayerInformation.choice_Extensions m_cPTransportLayerInformation_ext(
                                                                                                             in template (value) EndpointIPAddressAndPort p_EndpointIPAddressAndPort
                                                                                                             ) := {
                id          := id_EndpointIPAddressAndPort,
                criticality := reject,
                value_      := { EndpointIPAddressAndPort := p_EndpointIPAddressAndPort }
            } // End of template m_cPTransportLayerInformation_ext

            template (omit) CriticalityDiagnostics m_criticalityDiagnostics(
                                                                            in template (omit) ProcedureCode p_procedureCode := omit,
                                                                            in template (omit) TriggeringMessage p_triggeringMessage := omit,
                                                                            in template (omit) Criticality p_procedureCriticality := omit,
                                                                            in template (omit) CriticalityDiagnostics_IE_List p_criticalityDiagnostics_IE_List := omit,
Yann Garcia's avatar
Yann Garcia committed
                                                                            in template (omit) CriticalityDiagnostics.iE_Extensions p_iE_Extensions := omit
                                                                            ) := {
                procedureCode             := p_procedureCode,
                triggeringMessage         := p_triggeringMessage,
                procedureCriticality      := p_procedureCriticality,
                iEsCriticalityDiagnostics := p_criticalityDiagnostics_IE_List,
                iE_Extensions             := p_iE_Extensions
            } // End of template m_criticalityDiagnostics

            template (omit) CriticalityDiagnostics_IE_Item m_criticalityDiagnostics_IE_Item(
                                                                                            in template (value) Criticality p_iECriticality,
                                                                                            in template (value) ProtocolIE_ID p_iE_ID,
                                                                                            in template (value) TypeOfError p_typeOfError,
                                                                                            in template (omit) CriticalityDiagnostics_IE_Item.iE_Extensions p_iE_Extensions := omit
                                                                                            ) := {
                iECriticality := p_iECriticality,
                iE_ID         := p_iE_ID,
                typeOfError   := p_typeOfError,
                iE_Extensions := p_iE_Extensions
            } // End of template m_criticalityDiagnostics_IE_Item

            template (omit) CellBasedMDT_NR m_cellBasedMDT_NR(
                                                              in template (value) CellIdListforMDT_NR p_cellIdListforMDT,
                                                              in template (omit) CellBasedMDT_NR.iE_Extensions p_iE_Extensions
                                                              ) := {
                cellIdListforMDT := p_cellIdListforMDT,
                iE_Extensions    := p_iE_Extensions
            } // End of template m_cellBasedMDT_NR

            template (omit) CellBasedMDT_EUTRA m_cellBasedMDT_EUTRA(
                                                                    in template (value) CellIdListforMDT_EUTRA p_cellIdListforMDT,
                                                                    in template (omit) CellBasedMDT_EUTRA.iE_Extensions p_iE_Extensions
                                                                    ) := {
                cellIdListforMDT := p_cellIdListforMDT,
                iE_Extensions    := p_iE_Extensions
            } // End of template m_cellBasedMDT_EUTRA

            template (omit) CellBasedQMC m_cellBasedQMC(
                                                        in template (value) CellIdListforQMC p_cellIdListforQMC,
                                                        in template (omit) CellBasedQMC.iE_Extensions p_iE_Extensions
                                                        ) := {
                cellIdListforQMC := p_cellIdListforQMC,
                iE_Extensions    := p_iE_Extensions
            } // End of template m_cellBasedQMC

            template (value) DataForwardingNotPossible m_dataForwardingNotPossible(in DataForwardingNotPossible p_value := data_forwarding_not_possible) := p_value;

            template (value) DataForwardingAccepted m_dataForwardingAccepted(in DataForwardingAccepted p_value := data_forwarding_accepted) := p_value;

            template (omit) DataForwardingResponseDRBItem m_dataForwardingResponseDRBItem(
                                                                                          in template (value) DRB_ID p_dRB_ID,
                                                                                          in template (omit) UPTransportLayerInformation p_dLForwardingUP_TNLInformation := omit,
                                                                                          in template (omit) UPTransportLayerInformation p_uLForwardingUP_TNLInformation := omit,
                                                                                          in template (omit) DataForwardingResponseDRBItem.iE_Extensions p_iE_Extensions := omit
                                                                                          ) := {
                dRB_ID                        := p_dRB_ID,
                dLForwardingUP_TNLInformation := p_dLForwardingUP_TNLInformation,
                uLForwardingUP_TNLInformation := p_uLForwardingUP_TNLInformation,
                iE_Extensions                 := p_iE_Extensions
            } // End of template m_dataForwardingResponseDRBItem

            template (omit) DAPSRequestInfo m_dAPSRequestInfo(
                                                              in template (value) DAPSRequestInfo.dAPSIndicator p_dAPSIndicator := daps_ho_required,
                                                              in template (omit) DAPSRequestInfo.iE_Extensions p_iE_Extensions := omit
                                                              ) := {
                dAPSIndicator := p_dAPSIndicator,
                iE_Extensions := p_iE_Extensions
            } // End of template m_dAPSRequestInfo

            template (omit) DAPSResponseInfoItem m_dAPSResponseInfoItem(
                                                                        in template (value) DRB_ID p_dRB_ID,
                                                                        in template (value) DAPSResponseInfo p_dAPSResponseInfo,
                                                                        in template (omit) DAPSResponseInfoItem.iE_Extension p_iE_Extension := omit
                                                                        ) := {
                dRB_ID           := p_dRB_ID,
                dAPSResponseInfo := p_dAPSResponseInfo,
                iE_Extension     := p_iE_Extension
            } // End of template m_dAPSResponseInfoItem

            template (omit) DAPSResponseInfo m_dAPSResponseInfo(
                                                                in template (value) DAPSResponseInfo.dapsresponseindicator p_dapsresponseindicator,
                                                                in template (omit) DAPSResponseInfo.iE_Extensions p_iE_Extensions := omit
                                                                ) := {
                dapsresponseindicator := p_dapsresponseindicator,
                iE_Extensions         := p_iE_Extensions
            } // End of template m_dAPSResponseInfo

            template (omit) DataForwardingResponseERABListItem m_DataForwardingResponseERABListItem(
                                                                                                    in template (value) E_RAB_ID p_e_RAB_ID,
                                                                                                    in template (value) UPTransportLayerInformation p_dLForwardingUP_TNLInformation,
                                                                                                    in template (omit) DataForwardingResponseERABListItem.iE_Extensions p_iE_Extensions := omit
                                                                                                    ) := {
                e_RAB_ID                      := p_e_RAB_ID,
                dLForwardingUP_TNLInformation := p_dLForwardingUP_TNLInformation,
                iE_Extensions                 := p_iE_Extensions
            } // End of template m_DataForwardingResponseERABListItem

            template (value) DelayCritical m_delayCritical(in DelayCritical p_value) := p_value;

            template (omit) DL_CP_SecurityInformation m_dL_CP_SecurityInformation(
                                                                                  in template (value) DL_NAS_MAC p_dl_NAS_MAC,
                                                                                  in template (omit) DL_CP_SecurityInformation.iE_Extensions p_iE_Extensions := omit
                                                                                  ) := {
                dl_NAS_MAC    := p_dl_NAS_MAC,
                iE_Extensions := p_iE_Extensions
            } // End of template m_dL_CP_SecurityInformation

            template (value) DLForwarding m_dLForwarding(in DLForwarding p_value := dl_forwarding_proposed) := p_value;

            template (value) DL_NGU_TNLInformationReused m_dL_NGU_TNLInformationReused(in DL_NGU_TNLInformationReused p_value := true_) := p_value;

            template (value) DirectForwardingPathAvailability m_directForwardingPathAvailability(in DirectForwardingPathAvailability p_value := direct_path_available) := p_value;

            template (omit) DRBsSubjectToStatusTransferItem m_dRBsSubjectToStatusTransferItem(
                                                                                              in template (value) DRB_ID p_dRB_ID,
                                                                                              in template (value) DRBStatusUL p_dRBStatusUL,
                                                                                              in template (value) DRBStatusDL p_dRBStatusDL,
                                                                                              in template (omit) DRBsSubjectToStatusTransferItem.iE_Extension p_iE_Extension := omit
                                                                                              ) := {
                dRB_ID       := p_dRB_ID,
                dRBStatusUL  := p_dRBStatusUL,
                dRBStatusDL  := p_dRBStatusDL,
                iE_Extension := p_iE_Extension
            } // End of template m_dRBsSubjectToStatusTransferItem

            template (value) DRBsSubjectToStatusTransferItem.iE_Extension m_dRBsSubjectToStatusTransferItem_associatedQosFlowList(
                                                                                                                                  in template (value) AssociatedQosFlowList p_associatedQosFlowList
                                                                                                                                  ) := {
	            {
                    id             := id_OldAssociatedQosFlowList_ULendmarkerexpected,
                    criticality    := ignore,
                    extensionValue := { AssociatedQosFlowList := p_associatedQosFlowList }
                }
            } // End of template m_dRBsSubjectToStatusTransferItem_associatedQosFlowList

            template (value) DRBStatusDL m_dRBStatusDL_dRBStatusDL12(
                                                                     in template (value) DRBStatusDL12 p_dRBStatusDL12
                                                                     ) := {
                dRBStatusDL12 := p_dRBStatusDL12
            } // End of template m_dRBStatusDL_dRBStatusDL12

            template (value) DRBStatusDL m_dRBStatusDL_dRBStatusDL18(
                                                                     in template (value) DRBStatusDL18 p_dRBStatusDL18
                                                                     ) := {
                dRBStatusDL18 := p_dRBStatusDL18
            } // End of template m_dRBStatusDL_dRBStatusDL18

            template (value) DRBStatusDL m_dRBStatusDL_choice_Extensions(
                                                                         in template (value) DRBStatusDL.choice_Extensions p_choice_Extensions
                                                                         ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_dRBStatusDL_choice_Extensions            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   DRBStatusDL_ExtIEs  (?);

            template (omit) DRBStatusDL12 m_dRBStatusDL12(
                                                          in template (value) COUNTValueForPDCP_SN12 p_dL_COUNTValue,
                                                          in template (omit) DRBStatusDL12.iE_Extension p_iE_Extension := omit 
                                                          ) := {
                dL_COUNTValue := p_dL_COUNTValue,
                iE_Extension  := p_iE_Extension
            } // End of template m_dRBStatusDL12

            template (omit) DRBStatusDL18 m_dRBStatusDL18(
                                                          in template (value) COUNTValueForPDCP_SN18 p_dL_COUNTValue,
                                                          in template (omit) DRBStatusDL18.iE_Extension p_iE_Extension := omit
                                                          ) := {
                dL_COUNTValue := p_dL_COUNTValue,
                iE_Extension  := p_iE_Extension
            } // End of template m_dRBStatusDL18

            template (value) DRBStatusUL m_dRBStatusUL_dRBStatusUL12(
                                                                     in template (value) DRBStatusUL12 p_dRBStatusUL12
                                                                     ) := {
                dRBStatusUL12 := p_dRBStatusUL12
            } // End of template m_dRBStatusUL_dRBStatusUL12

            template (value) DRBStatusUL m_dRBStatusUL_dRBStatusUL18(
                                                                     in template (value) DRBStatusUL18 p_dRBStatusUL18
                                                                     ) := {
                dRBStatusUL18 := p_dRBStatusUL18
            } // End of template m_dRBStatusUL_dRBStatusUL18

            template (value) DRBStatusUL m_dRBStatusUL_choice_Extensions(
                                                                         in template (value) DRBStatusUL.choice_Extensions p_choice_Extensions
                                                                         ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_dRBStatusUL_choice_Extensions

            template (omit) DRBStatusUL12 m_dRBStatusUL12(
                                                          in template (value) COUNTValueForPDCP_SN12 p_uL_COUNTValue,
                                                          in template (omit) DRBStatusUL12.receiveStatusOfUL_PDCP_SDUs p_receiveStatusOfUL_PDCP_SDUs := omit,
                                                          in template (omit) DRBStatusUL12.iE_Extension p_iE_Extension := omit 
                                                          ) := {
                uL_COUNTValue               := p_uL_COUNTValue,
                receiveStatusOfUL_PDCP_SDUs := p_receiveStatusOfUL_PDCP_SDUs,
                iE_Extension                := p_iE_Extension
            } // End of template m_dRBStatusUL12

            template (omit) DRBStatusUL18 m_dRBStatusUL18(
                                                          in template (value) COUNTValueForPDCP_SN18 p_uL_COUNTValue,
                                                          in template (omit) DRBStatusUL18.receiveStatusOfUL_PDCP_SDUs p_receiveStatusOfUL_PDCP_SDUs := omit,
                                                          in template (omit) DRBStatusUL18.iE_Extension p_iE_Extension := omit 
                                                          ) := {
                uL_COUNTValue               := p_uL_COUNTValue,
                receiveStatusOfUL_PDCP_SDUs := p_receiveStatusOfUL_PDCP_SDUs,
                iE_Extension                := p_iE_Extension
            } // End of template m_dRBStatusUL18

            template (omit) DRBsToQosFlowsMappingItem m_dRBsToQosFlowsMappingItem(
                                                                                  in template (value) DRB_ID p_dRB_ID,
                                                                                  in template (value) AssociatedQosFlowList p_associatedQosFlowList,
                                                                                  in template (omit) DRBsToQosFlowsMappingItem.iE_Extensions p_iE_Extensions := omit
                                                                                  ) := {
                dRB_ID                := p_dRB_ID,
                associatedQosFlowList := p_associatedQosFlowList,
                iE_Extensions         := p_iE_Extensions
            } // End of template m_dRBsToQosFlowsMappingItem

            template (value) DRBsToQosFlowsMappingItem.iE_Extensions m_dRBsToQosFlowsMappingItem_dAPSRequestInfo(
                                                                                                                 in template (value) DAPSRequestInfo p_dAPSRequestInfo
                                                                                                                 ) := {
	            {
                    id             := id_DAPSRequestInfo,
                    criticality    := ignore,
                    extensionValue := { DAPSRequestInfo := p_dAPSRequestInfo }
                }
            } // End of template m_dRBsToQosFlowsMappingItem_dAPSRequestInfo

            template (omit) Dynamic5QIDescriptor m_dynamic5QIDescriptor(
                                                                        in template (value) PriorityLevelQos p_priorityLevelQos,
                                                                        in template (value) PacketDelayBudget p_packetDelayBudget,
                                                                        in template (value) PacketErrorRate p_packetErrorRate,
                                                                        in template (omit) FiveQI p_fiveQI := omit,
                                                                        in template (omit) DelayCritical p_delayCritical := omit,
                                                                        in template (omit) AveragingWindow p_averagingWindow := omit,
                                                                        in template (omit) MaximumDataBurstVolume p_maximumDataBurstVolume := omit,
                                                                        in template (omit) Dynamic5QIDescriptor.iE_Extensions p_iE_Extensions := omit
                                                                        ) := {
                priorityLevelQos       := p_priorityLevelQos,
                packetDelayBudget      := p_packetDelayBudget,
                packetErrorRate        := p_packetErrorRate,
                fiveQI                 := p_fiveQI,
                delayCritical          := p_delayCritical,
                // The above IE shall be present in case of GBR QoS flow
                averagingWindow        := p_averagingWindow,
                // The above IE shall be present in case of GBR QoS flow
                maximumDataBurstVolume := p_maximumDataBurstVolume,
                iE_Extensions          := p_iE_Extensions
            } // End of template m_dynamic5QIDescriptor

            template (value) Dynamic5QIDescriptor.iE_Extensions m_dynamic5QIDescriptor_extendedPacketDelayBudget(
                                                                                                                 in template (value) ExtendedPacketDelayBudget p_extendedPacketDelayBudget
                                                                                                                 ) := {
	            {
                    id             := id_ExtendedPacketDelayBudget,
                    criticality    := ignore,
                    extensionValue := { ExtendedPacketDelayBudget := p_extendedPacketDelayBudget }
                }
            } // End of template m_dynamic5QIDescriptor_extendedPacketDelayBudget

            template (value) Dynamic5QIDescriptor.iE_Extensions m_dynamic5QIDescriptor_cNPacketDelayBudgetDL(
                                                                                                             in template (value) ExtendedPacketDelayBudget p_extendedPacketDelayBudget
                                                                                                             ) := {
	            {
                    id             := id_CNPacketDelayBudgetDL,
                    criticality    := ignore,
                    extensionValue := { ExtendedPacketDelayBudget := p_extendedPacketDelayBudget }
                }
            } // End of template m_dynamic5QIDescriptor_cNPacketDelayBudgetDL

            template (value) Dynamic5QIDescriptor.iE_Extensions m_dynamic5QIDescriptor_cNPacketDelayBudgetUL(
                                                                                                             in template (value) ExtendedPacketDelayBudget p_extendedPacketDelayBudget
                                                                                                             ) := {
	            {
                    id             := id_CNPacketDelayBudgetUL,
                    criticality    := ignore,
                    extensionValue := { ExtendedPacketDelayBudget := p_extendedPacketDelayBudget }
                }
            } // End of template m_dynamic5QIDescriptor_cNPacketDelayBudgetUL

            template (value) EarlyMeasurement m_earlyMeasurement(in EarlyMeasurement p_value := true_) := p_value;

            template (omit) EarlyStatusTransfer_TransparentContainer m_earlyStatusTransfer_TransparentContainer(
                                                                                                                in template (value) ProcedureStageChoice p_procedureStage,
                                                                                                                in template (omit) EarlyStatusTransfer_TransparentContainer.iE_Extensions p_iE_Extensions := omit
                                                                                                                ) := {
                procedureStage := p_procedureStage,
                iE_Extensions  := p_iE_Extensions
            } // End of template m_earlyStatusTransfer_TransparentContainer

            template (value) ProcedureStageChoice m_procedureStageChoice_firstDLCount(
                                                                                      in template (value) FirstDLCount p_firstDLCount
                                                                                      ) := {
                first_dl_count := p_firstDLCount
            } // End of template m_procedureStageChoice_firstDLCount

            template (value) ProcedureStageChoice m_procedureStageChoice_choice_Extensions(
                                                                                           in template (value) ProcedureStageChoice.choice_Extensions p_choice_Extensions
                                                                                           ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_procedureStageChoice_choice_Extensions

            template (omit) FirstDLCount m_firstDLCount(
                                                        in template (value) DRBsSubjectToEarlyStatusTransfer_List p_dRBsSubjectToEarlyStatusTransfer,
                                                        in template (omit) FirstDLCount.iE_Extension p_iE_Extension := omit
                                                        ) := {
                dRBsSubjectToEarlyStatusTransfer := p_dRBsSubjectToEarlyStatusTransfer,
                iE_Extension                     := p_iE_Extension
            } // End of template m_firstDLCount

            template (omit) DRBsSubjectToEarlyStatusTransfer_Item m_dRBsSubjectToEarlyStatusTransfer_Item(
                                                                                                          in template (value) DRB_ID p_dRB_ID,
                                                                                                          in template (value) DRBStatusDL p_firstDLCOUNT,
                                                                                                          in template (omit) DRBsSubjectToEarlyStatusTransfer_Item.iE_Extension p_iE_Extension := omit
                                                                                                          ) := {
                dRB_ID       := p_dRB_ID,
                firstDLCOUNT := p_firstDLCOUNT,
                iE_Extension := p_iE_Extension
            } // End of template m_dRBsSubjectToEarlyStatusTransfer_Item

            template (value) EDT_Session m_eDT_Session(in EDT_Session p_value := true_) := p_value;
2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830

            template (omit) EmergencyAreaIDBroadcastEUTRA_Item m_emergencyAreaIDBroadcastEUTRA_Item(
                                                                                                    in template (value) EmergencyAreaID p_emergencyAreaID,
                                                                                                    in template (value) CompletedCellsInEAI_EUTRA p_completedCellsInEAI_EUTRA,
                                                                                                    in template (omit) EmergencyAreaIDBroadcastEUTRA_Item.iE_Extensions p_iE_Extensions := omit
                                                                                                    ) := {
                emergencyAreaID           := p_emergencyAreaID,
                completedCellsInEAI_EUTRA := p_completedCellsInEAI_EUTRA,
                iE_Extensions             := p_iE_Extensions
            } // End of template m_emergencyAreaIDBroadcastEUTRA_Item

            template (omit) EmergencyAreaIDBroadcastNR_Item m_emergencyAreaIDBroadcastNR_Item(
                                                                                              in template (value) EmergencyAreaID p_emergencyAreaID,
                                                                                              in template (value) CompletedCellsInEAI_NR p_completedCellsInEAI_NR,
                                                                                              in template (omit) EmergencyAreaIDBroadcastNR_Item.iE_Extensions p_iE_Extensions := omit
                                                                                              ) := {
                emergencyAreaID        := p_emergencyAreaID,
                completedCellsInEAI_NR := p_completedCellsInEAI_NR,
                iE_Extensions          := p_iE_Extensions
            } // End of template m_emergencyAreaIDBroadcastNR_Item

            template (omit) EmergencyAreaIDCancelledEUTRA_Item m_emergencyAreaIDCancelledEUTRA_Item(
                                                                                                    in template (value) EmergencyAreaID p_emergencyAreaID,
                                                                                                    in template (value) CancelledCellsInEAI_EUTRA p_cancelledCellsInEAI_EUTRA,
                                                                                                    in template (omit) EmergencyAreaIDCancelledEUTRA_Item.iE_Extensions p_iE_Extensions := omit
                                                                                                    ) := {
                emergencyAreaID           := p_emergencyAreaID,
                cancelledCellsInEAI_EUTRA := p_cancelledCellsInEAI_EUTRA,
                iE_Extensions             := p_iE_Extensions
            } // End of template m_emergencyAreaIDCancelledEUTRA_Item

            template (omit) EmergencyAreaIDCancelledNR_Item m_emergencyAreaIDCancelledNR_Item(
                                                                                              in template (value) EmergencyAreaID p_emergencyAreaID,
                                                                                              in template (value) CancelledCellsInEAI_NR p_cancelledCellsInEAI_NR,
                                                                                              in template (omit) EmergencyAreaIDCancelledNR_Item.iE_Extensions p_iE_Extensions := omit
                                                                                              ) := {
                emergencyAreaID        := p_emergencyAreaID,
                cancelledCellsInEAI_NR := p_cancelledCellsInEAI_NR,
                iE_Extensions          := p_iE_Extensions
            } // End of template m_emergencyAreaIDCancelledNR_Item

            template (omit) EmergencyFallbackIndicator m_emergencyFallbackIndicator(
                                                                                    in template (value) EmergencyFallbackRequestIndicator p_emergencyFallbackRequestIndicator,
                                                                                    in template (omit) EmergencyServiceTargetCN p_emergencyServiceTargetCN := omit,
                                                                                    in template (omit) EmergencyFallbackIndicator.iE_Extensions p_iE_Extensions := omit
                                                                                    ) := {
                emergencyFallbackRequestIndicator := p_emergencyFallbackRequestIndicator,
                emergencyServiceTargetCN          := p_emergencyServiceTargetCN,
                iE_Extensions                     := p_iE_Extensions
            } // End of template m_emergencyFallbackIndicator

            template (value) EmergencyFallbackRequestIndicator m_emergencyFallbackRequestIndicator(in EmergencyFallbackRequestIndicator p_value := emergency_fallback_requested) := p_value;

            template (value) EmergencyServiceTargetCN m_emergencyServiceTargetCN(in EmergencyServiceTargetCN p_value := fiveGC) := p_value;

            template (value) ENB_ID m_eNB_ID_macroENB_ID(
                                                         in template (value) Bit20 p_macroENB_ID
                                                         ) := {
                macroENB_ID := p_macroENB_ID
            } // End of template m_eNB_ID_macroENB_ID

            template (value) ENB_ID m_eNB_ID_homeENB_ID(
                                                         in template (value) Bit28 p_homeENB_ID
                                                         ) := {
                homeENB_ID := p_homeENB_ID
            } // End of template m_eNB_ID_homeENB_ID

            template (value) ENB_ID m_eNB_ID_short_macroENB_ID(
                                                              in template (value) Bit18 p_short_macroENB_ID
                                                              ) := {
                short_macroENB_ID := p_short_macroENB_ID
            } // End of template m_eNB_ID_short_macroENB_ID

            template (value) ENB_ID m_eNB_ID_long_macroENB_ID(
                                                              in template (value) Bit21 p_long_macroENB_ID
                                                              ) := {
                long_macroENB_ID := p_long_macroENB_ID
            } // End of template m_eNB_ID_long_macroENB_ID

            template (value) ENB_ID m_eNB_ID_choice_Extensions(
                                                               in template (value) ENB_ID.choice_Extensions p_choice_Extensions
                                                               ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_eNB_ID_choice_Extensions

            template (value) Enhanced_CoverageRestriction m_enhanced_CoverageRestriction(in Enhanced_CoverageRestriction p_value := restricted) := p_value;

            template (omit) EndpointIPAddressAndPort m_endpointIPAddressAndPort(
                                                                                in template (value) TransportLayerAddress p_endpointIPAddress,
                                                                                in template (value) PortNumber p_portNumber,
                                                                                in template (omit) EndpointIPAddressAndPort.iE_Extensions p_iE_Extensions := omit
                                                                                ) := {
                endpointIPAddress := p_endpointIPAddress,
                portNumber        := p_portNumber,
                iE_Extensions     := p_iE_Extensions
            } // End of template m_endpointIPAddressAndPort

            template (value) EndIndication m_endIndication(in EndIndication p_value := no_further_data) := p_value;

            template (omit) EPS_TAI m_ePS_TAI(
                                              in template (value) PLMNIdentity p_pLMNIdentity,
                                              in template (value) EPS_TAC p_ePS_TAC,
                                              in template (omit) EPS_TAI.iE_Extensions p_iE_Extensions := omit
                                              ) := {
                pLMNIdentity  := p_pLMNIdentity,
                ePS_TAC       := p_ePS_TAC,
                iE_Extensions := p_iE_Extensions
            } // End of template m_ePS_TAI

            template (omit) E_RABInformationItem m_e_RABInformationItem(
                	                                                    in template (value) E_RAB_ID p_e_RAB_ID,
	                                                                    in template (value) DLForwarding p_dLForwarding,
                                                                        in template (omit) E_RABInformationItem.iE_Extensions p_iE_Extensions := omit
                                                                        ) := {
                e_RAB_ID      := p_e_RAB_ID,
                dLForwarding  := p_dLForwarding,
                iE_Extensions := p_iE_Extensions
            } // End of template m_e_RABInformationItem

            template (omit) E_RABInformationItem.iE_Extensions m_e_RABInformationItem_id_SourceTNLAddrInfo(
                                                                                                           in template (value) TransportLayerAddress p_transportLayerAddress
                                                                                                           ) := {
                {
                    id             := id_SourceTNLAddrInfo,
                    criticality    := ignore,
                    extensionValue := { TransportLayerAddress := p_transportLayerAddress }
                }
            } // End of template m_e_RABInformationItem_id_SourceTNLAddrInfo

            template (omit) E_RABInformationItem.iE_Extensions m_e_RABInformationItem_id_SourceNodeTNLAddrInfo(
                                                                                                               in template (value) TransportLayerAddress p_transportLayerAddress
                                                                                                               ) := {
                {
                    id             := id_SourceNodeTNLAddrInfo,
                    criticality    := ignore,
                    extensionValue := { TransportLayerAddress := p_transportLayerAddress }
                }
            } // End of template m_e_RABInformationItem_id_SourceNodeTNLAddrInfo

            template (omit) EUTRA_CGI m_uUTRA_CGI(
                                                  in template (value) PLMNIdentity p_pLMNIdentity,
                                                  in template (value) EUTRACellIdentity p_eUTRACellIdentity,
                                                  in template (omit) EUTRA_CGI.iE_Extensions p_iE_Extensions := omit
                                                  ) := {
                pLMNIdentity      := p_pLMNIdentity,
                eUTRACellIdentity := p_eUTRACellIdentity,
                iE_Extensions     := p_iE_Extensions
            } // End of template m_uUTRA_CGI

            template (omit) EUTRA_PagingeDRXInformation m_eUTRA_PagingeDRXInformation(
                                                                                      in template (value) EUTRA_Paging_eDRX_Cycle p_eUTRA_paging_eDRX_Cycle,
                                                                                      in template (omit) EUTRA_Paging_Time_Window p_eUTRA_paging_Time_Window := omit,
                                                                                      in template (omit) EUTRA_PagingeDRXInformation.iE_Extensions p_iE_Extensions := omit
                                                                                      ) := {
                eUTRA_paging_eDRX_Cycle  := p_eUTRA_paging_eDRX_Cycle,
                eUTRA_paging_Time_Window := p_eUTRA_paging_Time_Window,
                iE_Extensions            := p_iE_Extensions
            } // End of template m_eUTRA_PagingeDRXInformation

            template (value) EUTRA_Paging_eDRX_Cycle m_eUTRA_Paging_eDRX_Cycle(in EUTRA_Paging_eDRX_Cycle p_value := hfhalf) := p_value;

            template (value) EUTRA_Paging_Time_Window m_eUTRA_Paging_Time_Window(in EUTRA_Paging_Time_Window p_value := s1) := p_value;

            template (value) EventType m_eventType(in EventType p_value := direct) := p_value;

            template (omit) ExcessPacketDelayThresholdItem m_excessPacketDelayThresholdItem(
                                                                                            in template (value) FiveQI p_fiveQi,
                                                                                            in template (value) ExcessPacketDelayThresholdValue p_excessPacketDelayThresholdValue,
                                                                                            in template (omit) ExcessPacketDelayThresholdItem.iE_Extensions p_iE_Extensions := omit
                                                                                            ) := {
                fiveQi                          := p_fiveQi,
                excessPacketDelayThresholdValue := p_excessPacketDelayThresholdValue,
                iE_Extensions                   := p_iE_Extensions
            } // End of template m_excessPacketDelayThresholdItem

            template (value) ExcessPacketDelayThresholdValue m_excessPacketDelayThresholdValue(in ExcessPacketDelayThresholdValue p_value := ms0dot25) := p_value;

            template (value) ExpectedHOInterval m_expectedHOInterval(in ExpectedHOInterval p_value := sec15) := p_value;

            template (omit) ExpectedUEActivityBehaviour m_expectedUEActivityBehaviour(
                                                                                      in template (omit) ExpectedActivityPeriod p_expectedActivityPeriod := omit,
                                                                                      in template (omit) ExpectedIdlePeriod p_expectedIdlePeriod := omit,
                                                                                      in template (omit) SourceOfUEActivityBehaviourInformation p_sourceOfUEActivityBehaviourInformation := omit,
                                                                                      in template (omit) ExpectedUEActivityBehaviour.iE_Extensions p_iE_Extensions := omit
                                                                                      ) := {
                expectedActivityPeriod                 := p_expectedActivityPeriod,
                expectedIdlePeriod                     := p_expectedIdlePeriod,
                sourceOfUEActivityBehaviourInformation := p_sourceOfUEActivityBehaviourInformation,
                iE_Extensions                          := p_iE_Extensions
            } // End of template m_expectedUEActivityBehaviour

            template (omit) ExpectedUEBehaviour m_expectedUEBehaviour(
                                                                      in template (omit) ExpectedUEActivityBehaviour p_expectedUEActivityBehaviour := omit,
                                                                      in template (omit) ExpectedHOInterval p_expectedHOInterval := omit,
                                                                      in template (omit) ExpectedUEMobility p_expectedUEMobility := omit,
                                                                      in template (omit) ExpectedUEMovingTrajectory p_expectedUEMovingTrajectory:= omit,
                                                                      in template (omit) ExpectedUEBehaviour.iE_Extensions p_iE_Extensions := omit
                                                                      ) := {
                expectedUEActivityBehaviour := p_expectedUEActivityBehaviour,
                expectedHOInterval          := p_expectedHOInterval,
                expectedUEMobility          := p_expectedUEMobility,
                expectedUEMovingTrajectory  := p_expectedUEMovingTrajectory,
                iE_Extensions               := p_iE_Extensions
            } // End of template m_expectedUEBehaviour

            template (value) ExpectedUEMobility m_expectedUEMobility(in ExpectedUEMobility p_value := mobile) := p_value;

            template (omit) ExpectedUEMovingTrajectoryItem m_expectedUEMovingTrajectoryItem(
                                                                                            in template (value) NGRAN_CGI p_nGRAN_CGI,
                                                                                            in template (omit) ExpectedUEMovingTrajectoryItem.timeStayedInCell p_timeStayedInCell := omit,
                                                                                            in template (omit) ExpectedUEMovingTrajectoryItem.iE_Extensions p_iE_Extensions := omit
                                                                                            ) := {
                nGRAN_CGI        := p_nGRAN_CGI,
                timeStayedInCell := p_timeStayedInCell,
                iE_Extensions    := p_iE_Extensions
            } // End of template m_expectedUEMovingTrajectoryItem

            template (omit) Extended_AMFName m_extended_AMFName(
                                                                in template (omit) AMFNameVisibleString p_aMFNameVisibleString := omit,
                                                                in template (omit) AMFNameUTF8String p_aMFNameUTF8String := omit,
                                                                in template (omit) Extended_AMFName.iE_Extensions p_iE_Extensions := omit
                                                                ) := {
                aMFNameVisibleString := p_aMFNameVisibleString,
                aMFNameUTF8String    := p_aMFNameUTF8String,
                iE_Extensions        := p_iE_Extensions
            } // End of template m_extended_AMFName

            template (omit) Extended_RANNodeName m_extended_RANNodeName(
                                                                        in template (omit) RANNodeNameVisibleString p_rANNodeNameVisibleString := omit,
                                                                        in template (omit) RANNodeNameUTF8String p_rANNodeNameUTF8String := omit,
                                                                        in template (omit) Extended_RANNodeName.iE_Extensions p_iE_Extensions := omit
                                                                        ) := {
                rANNodeNameVisibleString := p_rANNodeNameVisibleString,
                rANNodeNameUTF8String    := p_rANNodeNameUTF8String,
                iE_Extensions            := p_iE_Extensions
            } // End of template m_extended_RANNodeName

            template (omit) ExtendedRATRestrictionInformation m_extendedRATRestrictionInformation(
                                                                                                  in template (value) ExtendedRATRestrictionInformation.primaryRATRestriction p_primaryRATRestriction,
                                                                                                  in template (value) ExtendedRATRestrictionInformation.secondaryRATRestriction p_secondaryRATRestriction,
                                                                                                  in template (omit) ExtendedRATRestrictionInformation.iE_Extensions p_iE_Extensions := omit
                                                                                                  ) := {
                primaryRATRestriction   := p_primaryRATRestriction,
                secondaryRATRestriction := p_secondaryRATRestriction,
                iE_Extensions           := p_iE_Extensions
            } // End of template m_extendedRATRestrictionInformation

            template (value) EventTrigger m_eventTrigger_outOfCoverage(
                                                                       in template (value) EventTrigger.outOfCoverage p_outOfCoverage := true_
                                                                       ) := {
                outOfCoverage := p_outOfCoverage
            } // End of template m_eventTrigger_outOfCoverage

            template (value) EventTrigger m_eventTrigger_eventL1LoggedMDTConfig(
                                                                                in template (value) EventL1LoggedMDTConfig p_eventL1LoggedMDTConfig
                                                                                ) := {
                eventL1LoggedMDTConfig := p_eventL1LoggedMDTConfig
            } // End of template m_eventTrigger_eventL1LoggedMDTConfig

            template (value) EventTrigger m_eventTrigger_choice_Extensions(
                                                                           in template (value) EventTrigger.choice_Extensions p_choice_Extensions
                                                                           ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_eventTrigger_choice_Extensions

            template (omit) EventL1LoggedMDTConfig m_eventL1LoggedMDTConfig(
                                                                            in template (value) MeasurementThresholdL1LoggedMDT p_l1Threshold,
                                                                            in template (value) Hysteresis p_hysteresis,
                                                                            in template (value) TimeToTrigger p_timeToTrigger,
                                                                            in template (omit) EventL1LoggedMDTConfig.iE_Extensions p_iE_Extensions := omit
                                                                            ) := {
                l1Threshold   := p_l1Threshold,
                hysteresis    := p_hysteresis,
                timeToTrigger := p_timeToTrigger,
                iE_Extensions := p_iE_Extensions
            } // End of template m_eventL1LoggedMDTConfig

            template (value) MeasurementThresholdL1LoggedMDT m_measurementThresholdL1LoggedMDT_threshold_RSRP(
                                                                                                              in template (value) Threshold_RSRP p_threshold_RSRP
                                                                                                              ) := {
                threshold_RSRP := p_threshold_RSRP
            } // End of template m_measurementThresholdL1LoggedMDT_threshold_RSRP

            template (value) MeasurementThresholdL1LoggedMDT m_measurementThresholdL1LoggedMDT_threshold_RSRQ(
                                                                                                              in template (value) Threshold_RSRQ p_threshold_RSRQ
                                                                                                              ) := {
                threshold_RSRQ := p_threshold_RSRQ
            } // End of template m_measurementThresholdL1LoggedMDT_threshold_RSRQ

            template (value) MeasurementThresholdL1LoggedMDT m_measurementThresholdL1LoggedMDT_choice_Extensions(
                                                                                                                 in template (value) MeasurementThresholdL1LoggedMDT.choice_Extensions p_choice_Extensions
                                                                                                                 ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_measurementThresholdL1LoggedMDT_choice_Extensions

            template (omit) FailureIndication m_failureIndication(
                                                                  in template (value) UERLFReportContainer p_uERLFReportContainer,
                                                                  in template (omit) FailureIndication.iE_Extensions p_iE_Extensions := omit
                                                                  ) := {
                uERLFReportContainer := p_uERLFReportContainer,
                iE_Extensions        := p_iE_Extensions
            } // End of template m_failureIndication

            template (omit) FiveG_ProSeAuthorized m_FiveG_ProSeAuthorized(
                                                                           in template (omit) FiveGProSeDirectDiscovery p_fiveGProSeDirectDiscovery := omit,
                                                                           in template (omit) FiveGProSeDirectCommunication p_fiveGProSeDirectCommunication := omit,
                                                                           in template (omit) FiveGProSeLayer2UEtoNetworkRelay p_fiveGProSeLayer2UEtoNetworkRelay := omit,
                                                                           in template (omit) FiveGProSeLayer3UEtoNetworkRelay p_fiveGProSeLayer3UEtoNetworkRelay := omit,
                                                                           in template (omit) FiveGProSeLayer2RemoteUE p_fiveGProSeLayer2RemoteUE := omit,
                                                                           in template (omit) FiveG_ProSeAuthorized.iE_Extensions p_iE_Extensions := omit
                                                                           ) := {
                fiveGProSeDirectDiscovery        := p_fiveGProSeDirectDiscovery,
                fiveGProSeDirectCommunication    := p_fiveGProSeDirectCommunication,
                fiveGProSeLayer2UEtoNetworkRelay := p_fiveGProSeLayer2UEtoNetworkRelay,
                fiveGProSeLayer3UEtoNetworkRelay := p_fiveGProSeLayer3UEtoNetworkRelay,
                fiveGProSeLayer2RemoteUE         := p_fiveGProSeLayer2RemoteUE,
                iE_Extensions                    := p_iE_Extensions
            } // End of template m_FiveG_ProSeAuthorized

            template (value) FiveGProSeDirectDiscovery m_fiveGProSeDirectDiscovery(in FiveGProSeDirectDiscovery p_value := authorized) := p_value;

            template (value) FiveGProSeDirectCommunication m_fiveGProSeDirectCommunication(in FiveGProSeDirectCommunication p_value := authorized) := p_value;

            template (value) FiveGProSeLayer2UEtoNetworkRelay m_fiveGProSeLayer2UEtoNetworkRelay(in FiveGProSeLayer2UEtoNetworkRelay p_value := authorized) := p_value;

            template (value) FiveGProSeLayer3UEtoNetworkRelay m_fiveGProSeLayer3UEtoNetworkRelay(in FiveGProSeLayer3UEtoNetworkRelay p_value := authorized) := p_value;

            template (value) FiveGProSeLayer2RemoteUE m_fiveGProSeLayer2RemoteUE(in FiveGProSeLayer2RemoteUE p_value := authorized) := p_value;

            template (omit) FiveG_ProSePC5QoSParameters m_fiveG_ProSePC5QoSParameters(
                                                                                      in template (value) FiveGProSePC5QoSFlowList p_fiveGProSepc5QoSFlowList,
                                                                                      in template (omit) BitRate p_fiveGProSepc5LinkAggregateBitRates := omit,
                                                                                      in template (omit) FiveG_ProSePC5QoSParameters.iE_Extensions p_iE_Extensions := omit
                                                                                      ) := {
                fiveGProSepc5QoSFlowList           := p_fiveGProSepc5QoSFlowList,
                fiveGProSepc5LinkAggregateBitRates := p_fiveGProSepc5LinkAggregateBitRates,
                iE_Extensions                      := p_iE_Extensions
            } // End of template m_fiveG_ProSePC5QoSParameters

            template (omit) FiveGProSePC5QoSFlowItem m_fiveGProSePC5QoSFlowItem(
                                                                                in template (value) FiveQI p_fiveGproSepQI,
                                                                                in template (omit) FiveGProSePC5FlowBitRates p_fiveGproSepc5FlowBitRates := omit,
                                                                                in template (omit) Range p_fiveGproSerange := omit,
                                                                                in template (omit) FiveGProSePC5QoSFlowItem.iE_Extensions p_iE_Extensions := omit
                                                                                ) := {
                fiveGproSepQI             := p_fiveGproSepQI,
                fiveGproSepc5FlowBitRates := p_fiveGproSepc5FlowBitRates,
                fiveGproSerange           := p_fiveGproSerange,
                iE_Extensions             := p_iE_Extensions
            } // End of template m_fiveGProSePC5QoSFlowItem

            template (omit) FiveGProSePC5FlowBitRates m_fiveGProSePC5FlowBitRates(
                                                                                  in template (value) BitRate p_fiveGproSeguaranteedFlowBitRate,
                                                                                  in template (value) BitRate p_fiveGproSemaximumFlowBitRate,
                                                                                  in template (omit) FiveGProSePC5FlowBitRates.iE_Extensions p_iE_Extensions := omit
                                                                                  ) := {
                fiveGproSeguaranteedFlowBitRate := p_fiveGproSeguaranteedFlowBitRate,
                fiveGproSemaximumFlowBitRate    := p_fiveGproSemaximumFlowBitRate,
                iE_Extensions                   := p_iE_Extensions
            } // End of template m_fiveGProSePC5FlowBitRates

            template (omit) FiveG_S_TMSI m_fiveG_S_TMSI(
                                                        in template (value) AMFSetID p_aMFSetID,
                                                        in template (value) AMFPointer p_aMFPointer,
                                                        in template (value) FiveG_TMSI p_fiveG_TMSI,
                                                        in template (omit) FiveG_S_TMSI.iE_Extensions p_iE_Extensions := omit
                                                        ) := {
                aMFSetID      := p_aMFSetID,
                aMFPointer    := p_aMFPointer,
                fiveG_TMSI    := p_fiveG_TMSI,
                iE_Extensions := p_iE_Extensions
            } // End of template m_fiveG_S_TMSI

            template (omit) ForbiddenAreaInformation_Item m_forbiddenAreaInformation_Item(
                                                                                          in template (value) PLMNIdentity p_pLMNIdentity,
                                                                                          in template (value) ForbiddenTACs p_forbiddenTACs,
                                                                                          in template (omit) ForbiddenAreaInformation_Item.iE_Extensions p_iE_Extensions := omit
                                                                                          ) := {
                pLMNIdentity  := p_pLMNIdentity,
                forbiddenTACs := p_forbiddenTACs,
                iE_Extensions := p_iE_Extensions
            } // End of template m_forbiddenAreaInformation_Item

            template (omit) FromEUTRANtoNGRAN m_fromEUTRANtoNGRAN(
                                                                  in template (value) IntersystemSONeNBID p_sourceeNBID,
                                                                  in template (value) IntersystemSONNGRANnodeID p_targetNGRANnodeID,
                                                                  in template (omit) FromEUTRANtoNGRAN.iE_Extensions p_iE_Extensions := omit
                                                                  ) := {
                sourceeNBID       := p_sourceeNBID,
                targetNGRANnodeID := p_targetNGRANnodeID,
                iE_Extensions     := p_iE_Extensions
            } // End of template m_fromEUTRANtoNGRAN

            template (omit) FromNGRANtoEUTRAN m_fromNGRANtoEUTRAN(
                                                                  in template (value) IntersystemSONNGRANnodeID p_sourceNGRANnodeID,
                                                                  in template (value) IntersystemSONeNBID p_targeteNBID,
                                                                  in template (omit) FromNGRANtoEUTRAN.iE_Extensions p_iE_Extensions := omit
                                                                  ) := {
                sourceNGRANnodeID := p_sourceNGRANnodeID,
                targeteNBID       := p_targeteNBID,
                iE_Extensions     := p_iE_Extensions
            } // End of template m_fromNGRANtoEUTRAN

            template (omit) GBR_QosInformation m_gBR_QosInformation(
                                                                    in template (value) BitRate p_maximumFlowBitRateDL,
                                                                    in template (value) BitRate p_maximumFlowBitRateUL,
                                                                    in template (value) BitRate p_guaranteedFlowBitRateDL,
                                                                    in template (value) BitRate p_guaranteedFlowBitRateUL,
                                                                    in template (omit) NotificationControl p_notificationControl := omit,
                                                                    in template (omit) PacketLossRate p_maximumPacketLossRateDL := omit,
                                                                    in template (omit) PacketLossRate p_maximumPacketLossRateUL := omit,
                                                                    in template (omit) GBR_QosInformation.iE_Extensions p_iE_Extensions := omit
                                                                    ) := {
                maximumFlowBitRateDL    := p_maximumFlowBitRateDL,
                maximumFlowBitRateUL    := p_maximumFlowBitRateUL,
                guaranteedFlowBitRateDL := p_guaranteedFlowBitRateDL,
                guaranteedFlowBitRateUL := p_guaranteedFlowBitRateUL,
                notificationControl     := p_notificationControl,
                maximumPacketLossRateDL := p_maximumPacketLossRateDL,
                maximumPacketLossRateUL := p_maximumPacketLossRateUL,
                iE_Extensions           := p_iE_Extensions
            } // End of template m_gBR_QosInformation

            template (value) GBR_QosInformation.iE_Extensions m_gBR_QosInformation_id_AlternativeQoSParaSetList(
                                                                                                                in template (value) AlternativeQoSParaSetList p_alternativeQoSParaSetList
                                                                                                                ) := {
                { 
                    id             := id_AlternativeQoSParaSetList,
                    criticality    := ignore,
                    extensionValue := { AlternativeQoSParaSetList := p_alternativeQoSParaSetList}
                }
            } // End of template m_gBR_QosInformation_id_AlternativeQoSParaSetList

            template (omit) GlobalCable_ID_new m_globalCable_ID_new(
                                                                    in template (value) GlobalCable_ID p_globalCable_ID,
                                                                    in template (value) TAI p_tAI,
                                                                    in template (omit) GlobalCable_ID_new.iE_Extensions p_iE_Extensions := omit
                                                                    ) := {
                globalCable_ID := p_globalCable_ID,
                tAI            := p_tAI,
                iE_Extensions  := p_iE_Extensions
            } // End of template m_globalCable_ID_new

            template (omit) GlobalGNB_ID m_ie_globalGnbId(
                                                          in template (value) PLMNIdentity p_plmnId,
                                                          in template (value) bitstring p_gnbId,
                                                          in template (omit) GlobalGNB_ID.iE_Extensions p_iE_Extensions := omit
                                                          ) := {
Iztok Juvancic's avatar
Iztok Juvancic committed
                pLMNIdentity  := p_plmnId,//'010001'O,
                gNB_ID        := { gNB_ID := p_gnbId/*'0000000000000000000000'B*/},
                iE_Extensions := p_iE_Extensions
            } // End of template m_ie_globalGnbId

            template (omit) GlobalN3IWF_ID m_globalN3IWF_ID(
                                                            in template (value) PLMNIdentity p_pLMNIdentity,
                                                            in template (value) N3IWF_ID p_n3IWF_ID,
                                                            in template (omit) GlobalN3IWF_ID.iE_Extensions p_iE_Extensions := omit
                                                            ) := {
                pLMNIdentity  := p_pLMNIdentity,
                n3IWF_ID      := p_n3IWF_ID,
                iE_Extensions := p_iE_Extensions
            } // End of template m_globalN3IWF_ID

            template (omit) GlobalLine_ID m_globalLine_ID(
                                                          in template (value) GlobalLineIdentity p_globalLineIdentity,
                                                          in template (omit) LineType p_lineType := omit,
                                                          in template (omit) GlobalLine_ID.iE_Extensions p_iE_Extensions := omit
                                                          ) := {
                globalLineIdentity := p_globalLineIdentity,
                lineType           := p_lineType,
                iE_Extensions      := p_iE_Extensions
            } // End of template m_globalLine_ID

            template (value) GlobalLine_ID.iE_Extensions m_globalLine_ID_id_TAI(in template (value) TAI p_tAI) := {
                { 
                    id             := id_TAI,
                    criticality    := ignore,
                    extensionValue := { TAI := p_tAI }	
                }
            } // End of template m_globalLine_ID_id_TAI

            template (omit) GlobalNgENB_ID m_globalNgENB_ID(
                                                            in template (value) PLMNIdentity p_pLMNIdentity,
                                                            in template (value) NgENB_ID p_ngENB_ID,
                                                            in template (omit) GlobalNgENB_ID.iE_Extensions p_iE_Extensions := omit
                                                            ) := {
                pLMNIdentity  := p_pLMNIdentity,
                ngENB_ID      := p_ngENB_ID,
                iE_Extensions := p_iE_Extensions
            } // End of template m_globalNgENB_ID

            template (value) GlobalRANNodeID m_globalRANNodeID_globalGNB_ID(
                                                                            in template (value) GlobalGNB_ID p_globalGNB_ID
                                                                            ) := {
                globalGNB_ID := p_globalGNB_ID
            } // End of template m_globalRANNodeID_globalGNB_ID

            template (value) GlobalRANNodeID m_globalRANNodeID_globalNgENB_ID(
                                                                              in template (value) GlobalNgENB_ID p_globalNgENB_ID
                                                                              ) := {
                globalNgENB_ID := p_globalNgENB_ID
            } // End of template m_globalRANNodeID_globalNgENB_ID

            template (value) GlobalRANNodeID m_globalRANNodeID_globalN3IWF_ID(
                                                                              in template (value) GlobalN3IWF_ID p_globalN3IWF_ID
                                                                              ) := {
                globalN3IWF_ID := p_globalN3IWF_ID
            } // End of template m_globalRANNodeID_globalN3IWF_ID

            template (value) GlobalRANNodeID m_globalRANNodeID_choice_Extensions(
                                                                                 in template (value) GlobalRANNodeID.choice_Extensions p_choice_Extensions
                                                                                 ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_globalRANNodeID_choice_Extensions

            template (value) GlobalRANNodeID.choice_Extensions m_globalRANNodeID_id_GlobalTNGF_ID(
                                                                                                  in template (value) GlobalTNGF_ID p_globalTNGF_ID
                                                                                                  ) := {
                id          := id_GlobalTNGF_ID,
                criticality := reject,
                value_      := { GlobalTNGF_ID := p_globalTNGF_ID }
            } // End of template m_globalRANNodeID_id_GlobalTNGF_ID

            template (value) GlobalRANNodeID.choice_Extensions m_globalRANNodeID_id_GlobalTWIF_ID(
                                                                                                  in template (value) GlobalTNGF_ID p_globalTWIF_ID
                                                                                                  ) := {
                id          := id_GlobalTWIF_ID,
                criticality := reject,
                value_      := { GlobalTNGF_ID := p_globalTWIF_ID }
            } // End of template m_globalRANNodeID_id_GlobalTWIF_ID

            template (value) GlobalRANNodeID.choice_Extensions m_globalRANNodeID_id_GlobalW_AGF_ID(
                                                                                                   in template (value) GlobalW_AGF_ID p_globalW_AGF_ID
                                                                                                   ) := {
                id          := id_GlobalW_AGF_ID,
                criticality := reject,
                value_      := { GlobalW_AGF_ID := p_globalW_AGF_ID }
            } // End of template m_globalRANNodeID_id_GlobalW_AGF_ID

            // template (value) GlobalRANNodeID.choice_Extensions m_globalRANNodeID_all(
            //                                                                          in template (value) GlobalTNGF_ID p_globalTNGF_ID,
            //                                                                          in template (value) GlobalTWIF_ID p_globalTWIF_ID,
            //                                                                          in template (value) GlobalW_AGF_ID p_globalW_AGF_ID
            //                                                                          ) := {
            //     {
            //         id          := id_GlobalTNGF_ID,
            //         criticality := reject,
            //         value_      := { GlobalTNGF_ID := p_globalTNGF_ID }
            //     },
            //     {
            //         id          := id_GlobalTWIF_ID,
            //         criticality := reject,
            //         value_      := { GlobalTNGF_ID := p_globalTWIF_ID }
            //     },
            //     {
            //         id          := id_GlobalW_AGF_ID,
            //         criticality := reject,
            //         value_      := { GlobalW_AGF_ID := p_globalW_AGF_ID }
            //     }
            // } // End of template m_globalRANNodeID_all

            template (omit) GlobalTNGF_ID m_globalTNGF_ID(
                                                          in template (value) PLMNIdentity p_pLMNIdentity,
                                                          in template (value) TNGF_ID p_tNGF_ID,
                                                          in template (omit) GlobalTNGF_ID.iE_Extensions p_iE_Extensions := omit
                                                          ) := {
                pLMNIdentity  := p_pLMNIdentity,
                tNGF_ID       := p_tNGF_ID,
                iE_Extensions := p_iE_Extensions
            } // End of template m_globalTNGF_ID

            template (omit) GlobalTWIF_ID m_globalTWIF_ID(
                                                          in template (value) PLMNIdentity p_pLMNIdentity,
                                                          in template (value) TWIF_ID p_tWIF_ID,
                                                          in template (omit) GlobalTWIF_ID.iE_Extensions p_iE_Extensions := omit
                                                          ) := {
                pLMNIdentity  := p_pLMNIdentity,
                tWIF_ID       := p_tWIF_ID,
                iE_Extensions := p_iE_Extensions
            } // End of template m_globalTWIF_ID

            template (omit) GlobalW_AGF_ID m_GlobalW_AGF_ID(
                                                            in template (value) PLMNIdentity p_pLMNIdentity,
                                                            in template (value) W_AGF_ID p_w_AGF_ID,
                                                            in template (omit) GlobalW_AGF_ID.iE_Extensions p_iE_Extensions := omit
                                                            ) := {
                pLMNIdentity  := p_pLMNIdentity,
                w_AGF_ID      := p_w_AGF_ID,
                iE_Extensions := p_iE_Extensions
            } // End of template m_GlobalW_AGF_ID

            template (value) GNB_ID m_gNB_ID_gNB_ID(
                                                    in template (value) GNB_ID.gNB_ID p_gNB_ID
                                                    ) := {
                gNB_ID := p_gNB_ID
            } // End of template m_gNB_ID_gNB_ID

            template (value) GNB_ID m_gNB_ID_choice_Extensions(
                                                               in template (value) GNB_ID.choice_Extensions p_choice_Extensions
                                                               ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_gNB_ID_choice_Extensions

            template (value) GTP_TEID m_ie_gtpTeId(in GTP_TEID p_val := '00000000'O) :=p_val;

Iztok Juvancic's avatar
Iztok Juvancic committed
            //  type    record  GTPTunnel   {
            template (omit) GTPTunnel m_ie_gTPTunnel(
                                                     in template (value) TransportLayerAddress p_tla,
                                                     in template (value) GTP_TEID p_gtp_teid,
                                                     in template (omit) GTPTunnel.iE_Extensions p_iE_Extensions := omit
                                                     ):= {
Iztok Juvancic's avatar
Iztok Juvancic committed
                transportLayerAddress := p_tla,
                gTP_TEID              := p_gtp_teid,
                iE_Extensions         := p_iE_Extensions
            } // End of template m_ie_gTPTunnel

            template (omit) GUAMI m_gUAMI(
                                          in template (value) PLMNIdentity p_pLMNIdentity,
                                          in template (value) AMFRegionID p_aMFRegionID,
                                          in template (value) AMFSetID p_aMFSetID,
                                          in template (value) AMFPointer p_aMFPointer,
                                          in template (omit) GUAMI.iE_Extensions p_iE_Extensions := omit
                                          ) := {
                pLMNIdentity  := p_pLMNIdentity,
                aMFRegionID   := p_aMFRegionID,
                aMFSetID      := p_aMFSetID,
                aMFPointer    := p_aMFPointer,
                iE_Extensions := p_iE_Extensions
            } // End of template m_gUAMI

            template (value) GUAMIType m_gUAMIType(in GUAMIType p_val := native) := p_val;

            template (omit) HandoverCommandTransfer m_handoverCommandTransfer(
                                                                              in template (omit) UPTransportLayerInformation p_dLForwardingUP_TNLInformation := omit,
                                                                              in template (omit) QosFlowToBeForwardedList p_qosFlowToBeForwardedList := omit,
                                                                              in template (omit) DataForwardingResponseDRBList p_dataForwardingResponseDRBList := omit,
                                                                              in template (omit) HandoverCommandTransfer.iE_Extensions p_iE_Extensions := omit
                                                                              ) := {
                dLForwardingUP_TNLInformation := p_dLForwardingUP_TNLInformation,
                qosFlowToBeForwardedList      := p_qosFlowToBeForwardedList,
                dataForwardingResponseDRBList := p_dataForwardingResponseDRBList,
                iE_Extensions                 := p_iE_Extensions
            } // End of template m_handoverCommandTransfer

            template (value) HandoverCommandTransfer.iE_Extensions m_handoverCommandTransfer_id_AdditionalDLForwardingUPTNLInformation(
                                                                                                                                       in template (value) QosFlowPerTNLInformationList p_qosFlowPerTNLInformationList
                                                                                                                                       ) := {
                { 
                    id             := id_AdditionalDLForwardingUPTNLInformation,
                    criticality    := ignore,
                    extensionValue := { QosFlowPerTNLInformationList := p_qosFlowPerTNLInformationList }	
                }
            } // End of template m_handoverCommandTransfer_id_AdditionalDLForwardingUPTNLInformation

            template (value) HandoverCommandTransfer.iE_Extensions m_handoverCommandTransfer_id_ULForwardingUP_TNLInformation(
                                                                                                                              in template (value) UPTransportLayerInformation p_uPTransportLayerInformation
                                                                                                                              ) := {
                { 
                    id             := id_ULForwardingUP_TNLInformation,
                    criticality    := reject,
                    extensionValue := { UPTransportLayerInformation := p_uPTransportLayerInformation }	
                }
            } // End of template m_handoverCommandTransfer_id_ULForwardingUP_TNLInformation

            template (value) HandoverCommandTransfer.iE_Extensions m_handoverCommandTransfer_id_AdditionalULForwardingUPTNLInformation(
                                                                                                                                       in template (value) UPTransportLayerInformationList p_uPTransportLayerInformationList
                                                                                                                                       ) := {
                { 
                    id             := id_AdditionalULForwardingUPTNLInformation,
                    criticality    := reject,
                    extensionValue := { UPTransportLayerInformationList := p_uPTransportLayerInformationList }	
                }
            } // End of template m_handoverCommandTransfer_id_AdditionalULForwardingUPTNLInformation

            template (value) HandoverCommandTransfer.iE_Extensions m_handoverCommandTransfer_id_DataForwardingResponseERABList(
                                                                                                                               in template (value) DataForwardingResponseERABList p_dataForwardingResponseERABList
                                                                                                                               ) := {
                { 
                    id             := id_DataForwardingResponseERABList,
                    criticality    := ignore,
                    extensionValue := { DataForwardingResponseERABList := p_dataForwardingResponseERABList }	
                }
            } // End of template m_handoverCommandTransfer_id_DataForwardingResponseERABList

            template (value) HandoverCommandTransfer.iE_Extensions m_handoverCommandTransfer_id_QosFlowFailedToSetupList(
                                                                                                                         in template (value) QosFlowListWithCause p_qosFlowListWithCause
                                                                                                                         ) := {
                { 
                    id             := id_QosFlowFailedToSetupList,
                    criticality    := ignore,
                    extensionValue := { QosFlowListWithCause := p_qosFlowListWithCause }	
                }
            } // End of template m_handoverCommandTransfer_id_QosFlowFailedToSetupList

            template (value) HandoverFlag m_handoverFlag(in HandoverFlag p_val := handover_preparation) := p_val;

            template (omit) HandoverPreparationUnsuccessfulTransfer m_mandoverPreparationUnsuccessfulTransfer(
                                                                                                              in template (value) Cause p_cause,
                                                                                                              in template (omit) HandoverPreparationUnsuccessfulTransfer.iE_Extensions p_iE_Extensions := omit
                                                                                                              ) := {
                cause         := p_cause,
                iE_Extensions := p_iE_Extensions
            } // End of template m_mandoverPreparationUnsuccessfulTransfer

            template (omit) HandoverRequestAcknowledgeTransfer m_handoverRequestAcknowledgeTransfer(
                                                                                                    in template (value) UPTransportLayerInformation p_dL_NGU_UP_TNLInformation,
                                                                                                    in template (value) QosFlowListWithDataForwarding p_qosFlowSetupResponseList,
                                                                                                    in template (omit) UPTransportLayerInformation p_dLForwardingUP_TNLInformation := omit,
                                                                                                    in template (omit) SecurityResult p_securityResult := omit,
                                                                                                    in template (omit) QosFlowListWithCause p_qosFlowFailedToSetupList := omit,
                                                                                                    in template (omit) DataForwardingResponseDRBList p_dataForwardingResponseDRBList := omit,
                                                                                                    in template (omit) HandoverRequestAcknowledgeTransfer.iE_Extensions p_iE_Extensions := omit
                                                                                                    ) := {
                dL_NGU_UP_TNLInformation      := p_dL_NGU_UP_TNLInformation,
                dLForwardingUP_TNLInformation := p_dLForwardingUP_TNLInformation,
                securityResult                := p_securityResult,
                qosFlowSetupResponseList      := p_qosFlowSetupResponseList,
                qosFlowFailedToSetupList      := p_qosFlowFailedToSetupList,
                dataForwardingResponseDRBList := p_dataForwardingResponseDRBList,
                iE_Extensions                 := p_iE_Extensions
            } // End of template m_handoverRequestAcknowledgeTransfer

            template (value) HandoverRequestAcknowledgeTransfer.iE_Extensions m_handoverRequestAcknowledgeTransfer_id_AdditionalDLUPTNLInformationForHOList(
                                                                                                                                                            in template (value) AdditionalDLUPTNLInformationForHOList p_additionalDLUPTNLInformationForHOList
                                                                                                                                                            ) := {
                { 
                    id             := id_AdditionalDLUPTNLInformationForHOList,
                    criticality    := reject,
                    extensionValue := { AdditionalDLUPTNLInformationForHOList := p_additionalDLUPTNLInformationForHOList }	
                }
            } // End of template m_handoverRequestAcknowledgeTransfer_id_AdditionalDLUPTNLInformationForHOList

            template (value) HandoverRequestAcknowledgeTransfer.iE_Extensions m_handoverRequestAcknowledgeTransfer_id_ULForwardingUP_TNLInformation(
                                                                                                                                                    in template (value) UPTransportLayerInformation p_uPTransportLayerInformation
                                                                                                                                                    ) := {
                { 
                    id             := id_ULForwardingUP_TNLInformation,
                    criticality    := reject,
                    extensionValue := { UPTransportLayerInformation := p_uPTransportLayerInformation }	
                }
            } // End of template m_handoverRequestAcknowledgeTransfer_id_ULForwardingUP_TNLInformation

            template (value) HandoverRequestAcknowledgeTransfer.iE_Extensions m_handoverRequestAcknowledgeTransfer_id_AdditionalULForwardingUPTNLInformation(
                                                                                                                                                             in template (value) UPTransportLayerInformationList p_uPTransportLayerInformationList
                                                                                                                                                             ) := {
                { 
                    id             := id_AdditionalULForwardingUPTNLInformation,
                    criticality    := reject,
                    extensionValue := { UPTransportLayerInformationList := p_uPTransportLayerInformationList }	
                }
            } // End of template m_handoverRequestAcknowledgeTransfer_id_AdditionalULForwardingUPTNLInformation

            template (value) HandoverRequestAcknowledgeTransfer.iE_Extensions m_handoverRequestAcknowledgeTransfer_id_DataForwardingResponseERABList(
                                                                                                                                                     in template (value) DataForwardingResponseERABList p_dataForwardingResponseERABList
                                                                                                                                                     ) := {
                { 
                    id             := id_DataForwardingResponseERABList,
                    criticality    := ignore,
                    extensionValue := { DataForwardingResponseERABList := p_dataForwardingResponseERABList }	
                }
            } // End of template m_handoverRequestAcknowledgeTransfer_id_DataForwardingResponseERABList

            template (value) HandoverRequestAcknowledgeTransfer.iE_Extensions m_handoverRequestAcknowledgeTransfer_id_RedundantDL_NGU_UP_TNLInformation(
                                                                                                                                                        in template (value) UPTransportLayerInformation p_uPTransportLayerInformation
                                                                                                                                                        ) := {
                { 
                    id             := id_RedundantDL_NGU_UP_TNLInformation,
                    criticality    := ignore,
                    extensionValue := { UPTransportLayerInformation := p_uPTransportLayerInformation }	
                }
            } // End of template m_handoverRequestAcknowledgeTransfer_id_RedundantDL_NGU_UP_TNLInformation

            template (value) HandoverRequestAcknowledgeTransfer.iE_Extensions m_handoverRequestAcknowledgeTransfer_id_UsedRSNInformation(
                                                                                                                                         in template (value) RedundantPDUSessionInformation p_redundantPDUSessionInformation
                                                                                                                                         ) := {
                { 
                    id             := id_UsedRSNInformation,
                    criticality    := ignore,
                    extensionValue := { RedundantPDUSessionInformation := p_redundantPDUSessionInformation }	
                }
            } // End of template m_handoverRequestAcknowledgeTransfer_id_UsedRSNInformation

            template (value) HandoverRequestAcknowledgeTransfer.iE_Extensions m_handoverRequestAcknowledgeTransfer_id_GlobalRANNodeID(
                                                                                                                                      in template (value) GlobalRANNodeID p_globalRANNodeID
                                                                                                                                      ) := {
                { 
                    id             := id_GlobalRANNodeID,
                    criticality    := ignore,
                    extensionValue := { GlobalRANNodeID := p_globalRANNodeID }	
                }
            } // End of template m_handoverRequestAcknowledgeTransfer_id_GlobalRANNodeID

            template (value) HandoverRequestAcknowledgeTransfer.iE_Extensions m_handoverRequestAcknowledgeTransfer_id_MBS_SupportIndicator(
                                                                                                                                           in template (value) MBS_SupportIndicator p_mBS_SupportIndicator
                                                                                                                                           ) := {
                { 
                    id             := id_MBS_SupportIndicator,
                    criticality    := ignore,
                    extensionValue := { MBS_SupportIndicator := p_mBS_SupportIndicator }	
                }
            } // End of template m_handoverRequestAcknowledgeTransfer_id_MBS_SupportIndicator

            template (omit) HandoverRequiredTransfer m_handoverRequiredTransfer(
                                                                                in template (omit) DirectForwardingPathAvailability p_directForwardingPathAvailability := omit,
                                                                                in template (omit) HandoverRequiredTransfer.iE_Extensions p_iE_Extensions := omit
                                                                                ) := {
                directForwardingPathAvailability := p_directForwardingPathAvailability,
                iE_Extensions                    := p_iE_Extensions
            } // End of template m_handoverRequiredTransfer

            template (omit) HandoverResourceAllocationUnsuccessfulTransfer m_handoverResourceAllocationUnsuccessfulTransfer(
                                                                                                                            in template (value) Cause p_cause,
                                                                                                                            in template (omit) CriticalityDiagnostics p_criticalityDiagnostics := omit,
                                                                                                                            in template (omit) HandoverResourceAllocationUnsuccessfulTransfer.iE_Extensions p_iE_Extensions := omit
                                                                                                                            ) := {
                cause                  := p_cause,
                criticalityDiagnostics := p_criticalityDiagnostics,
                iE_Extensions          := p_iE_Extensions
            } // End of template m_handoverResourceAllocationUnsuccessfulTransfer

            template (value) HandoverType m_handoverType(in HandoverType p_value := intra5gs) := p_value;

            template (omit) HFCNode_ID_new m_hFCNode_ID_new(
                                                            in template (value) HFCNode_ID p_hFCNode_ID,
                                                            in template (value) TAI p_tAI,
                                                            in template (omit) HFCNode_ID_new.iE_Extensions p_iE_Extensions := omit
                                                            ) := {
                hFCNode_ID    := p_hFCNode_ID,
                tAI           := p_tAI,
                iE_Extensions := p_iE_Extensions
            } // End of template m_hFCNode_ID_new

            template (omit) HOReport m_hOReport(
                                                in template (value) HOReport.handoverReportType p_handoverReportType := ho_too_early,
                                                in template (value) Cause p_handoverCause,
                                                in template (value) NGRAN_CGI p_sourcecellCGI,
                                                in template (value) NGRAN_CGI p_targetcellCGI,
                                                in template (omit) NGRAN_CGI p_reestablishmentcellCGI,
                                                in template (omit) Bit16 p_sourcecellC_RNTI := omit,
                                                in template (omit) EUTRA_CGI p_targetcellinE_UTRAN := omit,
                                                in template (omit) MobilityInformation p_mobilityInformation := omit,
                                                in template (omit) UERLFReportContainer p_uERLFReportContainer := omit,
                                                in template (omit) HOReport.iE_Extensions p_iE_Extensions := omit
                                                ) := {
                handoverReportType     := p_handoverReportType,
                handoverCause          := p_handoverCause,
                sourcecellCGI          := p_sourcecellCGI,
                targetcellCGI          := p_targetcellCGI,
                reestablishmentcellCGI := p_reestablishmentcellCGI,
                // The above IE shall be present if the Handover Report Type IE is set to the value "HO to wrong cell"
                sourcecellC_RNTI       := p_sourcecellC_RNTI,
                targetcellinE_UTRAN    := p_targetcellinE_UTRAN,
                // The above IE shall be present if the Handover Report Type IE is set to the value "Inter System ping_pong"
                mobilityInformation    := p_mobilityInformation,
                uERLFReportContainer   := p_uERLFReportContainer,
                iE_Extensions          := p_iE_Extensions
            } // End of template m_hOReport

3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767
            template (value) IAB_Authorized m_iAB_Authorized(in IAB_Authorized p_value := authorized) := p_value;

            template (value) IAB_Supported m_iAB_Supported(in IAB_Supported p_value := true_) := p_value;

            template (value) IABNodeIndication m_iABNodeIndication(in IABNodeIndication p_value := true_) := p_value;

            template (value) IMSVoiceSupportIndicator m_iMSVoiceSupportIndicator(in IMSVoiceSupportIndicator p_value := supported) := p_value;

            template (omit) InfoOnRecommendedCellsAndRANNodesForPaging m_infoOnRecommendedCellsAndRANNodesForPaging(
                                                                                                                    in template (value) RecommendedCellsForPaging p_recommendedCellsForPaging,
                                                                                                                    in template (value) RecommendedRANNodesForPaging p_recommendRANNodesForPaging,
                                                                                                                    in template (omit) InfoOnRecommendedCellsAndRANNodesForPaging.iE_Extensions p_iE_Extensions := omit
                                                                                                                    ) := {
                recommendedCellsForPaging  := p_recommendedCellsForPaging,
                recommendRANNodesForPaging := p_recommendRANNodesForPaging,
                iE_Extensions              := p_iE_Extensions
            } // End of template m_infoOnRecommendedCellsAndRANNodesForPaging

            template (value) IntegrityProtectionIndication m_integrityProtectionIndication(in IntegrityProtectionIndication p_value := required) := p_value;

            template (value) IntegrityProtectionResult m_integrityProtectionResult(in IntegrityProtectionResult p_value := performed) := p_value;

            template (omit) ImmediateMDTNr m_immediateMDTNr(
	                                                        in template (value) MeasurementsToActivate p_measurementsToActivate,
	                                                        in template (omit) M1Configuration p_m1Configuration := omit,
	                                                        in template (omit) M4Configuration p_m4Configuration := omit,
	                                                        in template (omit) M5Configuration p_m5Configuration := omit,
	                                                        in template (omit) M6Configuration p_m6Configuration := omit,
	                                                        in template (omit) M7Configuration p_m7Configuration := omit,
	                                                        in template (omit) BluetoothMeasurementConfiguration p_bluetoothMeasurementConfiguration := omit,
	                                                        in template (omit) WLANMeasurementConfiguration p_wLANMeasurementConfiguration := omit,
	                                                        in template (omit) MDT_Location_Info p_mDT_Location_Info := omit,
	                                                        in template (omit) SensorMeasurementConfiguration p_sensorMeasurementConfiguration := omit,
                                                            in template (omit) ImmediateMDTNr.iE_Extensions p_iE_Extensions := omit
                                                            ) := {
                measurementsToActivate            := p_measurementsToActivate,
                m1Configuration                   := p_m1Configuration,
                // The above IE shall be present if the Measurements to Activate IE has the first bit set to “1”
                m4Configuration                   := p_m4Configuration,
                // The above IE shall be present if the Measurements to Activate IE has the third bit set to “1”
                m5Configuration                   := p_m5Configuration,
                // The above IE shall be present if the Measurements to Activate IE has the fourth bit set to “1”
                m6Configuration                   := p_m6Configuration,
                // The above IE shall be present if the Measurements to Activate IE has the fifth bit set to “1”
                m7Configuration                   := p_m7Configuration,
                // The above IE shall be present if the Measurements to Activate IE has the sixth bit set to “1”
                bluetoothMeasurementConfiguration := p_bluetoothMeasurementConfiguration,
                wLANMeasurementConfiguration      := p_wLANMeasurementConfiguration,
                mDT_Location_Info                 := p_mDT_Location_Info,
                sensorMeasurementConfiguration    := p_sensorMeasurementConfiguration,
                iE_Extensions                     := p_iE_Extensions
            } // End of template m_immediateMDTNr

            template (omit) InterSystemFailureIndication m_interSystemFailureIndication(
                                                                                        in template (omit) UERLFReportContainer p_uERLFReportContainer := omit,
                                                                                        in template (omit) InterSystemFailureIndication.iE_Extensions p_iE_Extensions := omit
                                                                                        ) := {
                uERLFReportContainer := p_uERLFReportContainer,
                iE_Extensions                     := p_iE_Extensions
            } // End of template m_interSystemFailureIndication

            template (omit) IntersystemSONConfigurationTransfer m_intersystemSONConfigurationTransfer(
                                                                                                      in template (value) IntersystemSONTransferType p_transferType,
                                                                                                      in template (value) IntersystemSONInformation p_intersystemSONInformation,
                                                                                                      in template (omit) IntersystemSONConfigurationTransfer.iE_Extensions p_iE_Extensions := omit
                                                                                                      ) := {
                transferType              := p_transferType,
                intersystemSONInformation := p_intersystemSONInformation,
                iE_Extensions             := p_iE_Extensions
            } // End of template m_intersystemSONConfigurationTransfer

            template (value) IntersystemSONTransferType m_intersystemSONTransferType_fromEUTRANtoNGRAN(
                                                                                                       in template (value) FromEUTRANtoNGRAN p_fromEUTRANtoNGRAN
                                                                                                       ) := {
                fromEUTRANtoNGRAN := p_fromEUTRANtoNGRAN
            } // End of template m_intersystemSONTransferType_fromEUTRANtoNGRAN

            template (value) IntersystemSONTransferType m_intersystemSONTransferType_fromNGRANtoEUTRAN(
                                                                                                       in template (value) FromNGRANtoEUTRAN p_fromNGRANtoEUTRAN
                                                                                                       ) := {
                fromNGRANtoEUTRAN := p_fromNGRANtoEUTRAN
            } // End of template m_intersystemSONTransferType_fromNGRANtoEUTRAN

            template (value) IntersystemSONTransferType m_intersystemSONTransferType_choice_Extensions(
                                                                                                       in template (value) IntersystemSONTransferType.choice_Extensions p_choice_Extensions
                                                                                                       ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_intersystemSONTransferType_choice_Extensions

            template (value) IntersystemSONeNBID m_intersystemSONeNBID(
                                                                       in template (value) GlobalENB_ID p_globaleNBID,
                                                                       in template (value) EPS_TAI p_selectedEPSTAI,
                                                                       in template (omit) IntersystemSONeNBID.iE_Extensions p_iE_Extensions := omit
                                                                       ) := {
                globaleNBID    := p_globaleNBID,
                selectedEPSTAI := p_selectedEPSTAI,
                iE_Extensions  := p_iE_Extensions
            } // End of template m_intersystemSONeNBID

            template (value) IntersystemSONNGRANnodeID m_intersystemSONNGRANnodeID(
                                                                                   in template (value) GlobalRANNodeID p_globalRANNodeID,
                                                                                   in template (value) TAI p_selectedTAI,
                                                                                   in template (omit) IntersystemSONNGRANnodeID.iE_Extensions p_iE_Extensions := omit
                                                                                   ) := {
                globalRANNodeID := p_globalRANNodeID,
                selectedTAI     := p_selectedTAI,
                iE_Extensions   := p_iE_Extensions
            } // End of template m_intersystemSONNGRANnodeID

            template (value) IntersystemSONInformation m_intersystemSONInformation_intersystemSONInformationReport(
                                                                                                                   in template (value) IntersystemSONInformationReport p_intersystemSONInformationReport
                                                                                                                   ) := {
                intersystemSONInformationReport := p_intersystemSONInformationReport
            } // End of template m_intersystemSONInformation_intersystemSONInformationReport

            template (value) IntersystemSONInformation m_intersystemSONInformation_choice_Extensions(
                                                                                                     in template (value) IntersystemSONInformation.choice_Extensions p_choice_Extensions
                                                                                                     ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_intersystemSONInformation_choice_Extensions

            template (value) IntersystemSONInformation.choice_Extensions m_intersystemSONInformation_id_IntersystemSONInformationRequest(
                                                                                                                                         in template (value) IntersystemSONInformationRequest p_intersystemSONInformationRequest
                                                                                                                                         ) := {
                id          := id_IntersystemSONInformationRequest,
                criticality := ignore,
                value_      := { IntersystemSONInformationRequest := p_intersystemSONInformationRequest }	
            } // End of template m_intersystemSONInformation_id_IntersystemSONInformationRequest

            template (value) IntersystemSONInformation.choice_Extensions m_intersystemSONInformation_id_IntersystemSONInformationReply(
                                                                                                                                       in template (value) IntersystemSONInformationReply p_intersystemSONInformationReply
                                                                                                                                       ) := {
                id          := id_IntersystemSONInformationReply,
                criticality := ignore,
                value_      := { IntersystemSONInformationReply := p_intersystemSONInformationReply }	
            } // End of template m_intersystemSONInformation_id_IntersystemSONInformationReply

            template (value) IntersystemSONInformationRequest m_intersystemSONInformationRequest_nGRAN_CellActivation(
                                                                                                                      in template (value) IntersystemCellActivationRequest p_nGRAN_CellActivation
                                                                                                                      ) := {
                nGRAN_CellActivation := p_nGRAN_CellActivation
            } // End of template m_intersystemSONInformationRequest_nGRAN_CellActivation

            template (value) IntersystemSONInformationRequest m_intersystemSONInformationRequest_resourceStatus(
                                                                                                                in template (value) IntersystemResourceStatusRequest p_resourceStatus
                                                                                                                ) := {
                resourceStatus := p_resourceStatus
            } // End of template m_intersystemSONInformationRequest_resourceStatus

            template (value) IntersystemSONInformationRequest m_intersystemSONInformationRequest_choice_Extensions(
                                                                                                                   in template (value) IntersystemSONInformationRequest.choice_Extensions p_choice_Extensions
                                                                                                                   ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_intersystemSONInformationRequest_choice_Extensions

            template (omit) IntersystemCellActivationRequest m_intersystemCellActivationRequest(
                                                                                                in template (value) IntersystemCellActivationRequest.activationID p_activationID,
                                                                                                in template (value) CellsToActivateList p_cellsToActivateList,
                                                                                                in template (omit) IntersystemCellActivationRequest.iE_Extensions p_iE_Extensions := omit
                                                                                                ) := {
                activationID        := p_activationID,
                cellsToActivateList := p_cellsToActivateList,
                iE_Extensions       := p_iE_Extensions
            } // End of template m_intersystemCellActivationRequest

            template (omit) IntersystemResourceStatusRequest m_intersystemResourceStatusRequest(
                                                                                                in template (value) ReportingSystem p_reportingSystem,
                                                                                                in template (value) ReportCharacteristics p_reportCharacteristics,
                                                                                                in template (value) ReportType p_reportType,
                                                                                                in template (omit) IntersystemResourceStatusRequest.iE_Extensions p_iE_Extensions := omit
                                                                                                ) := {
                reportingSystem       := p_reportingSystem,
                reportCharacteristics := p_reportCharacteristics,
                reportType            := p_reportType,
                iE_Extensions         := p_iE_Extensions
            } // End of template m_intersystemResourceStatusRequest

            template (value) ReportingSystem m_reportingSystem_eUTRAN(
                                                                      in template (value) EUTRAN_ReportingSystemIEs p_eUTRAN
                                                                      ) := {
                eUTRAN := p_eUTRAN
            } // End of template m_reportingSystem_eUTRAN

            template (value) ReportingSystem m_reportingSystem_nGRAN(
                                                                     in template (value) NGRAN_ReportingSystemIEs p_nGRAN
                                                                     ) := {
                nGRAN := p_nGRAN
            } // End of template m_reportingSystem_nGRAN

            template (value) ReportingSystem m_reportingSystem_choice_Extensions(
                                                                                 in template (value) ReportingSystem.choice_Extensions p_choice_Extensions
                                                                                 ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_reportingSystem_choice_Extensions

            template (omit) EUTRAN_ReportingSystemIEs m_eUTRAN_ReportingSystemIEs(
                                                                                  in template (value) EUTRAN_CellToReportList p_eUTRAN_CellToReportList,
                                                                                  in template (omit) EUTRAN_ReportingSystemIEs.iE_Extensions p_iE_Extensions := omit
                                                                                  ) := {
                eUTRAN_CellToReportList := p_eUTRAN_CellToReportList,
                iE_Extensions           := p_iE_Extensions
            } // End of template m_eUTRAN_ReportingSystemIEs

            template (omit) NGRAN_ReportingSystemIEs m_nGRAN_ReportingSystemIEs(
                                                                                in template (value) NGRAN_CellToReportList p_nGRAN_CellToReportList,
                                                                                in template (omit) NGRAN_ReportingSystemIEs.iE_Extensions p_iE_Extensions := omit
                                                                                ) := {
                nGRAN_CellToReportList := p_nGRAN_CellToReportList,
                iE_Extensions          := p_iE_Extensions
            } // End of template m_nGRAN_ReportingSystemIEs

            template (omit) EUTRAN_CellToReportItem m_eUTRAN_CellToReportItem(
                                                                              in template (value) EUTRA_CGI p_eCGI,
                                                                              in template (omit) EUTRAN_CellToReportItem.iE_Extensions p_iE_Extensions := omit
                                                                              ) := {
                eCGI          := p_eCGI,
                iE_Extensions := p_iE_Extensions
            } // End of template m_eUTRAN_CellToReportItem

            template (omit) NGRAN_CellToReportItem m_nGRAN_CellToReportItem(
                                                                            in template (value) NGRAN_CGI p_nGRAN_CGI,
                                                                            in template (omit) NGRAN_CellToReportItem.iE_Extensions p_iE_Extensions := omit
                                                                            ):= {
                nGRAN_CGI     := p_nGRAN_CGI,
                iE_Extensions := p_iE_Extensions
            } // End of template m_nGRAN_CellToReportItem

            template (value) ReportType m_reportType_eventBasedReporting(
                                                                         in template (value) EventBasedReportingIEs p_eventBasedReporting
                                                                         ) := {
                eventBasedReporting := p_eventBasedReporting
            } // End of template m_reportType_eventBasedReporting

            template (value) ReportType m_reportType_periodicReporting(
                                                                         in template (value) PeriodicReportingIEs p_periodicReporting
                                                                         ) := {
                periodicReporting := p_periodicReporting
            } // End of template m_reportType_periodicReporting

            template (value) ReportType m_reportType_choice_Extensions(
                                                                       in template (value) ReportType.choice_Extensions p_choice_Extensions
                                                                       ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_reportType_choice_Extensions

            template (value) EventBasedReportingIEs m_eventBasedReportingIEs(
                                                                             in template (value) IntersystemResourceThreshold p_intersystemResourceThresholdLow,
                                                                             in template (value) IntersystemResourceThreshold p_intersystemResourceThresholdHigh,
                                                                             in template (value)NumberOfMeasurementReportingLevels p_numberOfMeasurementReportingLevels,
                                                                             in template (omit) EventBasedReportingIEs.iE_Extensions p_iE_Extensions := omit
                                                                             ) := {
                intersystemResourceThresholdLow    := p_intersystemResourceThresholdLow,
                intersystemResourceThresholdHigh   := p_intersystemResourceThresholdHigh,
                numberOfMeasurementReportingLevels := p_numberOfMeasurementReportingLevels,
                iE_Extensions                      := p_iE_Extensions
            } // End of template m_eventBasedReportingIEs

            template (value) NumberOfMeasurementReportingLevels m_numberOfMeasurementReportingLevels(in NumberOfMeasurementReportingLevels p_value := n2) := p_value;

            template (omit) PeriodicReportingIEs m_PeriodicReportingIEs(
                                                                        in template (value) ReportingPeriodicity p_reportingPeriodicity,
                                                                        in template (omit) PeriodicReportingIEs.iE_Extensions p_iE_Extensions := omit
                                                                        ) := {
                reportingPeriodicity := p_reportingPeriodicity,
                iE_Extensions        := p_iE_Extensions
            } // End of template m_PeriodicReportingIEs

            template (value) ReportingPeriodicity m_reportingPeriodicity(in ReportingPeriodicity p_value := stop_) := p_value;

            template (value) IntersystemSONInformationReply m_intersystemSONInformationReply_nGRAN_CellActivation(
                                                                                                                  in template (value) IntersystemCellActivationReply p_nGRAN_CellActivation
                                                                                                                  ) := {
                nGRAN_CellActivation := p_nGRAN_CellActivation
            } // End of template m_intersystemSONInformationReply_nGRAN_CellActivation

            template (value) IntersystemSONInformationReply m_intersystemSONInformationReply_resourceStatus(
                                                                                                            in template (value) IntersystemResourceStatusReply p_resourceStatus
                                                                                                            ) := {
                resourceStatus := p_resourceStatus
            } // End of template m_intersystemSONInformationReply_resourceStatus

            template (value) IntersystemSONInformationReply m_intersystemSONInformationReply_choice_Extensions(
                                                                                                               in template (value) IntersystemSONInformationReply.choice_Extensions p_choice_Extensions
                                                                                                               ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_intersystemSONInformationReply_choice_Extensions

            template (omit) IntersystemCellActivationReply m_intersystemCellActivationReply(
                                                                                            in template (value) ActivatedCellList p_activatedCellList,
                                                                                            in template (value) IntersystemCellActivationReply.activation_ID p_activation_ID,
                                                                                            in template (omit) IntersystemCellActivationReply.iE_Extensions p_iE_Extensions := omit
                                                                                            ) := {
                activatedCellList := p_activatedCellList,
                activation_ID     := p_activation_ID,
                iE_Extensions     := p_iE_Extensions
            } // End of template m_intersystemCellActivationReply

            template (omit) IntersystemResourceStatusReply m_intersystemResourceStatusReply(
                                                                                            in template (value) ReportingSystem p_reportingsystem,
                                                                                            in template (omit) IntersystemResourceStatusReply.iE_Extensions p_iE_Extensions := omit
                                                                                            ) := {
                reportingsystem := p_reportingsystem,
                iE_Extensions   := p_iE_Extensions
            } // End of template m_intersystemResourceStatusReply

            template (value) IntersystemSONInformationReport m_intersystemSONInformationReport_hOReportInformation(
                                                                                                                   in template (value) InterSystemHOReport p_hOReportInformation
                                                                                                                   ) := {
                hOReportInformation := p_hOReportInformation
            } // End of template m_intersystemSONInformationReport_hOReportInformation

            template (value) IntersystemSONInformationReport m_intersystemSONInformationReport_failureIndicationInformation(
                                                                                                                            in template (value) InterSystemFailureIndication p_failureIndicationInformation
                                                                                                                            ) := {
                failureIndicationInformation := p_failureIndicationInformation
            } // End of template m_intersystemSONInformationReport_failureIndicationInformation

            template (value) IntersystemSONInformationReport m_intersystemSONInformationReport_choice_Extensions(
                                                                                                               in template (value) IntersystemSONInformationReport.choice_Extensions p_choice_Extensions
                                                                                                               ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_intersystemSONInformationReport_choice_Extensions

            template (value) IntersystemSONInformationReport.choice_Extensions m_intersystemSONInformationReport_id_EnergySavingIndication(
                                                                                                                                           in template (value) IntersystemCellStateIndication p_intersystemCellStateIndication
                                                                                                                                           ) := {
                id          := id_EnergySavingIndication,
                criticality := ignore,
                value_      := { IntersystemCellStateIndication := p_intersystemCellStateIndication }
            } // End of template m_intersystemSONInformationReport_id_EnergySavingIndication

            template (value) IntersystemSONInformationReport.choice_Extensions m_intersystemSONInformationReport_id_IntersystemResourceStatusUpdate(
                                                                                                                                                    in template (value) IntersystemResourceStatusReport p_intersystemResourceStatusReport
                                                                                                                                                    ) := {
                id          := id_IntersystemResourceStatusUpdate,
                criticality := ignore,
                value_      := { IntersystemResourceStatusReport := p_intersystemResourceStatusReport }
            } // End of template m_intersystemSONInformationReport_id_IntersystemResourceStatusUpdate

            template (omit) NotificationCell_Item m_notificationCell_Item(
                                                                          in template (value) NGRAN_CGI p_nGRAN_CGI,
                                                                          in template (value) NotificationCell_Item.notifyFlag p_notifyFlag := activated,
                                                                          in template (omit) NotificationCell_Item.iE_Extensions p_iE_Extensions := omit
                                                                          ) := {
                nGRAN_CGI     := p_nGRAN_CGI,
                notifyFlag    := p_notifyFlag,
                iE_Extensions := p_iE_Extensions
            } // End of template m_notificationCell_Item

            template (omit) IntersystemResourceStatusReport m_intersystemResourceStatusReport(
                                                                                              in template (value) ResourceStatusReportingSystem p_reportingSystem,
                                                                                              in template (omit) IntersystemResourceStatusReport.iE_Extensions p_iE_Extensions := omit
                                                                                              ) := {
                reportingSystem := p_reportingSystem,
                iE_Extensions   := p_iE_Extensions
            } // End of template m_intersystemResourceStatusReport

            template (value) ResourceStatusReportingSystem m_resourceStatusReportingSystemt_eUTRAN_ReportingStatus(
                                                                                                                   in template (value) EUTRAN_ReportingStatusIEs p_eUTRAN_ReportingStatus
                                                                                                                   ) := {
                eUTRAN_ReportingStatus := p_eUTRAN_ReportingStatus
            } // End of template m_resourceStatusReportingSystem_eUTRAN_ReportingStatus

            template (value) ResourceStatusReportingSystem m_resourceStatusReportingSystemt_nGRAN_ReportingStatus(
                                                                                                                  in template (value) NGRAN_ReportingStatusIEs p_nGRAN_ReportingStatus
                                                                                                                  ) := {
                nGRAN_ReportingStatus := p_nGRAN_ReportingStatus
            } // End of template m_resourceStatusReportingSystem_nGRAN_ReportingStatus

            template (value) ResourceStatusReportingSystem m_resourceStatusReportingSystem_choice_Extensions(
                                                                                                             in template (value) ResourceStatusReportingSystem.choice_Extensions p_choice_Extensions
                                                                                                             ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_resourceStatusReportingSystem_choice_Extensions

            template (omit) EUTRAN_ReportingStatusIEs m_eUTRAN_ReportingStatusIEs(
                                                                                  in template (value) EUTRAN_CellReportList p_eUTRAN_CellReportList,
                                                                                  in template (omit) EUTRAN_ReportingStatusIEs.iE_Extensions p_iE_Extensions := omit
                                                                                  ) := {
                eUTRAN_CellReportList := p_eUTRAN_CellReportList,
                iE_Extensions         := p_iE_Extensions
            } // End of template m_eUTRAN_ReportingStatusIEs

            template (omit) EUTRAN_CellReportItem m_eUTRAN_CellReportItem (
                                                                           in template (value) EUTRA_CGI p_eCGI,
                                                                           in template (value) EUTRAN_CompositeAvailableCapacityGroup p_eUTRAN_CompositeAvailableCapacityGroup,
                                                                           in template (omit) EUTRAN_NumberOfActiveUEs p_eUTRAN_NumberOfActiveUEs := omit,
                                                                           in template (omit) NGRAN_NoofRRCConnections p_eUTRAN_NoofRRCConnections := omit,
                                                                           in template (omit) EUTRAN_RadioResourceStatus p_eUTRAN_RadioResourceStatus := omit,
                                                                           in template (omit) EUTRAN_CellReportItem.iE_Extensions p_iE_Extensions := omit
                                                                           ):= {
                eCGI                                   := p_eCGI,
                eUTRAN_CompositeAvailableCapacityGroup := p_eUTRAN_CompositeAvailableCapacityGroup,
                eUTRAN_NumberOfActiveUEs               := p_eUTRAN_NumberOfActiveUEs,
                eUTRAN_NoofRRCConnections              := p_eUTRAN_NoofRRCConnections,
                eUTRAN_RadioResourceStatus             := p_eUTRAN_RadioResourceStatus,
                iE_Extensions                          := p_iE_Extensions
            } // End of template m_eUTRAN_ReportingStatusIEs

            template (omit) EUTRAN_CompositeAvailableCapacityGroup m_EUTRAN_CompositeAvailableCapacityGroup(
                                                                                                            in template (value) CompositeAvailableCapacity p_dL_CompositeAvailableCapacity,
                                                                                                            in template (value) CompositeAvailableCapacity p_uL_CompositeAvailableCapacity,
                                                                                                            in template (omit) EUTRAN_CompositeAvailableCapacityGroup.iE_Extensions p_iE_Extensions := omit
                                                                                                            ) := {
                dL_CompositeAvailableCapacity := p_dL_CompositeAvailableCapacity,
                uL_CompositeAvailableCapacity := p_uL_CompositeAvailableCapacity,
                iE_Extensions                 := p_iE_Extensions
            } // End of template m_EUTRAN_CompositeAvailableCapacityGroup

            template (omit) CompositeAvailableCapacity m_compositeAvailableCapacity(
                                                                                    in template (value) CompositeAvailableCapacity.capacityValue p_capacityValue,
                                                                                    in template (omit) CompositeAvailableCapacity.cellCapacityClassValue p_cellCapacityClassValue := omit,
                                                                                    in template (omit) CompositeAvailableCapacity.iE_Extensions p_iE_Extensions := omit
                                                                                    ) := {
                cellCapacityClassValue := p_cellCapacityClassValue,
                capacityValue          := p_capacityValue,
                iE_Extensions          := p_iE_Extensions
            } // End of template m_compositeAvailableCapacity

            template (omit) EUTRAN_RadioResourceStatus m_eUTRAN_RadioResourceStatus(
                                                                                    in template (value) EUTRAN_RadioResourceStatus.dL_GBR_PRB_usage p_dL_GBR_PRB_usage,
                                                                                    in template (value) EUTRAN_RadioResourceStatus.uL_GBR_PRB_usage p_uL_GBR_PRB_usage,
                                                                                    in template (value) EUTRAN_RadioResourceStatus.dL_non_GBR_PRB_usage p_dL_non_GBR_PRB_usage,
                                                                                    in template (value) EUTRAN_RadioResourceStatus.uL_non_GBR_PRB_usage p_uL_non_GBR_PRB_usage,
                                                                                    in template (value) EUTRAN_RadioResourceStatus.dL_Total_PRB_usage p_dL_Total_PRB_usage,
                                                                                    in template (value) EUTRAN_RadioResourceStatus.uL_Total_PRB_usage p_uL_Total_PRB_usage,
                                                                                    in template (omit) EUTRAN_RadioResourceStatus.dL_scheduling_PDCCH_CCE_usage p_dL_scheduling_PDCCH_CCE_usage := omit,
                                                                                    in template (omit) EUTRAN_RadioResourceStatus.uL_scheduling_PDCCH_CCE_usage p_uL_scheduling_PDCCH_CCE_usage := omit,
                                                                                    in template (omit) EUTRAN_RadioResourceStatus.iE_Extensions p_iE_Extensions := omit
                                                                                    ) := {
                dL_GBR_PRB_usage              := p_dL_GBR_PRB_usage,
                uL_GBR_PRB_usage              := p_uL_GBR_PRB_usage,
                dL_non_GBR_PRB_usage          := p_dL_non_GBR_PRB_usage,
                uL_non_GBR_PRB_usage          := p_uL_non_GBR_PRB_usage,
                dL_Total_PRB_usage            := p_dL_Total_PRB_usage,
                uL_Total_PRB_usage            := p_uL_Total_PRB_usage,
                dL_scheduling_PDCCH_CCE_usage := p_dL_scheduling_PDCCH_CCE_usage,
                uL_scheduling_PDCCH_CCE_usage := p_uL_scheduling_PDCCH_CCE_usage,
                iE_Extensions                 := p_iE_Extensions
            } // End of template m_eUTRAN_RadioResourceStatus

            template (omit) NGRAN_ReportingStatusIEs m_nGRAN_ReportingStatusIEs(
                                                                                in template (value) NGRAN_CellReportList p_nGRAN_CellReportList,
                                                                                in template (omit) NGRAN_ReportingStatusIEs.iE_Extensions p_iE_Extensions := omit
                                                                                ) := {
                nGRAN_CellReportList := p_nGRAN_CellReportList,
                iE_Extensions        := p_iE_Extensions
            } // End of template m_nGRAN_ReportingStatusIEs

            template (omit) NGRAN_CellReportItem m_nGRAN_CellReportItem(
                                                                        in template (value) NGRAN_CGI p_nGRAN_CGI,
                                                                        in template (value) EUTRAN_CompositeAvailableCapacityGroup p_nGRAN_CompositeAvailableCapacityGroup,
                                                                        in template (omit) NGRAN_NumberOfActiveUEs p_nGRAN_NumberOfActiveUEs := omit,
                                                                        in template (omit) NGRAN_NoofRRCConnections p_nGRAN_NoofRRCConnections := omit,
                                                                        in template (omit) NGRAN_RadioResourceStatus p_nGRAN_RadioResourceStatus := omit,
                                                                        in template (omit) NGRAN_CellReportItem.iE_Extensions p_iE_Extensions := omit
                                                                        ) := {
                nGRAN_CGI                             := p_nGRAN_CGI,
                nGRAN_CompositeAvailableCapacityGroup := p_nGRAN_CompositeAvailableCapacityGroup,
                nGRAN_NumberOfActiveUEs               := p_nGRAN_NumberOfActiveUEs,
                nGRAN_NoofRRCConnections              := p_nGRAN_NoofRRCConnections,
                nGRAN_RadioResourceStatus             := p_nGRAN_RadioResourceStatus,
                iE_Extensions                         := p_iE_Extensions
            } // End of template m_nGRAN_CellReportItem

            template (omit) NGRAN_RadioResourceStatus m_nGRAN_RadioResourceStatus(
                                                                                  in template (value) NGRAN_RadioResourceStatus.dL_GBR_PRB_usage_for_MIMO p_dL_GBR_PRB_usage_for_MIMO,
                                                                                  in template (value) NGRAN_RadioResourceStatus.uL_GBR_PRB_usage_for_MIMO p_uL_GBR_PRB_usage_for_MIMO,
                                                                                  in template (value) NGRAN_RadioResourceStatus.dL_non_GBR_PRB_usage_for_MIMO p_dL_non_GBR_PRB_usage_for_MIMO,
                                                                                  in template (value) NGRAN_RadioResourceStatus.uL_non_GBR_PRB_usage_for_MIMO p_uL_non_GBR_PRB_usage_for_MIMO,
                                                                                  in template (value) NGRAN_RadioResourceStatus.dL_Total_PRB_usage_for_MIMO p_dL_Total_PRB_usage_for_MIMO,
                                                                                  in template (value) NGRAN_RadioResourceStatus.uL_Total_PRB_usage_for_MIMO p_uL_Total_PRB_usage_for_MIMO,
                                                                                  in template (omit) NGRAN_RadioResourceStatus.iE_Extensions p_iE_Extensions := omit
                                                                                  ) := {
                dL_GBR_PRB_usage_for_MIMO     := p_dL_GBR_PRB_usage_for_MIMO,
                uL_GBR_PRB_usage_for_MIMO     := p_uL_GBR_PRB_usage_for_MIMO,
                dL_non_GBR_PRB_usage_for_MIMO := p_dL_non_GBR_PRB_usage_for_MIMO,
                uL_non_GBR_PRB_usage_for_MIMO := p_uL_non_GBR_PRB_usage_for_MIMO,
                dL_Total_PRB_usage_for_MIMO   := p_dL_Total_PRB_usage_for_MIMO,
                uL_Total_PRB_usage_for_MIMO   := p_uL_Total_PRB_usage_for_MIMO,
                iE_Extensions                 := p_iE_Extensions
            } // End of template m_nGRAN_RadioResourceStatus

            template (omit) InterSystemHOReport m_interSystemHOReport(
                                                                      in template (value) InterSystemHandoverReportType p_handoverReportType,
                                                                      in template (omit) InterSystemHOReport.iE_Extensions p_iE_Extensions := omit
                                                                      ) := {
                handoverReportType := p_handoverReportType,
                iE_Extensions      := p_iE_Extensions
            } // End of template m_interSystemHOReport

            template (value) InterSystemHandoverReportType m_interSystemHandoverReportType_tooearlyIntersystemHO(
                                                                                                                 in template (value) TooearlyIntersystemHO p_tooearlyIntersystemHO
                                                                                                                 ) := {
                tooearlyIntersystemHO := p_tooearlyIntersystemHO
            } // End of template m_interSystemHandoverReportType_tooearlyIntersystemHO

            template (value) InterSystemHandoverReportType m_interSystemHandoverReportType_intersystemUnnecessaryHO(
                                                                                                                    in template (value) IntersystemUnnecessaryHO p_intersystemUnnecessaryHO
                                                                                                                    ) := {
                intersystemUnnecessaryHO := p_intersystemUnnecessaryHO
            } // End of template m_interSystemHandoverReportType_intersystemUnnecessaryHO

            template (value) InterSystemHandoverReportType m_interSystemHandoverReportType_choice_Extensions(
                                                                                                             in template (value) InterSystemHandoverReportType.choice_Extensions p_choice_Extensions
                                                                                                             ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_interSystemHandoverReportType_choice_Extensions

            template (omit) IntersystemUnnecessaryHO m_intersystemUnnecessaryHO(
                                                                                in template (value) NGRAN_CGI p_sourcecellID,
                                                                                in template (value) EUTRA_CGI p_targetcellID,
                                                                                in template (value) IntersystemUnnecessaryHO.earlyIRATHO p_earlyIRATHO := true_,
                                                                                in template (value) CandidateCellList p_candidateCellList,
                                                                                in template (omit) IntersystemUnnecessaryHO.iE_Extensions p_iE_Extensions := omit
                                                                                ) := {
                sourcecellID      := p_sourcecellID,
                targetcellID      := p_targetcellID,
                earlyIRATHO       := p_earlyIRATHO,
                candidateCellList := p_candidateCellList,
                iE_Extensions     := p_iE_Extensions
            } // End of template m_intersystemUnnecessaryHO
            template (omit) LAI m_lai(
                                      in template (value) PLMNIdentity p_pLMNidentity,
                                      in template (value) LAC p_lAC,
                                      in template (omit) LAI.iE_Extensions p_iE_Extensions := omit
                                      ) := {
                pLMNidentity  := p_pLMNidentity,
                lAC           := p_lAC,
                iE_Extensions := p_iE_Extensions
            } // End of template m_lai

            template (value) LastVisitedCellInformation m_interSystemHandoverReportType_nGRANCell(
                                                                                                  in template (value) LastVisitedNGRANCellInformation p_nGRANCell
                                                                                                  ) := {
                nGRANCell := p_nGRANCell
            } // End of template m_interSystemHandoverReportType_nGRANCell

            template (value) LastVisitedCellInformation m_interSystemHandoverReportType_eUTRANCell(
                                                                                                  in template (value) LastVisitedEUTRANCellInformation p_eUTRANCell
                                                                                                  ) := {
                eUTRANCell := p_eUTRANCell
            } // End of template m_interSystemHandoverReportType_eUTRANCell

            template (value) LastVisitedCellInformation m_interSystemHandoverReportType_uTRANCell(
                                                                                                  in template (value) LastVisitedUTRANCellInformation p_uTRANCell
                                                                                                  ) := {
                uTRANCell := p_uTRANCell
            } // End of template m_interSystemHandoverReportType_uTRANCell

            template (value) LastVisitedCellInformation m_interSystemHandoverReportType_gERANCell(
                                                                                                  in template (value) LastVisitedGERANCellInformation p_gERANCell
                                                                                                  ) := {
                gERANCell := p_gERANCell
            } // End of template m_interSystemHandoverReportType_gERANCell

            template (value) LastVisitedCellInformation m_lastVisitedCellInformation_choice_Extensions(
                                                                                                       in template (value) LastVisitedCellInformation.choice_Extensions p_choice_Extensions
                                                                                                       ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_lastVisitedCellInformation_choice_Extensions

            template (omit) LastVisitedCellItem m_lastVisitedCellItem(
                                                                      in template (value) LastVisitedCellInformation p_lastVisitedCellInformation,
                                                                      in template (omit) LastVisitedCellItem.iE_Extensions p_iE_Extensions := omit
                                                                      ) := {
                lastVisitedCellInformation := p_lastVisitedCellInformation,
                iE_Extensions              := p_iE_Extensions
            } // End of template m_lastVisitedCellItem

            template (omit) LastVisitedNGRANCellInformation m_lastVisitedNGRANCellInformation(
                                                                                              in template (value) NGRAN_CGI p_globalCellID,
                                                                                              in template (value) CellType p_cellType,
                                                                                              in template (value) TimeUEStayedInCell p_timeUEStayedInCell,
                                                                                              in template (omit) TimeUEStayedInCellEnhancedGranularity p_timeUEStayedInCellEnhancedGranularity := omit,
                                                                                              in template (omit) Cause p_hOCauseValue := omit,
                                                                                              in template (omit) LastVisitedNGRANCellInformation.iE_Extensions p_iE_Extensions := omit
                                                                                              ) := {
                globalCellID                          := p_globalCellID,
                cellType                              := p_cellType,
                timeUEStayedInCell                    := p_timeUEStayedInCell,
                timeUEStayedInCellEnhancedGranularity := p_timeUEStayedInCellEnhancedGranularity,
                hOCauseValue                          := p_hOCauseValue,
                iE_Extensions                         := p_iE_Extensions
            } // End of template m_lastVisitedNGRANCellInformation

            template (value) LastVisitedNGRANCellInformation.iE_Extensions m_lastVisitedNGRANCellInformation_id_LastVisitedPSCellList(
                                                                                                                                      in template (value) LastVisitedPSCellList p_lastVisitedPSCellList
                                                                                                                                      ) := {
                { 
                    id             := id_LastVisitedPSCellList,
                    criticality    := ignore,
                    extensionValue := { LastVisitedPSCellList := p_lastVisitedPSCellList }	
                }
            } // End of template m_lastVisitedNGRANCellInformation_id_LastVisitedPSCellList

            template (omit) LastVisitedPSCellInformation m_LastVisitedPSCellInformation(
                                                                                        in template (value) NGRAN_CGI p_pSCellID,
                                                                                        in template (value) LastVisitedPSCellInformation.timeStay p_timeStay,
                                                                                        in template (omit) LastVisitedPSCellInformation.iE_Extensions p_iE_Extensions := omit
                                                                                        ) := {
                pSCellID      := p_pSCellID,
                timeStay      := p_timeStay,
                iE_Extensions := p_iE_Extensions
            } // End of template m_LastVisitedPSCellInformation

            template (value) LineType m_lineType(in LineType p_value := pon) := p_value;

            template (value) LocationReportingAdditionalInfo m_locationReportingAdditionalInfo(in LocationReportingAdditionalInfo p_value := includePSCell) := p_value;

            template (omit) LocationReportingRequestType m_locationReportingRequestType(
                                                                                        in template (value) EventType p_eventType,
                                                                                        in template (value) ReportArea p_reportArea,
                                                                                        in template (omit) AreaOfInterestList p_areaOfInterestList := omit,
                                                                                        in template (omit) LocationReportingReferenceID p_locationReportingReferenceIDToBeCancelled := omit,
                                                                                        in template (omit) LocationReportingRequestType.iE_Extensions p_iE_Extensions := omit
                                                                                        ) := {
                eventType                                 := p_eventType,
                reportArea                                := p_reportArea,
                areaOfInterestList                        := p_areaOfInterestList,
                locationReportingReferenceIDToBeCancelled := p_locationReportingReferenceIDToBeCancelled,
                // The above IE shall be present if the event type is set to “stop reporting UE presence in the area of interest”
                iE_Extensions                             := p_iE_Extensions
            } // End of template m_locationReportingRequestType

            template (value) LocationReportingRequestType.iE_Extensions m_locationReportingRequestType_id_LocationReportingAdditionalInfo(
                                                                                                                                          in template (value) LocationReportingAdditionalInfo p_locationReportingAdditionalInfo
                                                                                                                                          ) := {
                { 
                    id             := id_LocationReportingAdditionalInfo,
                    criticality    := ignore,
                    extensionValue := { LocationReportingAdditionalInfo := p_locationReportingAdditionalInfo }	
                }
            } // End of template m_locationReportingRequestType_id_LocationReportingAdditionalInfo

            template (omit) LoggedMDTNr m_loggedMDTNr(
                                                      in template (value) LoggingInterval p_loggingInterval,
                                                      in template (value) LoggingDuration p_loggingDuration,
                                                      in template (value) LoggedMDTTrigger p_loggedMDTTrigger,
                                                      in template (omit) BluetoothMeasurementConfiguration p_bluetoothMeasurementConfiguration := omit,
                                                      in template (omit) WLANMeasurementConfiguration p_wLANMeasurementConfiguration := omit,
                                                      in template (omit) SensorMeasurementConfiguration p_sensorMeasurementConfiguration := omit,
                                                      in template (omit) AreaScopeOfNeighCellsList p_areaScopeOfNeighCellsList := omit,
                                                      in template (omit) LoggedMDTNr.iE_Extensions p_iE_Extensions := omit
                                                      ) := {
                loggingInterval                   := p_loggingInterval,
                loggingDuration                   := p_loggingDuration,
                loggedMDTTrigger                  := p_loggedMDTTrigger,
                bluetoothMeasurementConfiguration := p_bluetoothMeasurementConfiguration,
                wLANMeasurementConfiguration      := p_wLANMeasurementConfiguration,
                sensorMeasurementConfiguration    := p_sensorMeasurementConfiguration,
                areaScopeOfNeighCellsList         := p_areaScopeOfNeighCellsList,
                iE_Extensions                     := p_iE_Extensions
            } // End of template m_loggedMDTNr

            template (value) LoggingInterval m_loggingInterval(in LoggingInterval p_value := ms320) := p_value;

            template (value) LoggingDuration m_loggingDuration(in LoggingDuration p_value := m10) := p_value;

            template (value) Links_to_log m_Links_to_log(in Links_to_log p_value := uplink) := p_value;

            template (value) LoggedMDTTrigger m_loggedMDTTrigger_gERANCell(
                                                                           in template (value) EventTrigger p_eventTrigger
                                                                           ) := {
                eventTrigger := p_eventTrigger
            } // End of template m_loggedMDTTrigger_gERANCell

            template (value) LoggedMDTTrigger m_loggedMDTTrigger_choice_Extensions(
                                                                                   in template (value) LoggedMDTTrigger.choice_Extensions p_choice_Extensions
                                                                                   ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_loggedMDTTrigger_choice_Extensions

            template (value) LTEM_Indication m_lTEM_Indication(in LTEM_Indication p_value := lte_m) := p_value;

            template (omit) LTEV2XServicesAuthorized m_lTEV2XServicesAuthorized(
                                                                                in template (omit) VehicleUE p_vehicleUE := omit,
                                                                                in template (omit) PedestrianUE p_pedestrianUE:= omit,
                                                                                in template (omit) LTEV2XServicesAuthorized.iE_Extensions p_iE_Extensions := omit
                                                                                ) := {
                vehicleUE     := p_vehicleUE,
                pedestrianUE  := p_pedestrianUE,
                iE_Extensions := p_iE_Extensions
            } // End of template m_lTEV2XServicesAuthorized

            template (omit) LTEUESidelinkAggregateMaximumBitrate m_lTEUESidelinkAggregateMaximumBitrate(
                                                                                                        in template (value) BitRate p_uESidelinkAggregateMaximumBitRate,
                                                                                                        in template (omit) LTEUESidelinkAggregateMaximumBitrate.iE_Extensions p_iE_Extensions := omit
                                                                                                        ) := {
                uESidelinkAggregateMaximumBitRate := p_uESidelinkAggregateMaximumBitRate,
                iE_Extensions                     := p_iE_Extensions
            } // End of template m_lTEUESidelinkAggregateMaximumBitrate

            template (value) MaximumIntegrityProtectedDataRate m_maximumIntegrityProtectedDataRate(in MaximumIntegrityProtectedDataRate p_value := bitrate64kbs) := p_value;
            template (omit) MBS_DataForwardingResponseMRBItem m_mBS_DataForwardingResponseMRBItem(
                                                                                                  in template (value) MRB_ID p_mRB_ID,
                                                                                                  in template (value) UPTransportLayerInformation p_dL_Forwarding_UPTNLInformation,
                                                                                                  in template (omit) MRB_ProgressInformation p_mRB_ProgressInformation := omit,
                                                                                                  in template (omit) MBS_DataForwardingResponseMRBItem.iE_Extensions p_iE_Extensions := omit
                                                                                                  ) := {
                mRB_ID                         := p_mRB_ID,
                dL_Forwarding_UPTNLInformation := p_dL_Forwarding_UPTNLInformation,
                mRB_ProgressInformation        := p_mRB_ProgressInformation,
                iE_Extensions                  := p_iE_Extensions
            } // End of template m_mBS_DataForwardingResponseMRBItem
            template (omit) MBS_MappingandDataForwardingRequestItem m_mBS_MappingandDataForwardingRequestItem(
                                                                                                              in template (value) MRB_ID p_mRB_ID,
                                                                                                              in template (value) MBS_QoSFlowList p_mBS_QoSFlowList,
                                                                                                              in template (omit) MRB_ProgressInformation p_mRB_ProgressInformation := omit,
                                                                                                              in template (omit) MBS_MappingandDataForwardingRequestItem.iE_Extensions p_iE_Extensions := omit
                                                                                                              ) := {
                mRB_ID                  := p_mRB_ID,
                mBS_QoSFlowList         := p_mBS_QoSFlowList,
                mRB_ProgressInformation := p_mRB_ProgressInformation,
                iE_Extensions           := p_iE_Extensions
            } // End of template m_mBS_MappingandDataForwardingRequestItem
            template (value) MRB_ProgressInformation m_mRB_ProgressInformation_pDCP_SN_Length12(
                                                                                                in template (value) MRB_ProgressInformation.pDCP_SN_Length12 p_pDCP_SN_Length12
                                                                                                ) := {
                pDCP_SN_Length12 := p_pDCP_SN_Length12
            } // End of template m_mRB_ProgressInformation_pDCP_SN_Length12
            template (value) MRB_ProgressInformation m_mRB_ProgressInformation_pDCP_SN_Length18(
                                                                                                in template (value) MRB_ProgressInformation.pDCP_SN_Length18 p_pDCP_SN_Length18
                                                                                                ) := {
                pDCP_SN_Length18 := p_pDCP_SN_Length18
            } // End of template m_mRB_ProgressInformation_pDCP_SN_Length18
3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990
            template (value) MRB_ProgressInformation m_mRB_ProgressInformation_choice_Extensions(
                                                                                                 in template (value) MRB_ProgressInformation.choice_Extensions p_choice_Extensions
                                                                                                 ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_mRB_ProgressInformation_choice_Extensions

            template (omit) MBS_QoSFlowsToBeSetupItem m_mBS_QoSFlowsToBeSetupItem(
                                                                                  in template (value)QosFlowIdentifier p_mBSqosFlowIdentifier,
                                                                                  in template (value)QosFlowLevelQosParameters p_mBSqosFlowLevelQosParameters,
                                                                                  in template (omit) MBS_QoSFlowsToBeSetupItem.iE_Extensions p_iE_Extensions := omit
                                                                                  ) := {
                mBSqosFlowIdentifier         := p_mBSqosFlowIdentifier,
                mBSqosFlowLevelQosParameters := p_mBSqosFlowLevelQosParameters,
                iE_Extensions                := p_iE_Extensions
            } // End of template m_mBS_QoSFlowsToBeSetupItem

            template (value) MBS_ServiceArea m_mBS_ServiceArea_locationindependent(
                                                                                   in template (value) MBS_ServiceAreaInformation p_locationindependent
                                                                                   ) := {
                locationindependent := p_locationindependent
            } // End of template m_mBS_ServiceArea_locationindependent

            template (value) MBS_ServiceArea m_mBS_ServiceArea_locationdependent(
                                                                                   in template (value) MBS_ServiceAreaInformationList p_locationdependent
                                                                                   ) := {
                locationdependent := p_locationdependent
            } // End of template m_mBS_ServiceArea_locationdependent

            template (value) MBS_ServiceArea m_mBS_ServiceArea_choice_Extensions(
                                                                                 in template (value) MBS_ServiceArea.choice_Extensions p_choice_Extensions
                                                                                 ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_mBS_ServiceArea_choice_Extensions

            template (omit) MBS_ServiceAreaInformationItem m_mBS_ServiceAreaInformationItem(
                                                                                            in template (value) MBS_AreaSessionID p_mBS_AreaSessionID,
                                                                                            in template (value) MBS_ServiceAreaInformation p_mBS_ServiceAreaInformation,
                                                                                            in template (omit) MBS_ServiceAreaInformationItem.iE_Extensions p_iE_Extensions := omit
                                                                                            ) := {
                mBS_AreaSessionID          := p_mBS_AreaSessionID,
                mBS_ServiceAreaInformation := p_mBS_ServiceAreaInformation,
                iE_Extensions              := p_iE_Extensions
            } // End of template m_mBS_ServiceAreaInformationItem

            template (omit) MBS_ServiceAreaInformation m_mBS_ServiceAreaInformation(
                                                                                    in template (omit) MBS_ServiceAreaCellList p_mBS_ServiceAreaCellList := omit,
                                                                                    in template (omit) MBS_ServiceAreaTAIList p_mBS_ServiceAreaTAIList := omit,
                                                                                    in template (omit) MBS_ServiceAreaInformation.iE_Extensions p_iE_Extensions := omit
                                                                                    ) := {
                mBS_ServiceAreaCellList := p_mBS_ServiceAreaCellList,
                mBS_ServiceAreaTAIList  := p_mBS_ServiceAreaTAIList,
                iE_Extensions           := p_iE_Extensions
            } // End of template m_mBS_ServiceAreaInformation

            template (omit) MBS_SessionID m_mBS_SessionID(
                                                          in template (value) TMGI p_tMGI,
                                                          in template (omit) NID p_nID := omit,
                                                          in template (omit) MBS_SessionID.iE_Extensions p_iE_Extensions := omit
                                                          ) := {
                tMGI          := p_tMGI,
                nID           := p_nID,
                iE_Extensions := p_iE_Extensions
            } // End of template m_mBS_SessionID

            template (omit) MBSSessionFailedtoSetupItem m_mBSSessionFailedtoSetupItem(
                                                                                      in template (value) MBS_SessionID p_mBS_SessionID,
                                                                                      in template (value) Cause p_cause,
                                                                                      in template (omit) MBS_AreaSessionID p_mBS_AreaSessionID := omit,
                                                                                      in template (omit) MBSSessionFailedtoSetupItem.iE_Extensions p_iE_Extensions := omit
                                                                                      ) := {
                mBS_SessionID     := p_mBS_SessionID,
                mBS_AreaSessionID := p_mBS_AreaSessionID,
                cause             := p_cause,
                iE_Extensions     := p_iE_Extensions
            } // End of template m_mBSSessionFailedtoSetupItem

            template (omit) MBS_ActiveSessionInformation_SourcetoTargetItem m_mBS_ActiveSessionInformation_SourcetoTargetItem(
                                                                                                                              in template (value) MBS_SessionID p_mBS_SessionID,
                                                                                                                              in template (value) MBS_QoSFlowsToBeSetupList p_mBS_QoSFlowsToBeSetupList,
                                                                                                                              in template (omit) MBS_AreaSessionID p_mBS_AreaSessionID := omit,
                                                                                                                              in template (omit) MBS_ServiceArea p_mBS_ServiceArea := omit,
                                                                                                                              in template (omit) MBS_MappingandDataForwardingRequestList p_mBS_MappingandDataForwardingRequestList := omit,
                                                                                                                              in template (omit) MBS_ActiveSessionInformation_SourcetoTargetItem.iE_Extensions p_iE_Extensions := omit
                                                                                                                              ):= {
                mBS_SessionID                           := p_mBS_SessionID,
                mBS_AreaSessionID                       := p_mBS_AreaSessionID,
                mBS_ServiceArea                         := p_mBS_ServiceArea,
                mBS_QoSFlowsToBeSetupList               := p_mBS_QoSFlowsToBeSetupList,
                mBS_MappingandDataForwardingRequestList := p_mBS_MappingandDataForwardingRequestList,
                iE_Extensions                           := p_iE_Extensions
            } // End of template m_mBS_ActiveSessionInformation_SourcetoTargetItem

            template (omit) MBS_ActiveSessionInformation_TargettoSourceItem m_mBS_ActiveSessionInformation_TargettoSourceItem(
                                                                                                                              in template (value) MBS_SessionID p_mBS_SessionID,
                                                                                                                              in template (omit) MBS_DataForwardingResponseMRBList p_mBS_DataForwardingResponseMRBList := omit,
                                                                                                                              in template (omit) MBS_ActiveSessionInformation_TargettoSourceItem.iE_Extensions p_iE_Extensions := omit
                                                                                                                              ) := {
                mBS_SessionID                     := p_mBS_SessionID,
                mBS_DataForwardingResponseMRBList := p_mBS_DataForwardingResponseMRBList,
                iE_Extensions                     := p_iE_Extensions
            } // End of template m_mBS_ActiveSessionInformation_TargettoSourceItem

            template (omit) MBSSessionSetupOrModFailureTransfer m_mBSSessionSetupOrModFailureTransfer(
                                                                                                      in template (value) Cause p_cause,
                                                                                                      in template (omit) CriticalityDiagnostics p_criticalityDiagnostics := omit,
                                                                                                      in template (omit) MBSSessionSetupOrModFailureTransfer.iE_Extensions p_iE_Extensions := omit
                                                                                                      ) := {
                cause                  := p_cause,
                criticalityDiagnostics := p_criticalityDiagnostics,
                iE_Extensions          := p_iE_Extensions
            } // End of template m_mBSSessionSetupOrModFailureTransfer

            template (omit) MBSSessionSetupResponseItem m_mBSSessionSetupResponseItem(
                                                                                      in template (value) MBS_SessionID p_mBS_SessionID,
                                                                                      in template (omit) MBS_AreaSessionID p_mBS_AreaSessionID := omit,
                                                                                      in template (omit) MBSSessionSetupResponseItem.iE_Extensions p_iE_Extensions := omit
                                                                                      ) := {
                mBS_SessionID     := p_mBS_SessionID,
                mBS_AreaSessionID := p_mBS_AreaSessionID,
                iE_Extensions     := p_iE_Extensions
            } // End of template m_mBSSessionSetupResponseItem

            template (value) MBSSessionSetupOrModRequestTransfer m_mBSSessionSetupOrModRequestTransfer(
                                                                                                       in template (value) MBSSessionSetupOrModRequestTransfer.protocolIEs p_protocolIEs
                                                                                                       ) := {
                protocolIEs := p_protocolIEs
            } // End of template m_mBSSessionSetupOrModRequestTransfer

            template (value) MBSSessionSetupOrModRequestTransfer.protocolIEs m_mBSSessionSetupOrModRequestTransfer_id_MBS_SessionTNLInfo5GC(
                                                                                                                                            in template (value) MBS_SessionTNLInfo5GC p_mBS_SessionTNLInfo5GC
                                                                                                                                            ) := {
                { 
                    id          := id_MBS_SessionTNLInfo5GC,
                    criticality := reject,
                    value_      := { MBS_SessionTNLInfo5GC := p_mBS_SessionTNLInfo5GC }	
                }
            } // End of template m_mBSSessionSetupOrModRequestTransfer_id_MBS_SessionTNLInfo5GC

            template (value) MBSSessionSetupOrModRequestTransfer.protocolIEs m_mBSSessionSetupOrModRequestTransfer_id_MBS_QoSFlowsToBeSetupModList(
                                                                                                                                                   in template (value) MBS_QoSFlowsToBeSetupList p_mBS_QoSFlowsToBeSetupList
                                                                                                                                                   ) := {
                { 
                    id          := id_MBS_QoSFlowsToBeSetupModList,
                    criticality := reject,
                    value_      := { MBS_QoSFlowsToBeSetupList := p_mBS_QoSFlowsToBeSetupList }	
                }
            } // End of template m_mBSSessionSetupOrModRequestTransfer_id_MBS_QoSFlowsToBeSetupModList

            template (value) MBSSessionSetupOrModRequestTransfer.protocolIEs m_mBSSessionSetupOrModRequestTransfer_id_MBS_SessionFSAIDList(
                                                                                                                                           in template (value) MBS_SessionFSAIDList p_mBS_SessionFSAIDList
                                                                                                                                           ) := {
                { 
                    id          := id_MBS_SessionFSAIDList,
                    criticality := ignore,
                    value_      := { MBS_SessionFSAIDList := p_mBS_SessionFSAIDList }	
                }
            } // End of template m_mBSSessionSetupOrModRequestTransfer_id_MBS_SessionFSAIDList

            template (omit) MBSSessionReleaseResponseTransfer m_mBSSessionReleaseResponseTransfer(
                                                                                                  in template (omit) MBS_SessionTNLInfoNGRAN p_mBS_SessionTNLInfoNGRAN := omit,
                                                                                                  in template (omit) MBSSessionReleaseResponseTransfer.iE_Extensions p_iE_Extensions := omit
                                                                                                  ) := {
                mBS_SessionTNLInfoNGRAN := p_mBS_SessionTNLInfoNGRAN,
                iE_Extensions           := p_iE_Extensions
            } // End of template m_mBSSessionReleaseResponseTransfer

            template (omit) MBSSessionSetupOrModResponseTransfer m_mBSSessionSetupOrModResponseTransfer(
                                                                                                        in template (omit) MBS_SessionTNLInfoNGRAN p_mBS_SessionTNLInfoNGRAN := omit,
                                                                                                        in template (omit) MBSSessionSetupOrModResponseTransfer.iE_Extensions p_iE_Extensions := omit
                                                                                                        ) := {
                mBS_SessionTNLInfoNGRAN := p_mBS_SessionTNLInfoNGRAN,
                iE_Extensions           := p_iE_Extensions
            } // End of template m_mBSSessionSetupOrModResponseTransfer

            template (value) MBS_SupportIndicator m_mBS_SupportIndicator(in MBS_SupportIndicator p_value := true_) := p_value;

            template (value) MBS_SessionTNLInfo5GC m_mBS_SessionTNLInfo5GC_locationindependent(
                                                                                             in template (value) SharedNGU_MulticastTNLInformation p_locationindependent
                                                                                             ) := {
                locationindependent := p_locationindependent
            } // End of template m_mBS_SessionTNLInfo5GC_locationindependent

            template (value) MBS_SessionTNLInfo5GC m_mBS_SessionTNLInfo5GC_locationdependent(
                                                                                             in template (value) MBS_SessionTNLInfo5GCList p_locationdependent
                                                                                             ) := {
                locationdependent := p_locationdependent
            } // End of template m_mBS_SessionTNLInfo5GC_locationdependent

            template (value) MBS_SessionTNLInfo5GC m_mBS_SessionTNLInfo5GC_choice_Extensions(
                                                                                             in template (value) MBS_SessionTNLInfo5GC.choice_Extensions p_choice_Extensions
                                                                                             ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_mBS_SessionTNLInfo5GC_choice_Extensions

            template (omit) MBS_SessionTNLInfo5GCItem m_mBS_SessionTNLInfo5GCItem(
                                                                                  in template (value) MBS_AreaSessionID p_mBS_AreaSessionID,
                                                                                  in template (value) SharedNGU_MulticastTNLInformation p_sharedNGU_MulticastTNLInformation,
                                                                                  in template (omit) MBS_SessionTNLInfo5GCItem.iE_Extensions p_iE_Extensions := omit
                                                                                  ) := {
                mBS_AreaSessionID                 := p_mBS_AreaSessionID,
                sharedNGU_MulticastTNLInformation := p_sharedNGU_MulticastTNLInformation,
                iE_Extensions                     := p_iE_Extensions
            } // End of template m_mBS_SessionTNLInfo5GCItem

            template (value) MBS_SessionTNLInfoNGRAN m_mBS_SessionTNLInfoNGRAN_locationindependent(
                                                                                                   in template (value) UPTransportLayerInformation p_locationindependent
                                                                                                   ) := {
                locationindependent := p_locationindependent
            } // End of template m_mBS_SessionTNLInfoNGRAN_locationindependent

            template (value) MBS_SessionTNLInfoNGRAN m_mBS_SessionTNLInfoNGRAN_locationdependent(
                                                                                                 in template (value) MBS_SessionTNLInfoNGRANList p_locationdependent
                                                                                                 ) := {
                locationdependent := p_locationdependent
            } // End of template m_mBS_SessionTNLInfoNGRAN_locationdependent

            template (value) MBS_SessionTNLInfoNGRAN m_mBS_SessionTNLInfoNGRAN_choice_Extensions(
                                                                                                 in template (value) MBS_SessionTNLInfoNGRAN.choice_Extensions p_choice_Extensions
                                                                                                 ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_mBS_SessionTNLInfoNGRAN_choice_Extensions

            template (omit) MBS_SessionTNLInfoNGRANItem m_mBS_SessionTNLInfoNGRANItem(
                                                                                      in template (value) MBS_AreaSessionID p_mBS_AreaSessionID,
                                                                                      in template (omit) UPTransportLayerInformation p_sharedNGU_UnicastTNLInformation := omit,
                                                                                      in template (omit) MBS_SessionTNLInfoNGRANItem.iE_Extensions p_iE_Extensions := omit
                                                                                      ) := {
                mBS_AreaSessionID               := p_mBS_AreaSessionID,
                sharedNGU_UnicastTNLInformation := p_sharedNGU_UnicastTNLInformation,
                iE_Extensions                   := p_iE_Extensions
            } // End of template m_mBS_SessionTNLInfoNGRANItem

            template (omit) MBS_DistributionReleaseRequestTransfer m_mBS_DistributionReleaseRequestTransfer(
                                                                                                            in template (value) MBS_SessionID p_mBS_SessionID,
                                                                                                            in template (value) Cause p_cause,
                                                                                                            in template (omit) MBS_AreaSessionID p_mBS_AreaSessionID := omit,
                                                                                                            in template (omit) UPTransportLayerInformation p_sharedNGU_UnicastTNLInformation := omit,
                                                                                                            in template (omit) MBS_DistributionReleaseRequestTransfer.iE_Extensions p_iE_Extensions := omit
                                                                                                            ) := {
                mBS_SessionID                   := p_mBS_SessionID,
                mBS_AreaSessionID               := p_mBS_AreaSessionID,
                sharedNGU_UnicastTNLInformation := p_sharedNGU_UnicastTNLInformation,
                cause                           := p_cause,
                iE_Extensions                   := p_iE_Extensions
            } // End of template m_mBS_DistributionReleaseRequestTransfer

            template (omit) MBS_DistributionSetupRequestTransfer m_mBS_DistributionSetupRequestTransfer(
                                                                                                        in template (value) MBS_SessionID p_mBS_SessionID,
                                                                                                        in template (omit) MBS_AreaSessionID p_mBS_AreaSessionID := omit,
                                                                                                        in template (omit) UPTransportLayerInformation p_sharedNGU_UnicastTNLInformation := omit,
                                                                                                        in template (omit) MBS_DistributionSetupRequestTransfer.iE_Extensions p_iE_Extensions := omit
                                                                                                        ) := {
                mBS_SessionID                   := p_mBS_SessionID,
                mBS_AreaSessionID               := p_mBS_AreaSessionID,
                sharedNGU_UnicastTNLInformation := p_sharedNGU_UnicastTNLInformation,
                iE_Extensions                   := p_iE_Extensions
            } // End of template m_mBS_DistributionSetupRequestTransfer

            template (omit) MBS_DistributionSetupResponseTransfer m_mBS_DistributionSetupResponseTransfer(
                                                                                                          in template (value) MBS_SessionID p_mBS_SessionID,
                                                                                                          in template (value) MBS_QoSFlowsToBeSetupList p_mBS_QoSFlowsToBeSetupList,
                                                                                                          in template (value) MBSSessionStatus p_mBSSessionStatus,
                                                                                                          in template (omit) MBS_AreaSessionID p_mBS_AreaSessionID := omit,
                                                                                                          in template (omit) MBS_SessionTNLInfo5GCItem p_sharedNGU_MulticastTNLInformation := omit,
                                                                                                          in template (omit) MBS_ServiceArea p_mBS_ServiceArea := omit,
                                                                                                          in template (omit) MBS_DistributionSetupResponseTransfer.iE_Extensions p_iE_Extensions := omit
                                                                                                          ) := {
                mBS_SessionID                     := p_mBS_SessionID,
                mBS_AreaSessionID                 := p_mBS_AreaSessionID,
                sharedNGU_MulticastTNLInformation := p_sharedNGU_MulticastTNLInformation,
                mBS_QoSFlowsToBeSetupList         := p_mBS_QoSFlowsToBeSetupList,
                mBSSessionStatus                  := p_mBSSessionStatus,
                mBS_ServiceArea                   := p_mBS_ServiceArea,
                iE_Extensions                     := p_iE_Extensions
            } // End of template m_mBS_DistributionSetupResponseTransfer

            template (omit) MBS_DistributionSetupUnsuccessfulTransfer m_mBS_DistributionSetupUnsuccessfulTransfer(
                                                                                                                  in template (value) MBS_SessionID p_mBS_SessionID,
                                                                                                                  in template (value) Cause p_cause,
                                                                                                                  in template (omit) MBS_AreaSessionID p_mBS_AreaSessionID := omit,
                                                                                                                  in template (omit) CriticalityDiagnostics p_criticalityDiagnostics := omit,
                                                                                                                  in template (omit) MBS_DistributionSetupUnsuccessfulTransfer.iE_Extensions p_iE_Extensions := omit
                                                                                                                  ) := {
                mBS_SessionID          := p_mBS_SessionID,
                mBS_AreaSessionID      := p_mBS_AreaSessionID,
                cause                  := p_cause,
                criticalityDiagnostics := p_criticalityDiagnostics,
                iE_Extensions          := p_iE_Extensions
            } // End of template m_mBS_DistributionSetupUnsuccessfulTransfer

           template (omit) MBSSessionSetupRequestItem m_mBSSessionSetupRequestItem(
                                                                                   in template (value) MBS_SessionID p_mBS_SessionID,
                                                                                   in template (omit) MBS_AreaSessionID p_mBS_AreaSessionID := omit,
                                                                                   in template (omit) AssociatedMBSQosFlowSetupRequestList p_associatedMBSQosFlowSetupRequestList := omit,
                                                                                   in template (omit) MBSSessionSetupRequestItem.iE_Extensions p_iE_Extensions := omit
                                                                                   ):= {
                mBS_SessionID                        := p_mBS_SessionID,
                mBS_AreaSessionID                    := p_mBS_AreaSessionID,
                associatedMBSQosFlowSetupRequestList := p_associatedMBSQosFlowSetupRequestList,
                iE_Extensions                        := p_iE_Extensions
            } // End of template m_mBSSessionSetupRequestItem

            template (omit) MBSSessionSetuporModifyRequestItem m_mBSSessionSetuporModifyRequestItem(
                                                                                                    in template (value) MBS_SessionID p_mBS_SessionID,
                                                                                                    in template (omit) MBS_AreaSessionID p_mBS_AreaSessionID := omit,
                                                                                                    in template (omit) AssociatedMBSQosFlowSetuporModifyRequestList p_associatedMBSQosFlowSetuporModifyRequestList := omit,
                                                                                                    in template (omit) QosFlowListWithCause p_mBS_QosFlowToReleaseList := omit,
                                                                                                    in template (omit) MBSSessionSetuporModifyRequestItem.iE_Extensions p_iE_Extensions := omit
                                                                                                    ) := {
                mBS_SessionID                                := p_mBS_SessionID,
                mBS_AreaSessionID                            := p_mBS_AreaSessionID,
                associatedMBSQosFlowSetuporModifyRequestList := p_associatedMBSQosFlowSetuporModifyRequestList,
                mBS_QosFlowToReleaseList                     := p_mBS_QosFlowToReleaseList,
                iE_Extensions                                := p_iE_Extensions
            } // End of template m_mBSSessionSetuporModifyRequestItem

            template (omit) MBSSessionToReleaseItem m_mBSSessionToReleaseItem(
                                                                              in template (value) MBS_SessionID p_mBS_SessionID,
                                                                              in template (value) Cause p_cause,
                                                                              in template (omit) MBSSessionToReleaseItem.iE_Extensions p_iE_Extensions := omit
                                                                              ):= {
                mBS_SessionID := p_mBS_SessionID,
                cause         := p_cause,
                iE_Extensions := p_iE_Extensions
            } // End of template m_mBSSessionToReleaseItem

            template (value) MBSSessionStatus m_mBSSessionStatus(in MBSSessionStatus p_value := activated) := p_value;

            template (value) MicoAllPLMN m_micoAllPLMN(in MicoAllPLMN p_value := true_) := p_value;

            template (value) MICOModeIndication m_mICOModeIndication(in MICOModeIndication p_value := true_) := p_value;

            template (omit) MobilityRestrictionList m_mobilityRestrictionList(
                                                                              in template (value) PLMNIdentity p_servingPLMN,
                                                                              in template (omit) EquivalentPLMNs p_equivalentPLMNs := omit,
                                                                              in template (omit) RATRestrictions p_rATRestrictions := omit,
                                                                              in template (omit) ForbiddenAreaInformation p_forbiddenAreaInformation := omit,
                                                                              in template (omit) ServiceAreaInformation p_serviceAreaInformation := omit,
                                                                              in template (omit) MobilityRestrictionList.iE_Extensions p_iE_Extensions := omit
                                                                              ) := {
                servingPLMN              := p_servingPLMN,
                equivalentPLMNs          := p_equivalentPLMNs,
                rATRestrictions          := p_rATRestrictions,
                forbiddenAreaInformation := p_forbiddenAreaInformation,
                serviceAreaInformation   := p_serviceAreaInformation,
                iE_Extensions            := p_iE_Extensions
            } // End of template m_mobilityRestrictionList

            template (value) MobilityRestrictionList.iE_Extensions m_mobilityRestrictionList_id_LastEUTRAN_PLMNIdentity(
                                                                                                                        in template (value) PLMNIdentity p_pLMNIdentity
                                                                                                                        ) := {
                { 
                    id             := id_LastEUTRAN_PLMNIdentity,
                    criticality    := ignore,
                    extensionValue := { PLMNIdentity := p_pLMNIdentity }	
                }
            } // End of template m_mobilityRestrictionList_id_LastEUTRAN_PLMNIdentity

            template (value) MobilityRestrictionList.iE_Extensions m_mobilityRestrictionList_id_CNTypeRestrictionsForServing(
                                                                                                                             in template (value) CNTypeRestrictionsForServing p_cNTypeRestrictionsForServing
                                                                                                                             ) := {
                { 
                    id             := id_CNTypeRestrictionsForServing,
                    criticality    := ignore,
                    extensionValue := { CNTypeRestrictionsForServing := p_cNTypeRestrictionsForServing }	
                }
            } // End of template m_mobilityRestrictionList_id_CNTypeRestrictionsForServing

            template (value) MobilityRestrictionList.iE_Extensions m_mobilityRestrictionList_id_CNTypeRestrictionsForEquivalent(
                                                                                                                                in template (value) CNTypeRestrictionsForEquivalent p_cNTypeRestrictionsForEquivalent
                                                                                                                                ) := {
                { 
                    id             := id_CNTypeRestrictionsForEquivalent,
                    criticality    := ignore,
                    extensionValue := { CNTypeRestrictionsForEquivalent := p_cNTypeRestrictionsForEquivalent }	
                }
            } // End of template m_mobilityRestrictionList_id_CNTypeRestrictionsForEquivalent

            template (value) MobilityRestrictionList.iE_Extensions m_mobilityRestrictionList_id_NPN_MobilityInformation(
                                                                                                                        in template (value) NPN_MobilityInformation p_nPN_MobilityInformation
                                                                                                                        ) := {
                { 
                    id             := id_NPN_MobilityInformation,
                    criticality    := reject,
                    extensionValue := { NPN_MobilityInformation := p_nPN_MobilityInformation }	
                }
            } // End of template m_mobilityRestrictionList_id_NPN_MobilityInformation

            template (value) MDT_AlignmentInfo m_mDT_AlignmentInfo_s_basedMDT(
                                                                              in template (value) NGRANTraceID p_s_basedMDT
                                                                              ) := {
                s_basedMDT := p_s_basedMDT
            } // End of template m_mDT_AlignmentInfo_s_basedMDT

            template (value) MDT_AlignmentInfo m_mDT_AlignmentInfo_choice_Extensions(
                                                                                     in template (value) MDT_AlignmentInfo.choice_Extensions p_choice_Extensions
                                                                                     ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_mDT_AlignmentInfo_choice_Extensions

            template (omit) MDT_Configuration m_mDT_Configuration(
                                                                  in template (omit) MDT_Configuration_NR p_mdt_Config_NR := omit,
                                                                  in template (omit) MDT_Configuration_EUTRA p_mdt_Config_EUTRA := omit,
                                                                  in template (omit) MDT_Configuration.iE_Extensions p_iE_Extensions := omit
                                                                  ) := {
                mdt_Config_NR    := p_mdt_Config_NR,
                mdt_Config_EUTRA := p_mdt_Config_EUTRA,
                iE_Extensions    := p_iE_Extensions
            } // End of template m_mDT_Configuration

            template (omit) MDT_Configuration_NR m_mDT_Configuration_NR(
                                                                        in template (value) MDT_Activation p_mdt_Activation,
                                                                        in template (value) AreaScopeOfMDT_NR p_areaScopeOfMDT,
                                                                        in template (value) MDTModeNr p_mDTModeNr,
                                                                        in template (omit) MDTPLMNList p_signallingBasedMDTPLMNList := omit,
                                                                        in template (omit) MDT_Configuration_NR.iE_Extensions p_iE_Extensions := omit
                                                                        ) := {
                mdt_Activation             := p_mdt_Activation,
                areaScopeOfMDT             := p_areaScopeOfMDT,
                mDTModeNr                  := p_mDTModeNr,
                signallingBasedMDTPLMNList := p_signallingBasedMDTPLMNList,
                iE_Extensions              := p_iE_Extensions
            } // End of template m_mDT_Configuration_NR

            template (omit) MDT_Configuration_EUTRA m_mDT_Configuration_EUTRA(
                                                                              in template (value) MDT_Activation p_mdt_Activation,
                                                                              in template (value) AreaScopeOfMDT_EUTRA p_areaScopeOfMDT,
                                                                              in template (value) MDTModeEutra p_mDTMode,
                                                                              in template (omit) MDTPLMNList p_signallingBasedMDTPLMNList := omit,
                                                                              in template (omit) MDT_Configuration_EUTRA.iE_Extensions p_iE_Extensions := omit
                                                                              ) := {
                mdt_Activation             := p_mdt_Activation,
                areaScopeOfMDT             := p_areaScopeOfMDT,
                mDTMode                    := p_mDTMode,
                signallingBasedMDTPLMNList := p_signallingBasedMDTPLMNList,
                iE_Extensions              := p_iE_Extensions
            } // End of template m_mDT_Configuration_EUTRA

            template (value) MDT_Activation m_mDT_Activation(in MDT_Activation p_value := immediate_MDT_only) := p_value;

            template (value) MDTModeNr m_mDTModeNro_immediateMDTNr(
                                                                   in template (value) ImmediateMDTNr p_immediateMDTNr
                                                                   ) := {
                immediateMDTNr := p_immediateMDTNr
            } // End of template m_mDTModeNr_immediateMDTNr

            template (value) MDTModeNr m_mDTModeNro_loggedMDTNr(
                                                                in template (value) LoggedMDTNr p_loggedMDTNr
                                                                ) := {
                loggedMDTNr := p_loggedMDTNr
            } // End of template m_mDTModeNr_loggedMDTNr

            template (value) MDTModeNr m_mDTModeNr_choice_Extensions(
                                                                     in template (value) MDTModeNr.choice_Extensions p_choice_Extensions
                                                                     ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_mDTModeNr_choice_Extensions

            template (omit) MulticastSessionActivationRequestTransfer m_multicastSessionActivationRequestTransfer(
                                                                                                                  in template (value) MBS_SessionID p_mBS_SessionID,
                                                                                                                  in template (omit) MulticastSessionActivationRequestTransfer.iE_Extensions p_iE_Extensions := omit
                                                                                                                  ) := {
                mBS_SessionID := p_mBS_SessionID,
                iE_Extensions := p_iE_Extensions
            } // End of template m_multicastSessionActivationRequestTransfer

            template (omit) MulticastSessionDeactivationRequestTransfer m_multicastSessionDeactivationRequestTransfer(
                                                                                                                      in template (value) MBS_SessionID p_mBS_SessionID,
                                                                                                                      in template (omit) MulticastSessionDeactivationRequestTransfer.iE_Extensions p_iE_Extensions := omit
                                                                                                                      ) := {
                mBS_SessionID := p_mBS_SessionID,
                iE_Extensions := p_iE_Extensions
            } // End of template m_multicastSessionDeactivationRequestTransfer

            template (value) MulticastSessionUpdateRequestTransfer m_multicastSessionUpdateRequestTransfer(
                                                                                                           in template (value) MulticastSessionUpdateRequestTransfer.protocolIEs p_protocolIEs
                                                                                                           ) := {
                protocolIEs := p_protocolIEs
            } // End of template m_multicastSessionUpdateRequestTransfer

            template (value) MulticastSessionUpdateRequestTransfer.protocolIEs m_multicastSessionUpdateRequestTransfer_id_MBS_SessionID(
                                                                                                                                        in template (value) MBS_SessionID p_mBS_SessionID
                                                                                                                                        ) := {
                { 
                    id          := id_MBS_SessionID,
                    criticality := reject,
                    value_      := { MBS_SessionID := p_mBS_SessionID }	
                }
            } // End of template m_multicastSessionUpdateRequestTransfer_id_MBS_SessionID

            template (value) MulticastSessionUpdateRequestTransfer.protocolIEs m_multicastSessionUpdateRequestTransfer_id_MBS_ServiceArea(
                                                                                                                                          in template (value) MBS_ServiceArea p_mBS_ServiceArea
                                                                                                                                          ) := {
                { 
                    id          := id_MBS_ServiceArea,
                    criticality := reject,
                    value_      := { MBS_ServiceArea := p_mBS_ServiceArea }	
                }
            } // End of template m_multicastSessionUpdateRequestTransfer_id_MBS_ServiceArea

            template (value) MulticastSessionUpdateRequestTransfer.protocolIEs m_multicastSessionUpdateRequestTransfer_id_MBS_QoSFlowsToBeSetupModList(
                                                                                                                                                       in template (value) MBS_QoSFlowsToBeSetupList p_mBS_QoSFlowsToBeSetupList
                                                                                                                                                       ) := {
                { 
                    id          := id_MBS_QoSFlowsToBeSetupModList,
                    criticality := reject,
                    value_      := { MBS_QoSFlowsToBeSetupList := p_mBS_QoSFlowsToBeSetupList }	
                }
            } // End of template m_multicastSessionUpdateRequestTransfer_id_MBS_QoSFlowsToBeSetupModList

            template (value) MulticastSessionUpdateRequestTransfer.protocolIEs m_multicastSessionUpdateRequestTransfer_id_MBS_QoSFlowToReleaseList(
                                                                                                                                                   in template (value) QosFlowListWithCause p_qosFlowListWithCause
                                                                                                                                                   ) := {
                { 
                    id          := id_MBS_QoSFlowToReleaseList,
                    criticality := reject,
                    value_      := { QosFlowListWithCause := p_qosFlowListWithCause }	
                }
            } // End of template m_multicastSessionUpdateRequestTransfer_id_MBS_QoSFlowToReleaseList

            template (value) MulticastSessionUpdateRequestTransfer.protocolIEs m_multicastSessionUpdateRequestTransfer_id_MBS_SessionTNLInfo5GC(
                                                                                                                                                in template (value) MBS_SessionTNLInfo5GC p_mBS_SessionTNLInfo5GC
                                                                                                                                                ) := {
                { 
                    id          := id_MBS_SessionTNLInfo5GC,
                    criticality := reject,
                    value_      := { MBS_SessionTNLInfo5GC := p_mBS_SessionTNLInfo5GC }	
                }
            } // End of template m_multicastSessionUpdateRequestTransfer_id_MBS_SessionTNLInfo5GC

            template (omit) MulticastGroupPagingAreaItem m_multicastGroupPagingAreaItem(
                                                                                        in template (value) MulticastGroupPagingArea p_multicastGroupPagingArea,
                                                                                        in template (omit) UE_PagingList p_uE_PagingList := omit,
                                                                                        in template (omit) MulticastGroupPagingAreaItem.iE_Extensions p_iE_Extensions := omit
                                                                                        ) := {
                multicastGroupPagingArea := p_multicastGroupPagingArea,
                uE_PagingList            := p_uE_PagingList,
                iE_Extensions            := p_iE_Extensions
            } // End of template m_multicastGroupPagingAreaItem

            template (omit) MulticastGroupPagingArea m_multicastGroupPagingArea(
                                                                                in template (value) MBS_AreaTAIList p_mBS_AreaTAIList,
                                                                                in template (omit) MulticastGroupPagingArea.iE_Extensions p_iE_Extensions := omit
                                                                                ) := {
                mBS_AreaTAIList := p_mBS_AreaTAIList,
                iE_Extensions   := p_iE_Extensions
            } // End of template m_multicastGroupPagingArea

            template (omit) UE_PagingItem m_uE_PagingItem(
                                                          in template (value) UEIdentityIndexValue p_uEIdentityIndexValue,
                                                          in template (omit) PagingDRX p_pagingDRX := omit,
                                                          in template (omit) UE_PagingItem.iE_Extensions p_iE_Extensions := omit
                                                          ) := {
                uEIdentityIndexValue := p_uEIdentityIndexValue,
                pagingDRX            := p_pagingDRX,
                iE_Extensions        := p_iE_Extensions
            } // End of template m_uE_PagingItem

            template (omit) M1Configuration m_m1Configuration(
                                                              in template (value) M1ReportingTrigger p_m1reportingTrigger,
                                                              in template (omit) M1ThresholdEventA2 p_m1thresholdEventA2 := omit,
                                                              in template (omit) M1PeriodicReporting p_m1periodicReporting := omit,
                                                              in template (omit) M1Configuration.iE_Extensions p_iE_Extensions := omit
                                                              ) := {
                m1reportingTrigger  := p_m1reportingTrigger,
                m1thresholdEventA2  := p_m1thresholdEventA2,
            //	The above IE shall be present if the M1 Reporting Trigger IE is set to “A2event_triggered” or “A2event_triggered periodic”
                m1periodicReporting := p_m1periodicReporting,
            //	The above IE shall be present if the M1 Reporting Trigger IE is set to “periodic” or “A2event_triggered periodic”
                iE_Extensions       := p_iE_Extensions
            } // End of template m_m1Configuration

            template (value) M1Configuration.iE_Extensions m_m1Configuration_id_IncludeBeamMeasurementsIndication(
                                                                                                                  in template (value) IncludeBeamMeasurementsIndication p_includeBeamMeasurementsIndication
                                                                                                                  ) := {
                { 
                    id             := id_IncludeBeamMeasurementsIndication,
                    criticality    := ignore,
                    extensionValue := { IncludeBeamMeasurementsIndication := p_includeBeamMeasurementsIndication }	
                }
            } // End of template m_m1Configuration_id_IncludeBeamMeasurementsIndication

            template (value) M1Configuration.iE_Extensions m_m1Configuration_id_BeamMeasurementsReportConfiguration(
                                                                                                                    in template (value) BeamMeasurementsReportConfiguration p_beamMeasurementsReportConfiguration
                                                                                                                    ) := {
                { 
                    id             := id_BeamMeasurementsReportConfiguration,
                    criticality    := ignore,
                    extensionValue := { BeamMeasurementsReportConfiguration := p_beamMeasurementsReportConfiguration }	
                }
            } // End of template m_m1Configuration_id_BeamMeasurementsReportConfiguration

            template (value) IncludeBeamMeasurementsIndication m_includeBeamMeasurementsIndication(in IncludeBeamMeasurementsIndication p_value := true_) := p_value;

            template (value) M1ReportingTrigger m_m1ReportingTrigger(in M1ReportingTrigger p_value := periodic) := p_value;

            template (omit) M1ThresholdEventA2 m_m1ThresholdEventA2(
                                                                    in template (value) M1ThresholdType p_m1ThresholdType,
                                                                    in template (omit) M1ThresholdEventA2.iE_Extensions p_iE_Extensions := omit
                                                                    ) := {
                m1ThresholdType := p_m1ThresholdType,
                iE_Extensions   := p_iE_Extensions
            } // End of template m_m1ThresholdEventA2

            template (value) M1ThresholdType m_m1ThresholdType_threshold_RSRP(
                                                                              in template (value) Threshold_RSRP p_threshold_RSRP
                                                                              ) := {
                threshold_RSRP := p_threshold_RSRP
            } // End of template m_m1ThresholdType_threshold_RSRP

            template (value) M1ThresholdType m_m1ThresholdType_threshold_RSRQ(
                                                                              in template (value) Threshold_RSRQ p_threshold_RSRQ
                                                                              ) := {
                threshold_RSRQ := p_threshold_RSRQ
            } // End of template m_m1ThresholdType_threshold_RSRQ

            template (value) M1ThresholdType m_m1ThresholdType_threshold_SINR(
                                                                              in template (value) Threshold_SINR p_threshold_SINR
                                                                              ) := {
                threshold_SINR := p_threshold_SINR
            } // End of template m_m1ThresholdType_threshold_SINR

            template (value) M1ThresholdType m_m1ThresholdType_choice_Extensions(
                                                                                 in template (value) M1ThresholdType.choice_Extensions p_choice_Extensions
                                                                                 ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template m_m1ThresholdType_choice_Extensions

            template (omit) M1PeriodicReporting m_m1PeriodicReporting(
                                                                      in template (value) ReportIntervalMDT p_reportInterval,
                                                                      in template (value) ReportAmountMDT p_reportAmount,
                                                                      in template (omit) M1PeriodicReporting.iE_Extensions p_iE_Extensions := omit
                                                                      ) := {
                reportInterval := p_reportInterval,
                reportAmount   := p_reportAmount,
                iE_Extensions  := p_iE_Extensions
            } // End of template m_m1PeriodicReporting

            template (value) M1PeriodicReporting.iE_Extensions m_m1PeriodicReporting_id_ExtendedReportIntervalMDT(
                                                                                                                  in template (value) ExtendedReportIntervalMDT p_extendedReportIntervalMDT
                                                                                                                  ) := {
                { 
                    id             := id_ExtendedReportIntervalMDT,
                    criticality    := ignore,
                    extensionValue := { ExtendedReportIntervalMDT := p_extendedReportIntervalMDT }	
                }
            } // End of template m_m1PeriodicReporting_id_ExtendedReportIntervalMDT

            template (omit) M4Configuration m_m4Configuration(
                                                              in template (value) M4period p_m4period,
                                                              in template (value) Links_to_log p_m4_links_to_log,
                                                              in template (omit) M4Configuration.iE_Extensions p_iE_Extensions := omit
                                                              ) := {
                m4period        := p_m4period,
                m4_links_to_log := p_m4_links_to_log,
                iE_Extensions   := p_iE_Extensions
            } // End of template m_m4Configuration

            template (value) M4Configuration.iE_Extensions m_m4Configuration_id_M4ReportAmount(
                                                                                               in template (value) M4ReportAmountMDT p_m4ReportAmountMDT
                                                                                               ) := {
                { 
                    id             := id_ExtendedReportIntervalMDT,
                    criticality    := ignore,
                    extensionValue := { M4ReportAmountMDT := p_m4ReportAmountMDT }	
                }
            } // End of template m_m4Configuration_id_M4ReportAmount

            template (value) M4ReportAmountMDT m_m4ReportAmountMDT(in M4ReportAmountMDT p_value := r1) := p_value;

            template (value) M4period m_m4period(in M4period p_value := ms1024) := p_value;

            template (omit) M5Configuration m_m5Configuration(
                                                              in template (value) M5period p_m5period,
                                                              in template (value) Links_to_log p_m5_links_to_log,
                                                              in template (omit) M5Configuration.iE_Extensions p_iE_Extensions := omit
                                                              ) := {
                m5period        := p_m5period,
                m5_links_to_log := p_m5_links_to_log,
                iE_Extensions   := p_iE_Extensions
            } // End of template m_m5Configuration

            template (value) M5Configuration.iE_Extensions m_m5Configuration_id_M5ReportAmount(
                                                                                               in template (value) M5ReportAmountMDT p_m5ReportAmountMDT
                                                                                               ) := {
                { 
                    id             := id_M5ReportAmount,
                    criticality    := ignore,
                    extensionValue := { M5ReportAmountMDT := p_m5ReportAmountMDT }	
                }
            } // End of template m_m5Configuration_id_M5ReportAmount

            template (value) M5ReportAmountMDT m_m5ReportAmountMDT(in M5ReportAmountMDT p_value := r1) := p_value;

            template (value) M5period m_m5period(in M5period p_value := ms1024) := p_value;

            template (omit) M6Configuration m_m6Configuration(
                                                              in template (value) M6report_Interval p_m6report_Interval,
                                                              in template (value) Links_to_log p_m6_links_to_log,
                                                              in template (omit) M6Configuration.iE_Extensions p_iE_Extensions := omit
                                                              ) := {
                m6report_Interval := p_m6report_Interval,
                m6_links_to_log   := p_m6_links_to_log,
                iE_Extensions     := p_iE_Extensions
            } // End of template m_m6Configuration

            template (value) M6Configuration.iE_Extensions m_m6Configuration_id_M6ReportAmount(
                                                                                               in template (value) M6ReportAmountMDT p_m6ReportAmountMDT
                                                                                               ) := {
                { 
                    id             := id_M6ReportAmount,
                    criticality    := ignore,
                    extensionValue := { M6ReportAmountMDT := p_m6ReportAmountMDT }	
                }
            } // End of template m_m6Configuration_id_M6ReportAmount

            template (value) M6Configuration.iE_Extensions m_m6Configuration_id_ExcessPacketDelayThresholdConfiguration(
                                                                                                                        in template (value) ExcessPacketDelayThresholdConfiguration p_excessPacketDelayThresholdConfiguration
                                                                                                                        ) := {
                { 
                    id             := id_ExcessPacketDelayThresholdConfiguration,
                    criticality    := ignore,
                    extensionValue := { ExcessPacketDelayThresholdConfiguration := p_excessPacketDelayThresholdConfiguration }	
                }
            } // End of template m_m6Configuration_id_ExcessPacketDelayThresholdConfiguration

            template (value) M6ReportAmountMDT m_m6ReportAmountMDT(in M6ReportAmountMDT p_value := r1) := p_value;

            template (value) M6report_Interval m_m6report_Interval(in M6report_Interval p_value := ms120) := p_value;

            template (omit) M7Configuration m_m7Configuration(
                                                              in template (value) M7period p_m7period,
                                                              in template (value) Links_to_log p_m7_links_to_log,
                                                              in template (omit) M7Configuration.iE_Extensions p_iE_Extensions := omit
                                                              ) := {
                m7period        := p_m7period,
                m7_links_to_log := p_m7_links_to_log,
                iE_Extensions   := p_iE_Extensions
            } // End of template m_m7Configuration

            template (value) M7Configuration.iE_Extensions m_m7Configuration_id_M7ReportAmount(
                                                                                               in template (value) M7ReportAmountMDT p_m7ReportAmountMDT
                                                                                               ) := {
                { 
                    id             := id_M7ReportAmount,
                    criticality    := ignore,
                    extensionValue := { M7ReportAmountMDT := p_m7ReportAmountMDT }	
                }
            } // End of template m_m7Configuration_id_M7ReportAmount

            template (value) M7ReportAmountMDT m_m7ReportAmountMDT(in M7ReportAmountMDT p_value := r1) := p_value;

            template (omit) MDT_Location_Info m_mDT_Location_Info(
                                                                  in template (value) MDT_Location_Information p_mDT_Location_Information,
                                                                  in template (omit) MDT_Location_Info.iE_Extensions p_iE_Extensions := omit
                                                                  ) := {
                mDT_Location_Information := p_mDT_Location_Information,
                iE_Extensions            := p_iE_Extensions
            } // End of template m_mDT_Location_Info

            //  type    union   N3IWF_ID    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   N3IWF_ID_ExtIEs (?);
            //  type    octetstring NAS_PDU;
            //  type    octetstring NASSecurityParametersFromNGRAN;
            //  type    enumerated  NB_IoT_DefaultPagingDRX {
            //  type    enumerated  NB_IoT_PagingDRX    {
            //  type    enumerated  NB_IoT_Paging_eDRXCycle {
            //  type    enumerated  NB_IoT_Paging_TimeWindow    {
            //  type    record  NB_IoT_Paging_eDRXInfo  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION NB_IoT_Paging_eDRXInfo_ExtIEs   (?);
            //  type    integer NB_IoT_UEPriority   (
            //  type    integer NetworkInstance (
            //  type    enumerated  NewSecurityContextInd   {
            //  type    integer NextHopChainingCount    (0  ..  7); 
            //  type    enumerated  NextPagingAreaScope {
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofNGAPIESupportInfo)    of  NGAPIESupportInformationRequestItem NGAPIESupportInformationRequestList;
            //  type    record  NGAPIESupportInformationRequestItem {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION NGAPIESupportInformationRequestItem_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofNGAPIESupportInfo)    of  NGAPIESupportInformationResponseItem    NGAPIESupportInformationResponseList;
            //  type    record  NGAPIESupportInformationResponseItem    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION NGAPIESupportInformationResponseItem_ExtIEs (?);
            //  type    union   NgENB_ID    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   NgENB_ID_ExtIEs (?);
            //  type    enumerated  NotifySourceNGRANNode   {
            //  type    union   NGRAN_CGI   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   NGRAN_CGI_ExtIEs    (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTNLAssociations)  of  NGRAN_TNLAssociationToRemoveItem    NGRAN_TNLAssociationToRemoveList;
            //  type    record  NGRAN_TNLAssociationToRemoveItem    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION NGRAN_TNLAssociationToRemoveItem_ExtIEs (?);
            //  type    octetstring NGRANTraceID    length  (8);
            //  type    bitstring   NID length  (44);
            //  type    record  NonDynamic5QIDescriptor {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION NonDynamic5QIDescriptor_ExtIEs  (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofAllowedAreas) of  TAC NotAllowedTACs;
            //  type    enumerated  NotificationCause   {
            //  type    enumerated  NotificationControl {
            //  type    union   NPN_AccessInformation   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   NPN_AccessInformation_ExtIEs    (?);
            //  type    union   NPN_MobilityInformation {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   NPN_MobilityInformation_ExtIEs  (?);
            //  type    union   NPN_PagingAssistanceInformation {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   NPN_PagingAssistanceInformation_ExtIEs  (?);
            //  type    union   NPN_Support {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   NPN_Support_ExtIEs  (?);
            //  type    bitstring   NRCellIdentity  length  (36);
            template (value) NRCellIdentity m_ie_nRCellId(template (value) NRCellIdentity p_nrCId:='000000000000000000000000000000000000'B):= p_nrCId;
            //  type    record  NR_CGI  {
            template (value) NR_CGI m_ie_nrCgi(
                                             template (value) PLMNIdentity p_PlmnId,
                                             template (value) NRCellIdentity p_nrCellId,
                                             in template (omit) NR_CGI.iE_Extensions p_iE_Extensions := omit
            ) := {
                pLMNIdentity   := p_PlmnId,
                nRCellIdentity := p_nrCellId,
                iE_Extensions  := p_iE_Extensions
            } //End of template m_ie_nrCgi
            
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION NR_CGI_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofCellsingNB)   of  NR_CGI  NR_CGIList;
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofCellIDforWarning) of  NR_CGI  NR_CGIListForWarning;
            //  type    record  NR_PagingeDRXInformation    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION NR_PagingeDRXInformation_ExtIEs (?);
            //  type    enumerated  NR_Paging_eDRX_Cycle    {
            //  type    enumerated  NR_Paging_Time_Window   {
            //  type    bitstring   NRencryptionAlgorithms  length  (
            //  type    bitstring   NRintegrityProtectionAlgorithms length  (
            //  type    octetstring NRMobilityHistoryReport;
            //  type    octetstring NRPPa_PDU;
            //  type    octetstring NRUERLFReportContainer;
            //  type    record  NRNTNTAIInformation {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION NRNTNTAIInformation_ExtIEs  (?);
            //  type    integer NumberOfBroadcasts  (0  ..  65535); 
            //  type    integer NumberOfBroadcastsRequested (0  ..  65535); 
            //  type    integer NRARFCN (0  ..  NGAP_Constants.maxNRARFCN); 
            //  type    integer NRFrequencyBand (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofNRCellBands)  of  NRFrequencyBandItem NRFrequencyBand_List;
            //  type    record  NRFrequencyBandItem {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION NRFrequencyBandItem_ExtIEs  (?);
            //  type    record  NRFrequencyInfo {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION NRFrequencyInfo_ExtIEs  (?);
            //  type    integer NR_PCI  (
            //  type    record  NRV2XServicesAuthorized {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION NRV2XServicesAuthorized_ExtIEs  (?);
            //  type    enumerated  VehicleUE   {
            //  type    enumerated  PedestrianUE    {
            //  type    record  NRUESidelinkAggregateMaximumBitrate {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION NRUESidelinkAggregateMaximumBitrate_ExtIEs  (?);
            //  type    integer NSAG_ID (
            //  type    enumerated  OnboardingSupport   {
            //  type    enumerated  OverloadAction  {
            //  type    union   OverloadResponse    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   OverloadResponse_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofSliceItems)   of  OverloadStartNSSAIItem  OverloadStartNSSAIList;
            //  type    record  OverloadStartNSSAIItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION OverloadStartNSSAIItem_ExtIEs   (?);
            //  type    integer PacketDelayBudget   (
            //  type    record  PacketErrorRate {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PacketErrorRate_ExtIEs  (?);
            //  type    integer PacketLossRate  (
            //  type    record  PagingAssisDataforCEcapabUE {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PagingAssisDataforCEcapabUE_ExtIEs  (?);
            //  type    record  PagingAttemptInformation    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PagingAttemptInformation_ExtIEs (?);
            //  type    integer PagingAttemptCount  (
            //  type    enumerated  PagingCause {
            //  type    enumerated  PagingCauseIndicationForVoiceService    {

            //  type    enumerated  PagingDRX   {
            template (value) PagingDRX m_ie_defaultPagingDRX(in PagingDRX p_drx := v256) := p_drx;

            //  type    enumerated  PagingOrigin    {
            //  type    enumerated  PagingPriority  {
            //  type    enumerated  PagingProbabilityInformation    {
            //  type    record  PathSwitchRequestAcknowledgeTransfer    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PathSwitchRequestAcknowledgeTransfer_ExtIEs (
            //  type    record  PathSwitchRequestSetupFailedTransfer    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PathSwitchRequestSetupFailedTransfer_ExtIEs (?);
            //  type    record  PathSwitchRequestTransfer   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PathSwitchRequestTransfer_ExtIEs    (
            //  type    record  PathSwitchRequestUnsuccessfulTransfer   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PathSwitchRequestUnsuccessfulTransfer_ExtIEs    (?);
            //  type    record  PC5QoSParameters    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PC5QoSParameters_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPC5QoSFlows)  of  PC5QoSFlowItem  PC5QoSFlowList;
            //  type    record  PC5QoSFlowItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PC5QoSFlowItem_ExtIEs   (?);
            //  type    record  PC5FlowBitRates {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PC5FlowBitRates_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofNeighPCIforMDT)   of  NR_PCI  PCIListForMDT;
            //  type    enumerated  PrivacyIndicator    {
            //  type    record  PDUSessionAggregateMaximumBitRate   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionAggregateMaximumBitRate_ExtIEs    (?);

            //  type    integer PDUSessionID    (0  ..  255);
            template (value) PDUSessionID m_ie_pDUSessId(in PDUSessionID p_val := 0) := p_val;

            //  type    integer PDUSessionPairID    (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceAdmittedItem  PDUSessionResourceAdmittedList;
            //  type    record  PDUSessionResourceAdmittedItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceAdmittedItem_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceFailedToModifyItemModCfm  PDUSessionResourceFailedToModifyListModCfm;
            //  type    record  PDUSessionResourceFailedToModifyItemModCfm  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceFailedToModifyItemModCfm_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceFailedToModifyItemModRes  PDUSessionResourceFailedToModifyListModRes;
            //  type    record  PDUSessionResourceFailedToModifyItemModRes  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceFailedToModifyItemModRes_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceFailedToResumeItemRESReq  PDUSessionResourceFailedToResumeListRESReq;
            //  type    record  PDUSessionResourceFailedToResumeItemRESReq  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceFailedToResumeItemRESReq_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceFailedToResumeItemRESRes  PDUSessionResourceFailedToResumeListRESRes;
            //  type    record  PDUSessionResourceFailedToResumeItemRESRes  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceFailedToResumeItemRESRes_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceFailedToSetupItemCxtFail  PDUSessionResourceFailedToSetupListCxtFail;
            //  type    record  PDUSessionResourceFailedToSetupItemCxtFail  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceFailedToSetupItemCxtFail_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceFailedToSetupItemCxtRes   PDUSessionResourceFailedToSetupListCxtRes;
            //  type    record  PDUSessionResourceFailedToSetupItemCxtRes   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceFailedToSetupItemCxtRes_ExtIEs    (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceFailedToSetupItemHOAck    PDUSessionResourceFailedToSetupListHOAck;
            //  type    record  PDUSessionResourceFailedToSetupItemHOAck    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceFailedToSetupItemHOAck_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceFailedToSetupItemPSReq    PDUSessionResourceFailedToSetupListPSReq;
            //  type    record  PDUSessionResourceFailedToSetupItemPSReq    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceFailedToSetupItemPSReq_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceFailedToSetupItemSURes    PDUSessionResourceFailedToSetupListSURes;
            //  type    record  PDUSessionResourceFailedToSetupItemSURes    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceFailedToSetupItemSURes_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceHandoverItem  PDUSessionResourceHandoverList;
            //  type    record  PDUSessionResourceHandoverItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceHandoverItem_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceInformationItem   PDUSessionResourceInformationList;
            //  type    record  PDUSessionResourceInformationItem   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceInformationItem_ExtIEs    (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceItemCxtRelCpl PDUSessionResourceListCxtRelCpl;
            //  type    record  PDUSessionResourceItemCxtRelCpl {
            //  type    octetstring PDUSessionResourceReleaseResponseTransfer_OCTET_STRING;
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceItemCxtRelCpl_ExtIEs  (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceItemCxtRelReq PDUSessionResourceListCxtRelReq;
            //  type    record  PDUSessionResourceItemCxtRelReq {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceItemCxtRelReq_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceItemHORqd PDUSessionResourceListHORqd;
            //  type    record  PDUSessionResourceItemHORqd {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceItemHORqd_ExtIEs  (?);
            //  type    record  PDUSessionResourceModifyConfirmTransfer {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceModifyConfirmTransfer_ExtIEs  (
            //  type    record  PDUSessionResourceModifyIndicationUnsuccessfulTransfer  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceModifyIndicationUnsuccessfulTransfer_ExtIEs   (?);
            //  type    record  PDUSessionResourceModifyRequestTransfer {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   PDUSessionResourceModifyRequestTransferIEs  (
            //  type    record  PDUSessionResourceModifyResponseTransfer    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceModifyResponseTransfer_ExtIEs (
            //  type    record  PDUSessionResourceModifyIndicationTransfer  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceModifyIndicationTransfer_ExtIEs   (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceModifyItemModCfm  PDUSessionResourceModifyListModCfm;
            //  type    record  PDUSessionResourceModifyItemModCfm  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceModifyItemModCfm_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceModifyItemModInd  PDUSessionResourceModifyListModInd;
            //  type    record  PDUSessionResourceModifyItemModInd  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceModifyItemModInd_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceModifyItemModReq  PDUSessionResourceModifyListModReq;
            //  type    record  PDUSessionResourceModifyItemModReq  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceModifyItemModReq_ExtIEs   (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceModifyItemModRes  PDUSessionResourceModifyListModRes;
            //  type    record  PDUSessionResourceModifyItemModRes  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceModifyItemModRes_ExtIEs   (?);
            //  type    record  PDUSessionResourceModifyUnsuccessfulTransfer    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceModifyUnsuccessfulTransfer_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceNotifyItem    PDUSessionResourceNotifyList;
            //  type    record  PDUSessionResourceNotifyItem    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceNotifyItem_ExtIEs (?);
            //  type    record  PDUSessionResourceNotifyReleasedTransfer    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceNotifyReleasedTransfer_ExtIEs (
            //  type    record  PDUSessionResourceNotifyTransfer    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceNotifyTransfer_ExtIEs (
            //  type    record  PDUSessionResourceReleaseCommandTransfer    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceReleaseCommandTransfer_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceReleasedItemNot   PDUSessionResourceReleasedListNot;
            //  type    record  PDUSessionResourceReleasedItemNot   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceReleasedItemNot_ExtIEs    (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceReleasedItemPSAck PDUSessionResourceReleasedListPSAck;
            //  type    record  PDUSessionResourceReleasedItemPSAck {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceReleasedItemPSAck_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceReleasedItemPSFail    PDUSessionResourceReleasedListPSFail;
            //  type    record  PDUSessionResourceReleasedItemPSFail    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceReleasedItemPSFail_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceReleasedItemRelRes    PDUSessionResourceReleasedListRelRes;
            //  type    record  PDUSessionResourceReleasedItemRelRes    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceReleasedItemRelRes_ExtIEs (?);
            //  type    record  PDUSessionResourceReleaseResponseTransfer   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceReleaseResponseTransfer_ExtIEs    (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceResumeItemRESReq  PDUSessionResourceResumeListRESReq;
            //  type    record  PDUSessionResourceResumeItemRESReq  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceResumeItemRESReq_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceResumeItemRESRes  PDUSessionResourceResumeListRESRes;
            //  type    record  PDUSessionResourceResumeItemRESRes  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceResumeItemRESRes_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceSecondaryRATUsageItem PDUSessionResourceSecondaryRATUsageList;
            //  type    record  PDUSessionResourceSecondaryRATUsageItem {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceSecondaryRATUsageItem_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceSetupItemCxtReq   PDUSessionResourceSetupListCxtReq;
            //  type    record  PDUSessionResourceSetupItemCxtReq   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceSetupItemCxtReq_ExtIEs    (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceSetupItemCxtRes   PDUSessionResourceSetupListCxtRes;
            //  type    record  PDUSessionResourceSetupItemCxtRes   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceSetupItemCxtRes_ExtIEs    (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceSetupItemHOReq    PDUSessionResourceSetupListHOReq;
            //  type    record  PDUSessionResourceSetupItemHOReq    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceSetupItemHOReq_ExtIEs (

            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceSetupItemSUReq    PDUSessionResourceSetupListSUReq;
            template (value) PDUSessionResourceSetupListSUReq m_ie_pDUSessionResourceSetupListSUReq(
                                                                                                    in template (value) PDUSessionResourceSetupListSUReq p_list
                                                                                                    ) := p_list;
Iztok Juvancic's avatar
Iztok Juvancic committed

            //  type    record  PDUSessionResourceSetupItemSUReq    {
            template (omit) PDUSessionResourceSetupItemSUReq m_ie_pDUSessionResourceSetupItemSUReq(
                                                                                                   in template (value) PDUSessionID p_pDUSessId,
                                                                                                   in template (omit) NAS_PDU p_nASPdu := omit,
                                                                                                   in template (value) S_NSSAI p_sNSSAI,
                                                                                                   in template (value) octetstring p_pduSessResSetReqTra,
                                                                                                   in template (omit) PDUSessionResourceSetupItemSUReq.iE_Extensions p_iE_Extensions := omit
                                                                                                   ):= {
                pDUSessionID                           := p_pDUSessId,
                pDUSessionNAS_PDU                      :=p_nASPdu,
                s_NSSAI                                := p_sNSSAI,
                pDUSessionResourceSetupRequestTransfer := p_pduSessResSetReqTra,
                iE_Extensions                          := p_iE_Extensions
            } // End of template m_ie_pDUSessionResourceSetupItemSUReq
5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceSetupItemSUReq_ExtIEs (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceSetupItemSURes    PDUSessionResourceSetupListSURes;
            //  type    record  PDUSessionResourceSetupItemSURes    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceSetupItemSURes_ExtIEs (?);

            //  type    record  PDUSessionResourceSetupRequestTransfer  {
            template PDUSessionResourceSetupRequestTransfer m_ie_pDUSessResSetReqTrEmpty:={protocolIEs:={}};
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   PDUSessionResourceSetupRequestTransferIEs   (
            template (value) PDUSessionResourceSetupRequestTransfer m_ie_pDUSessResSetReqTrIEs(
                                                                                               in template (value) UPTransportLayerInformation p_utli,
                                                                                               in template (value) PDUSessionType p_pst,
                                                                                               in template (value) QosFlowSetupRequestList p_qfsrl
               ) := {
                   protocolIEs:={
//                       {
//                        id := id_PDUSessionAggregateMaximumBitRate,
//                        criticality := reject,
//                        value_ := omit //"NGAP_IEs.PDUSessionAggregateMaximumBitRate",
//                        //presence := optional_
//                       },
                       {
                         id := id_UL_NGU_UP_TNLInformation,
                         criticality := reject,
                         value_ := { UPTransportLayerInformation := p_utli}
                         //presence := mandatory
                       }, 
//                       {
//                         id := id_AdditionalUL_NGU_UP_TNLInformation,
//                         criticality := reject,
//                         value_ := omit //"NGAP_IEs.UPTransportLayerInformationList",
//                         //presence := optional_
//                       }, 
//                       {
//                         id := id_DataForwardingNotPossible,
//                         criticality := reject,
//                         value_ := omit //"NGAP_IEs.DataForwardingNotPossible",
//                         //presence := optional_
//                       }, 
                       {
                         id := id_PDUSessionType,
                         criticality := reject,
                         value_ := { PDUSessionType := p_pst}
                         //presence := mandatory
                       }, 
//                       {
//                         id := id_SecurityIndication,
//                         criticality := reject,
//                         value_ := omit //"NGAP_IEs.SecurityIndication",
//                         //presence := optional_
//                       }, 
//                       {
//                         id := id_NetworkInstance,
//                         criticality := reject,
//                         value_ := omit //"NGAP_IEs.NetworkInstance",
//                         //presence := optional_
//                       }, 
                       {
                         id := id_QosFlowSetupRequestList,
                         criticality := reject,
                         value_ := { QosFlowSetupRequestList := p_qfsrl}
                         //presence := mandatory
                       }//, 
//                       {
//                         id := id_CommonNetworkInstance,
//                         criticality := ignore,
//                         value_ := omit //"NGAP_IEs.CommonNetworkInstance",
//                         //presence := optional_
//                       }, 
//                       {
//                         id := id_DirectForwardingPathAvailability,
//                         criticality := ignore,
//                         value_ := omit //"NGAP_IEs.DirectForwardingPathAvailability",
//                         //presence := optional_
//                       }, 
//                       {
//                         id := id_RedundantUL_NGU_UP_TNLInformation,
//                         criticality := ignore,
//                         value_ := omit //"NGAP_IEs.UPTransportLayerInformation",
//                         //presence := optional_
//                       }, 
//                       {
//                         id := id_AdditionalRedundantUL_NGU_UP_TNLInformation,
//                         criticality := ignore,
//                         value_ := omit //"NGAP_IEs.UPTransportLayerInformationList",
//                         //presence := optional_
//                       }, 
//                       {
//                         id := id_RedundantCommonNetworkInstance,
//                         criticality := ignore,
//                         value_ := omit //"NGAP_IEs.CommonNetworkInstance",
//                         //presence := optional_
//                       }, 
//                       {
//                         id := id_RedundantPDUSessionInformation,
//                         criticality := ignore,
//                         value_ := omit //"NGAP_IEs.RedundantPDUSessionInformation",
//                         //presence := optional_
//                       }, 
//                       {
//                         id := id_MBSSessionSetupRequestList,
//                         criticality := ignore,
//                         value_ := omit //"NGAP_IEs.MBSSessionSetupRequestList",
//                         //presence := optional_
//                       }
               }
            } // End of template m_ie_pDUSessResSetReqTrIEs

            //  type    record  PDUSessionResourceSetupResponseTransfer {
            template (omit) PDUSessionResourceSetupResponseTransfer m_ie_pDUSessResSetRespTr(
                                                                                             in template (value) QosFlowPerTNLInformation p_qosfTnlInf,
                                                                                             in template (omit) QosFlowPerTNLInformationList p_qosfList := omit,
                                                                                             in template (omit) SecurityResult p_secRes := omit,
                                                                                             in template (omit) QosFlowListWithCause p_qosfCause := omit,
                                                                                             in template (omit) PDUSessionResourceSetupResponseTransfer.iE_Extensions p_iE_Extensions := omit
                                                                                             ) := {
                dLQosFlowPerTNLInformation           := p_qosfTnlInf,
                additionalDLQosFlowPerTNLInformation := p_qosfList,
                securityResult                       := p_secRes,
                qosFlowFailedToSetupList             := p_qosfCause,
                iE_Extensions                        := p_iE_Extensions
            } // End of template m_ie_pDUSessResSetRespTr

            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceSetupResponseTransfer_ExtIEs  (
            //  type    record  PDUSessionResourceSetupUnsuccessfulTransfer {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceSetupUnsuccessfulTransfer_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceSuspendItemSUSReq PDUSessionResourceSuspendListSUSReq;
            //  type    record  PDUSessionResourceSuspendItemSUSReq {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceSuspendItemSUSReq_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceSwitchedItem  PDUSessionResourceSwitchedList;
            //  type    record  PDUSessionResourceSwitchedItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceSwitchedItem_ExtIEs   (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceToBeSwitchedDLItem    PDUSessionResourceToBeSwitchedDLList;
            //  type    record  PDUSessionResourceToBeSwitchedDLItem    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceToBeSwitchedDLItem_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceToReleaseItemHOCmd    PDUSessionResourceToReleaseListHOCmd;
            //  type    record  PDUSessionResourceToReleaseItemHOCmd    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceToReleaseItemHOCmd_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceToReleaseItemRelCmd   PDUSessionResourceToReleaseListRelCmd;
            //  type    record  PDUSessionResourceToReleaseItemRelCmd   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceToReleaseItemRelCmd_ExtIEs    (?);

            //  type    enumerated  PDUSessionType  {
            template (value) PDUSessionType m_ie_PDUSessionType(in PDUSessionType p_val := unstructured) := p_val;

            //  type    record  PDUSessionUsageReport   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionUsageReport_ExtIEs    (?);
            //  type    record  PEIPSassistanceInformation  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PEIPSassistanceInformation_ExtIEs   (?);
            //  type    integer Periodicity (
            //  type    bitstring   PeriodicRegistrationUpdateTimer length  (8); 

            //  type    octetstring PLMNIdentity    length  (3);
            template (value) PLMNIdentity m_ie_pLMNIdentity(in PLMNIdentity p_val) := p_val;

            //  type    record  PLMNAreaBasedQMC    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PLMNAreaBasedQMC_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPLMNforQMC)   of  PLMNIdentity    PLMNListforQMC;
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPLMNs)    of  PLMNSupportItem PLMNSupportList;
            //  type    record  PLMNSupportItem {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PLMNSupportItem_ExtIEs  (
            //  type    record  PNI_NPN_MobilityInformation {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PNI_NPN_MobilityInformation_ExtIEs  (?);
            //  type    octetstring PortNumber  length  (2);
            //  type    enumerated  Pre_emptionCapability   {
            //  type    enumerated  Pre_emptionVulnerability    {
            //  type    integer PriorityLevelARP    (1  ..  15);    
            //  type    integer PriorityLevelQos    (
            //  type    union   PWSFailedCellIDList {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   PWSFailedCellIDList_ExtIEs  (?);
            //  type    record  QMCConfigInfo   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QMCConfigInfo_ExtIEs    (?);
            //  type    record  QMCDeactivation {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QMCDeactivation_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofUEAppLayerMeas)   of  QoEReference    QoEReferenceList;
            //  type    octetstring QoEReference    length  (6);
            //  type    union   QosCharacteristics  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   QosCharacteristics_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofQosFlows) of  QosFlowAcceptedItem QosFlowAcceptedList;
            //  type    record  QosFlowAcceptedItem {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowAcceptedItem_ExtIEs  (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofQosFlows) of  QosFlowAddOrModifyRequestItem   QosFlowAddOrModifyRequestList;
            //  type    record  QosFlowAddOrModifyRequestItem   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowAddOrModifyRequestItem_ExtIEs    (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofQosFlows) of  QosFlowAddOrModifyResponseItem  QosFlowAddOrModifyResponseList;
            //  type    record  QosFlowAddOrModifyResponseItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowAddOrModifyResponseItem_ExtIEs   (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofQosFlows) of  QosFlowFeedbackItem QosFlowFeedbackList;
            //  type    record  QosFlowFeedbackItem {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowFeedbackItem_ExtIEs  (?);
            template (value) QosFlowIdentifier m_qosFlowIdentifier(in QosFlowIdentifier p_value := 0) := p_value;
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofQosFlows) of  QosFlowInformationItem  QosFlowInformationList;
            //  type    record  QosFlowInformationItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowInformationItem_ExtIEs   (
            //  type    record  QosFlowLevelQosParameters   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowLevelQosParameters_ExtIEs    (
            //  type    enumerated  QosMonitoringRequest    {
            //  type    integer QosMonitoringReportingFrequency (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofQosFlows) of  QosFlowIdentifier   QoSFlowList;
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofQosFlows) of  QosFlowWithCauseItem    QosFlowListWithCause;
            //  type    record  QosFlowWithCauseItem    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowWithCauseItem_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofQosFlows) of  QosFlowModifyConfirmItem    QosFlowModifyConfirmList;
            //  type    record  QosFlowModifyConfirmItem    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowModifyConfirmItem_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofQosFlows) of  QosFlowNotifyItem   QosFlowNotifyList;
            //  type    record  QosFlowNotifyItem   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowNotifyItem_ExtIEs    (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofQosFlows) of  QosFlowParametersItem   QosFlowParametersList;
            //  type    record  QosFlowParametersItem   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowParametersItem_ExtIEs    (
            //  type    record  QosFlowPerTNLInformation    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowPerTNLInformation_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofMultiConnectivityMinusOne)    of  QosFlowPerTNLInformationItem    QosFlowPerTNLInformationList;
            //  type    record  QosFlowPerTNLInformationItem    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowPerTNLInformationItem_ExtIEs (?);

            //  type    record  length  (1  ..  NGAP_Constants.maxnoofQosFlows) of  QosFlowSetupRequestItem QosFlowSetupRequestList;
            template (value) QosFlowSetupRequestList m_ie_qosFlowSetReqList(in QosFlowSetupRequestList p_list) := p_list;
            //  type    record  QosFlowSetupRequestItem {

            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowSetupRequestItem_ExtIEs  (
            template (omit) QosFlowItemWithDataForwarding m_qosFlowItemWithDataForwarding(
                                                                                          in template (value) QosFlowIdentifier p_qosFlowIdentifier,
	                                                                                      in template (omit) DataForwardingAccepted p_dataForwardingAccepted := omit,
                                                                                          in template (omit) QosFlowItemWithDataForwarding.iE_Extensions p_iE_Extensions := omit
                                                                                          ) := {
                qosFlowIdentifier      := p_qosFlowIdentifier,
                dataForwardingAccepted := p_dataForwardingAccepted,
                iE_Extensions          := p_iE_Extensions
            } // End of template m_qosFlowItemWithDataForwarding

            template (omit) QosFlowItemWithDataForwarding.iE_Extensions m_qosFlowItemWithDataForwarding_alternativeQoSParaSetIndex(
                                                                                                                                   in template (value) AlternativeQoSParaSetIndex p_alternativeQoSParaSetIndex
                                                                                                                                   ) := {
                {
                    id             := id_CurrentQoSParaSetIndex,
                    criticality    := ignore,
                    extensionValue := { AlternativeQoSParaSetIndex := p_alternativeQoSParaSetIndex }
                }
            } // End of template m_qosFlowItemWithDataForwarding_alternativeQoSParaSetIndex
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowItemWithDataForwarding_ExtIEs    (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofQosFlows) of  QosFlowToBeForwardedItem    QosFlowToBeForwardedList;
            //  type    record  QosFlowToBeForwardedItem    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowToBeForwardedItem_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofQosFlows) of  QoSFlowsUsageReport_Item    QoSFlowsUsageReportList;
            //  type    record  QoSFlowsUsageReport_Item    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QoSFlowsUsageReport_Item_ExtIEs (?);
            //  type    enumerated  Range   {
            //  type    ASNAUX.PrintableString  RANNodeName length  (
            //  type    ASNAUX.VisibleString    RANNodeNameVisibleString    length  (
            //  type    ASNAUX.UTF8String   RANNodeNameUTF8String   length  (
            //  type    integer RANPagingPriority   (1  ..  256);   
            //  type    record  RANStatusTransfer_TransparentContainer  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION RANStatusTransfer_TransparentContainer_ExtIEs   (?);

            //  type    integer RAN_UE_NGAP_ID  (0  ..  4294967295);
            template (value) RAN_UE_NGAP_ID m_ie_rANUeNgapId(in integer p_val := 1) := p_val;

            //  type    enumerated  RAT_Information {
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofEPLMNsPlusOne)    of  RATRestrictions_Item    RATRestrictions;
            //  type    record  RATRestrictions_Item    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION RATRestrictions_Item_ExtIEs (
            //  type    bitstring   RATRestrictionInformation   length  (
            //  type    record  RecommendedCellsForPaging   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION RecommendedCellsForPaging_ExtIEs    (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofRecommendedCells) of  RecommendedCellItem RecommendedCellList;
            //  type    record  RecommendedCellItem {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION RecommendedCellItem_ExtIEs  (?);
            //  type    record  RecommendedRANNodesForPaging    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION RecommendedRANNodesForPaging_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofRecommendedRANNodes)  of  RecommendedRANNodeItem  RecommendedRANNodeList;
            //  type    record  RecommendedRANNodeItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION RecommendedRANNodeItem_ExtIEs   (?);
            //  type    enumerated  RedCapIndication    {
            //  type    enumerated  RedirectionVoiceFallback    {
            //  type    record  RedundantPDUSessionInformation  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION RedundantPDUSessionInformation_ExtIEs   (
            //  type    enumerated  RedundantQosFlowIndicator   {
            //  type    enumerated  ReflectiveQosAttribute  {
            //  type    integer RelativeAMFCapacity (0  ..  255);   
            //  type    enumerated  ReportArea  {
            //  type    integer RepetitionPeriod    (0  ..  131071);    
            //  type    enumerated  ResetAll    {
            //  type    enumerated  ReportAmountMDT {
            //  type    enumerated  ReportIntervalMDT   {
            //  type    enumerated  ExtendedReportIntervalMDT   {
            //  type    union   ResetType   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   ResetType_ExtIEs    (?);
            //  type    octetstring RGLevelWirelineAccessCharacteristics;
            //  type    integer RNC_ID  (0  ..  4095);  
            //  type    octetstring RoutingID;
            //  type    octetstring RRCContainer;
            //  type    enumerated  RRCEstablishmentCause   {
            template (value) RRCEstablishmentCause m_ie_rrcEstCause(template (value) RRCEstablishmentCause p_rrcEstCause:=mo_Signalling):=p_rrcEstCause;
            
            //  type    enumerated  RRCInactiveTransitionReportRequest  {
            //  type    enumerated  RRCState    {
            //  type    enumerated  RSN {
            //  type    record  RIMInformationTransfer  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION RIMInformationTransfer_ExtIEs   (?);
            //  type    record  RIMInformation  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION RIMInformation_ExtIEs   (?);
            //  type    bitstring   GNBSetID    length  (22);
            //  type    record  ScheduledCommunicationTime  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION ScheduledCommunicationTime_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofXnTLAs)   of  TransportLayerAddress   SCTP_TLAs;

            //  type    octetstring SD  length  (3);
            template (value) SD m_ie_sD(in SD p_val := '000000'O) := p_val;

            //  type    record  SecondaryRATUsageInformation    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SecondaryRATUsageInformation_ExtIEs (?);
            //  type    record  SecondaryRATDataUsageReportTransfer {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SecondaryRATDataUsageReportTransfer_ExtIEs  (?);
            //  type    record  SecurityContext {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SecurityContext_ExtIEs  (?);
            //  type    record  SecurityIndication  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SecurityIndication_ExtIEs   (
            //  type    bitstring   SecurityKey length  (256);      
            //  type    record  SecurityResult  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SecurityResult_ExtIEs   (?);
            //  type    record  SensorMeasurementConfiguration  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SensorMeasurementConfiguration_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofSensorName)   of  SensorMeasConfigNameItem    SensorMeasConfigNameList;
            //  type    record  SensorMeasConfigNameItem    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SensorMeasConfigNameItem_ExtIEs (?);
            //  type    enumerated  SensorMeasConfig    {
            //  type    union   SensorNameConfig    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   SensorNameConfig_ExtIEs (?);
            //  type    bitstring   SerialNumber    length  (16);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofServedGUAMIs) of  ServedGUAMIItem ServedGUAMIList;
            //  type    record  ServedGUAMIItem {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION ServedGUAMIItem_ExtIEs  (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofEPLMNsPlusOne)    of  ServiceAreaInformation_Item ServiceAreaInformation;
            //  type    record  ServiceAreaInformation_Item {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION ServiceAreaInformation_Item_ExtIEs  (?);
            //  type    enumerated  ServiceType {
            //  type    integer SgNB_UE_X2AP_ID (0  ..  4294967295);    
            //  type    record  SharedNGU_MulticastTNLInformation   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SharedNGU_MulticastTNLInformation_ExtIEs    (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofSliceItems)   of  SliceOverloadItem   SliceOverloadList;
            //  type    record  SliceOverloadItem   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SliceOverloadItem_ExtIEs    (?);

            //  type    record  length  (1  ..  NGAP_Constants.maxnoofSliceItems)   of  SliceSupportItem    SliceSupportList;
            template (value) SliceSupportList m_ie_sliceSupportList(in template (value) SliceSupportList p_list) := p_list;

            //  type    record  SliceSupportItem    {
            template (omit) SliceSupportItem m_ie_sliceSupportItem(
                                                                   in template (value) S_NSSAI p_S_NSSAI,
                                                                   in template (omit) SliceSupportItem.iE_Extensions p_iE_Extensions := omit
                                                                   ) := {  
                s_NSSAI        := p_S_NSSAI,
                iE_Extensions  :=p_iE_Extensions
            } // End of template m_ie_sliceSupportItem

            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SliceSupportItem_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofSNSSAIforQMC) of  SliceSupportQMC_Item    SliceSupportListQMC;
            //  type    record  SliceSupportQMC_Item    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SliceSupportQMC_Item_ExtIEs (?);
            //  type    record  SNPN_MobilityInformation    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SNPN_MobilityInformation_ExtIEs (?);
            //  type    record  S_NSSAI {
            template (omit) S_NSSAI m_ie_sNSSAI(
                                                in template (value) SST p_sST,
                                                in template (value) SD p_sD,
                                                in template (omit) S_NSSAI.iE_Extensions p_iE_Extensions := omit
                                                ) := {
                sST           := p_sST,//'00'O,
                sD            := p_sD,//'000000'O,
                iE_Extensions := p_iE_Extensions
            } // End of template m_ie_sNSSAI

            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION S_NSSAI_ExtIEs  (?);
            //  type    record  SONConfigurationTransfer    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SONConfigurationTransfer_ExtIEs (?);
            //  type    union   SONInformation  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   SONInformation_ExtIEs   (
            //  type    record  SONInformationReply {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SONInformationReply_ExtIEs  (?);
            //  type    union   SONInformationReport    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   SONInformationReport_ExtIEs (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofSuccessfulHOReports)  of  SuccessfulHandoverReport_Item   SuccessfulHandoverReportList;
            //  type    record  SuccessfulHandoverReport_Item   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SuccessfulHandoverReport_Item_ExtIEs    (?);
            //  type    enumerated  SONInformationRequest   {
            //  type    record  SourceNGRANNode_ToTargetNGRANNode_TransparentContainer  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs   (
            //  type    union   SourceNodeID    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   SourceNodeID_ExtIEs (?);
            //  type    enumerated  SourceOfUEActivityBehaviourInformation  {
            //  type    record  SourceRANNodeID {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SourceRANNodeID_ExtIEs  (?);
            //  type    octetstring SourceToTarget_TransparentContainer;
            //  type    record  SourceToTarget_AMFInformationReroute    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SourceToTarget_AMFInformationReroute_ExtIEs (?);
            //  type    enumerated  SRVCCOperationPossible  {
            //  type    octetstring ConfiguredNSSAI length  (128);      
            //  type    octetstring RejectedNSSAIinPLMN length  (32);
            //  type    octetstring RejectedNSSAIinTA   length  (32);
            //  type    octetstring SST length  (1);
            template (value) SST m_ie_sST(in SST p_val := '00'O) := p_val;

            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTACs) of  SupportedTAItem SupportedTAList;
            template (value) SupportedTAList m_ie_supportedTAList(in template (value) SupportedTAList p_list) := p_list;

            //  type    record  SupportedTAItem {
            template (omit) SupportedTAItem m_ie_supportedTAItem(
                                                                 in template (value) TAC p_tAC,
                                                                 in template (value) BroadcastPLMNList p_broadcastPLMNList,
                                                                 in template (omit) SupportedTAItem.iE_Extensions p_iE_Extensions := omit
                                                                 ) := {
                tAC               := p_tAC,
                broadcastPLMNList := p_broadcastPLMNList,
                iE_Extensions     := p_iE_Extensions
            } // End of template m_ie_supportedTAItem

            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SupportedTAItem_ExtIEs  (

            //  type    enumerated  SuspendIndicator    {
            //  type    enumerated  Suspend_Request_Indication  {
            //  type    enumerated  Suspend_Response_Indication {
            //  type    integer SurvivalTime    (

            //  type    octetstring TAC length  (3);
            template (value) TAC m_ie_tAC(in template (value) TAC p_val) := p_val;

            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTACsinNTN)    of  TAC TACListInNRNTN;
            //  type    record  TAI {
            template (value) TAI m_ie_tAI(
                                         template (value) PLMNIdentity p_plmnId,
                                         template (value) TAC p_tac,
                                         in template (omit) TAI.iE_Extensions p_iE_Extensions := omit
            ) := {
                pLMNIdentity := p_plmnId,
                tAC := p_tac,
                iE_Extensions     := p_iE_Extensions
            } //End of template m_ie_tAI
            
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TAI_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTAIforWarning)    of  TAIBroadcastEUTRA_Item  TAIBroadcastEUTRA;
            //  type    record  TAIBroadcastEUTRA_Item  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TAIBroadcastEUTRA_Item_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTAIforWarning)    of  TAIBroadcastNR_Item TAIBroadcastNR;
            //  type    record  TAIBroadcastNR_Item {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TAIBroadcastNR_Item_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTAIforWarning)    of  TAICancelledEUTRA_Item  TAICancelledEUTRA;
            //  type    record  TAICancelledEUTRA_Item  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TAICancelledEUTRA_Item_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTAIforWarning)    of  TAICancelledNR_Item TAICancelledNR;
            //  type    record  TAICancelledNR_Item {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TAICancelledNR_Item_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTAIforInactive)   of  TAIListForInactiveItem  TAIListForInactive;
            //  type    record  TAIListForInactiveItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TAIListForInactiveItem_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTAIforPaging) of  TAIListForPagingItem    TAIListForPaging;
            //  type    record  TAIListForPagingItem    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TAIListForPagingItem_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTAIforRestart)    of  TAI TAIListForRestart;
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTAIforWarning)    of  TAI TAIListForWarning;
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofNSAGs)    of  TAINSAGSupportItem  TAINSAGSupportList;
            //  type    record  TAINSAGSupportItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TAINSAGSupportItem_ExtIEs   (?);
            //  type    record  TargeteNB_ID    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TargeteNB_ID_ExtIEs (?);
            //  type    record  TargetHomeENB_ID    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TargetHomeENB_ID_ExtIEs (?);
            //  type    union   TargetID    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   TargetID_ExtIEs (
            //  type    record  TargetNGRANNode_ToSourceNGRANNode_TransparentContainer  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs   (
            //  type    record  TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs    (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTargetS_NSSAIs)   of  TargetNSSAI_Item    TargetNSSAI;
            //  type    record  TargetNSSAI_Item    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TargetNSSAI_Item_ExtIEs (?);
            //  type    record  TargetNSSAIInformation  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TargetNSSAIInformation_Item_ExtIEs  (?);
            //  type    record  TargetRANNodeID {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TargetRANNodeID_ExtIEs  (?);
            //  type    record  TargetRANNodeID_RIM {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TargetRANNodeID_RIM_ExtIEs  (?);
            //  type    record  TargetRANNodeID_SON {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TargetRANNodeID_SON_ExtIEs  (
            //  type    record  TargetRNC_ID    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TargetRNC_ID_ExtIEs (?);
            //  type    octetstring TargetToSource_TransparentContainer;
            //  type    octetstring TargettoSource_Failure_TransparentContainer;
            //  type    enumerated  TimerApproachForGUAMIRemoval    {
            //  type    octetstring TimeStamp   length  (4);
            //  type    record  TimeSyncAssistanceInfo  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TimeSyncAssistanceInfo_ExtIEs   (?);
            //  type    enumerated  TimeToWait  {
            //  type    integer TimeUEStayedInCell  (0  ..  4095);  
            //  type    integer TimeUEStayedInCellEnhancedGranularity   (0  ..  40950); 
            //  type    octetstring TMGI    length  (6);
            //  type    octetstring TNAP_ID;
            //  type    union   TNGF_ID {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   TNGF_ID_ExtIEs  (?);
            //  type    integer TNLAddressWeightFactor  (0  ..  255);   
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTNLAssociations)  of  TNLAssociationItem  TNLAssociationList;
            //  type    record  TNLAssociationItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TNLAssociationItem_ExtIEs   (?);
            //  type    enumerated  TNLAssociationUsage {
            //  type    record  TooearlyIntersystemHO   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TooearlyIntersystemHO_ExtIEs    (?);
            //  type    record  TraceActivation {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TraceActivation_ExtIEs  (
            //  type    enumerated  TraceDepth  {
            //  type    integer TrafficLoadReductionIndication  (1  ..  99);    

            template (value) TransportLayerAddress m_ie_tla(in bitstring p_val := '0'B) := p_val;

            //  type    enumerated  TypeOfError {
            //  type    record  TAIBasedMDT {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TAIBasedMDT_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTAforMDT) of  TAI TAIListforMDT;
            //  type    record  TAIBasedQMC {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TAIBasedQMC_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTAforQMC) of  TAI TAIListforQMC;
            //  type    record  TABasedQMC  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TABasedQMC_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTAforQMC) of  TAC TAListforQMC;
            //  type    record  TABasedMDT  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TABasedMDT_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTAforMDT) of  TAC TAListforMDT;
            //  type    integer Threshold_RSRP  (0  ..  127);   
            //  type    integer Threshold_RSRQ  (0  ..  127);   
            //  type    integer Threshold_SINR  (0  ..  127);   
            //  type    enumerated  TimeToTrigger   {
            //  type    octetstring TWAP_ID;
            //  type    union   TWIF_ID {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   TWIF_ID_ExtIEs  (?);
            //  type    record  TSCAssistanceInformation    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TSCAssistanceInformation_ExtIEs (
            //  type    record  TSCTrafficCharacteristics   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TSCTrafficCharacteristics_ExtIEs    (?);
            //  type    record  UEAggregateMaximumBitRate   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UEAggregateMaximumBitRate_ExtIEs    (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofUEAppLayerMeas)   of  UEAppLayerMeasInfoItem  UEAppLayerMeasInfoList;
            //  type    record  UEAppLayerMeasInfoItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UEAppLayerMeasInfoItem_ExtIEs   (?);
            //  type    record  UEAppLayerMeasConfigInfo    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UEAppLayerMeasConfigInfo_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofNGConnectionsToReset) of  UE_associatedLogicalNG_connectionItem   UE_associatedLogicalNG_connectionList;
            //  type    record  UE_associatedLogicalNG_connectionItem   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UE_associatedLogicalNG_connectionItem_ExtIEs    (?);
            //  type    enumerated  UECapabilityInfoRequest {
            //  type    enumerated  UEContextRequest    {
            //  type    record  UEContextResumeRequestTransfer  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UEContextResumeRequestTransfer_ExtIEs   (?);
            //  type    record  UEContextResumeResponseTransfer {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UEContextResumeResponseTransfer_ExtIEs  (?);
            //  type    record  UEContextSuspendRequestTransfer {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UEContextSuspendRequestTransfer_ExtIEs  (?);
            //  type    record  UE_DifferentiationInfo  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UE_DifferentiationInfo_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofCellsinUEHistoryInfo) of  LastVisitedCellItem UEHistoryInformation;
            //  type    union   UEHistoryInformationFromTheUE   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   UEHistoryInformationFromTheUE_ExtIEs    (?);
            //  type    union   UEIdentityIndexValue    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   UEIdentityIndexValue_ExtIEs (?);
            //  type    union   UE_NGAP_IDs {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   UE_NGAP_IDs_ExtIEs  (?);
            //  type    record  UE_NGAP_ID_pair {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UE_NGAP_ID_pair_ExtIEs  (?);
            //  type    union   UEPagingIdentity    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   UEPagingIdentity_ExtIEs (?);
            //  type    enumerated  UEPresence  {
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofAoI)  of  UEPresenceInAreaOfInterestItem  UEPresenceInAreaOfInterestList;
            //  type    record  UEPresenceInAreaOfInterestItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UEPresenceInAreaOfInterestItem_ExtIEs   (?);
            //  type    octetstring UERadioCapability;
            //  type    record  UERadioCapabilityForPaging  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UERadioCapabilityForPaging_ExtIEs   (
            //  type    octetstring UERadioCapabilityForPagingOfNB_IoT;
            //  type    octetstring UERadioCapabilityForPagingOfNR;
            //  type    octetstring UERadioCapabilityForPagingOfEUTRA;
            //  type    octetstring UERadioCapabilityID;
            //  type    enumerated  UERetentionInformation  {
            //  type    union   UERLFReportContainer    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   UERLFReportContainer_ExtIEs (?);
            //  type    record  UESecurityCapabilities  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UESecurityCapabilities_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofAllowedS_NSSAIs)  of  UESliceMaximumBitRateItem   UESliceMaximumBitRateList;
            //  type    record  UESliceMaximumBitRateItem   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UESliceMaximumBitRateItem_ExtIEs    (?);
            //  type    enumerated  UE_UP_CIoT_Support  {
            //  type    record  UL_CP_SecurityInformation   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UL_CP_SecurityInformation_ExtIEs    (?);
            //  type    bitstring   UL_NAS_MAC  length  (16);
            //  type    bitstring   UL_NAS_Count    length  (5);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofMultiConnectivity)    of  UL_NGU_UP_TNLModifyItem UL_NGU_UP_TNLModifyList;
            //  type    record  UL_NGU_UP_TNLModifyItem {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UL_NGU_UP_TNLModifyItem_ExtIEs  (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofServedGUAMIs) of  UnavailableGUAMIItem    UnavailableGUAMIList;
            //  type    record  UnavailableGUAMIItem    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UnavailableGUAMIItem_ExtIEs (?);
            //  type    enumerated  ULForwarding    {
            //  type    bitstring   UpdateFeedback  length  (

            //  type    union   UPTransportLayerInformation {
            template (value) UPTransportLayerInformation m_ie_uPTLInf(
                                                                      in template (value) GTPTunnel p_gtpt
                                                                      ) := {
               gTPTunnel := p_gtpt
            } // End of template m_ie_uPTLInf
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   UPTransportLayerInformation_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofMultiConnectivityMinusOne)    of  UPTransportLayerInformationItem UPTransportLayerInformationList;
            //  type    record  UPTransportLayerInformationItem {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UPTransportLayerInformationItem_ExtIEs  (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofMultiConnectivityMinusOne)    of  UPTransportLayerInformationPairItem UPTransportLayerInformationPairList;
            //  type    record  UPTransportLayerInformationPairItem {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UPTransportLayerInformationPairItem_ExtIEs  (?);
            //  type    ASNAUX.VisibleString    URI_address;
            //  type    union   UserLocationInformation {
            template (value) UserLocationInformation m_ie_userLocInf_NR(template (value) UserLocationInformationNR p_ulinr) := {
               userLocationInformationNR := p_ulinr
            } // End of template m_ie_userLocInf
            
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   UserLocationInformation_ExtIEs  (
            //  type    record  UserLocationInformationEUTRA    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UserLocationInformationEUTRA_ExtIEs (
            //  type    record  UserLocationInformationN3IWF    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UserLocationInformationN3IWF_ExtIEs (
            //  type    record  UserLocationInformationTNGF {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UserLocationInformationTNGF_ExtIEs  (
            //  type    record  UserLocationInformationTWIF {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UserLocationInformationTWIF_ExtIEs  (
            //  type    union   UserLocationInformationW_AGF    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   UserLocationInformationW_AGF_ExtIEs (
            //  type    record  UserLocationInformationNR   {
            template (value) UserLocationInformationNR m_ie_userLocInfNR(
                                                                         template (value) NR_CGI p_nrcgi,
                                                                         template (value) TAI p_tai,
                                                                         in template (omit) UserLocationInformationNR.iE_Extensions p_iE_Extensions := omit
            ) := {
                nR_CGI := p_nrcgi,
                tAI := p_tai,
                timeStamp := omit, // optional,
                iE_Extensions := p_iE_Extensions
            } // End of template m_ie_userLocInfNR
            
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UserLocationInformationNR_ExtIEs    (
            //  type    record  UserPlaneSecurityInformation    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UserPlaneSecurityInformation_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTimePeriods)  of  VolumeTimedReport_Item  VolumeTimedReportList;
            //  type    record  VolumeTimedReport_Item  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION VolumeTimedReport_Item_ExtIEs   (?);
            //  type    union   W_AGF_ID    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   W_AGF_ID_ExtIEs (?);
            //  type    octetstring WarningAreaCoordinates  length  (1  ..  1024);
            //  type    union   WarningAreaList {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   WarningAreaList_ExtIEs  (?);
            //  type    octetstring WarningMessageContents  length  (1  ..  9600);
            //  type    octetstring WarningSecurityInfo length  (50);
            //  type    octetstring WarningType length  (2);
            //  type    record  WLANMeasurementConfiguration    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION WLANMeasurementConfiguration_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofWLANName) of  WLANMeasConfigNameItem  WLANMeasConfigNameList;
            //  type    record  WLANMeasConfigNameItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION WLANMeasConfigNameItem_ExtIEs   (?);
            //  type    enumerated  WLANMeasConfig  {
            //  type    octetstring WLANName    length  (1  ..  32);
            //  type    record  WUS_Assistance_Information  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION WUS_Assistance_Information_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofXnExtTLAs)    of  XnExtTLA_Item   XnExtTLAs;
            //  type    record  XnExtTLA_Item   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION XnExtTLA_Item_ExtIEs    (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofXnGTP_TLAs)   of  TransportLayerAddress   XnGTP_TLAs;
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofXnTLAs)   of  TransportLayerAddress   XnTLAs;
            //  type    record  XnTNLConfigurationInfo  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION XnTNLConfigurationInfo_ExtIEs   (?);

        } // End of group send

        group Receive{

            template (present) AdditionalDLUPTNLInformationForHOItem mw_additionalDLUPTNLInformationForHOItem(
                                                                                                              template (present) UPTransportLayerInformation p_additionalDL_NGU_UP_TNLInformation := ?,
                                                                                                              template (present) QosFlowListWithDataForwarding p_additionalQosFlowSetupResponseList := ?,
                                                                                                              template UPTransportLayerInformation p_additionalDLForwardingUPTNLInformation := *,
                                                                                                              template AdditionalDLUPTNLInformationForHOItem.iE_Extensions p_iE_Extensions := *
                                                                                                              ) := {
                additionalDL_NGU_UP_TNLInformation     := p_additionalDL_NGU_UP_TNLInformation,
                additionalQosFlowSetupResponseList     := p_additionalQosFlowSetupResponseList,
                additionalDLForwardingUPTNLInformation := p_additionalDLForwardingUPTNLInformation,
                iE_Extensions                          := p_iE_Extensions
            } // End of template mw_additionalDLUPTNLInformationForHOItem
            template (present) AdditionalDLUPTNLInformationForHOItem.iE_Extensions mw_additionalDLUPTNLInformationForHOItem_uPTransportLayerInformation(
                                                                                                                                                        template (present) UPTransportLayerInformation p_uPTransportLayerInformation := ?
                                                                                                                                                        ) := {
                {
                    id             := id_AdditionalRedundantDL_NGU_UP_TNLInformation,
                    criticality    := ignore,
                    extensionValue := { UPTransportLayerInformation := p_uPTransportLayerInformation }
                }
            } // End of template mw_additionalDLUPTNLInformationForHOItem_iE_Extensions
            template (present) AdditionalQosFlowInformation mw_additionalQosFlowInformation(template (present) AdditionalQosFlowInformation p_value := ?) := p_value;
            template (present) AllocationAndRetentionPriority mw_allocationAndRetentionPriority(
                                                                                                template (present) PriorityLevelARP p_priorityLevelARP := ?,
                                                                                                template (present) Pre_emptionCapability p_pre_emptionCapability := ?,
                                                                                                template (present) Pre_emptionVulnerability p_pre_emptionVulnerability := ?,
                                                                                                template AllocationAndRetentionPriority.iE_Extensions p_iE_Extensions := *
                                                                                                ) := {
                priorityLevelARP         := p_priorityLevelARP,
                pre_emptionCapability    := p_pre_emptionCapability,
                pre_emptionVulnerability := p_pre_emptionVulnerability,
                iE_Extensions            := p_iE_Extensions
            } // End of template mw_allocationAndRetentionPriority
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofAllowedCAGsperPLMN)   of  CAG_ID  Allowed_CAG_List_per_PLMN;
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofAllowedS_NSSAIs)  of  AllowedNSSAI_Item   AllowedNSSAI;
            //  type    record  AllowedNSSAI_Item   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION AllowedNSSAI_Item_ExtIEs    (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofEPLMNsPlusOne)    of  Allowed_PNI_NPN_Item    Allowed_PNI_NPN_List;
            //  type    record  Allowed_PNI_NPN_Item    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION Allowed_PNI_NPN_Item_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofAllowedAreas) of  TAC AllowedTACs;
            template (present) AlternativeQoSParaSetIndex mw_alternativeQoSParaSetIndex(in template (present) integer p_value := ?) := p_value;
            template (present) AlternativeQoSParaSetNotifyIndex mw_alternativeQoSParaSetNotifyIndex(in template (present) integer p_value := ?) := p_value;
            template (present) AlternativeQoSParaSetItem mw_alternativeQoSParaSetItem(
                                                                                      template (present) AlternativeQoSParaSetIndex p_alternativeQoSParaSetIndex := ?,
                                                                                      template BitRate p_guaranteedFlowBitRateDL := *,
                                                                                      template BitRate p_guaranteedFlowBitRateUL := *,
                                                                                      template PacketDelayBudget p_packetDelayBudget := *,
                                                                                      template PacketErrorRate p_packetErrorRate := *,
                                                                                      template AlternativeQoSParaSetItem.iE_Extensions p_iE_Extensions := *
                                                                                      ) := {
                alternativeQoSParaSetIndex := p_alternativeQoSParaSetIndex,
                guaranteedFlowBitRateDL    := p_guaranteedFlowBitRateDL,
                guaranteedFlowBitRateUL    := p_guaranteedFlowBitRateUL,
                packetDelayBudget          := p_packetDelayBudget,
                packetErrorRate            := p_packetErrorRate,
                iE_Extensions              := p_iE_Extensions
            } // End of template mw_alternativeQoSParaSetItem
            template (present) AMFName mw_aMFName(template (present) AMFName p_value := ?) := p_value;

            template (present) AMFNameVisibleString mw_aMFNameVisibleString(template (present) AMFNameVisibleString p_value := ?) := p_value;

            template (present) AMFNameUTF8String mw_aMFNameUTF8String(template (present) AMFNameUTF8String p_value := ?) := p_value;

            template (present) AMFPagingTarget mw_aMFPagingTarget_globalRANNodeID(
                                                                                  template (present) GlobalRANNodeID p_globalRANNodeID := ?
                                                                                  ) := {
                globalRANNodeID := p_globalRANNodeID
            } // End of template mw_aMFPagingTarget_globalRANNodeID
            template (present) AMFPagingTarget mw_aMFPagingTarget_tAI(
                                                                      template (present) TAI p_tAI := ?
                                                                      ) := {
                tAI := p_tAI
            } // End of template mw_aMFPagingTarget_tAI
            template (present) AMFPagingTarget mw_aMFPagingTarget_ext(
                                                                      template (present) AMFPagingTarget.choice_Extensions p_choice_Extensions := ?
                                                                      ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_aMFPagingTarget_ext

            template (present) AMF_TNLAssociationSetupItem mw_aMF_TNLAssociationSetupItem(
                                                                                          template (present) CPTransportLayerInformation p_aMF_TNLAssociationAddress := ?,
                                                                                          template AMF_TNLAssociationSetupItem.iE_Extensions p_iE_Extensions := *
                                                                                          ) := {
                aMF_TNLAssociationAddress := p_aMF_TNLAssociationAddress,
                iE_Extensions             := p_iE_Extensions
            } // End of template mw_aMF_TNLAssociationSetupItem

            template (present) AMF_TNLAssociationToAddItem mw_aMF_TNLAssociationToAddItem( 
                                                                                          template (present) CPTransportLayerInformation p_aMF_TNLAssociationAddress := ?,
                                                                                          template (present) TNLAddressWeightFactor p_tNLAddressWeightFactor := ?,
                                                                                          template TNLAssociationUsage p_tNLAssociationUsage := *,
                                                                                          template AMF_TNLAssociationToAddItem.iE_Extensions p_iE_Extensions := *
                                                                                          ):= {
                aMF_TNLAssociationAddress := p_aMF_TNLAssociationAddress,
                tNLAssociationUsage       := p_tNLAssociationUsage,
                tNLAddressWeightFactor    := p_tNLAddressWeightFactor,
                iE_Extensions             := p_iE_Extensions
            } // End of template mw_aMF_TNLAssociationToAddItem

            template (present) AMF_TNLAssociationToRemoveItem mw_aMF_TNLAssociationToRemoveItem(
                                                                                                template (present) CPTransportLayerInformation p_aMF_TNLAssociationAddress := ?,
                                                                                                template AMF_TNLAssociationToRemoveItem.iE_Extensions p_iE_Extensions := *
                                                                                                ) := {
                aMF_TNLAssociationAddress := p_aMF_TNLAssociationAddress,
                iE_Extensions             := p_iE_Extensions
            } // End of template mw_aMF_TNLAssociationToRemoveItem

            template (present) AMF_TNLAssociationToUpdateItem mw_aMF_TNLAssociationToUpdateItem(
                                                                                                template (present) CPTransportLayerInformation p_aMF_TNLAssociationAddress := ?,
                                                                                                template TNLAssociationUsage p_tNLAssociationUsage := *,
                                                                                                template TNLAddressWeightFactor p_tNLAddressWeightFactor := *,
                                                                                                template AMF_TNLAssociationToUpdateItem.iE_Extensions p_iE_Extensions := *
                                                                                                ) := {
                aMF_TNLAssociationAddress := p_aMF_TNLAssociationAddress,
                tNLAssociationUsage       := p_tNLAssociationUsage,
                tNLAddressWeightFactor    := p_tNLAddressWeightFactor,
                iE_Extensions             := p_iE_Extensions
            } // End of template mw_aMF_TNLAssociationToUpdateItem

            template (present) AMF_UE_NGAP_ID mw_ie_aMFUeNgapId(template (present) integer p_val := ?) := p_val;

            template AreaOfInterest mw_areaOfInterest(
                                                      template AreaOfInterestTAIList p_areaOfInterestTAIList := *,
                                                      template AreaOfInterestCellList p_areaOfInterestCellList := *,
                                                      template AreaOfInterestRANNodeList p_areaOfInterestRANNodeList := *,
                                                      template AreaOfInterest.iE_Extensions p_iE_Extensions := *
                                                      ) := {
                areaOfInterestTAIList     := p_areaOfInterestTAIList,
                areaOfInterestCellList    := p_areaOfInterestCellList,
                areaOfInterestRANNodeList := p_areaOfInterestRANNodeList,
                iE_Extensions             := p_iE_Extensions
            } // End of template mw_areaOfInterest
            
            template (present) AreaOfInterestCellItem mw_areaOfInterestCellItem(
                                                                                template (present) NGRAN_CGI p_nGRAN_CGI := ?,
                                                                                template AreaOfInterestCellItem.iE_Extensions p_iE_Extensions := *
                                                                                ) := {
                nGRAN_CGI     := p_nGRAN_CGI,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_areaOfInterestCellItem

            template (present) AreaOfInterestItem mw_reaOfInterestItem(
                                                                       template (present) AreaOfInterest p_areaOfInterest := ?,
                                                                       template (present) LocationReportingReferenceID p_locationReportingReferenceID := ?,
                                                                       template AreaOfInterestItem.iE_Extensions p_iE_Extensions := *
                                                                       ) := {
                areaOfInterest               := p_areaOfInterest,
                locationReportingReferenceID := p_locationReportingReferenceID,
                iE_Extensions                := p_iE_Extensions
            } // End of template mw_reaOfInterestItem

            template (present) AreaOfInterestRANNodeItem mw_areaOfInterestRANNodeItem(
                                                                                      template (present) GlobalRANNodeID p_globalRANNodeID := ?,
                                                                                      template AreaOfInterestRANNodeItem.iE_Extensions p_iE_Extensions := *
                                                                                      ):= {
                globalRANNodeID := p_globalRANNodeID,
                iE_Extensions   := p_iE_Extensions
            } // End of template mw_areaOfInterestRANNodeItem
            template (present) AreaOfInterestTAIItem mw_areaOfInterestTAIItem(
                                                                              template (present) TAI p_tAI := ?,
                                                                              template AreaOfInterestTAIItem.iE_Extensions p_iE_Extensions := *
                                                                              ) := {
                tAI           := p_tAI,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_areaOfInterestTAIItem
            template AssistanceDataForPaging mw_assistanceDataForPaging(
                                                                        template AssistanceDataForRecommendedCells p_assistanceDataForRecommendedCells := *,
                                                                        template PagingAttemptInformation p_pagingAttemptInformation := *,
                                                                        template AssistanceDataForPaging.iE_Extensions p_iE_Extensions := *
                                                                        ) := {
                assistanceDataForRecommendedCells := p_assistanceDataForRecommendedCells,
                pagingAttemptInformation          := p_pagingAttemptInformation,
                iE_Extensions                     := p_iE_Extensions
            } // End of template mw_assistanceDataForPaging
            template (present) AssistanceDataForPaging.iE_Extensions mw_assistanceDataForPaging_NPN_PagingAssistanceInformation(
                                                                                                                                template (present) NPN_PagingAssistanceInformation p_nPN_PagingAssistanceInformation := ?
                                                                                                                                ) := {
                    id             := id_NPN_PagingAssistanceInformation,
                    criticality    := ignore,
                    extensionValue := { NPN_PagingAssistanceInformation := p_nPN_PagingAssistanceInformation }
            } // End of template mw_assistanceDataForPaging_NPN_PagingAssistanceInformation
            template (present) AssistanceDataForPaging.iE_Extensions mw_assistanceDataForPaging_pagingAssisDataforCEcapabUE(
                                                                                                                            template (present) PagingAssisDataforCEcapabUE p_pagingAssisDataforCEcapabUE := ?
                                                                                                                            ) := {
                {
                    id             := id_PagingAssisDataforCEcapabUE,
                    criticality    := ignore,
                    extensionValue := { PagingAssisDataforCEcapabUE := p_pagingAssisDataforCEcapabUE }
                }
            } // End of template mw_assistanceDataForPaging_pagingAssisDataforCEcapabUE
            template (present) AssistanceDataForRecommendedCells mw_assistanceDataForRecommendedCells(
                                                                                                      template (present) RecommendedCellsForPaging p_recommendedCellsForPaging := ?,
                                                                                                      template AssistanceDataForRecommendedCells.iE_Extensions p_iE_Extensions := *
                                                                                                      ) :=  {
                recommendedCellsForPaging := p_recommendedCellsForPaging,
                iE_Extensions             := p_iE_Extensions
            } // End of template mw_assistanceDataForRecommendedCells
            template (present) AssociatedMBSQosFlowSetupRequestItem mw_associatedMBSQosFlowSetupRequestItem(
                                                                                                            template (present) QosFlowIdentifier p_mBS_QosFlowIdentifier := ?,
                                                                                                            template (present) QosFlowIdentifier p_associatedUnicastQosFlowIdentifier := ?,
                                                                                                            template AssociatedMBSQosFlowSetupRequestItem.iE_Extensions	p_iE_Extensions := *
                                                                                                            ) := {
                mBS_QosFlowIdentifier              := p_mBS_QosFlowIdentifier,
                associatedUnicastQosFlowIdentifier := p_associatedUnicastQosFlowIdentifier,
                iE_Extensions                      := p_iE_Extensions
            } // End of template mw_associatedMBSQosFlowSetupRequestItem
            template (present) AssociatedMBSQosFlowSetuporModifyRequestItem mw_associatedMBSQosFlowSetuporModifyRequestItem(
                                                                                                                            template (present) QosFlowIdentifier p_mBS_QosFlowIdentifier := ?,
                                                                                                                            template (present) QosFlowIdentifier p_associatedUnicastQosFlowIdentifier := ?,
                                                                                                                            template AssociatedMBSQosFlowSetuporModifyRequestItem.iE_Extensions p_iE_Extensions := *
                                                                                                                            ) := {
                mBS_QosFlowIdentifier              := p_mBS_QosFlowIdentifier,
                associatedUnicastQosFlowIdentifier := p_associatedUnicastQosFlowIdentifier,
                iE_Extensions                      := p_iE_Extensions
            } // End of template mw_associatedMBSQosFlowSetuporModifyRequestItem
            template (present) AssociatedQosFlowItem mw_associatedQosFlowItem(
                                                                              template (present) QosFlowIdentifier p_qosFlowIdentifier := ?,
                                                                              template AssociatedQosFlowItem.qosFlowMappingIndication p_qosFlowMappingIndication := *,
                                                                              template AssociatedQosFlowItem.iE_Extensions p_iE_Extensions := *
                                                                              ) := {
                qosFlowIdentifier        := p_qosFlowIdentifier,
                qosFlowMappingIndication := p_qosFlowMappingIndication,
                iE_Extensions            := p_iE_Extensions
            } // End of template mw_associatedQosFlowItem
            template (present) AssociatedQosFlowItem.iE_Extensions mw_associatedQosFlowItem_alternativeQoSParaSetIndex(
                                                                                                                       template (present) AlternativeQoSParaSetIndex p_alternativeQoSParaSetIndex := ?
            ) := {
                {
                    id             := id_CurrentQoSParaSetIndex,
                    criticality    := ignore,
                    extensionValue := { AlternativeQoSParaSetIndex := p_alternativeQoSParaSetIndex }
                }
            } // End of template mw_associatedQosFlowItem_alternativeQoSParaSetIndex
            template (present) AuthenticatedIndication mw_authenticatedIndication(template (present) AuthenticatedIndication p_value := true_) := p_value;
            template (present) AreaScopeOfMDT_NR mw_areaScopeOfMDT_NR_cellBased(
                                                                                template (present) CellBasedMDT_NR p_cellBased := ?
                                                                                ) := {
	            cellBased := p_cellBased
            } // End of template mw_areaScopeOfMDT_cellBased

            template (present) AreaScopeOfMDT_NR mw_areaScopeOfMDT_tABased(
                                                                           template (present) TABasedMDT p_tABased := ?
                                                                           ) := {
                tABased := p_tABased
            } // End of template mw_areaScopeOfMDT_tABased
            template (present) AreaScopeOfMDT_NR mw_areaScopeOfMDT_pLMNWide := {
                pLMNWide := NULL
            } // End of template mw_areaScopeOfMDT_pLMNWide
            template (present) AreaScopeOfMDT_NR mw_areaScopeOfMDT_tAIBased(
                                                                            template (present) TAIBasedMDT p_tAIBased := ?
                                                                            ) := {
                tAIBased := p_tAIBased
            } // End of template mw_areaScopeOfMDT_tAIBased
            template (present) AreaScopeOfMDT_NR mw_areaScopeOfMDT_ext(
                                                                       template (present) AreaScopeOfMDT_NR.choice_Extensions p_choice_Extensions := ?
                                                                       ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_areaScopeOfMDT_ext
            template (present) AreaScopeOfNeighCellsItem mw_areaScopeOfNeighCellsItem(
                                                                                      template (present) NRFrequencyInfo p_nrFrequencyInfo := ?,
                                                                                      template PCIListForMDT p_pciListForMDT := *,
                                                                                      template AreaScopeOfNeighCellsItem.iE_Extensions p_iE_Extensions := *
                                                                                      ) := {
                nrFrequencyInfo := p_nrFrequencyInfo,
                pciListForMDT   := p_pciListForMDT,
                iE_Extensions   := p_iE_Extensions
            } // End of template mw_areaScopeOfNeighCellsItem
            template (present) AreaScopeOfQMC mw_areaScopeOfQMC_cellBased(
                                                                          template (present) CellBasedQMC p_cellBased := ?
                                                                          ) := {
	            cellBased := p_cellBased
            } // End of template mw_areaScopeOfQMC_cellBased
            template (present) AreaScopeOfQMC mw_areaScopeOfQMC_tABased(
                                                                        template (present) TABasedQMC p_tABased := ?
                                                                        ) := {
                tABased := p_tABased
            } // End of template mw_areaScopeOfQMC_tABased
            template (present) AreaScopeOfQMC mw_areaScopeOfQMC_tAIBased(
                                                                         template (present) TAIBasedQMC p_tAIBased := ?
                                                                         ) := {
                tAIBased := p_tAIBased
            } // End of template mw_areaScopeOfQMC_tAIBased
            template (present) AreaScopeOfQMC mw_areaScopeOfQMC_pLMNAreaBased(
                                                                              template (present) PLMNAreaBasedQMC p_pLMNAreaBased := ?
                                                                              ) := {
                pLMNAreaBased := p_pLMNAreaBased
            } // End of template mw_areaScopeOfQMC_pLMNAreaBased

            template (present) AreaScopeOfQMC mw_areaScopeOfQMC_ext(
                                                                    template (present) AreaScopeOfQMC.choice_Extensions p_choice_Extensions := ?
                                                                    ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_areaScopeOfQMC_ext

            template (present) AreaScopeOfMDT_EUTRA mw_areaScopeOfMDT_EUTRA_cellBased(
                                                                                      template (present) CellBasedMDT_EUTRA p_cellBased
                                                                                      ) := {
	            cellBased := p_cellBased
            } // End of template mw_areaScopeOfMDT_EUTRA_cellBased

            template (present) AreaScopeOfMDT_EUTRA mw_areaScopeOfMDT_EUTRA_tABased(
                                                                                    template (present) TABasedMDT p_tABased
                                                                                    ) := {
                tABased := p_tABased
            } // End of template mw_areaScopeOfMDT_EUTRA_tABased

            template (present) AreaScopeOfMDT_EUTRA mw_areaScopeOfMDT_EUTRA_pLMNWide := {
                pLMNWide := NULL
            } // End of template mw_areaScopeOfMDT_EUTRA_pLMNWide
            template (present) AreaScopeOfMDT_EUTRA mw_areaScopeOfMDT_EUTRA_tAIBased(
                                                                                     template (present) TAIBasedMDT p_tAIBased
                                                                                     ) := {
                tAIBased := p_tAIBased
            } // End of template mw_areaScopeOfMDT_EUTRA_tAIBased
            template (present) AreaScopeOfMDT_EUTRA mw_areaScopeOfMDT_EUTRA_ext(
                                                                                template (present) AreaScopeOfMDT_EUTRA.choice_Extensions p_choice_Extensions
                                                                                ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_areaScopeOfMDT_EUTRA_ext

            template AvailableRANVisibleQoEMetrics mw_availableRANVisibleQoEMetrics(
                                                                                    template AvailableRANVisibleQoEMetrics.applicationLayerBufferLevelList p_applicationLayerBufferLevelList := *,
                                                                                    template AvailableRANVisibleQoEMetrics.playoutDelayForMediaStartup p_playoutDelayForMediaStartup := *,
                                                                                    template AvailableRANVisibleQoEMetrics.iE_Extensions p_iE_Extensions := *
                                                                                    ) := {
                applicationLayerBufferLevelList := p_applicationLayerBufferLevelList,
                playoutDelayForMediaStartup     := p_playoutDelayForMediaStartup,
                iE_Extensions                   := p_iE_Extensions
            } // End of template mw_availableRANVisibleQoEMetrics

            template BeamMeasurementsReportConfiguration mw_beamMeasurementsReportConfiguration(
                                                                                                template BeamMeasurementsReportQuantity p_beamMeasurementsReportQuantity := *,
                                                                                                template MaxNrofRS_IndexesToReport p_maxNrofRS_IndexesToReport := *,
                                                                                                template BeamMeasurementsReportConfiguration.iE_Extensions p_iE_Extensions := *
                                                                                                ) := {
                beamMeasurementsReportQuantity := p_beamMeasurementsReportQuantity,
                maxNrofRS_IndexesToReport      := p_maxNrofRS_IndexesToReport,
                iE_Extensions                  := p_iE_Extensions
            } // End of template mw_beamMeasurementsReportConfiguration

            template BeamMeasurementsReportQuantity mw_beamMeasurementsReportQuantity(
                                                                                      template BeamMeasurementsReportQuantity.rSRP p_rSRP := true_,
                                                                                      template BeamMeasurementsReportQuantity.rSRQ p_rSRQ := true_,
                                                                                      template BeamMeasurementsReportQuantity.sINR p_sINR := true_,
                                                                                      template BeamMeasurementsReportQuantity.iE_Extensions p_iE_Extensions := *
                                                                                      ) := {
                rSRP          := p_rSRP,
                rSRQ          := p_rSRQ,
                sINR          := p_sINR,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_beamMeasurementsReportQuantity
            template (present) BitRate mw_bitRate (template (present) BitRate p_value := ?) := p_value;
            template (present) BroadcastCancelledAreaList mw_broadcastCancelledAreaList_cellIDCancelledEUTRA(
                                                                                                             template (present) CellIDCancelledEUTRA p_cellIDCancelledEUTRA := ?
                                                                                                             ) := {
                cellIDCancelledEUTRA := p_cellIDCancelledEUTRA
            } // End of template mw_broadcastCancelledAreaList_cellIDCancelledEUTRA
            template (present) BroadcastCancelledAreaList mw_broadcastCancelledAreaList_tAICancelledEUTRA(
                                                                                                          template (present) TAICancelledEUTRA p_tAICancelledEUTRA := ?
                                                                                                          ) := {
                tAICancelledEUTRA := p_tAICancelledEUTRA
            } // End of template mw_broadcastCancelledAreaList_tAICancelledEUTRA
            template (present) BroadcastCancelledAreaList mw_broadcastCancelledAreaList_emergencyAreaIDCancelledEUTRA(
                                                                                                                      template (present) EmergencyAreaIDCancelledEUTRA p_emergencyAreaIDCancelledEUTRA := ?
                                                                                                                      ) := {
                emergencyAreaIDCancelledEUTRA := p_emergencyAreaIDCancelledEUTRA
            } // End of template mw_broadcastCancelledAreaList_emergencyAreaIDCancelledEUTRA
            template (present) BroadcastCancelledAreaList mw_broadcastCancelledAreaList_cellIDCancelledNR(
                                                                                                          template (present) CellIDCancelledNR p_cellIDCancelledNR := ?
                                                                                                          ) := {
                cellIDCancelledNR := p_cellIDCancelledNR
            } // End of template mw_broadcastCancelledAreaList_cellIDCancelledNR
            template (present) BroadcastCancelledAreaList mw_broadcastCancelledAreaList_tAICancelledNR(
                                                                                                       template (present) TAICancelledNR p_tAICancelledNR := ?
                                                                                                       ) := {
                tAICancelledNR := p_tAICancelledNR
            } // End of template mw_broadcastCancelledAreaList_tAICancelledNR
            template (present) BroadcastCancelledAreaList mw_broadcastCancelledAreaList_emergencyAreaIDCancelledNR(
                                                                                                                   template (present) EmergencyAreaIDCancelledNR p_emergencyAreaIDCancelledNR := ?
                                                                                                                   ) := {
                emergencyAreaIDCancelledNR := p_emergencyAreaIDCancelledNR
            } // End of template mw_broadcastCancelledAreaList_ext
            template (present) BroadcastCancelledAreaList mw_broadcastCancelledAreaList_ext(
                                                                                            template (present) BroadcastCancelledAreaList.choice_Extensions p_choice_Extensions := ?
                                                                                            ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_broadcastCancelledAreaList_ext
            template (present) BroadcastCompletedAreaList mw_broadcastCompletedAreaList_cellIDBroadcastEUTRA(
                                                                                                             template (present) CellIDBroadcastEUTRA p_cellIDBroadcastEUTRA
                                                                                                             ) := {
                cellIDBroadcastEUTRA := p_cellIDBroadcastEUTRA
            } // End of template mw_broadcastCompletedAreaList_cellIDCancelledEUTRA

            template (present) BroadcastCompletedAreaList mw_broadcastCompletedAreaList_tAIBroadcastEUTRA(
                                                                                                          template (present) TAIBroadcastEUTRA p_tAIBroadcastEUTRA
                                                                                                          ) := {
                tAIBroadcastEUTRA := p_tAIBroadcastEUTRA
            } // End of template mw_broadcastCompletedAreaList_tAIBroadcastEUTRA

            template (present) BroadcastCompletedAreaList mw_broadcastCompletedAreaList_emergencyAreaIDBroadcastEUTRA(
                                                                                                                      template (present) EmergencyAreaIDBroadcastEUTRA p_emergencyAreaIDBroadcastEUTRA
                                                                                                                      ) := {
                emergencyAreaIDBroadcastEUTRA := p_emergencyAreaIDBroadcastEUTRA
            } // End of template mw_broadcastCompletedAreaList_emergencyAreaIDBroadcastEUTRA

            template (present) BroadcastCompletedAreaList mw_broadcastCompletedAreaList_cellIDBroadcastNR(
                                                                                                          template (present) CellIDBroadcastNR p_cellIDBroadcastNR
                                                                                                          ) := {
                cellIDBroadcastNR := p_cellIDBroadcastNR
            } // End of template mw_broadcastCompletedAreaList_cellIDBroadcastNR

            template (present) BroadcastCompletedAreaList mw_broadcastCompletedAreaList_tAIBroadcastNR(
                                                                                                       template (present) TAIBroadcastNR p_tAIBroadcastNR
                                                                                                       ) := {
                tAIBroadcastNR := p_tAIBroadcastNR
            } // End of template mw_broadcastCompletedAreaList_tAIBroadcastNR

            template (present) BroadcastCompletedAreaList mw_broadcastCompletedAreaList_emergencyAreaIDBroadcastNR(
                                                                                                                   template (present) EmergencyAreaIDBroadcastNR p_emergencyAreaIDBroadcastNR
                                                                                                                   ) := {
                emergencyAreaIDBroadcastNR := p_emergencyAreaIDBroadcastNR
            } // End of template mw_broadcastCompletedAreaList_emergencyAreaIDBroadcastNR

            template (present) BroadcastCompletedAreaList mw_broadcastCompletedAreaList_ext(
                                                                                            template (present) BroadcastCompletedAreaList.choice_Extensions p_choice_Extensions
                                                                                            ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_broadcastCompletedAreaList_ext

            template (present) BroadcastPLMNItem mw_ie_broadcastPLMNItem(
                                                                         template (present) PLMNIdentity p_plmnId := ?,
                                                                         template (present) SliceSupportList p_ssl := ?,
                                                                         template BroadcastPLMNItem.iE_Extensions p_iE_Extensions := *
                                                                         ) := {
                pLMNIdentity        :=  p_plmnId,
                tAISliceSupportList := p_ssl,
                iE_Extensions       := p_iE_Extensions
            } // End of template mw_ie_broadcastPLMNItem
            template (present) BluetoothMeasurementConfiguration mw_bluetoothMeasurementConfiguration(
                                                                                                     template (present) BluetoothMeasConfig p_bluetoothMeasConfig := ?,
                                                                                                     template BluetoothMeasConfigNameList p_bluetoothMeasConfigNameList := *,
                                                                                                     template BluetoothMeasurementConfiguration.bt_rssi p_bt_rssi := *,
                                                                                                     template BluetoothMeasurementConfiguration.iE_Extensions p_iE_Extensions := *
                                                                                                     ) := {
                bluetoothMeasConfig         := p_bluetoothMeasConfig,
                bluetoothMeasConfigNameList := p_bluetoothMeasConfigNameList,
                bt_rssi                     := p_bt_rssi,
                iE_Extensions               := p_iE_Extensions
            } // End of template mw_bluetoothMeasurementConfiguration
            template (present) BluetoothMeasConfigNameItem mw_bluetoothMeasConfigNameItem(
                                                                                          template (present) BluetoothName p_bluetoothName := ?,
                                                                                          template BluetoothMeasConfigNameItem.iE_Extensions p_iE_Extensions := *
                                                                                          ) := {
                bluetoothName := p_bluetoothName,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_bluetoothMeasConfigNameItem
            template (present) BluetoothMeasConfig mw_bluetoothMeasConfig(template (present) BluetoothMeasConfig p_value := setup) := p_value;
            template (present) CancelAllWarningMessages mw_cancelAllWarningMessages(template (present) CancelAllWarningMessages p_value := true_) := p_value;
            template (present) CancelledCellsInEAI_EUTRA_Item mw_cancelledCellsInEAI_EUTRA_Item(
                                                                                                template (present) EUTRA_CGI p_eUTRA_CGI := ?,
                                                                                                template (present) NumberOfBroadcasts p_numberOfBroadcasts := ?,
                                                                                                template CancelledCellsInEAI_EUTRA_Item.iE_Extensions p_iE_Extensions := *
                eUTRA_CGI          := p_eUTRA_CGI,
                numberOfBroadcasts := p_numberOfBroadcasts,
                iE_Extensions      := p_iE_Extensions
            } // End of template mw_cancelledCellsInEAI_EUTRA_Item
            template (present) CancelledCellsInEAI_NR_Item mw_cancelledCellsInEAI_NR_Item(
                                                                                          template (present) NR_CGI p_nR_CGI := ?,
                                                                                          template (present) NumberOfBroadcasts p_numberOfBroadcasts := ?,
                                                                                          template CancelledCellsInEAI_NR_Item.iE_Extensions p_iE_Extensions := *
                                                                                          ) := {
                nR_CGI             := p_nR_CGI,
                numberOfBroadcasts := p_numberOfBroadcasts,
                iE_Extensions      := p_iE_Extensions
            } // End of template mw_cancelledCellsInEAI_NR_Item

            template (present) CancelledCellsInTAI_EUTRA_Item mw_cancelledCellsInTAI_EUTRA_Item(
                                                                                                template (present) EUTRA_CGI p_eUTRA_CGI := ?,
                                                                                                template (present) NumberOfBroadcasts p_numberOfBroadcasts := ?,
                                                                                                template CancelledCellsInTAI_EUTRA_Item.iE_Extensions p_iE_Extensions := *
                eUTRA_CGI          := p_eUTRA_CGI,
                numberOfBroadcasts := p_numberOfBroadcasts,
                iE_Extensions      := p_iE_Extensions
            } // End of template mw_cancelledCellsInTAI_EUTRA_Item
            template (present) CancelledCellsInTAI_NR_Item mw_CancelledCellsInTAI_NR_Item(
                                                                                          template (present) NR_CGI p_nR_CGI := ?,
                                                                                          template (present) NumberOfBroadcasts p_numberOfBroadcasts := ?,
                                                                                          template CancelledCellsInTAI_NR_Item.iE_Extensions p_iE_Extensions := *
                                                                                          ) := {
                nR_CGI             := p_nR_CGI,
                numberOfBroadcasts := p_numberOfBroadcasts,
                iE_Extensions      := p_iE_Extensions
            } // End of template mw_CancelledCellsInTAI_NR_Item
            template (present) CandidateCellItem mw_candidateCellItem(
                                                                      template (present) CandidateCell p_candidateCell := ?,
                                                                      template CandidateCellItem.iE_Extensions p_iE_Extensions := *
                                                                      ) := {
                candidateCell := p_candidateCell,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_candidateCellItem
            template (present) CandidateCell mw_candidateCell_candidateCGI(
                                                                           template (present) CandidateCellID p_candidateCGI := ?
                                                                           ) := {
                candidateCGI := p_candidateCGI
            } // End of template mw_candidateCell_candidateCGI
            template (present) CandidateCell mw_candidateCell_candidatePCI(
                                                                           template (present) CandidatePCI p_candidatePCI := ?
                                                                           ) := {
                candidatePCI := p_candidatePCI
            } // End of template mw_candidateCell_candidatePCI
            template (present) CandidateCell mw_candidateCell_ext(
                                                                  template (present) CandidateCell.choice_Extensions p_choice_Extensions := ?
                                                                  ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_candidateCell_ext
            template (present) CandidatePCI mw_candidatePCI(
                                                            template (present) CandidatePCI.candidatePCI p_candidatePCI := ?,
                                                            template (present) CandidatePCI.candidateNRARFCN p_candidateNRARFCN := ?,
                                                            template CandidatePCI.iE_Extensions p_iE_Extensions := *
                                                            ) := {
                candidatePCI     := p_candidatePCI,
                candidateNRARFCN := p_candidateNRARFCN,
                iE_Extensions    := p_iE_Extensions
            } // End of template mw_candidatePCI
            template (present) Cause mw_cause_radioNetwork(
                                                           template (present) CauseRadioNetwork p_radioNetwork
                                                           ) := {
                radioNetwork := p_radioNetwork
            } // End of template mw_cause_radioNetwork
            template (present) Cause mw_cause_transport(
                                                        template (present) CauseTransport p_transport
                                                        ) := {
                transport := p_transport
            } // End of template mw_cause_transport
            template (present) Cause mw_cause_nas(
                                                  template (present) CauseNas p_nas
                                                  ) := {
                nas := p_nas
            } // End of template mw_cause_nas
            template (present) Cause mw_cause_protocol(
                                                       template (present) CauseProtocol p_protocol
                                                    ) := {
                protocol := p_protocol
            } // End of template mw_cause_protocol
            template (present) Cause mw_cause_misc(
                                                   template (present) CauseMisc p_misc
                                                   ) := {
                misc := p_misc
            } // End of template mw_cause_misc
            template (present) Cause mw_cause_ext(
                                                  template (present) Cause.choice_Extensions p_choice_Extensions
                                                  ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_cause_ext
            template (present) CauseMisc mw_causeMisc(template (present) CauseMisc p_value := ?) := p_value;
            template (present) CauseNas mw_causeNas(template (present) CauseNas p_value := ?) := p_value;
            template (present) CauseProtocol mw_causeProtocol(template (present) CauseProtocol p_value := ?) := p_value;
            template (present) CauseRadioNetwork mww_causeRadioNetwork(template (present) CauseRadioNetwork p_value := ?) := p_value;
            template (present) CauseTransport mw_causeTransport(template (present) CauseTransport p_value := ?) := p_value;
            template (present) Cell_CAGInformation mw_cell_CAGInformation(
                                                                          template (present) NGRAN_CGI p_nGRAN_CGI := ?,
                                                                          template (present) CellCAGList p_cellCAGList := ?,
                                                                          template Cell_CAGInformation.iE_Extensions p_iE_Extensions := *
                                                                          ) := {
                nGRAN_CGI     := p_nGRAN_CGI,
                cellCAGList   := p_cellCAGList,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_cell_CAGInformation
            template (present) CellIDBroadcastEUTRA_Item mw_cellIDBroadcastEUTRA_Item(
                                                                                      template (present) EUTRA_CGI p_eUTRA_CGI := ?,
                                                                                      template CellIDBroadcastEUTRA_Item.iE_Extensions p_iE_Extensions := *
                                                                                      ) := {
                eUTRA_CGI     := p_eUTRA_CGI,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_cellIDBroadcastEUTRA_Item

            template (present) CellIDBroadcastNR_Item mw_cellIDBroadcastNR_Item(
                                                                                template (present) NR_CGI p_nR_CGI := ?,
                                                                                template CellIDBroadcastNR_Item.iE_Extensions p_iE_Extensions := *
                nR_CGI := p_nR_CGI,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_cellIDBroadcastNR_Item
            template (present) CellIDCancelledEUTRA_Item mw_cellIDCancelledEUTRA_Item(
                                                                                      template (present) EUTRA_CGI p_eUTRA_CGI := ?,
                                                                                      template (present) NumberOfBroadcasts p_numberOfBroadcasts := ?,
                                                                                      template CellIDCancelledEUTRA_Item.iE_Extensions p_iE_Extensions := *
                                                                                      ) := {
                eUTRA_CGI          := p_eUTRA_CGI,
                numberOfBroadcasts := p_numberOfBroadcasts,
                iE_Extensions      := p_iE_Extensions
            } // End of template mw_cellIDCancelledEUTRA_Item
            template (present) CellIDCancelledNR_Item mw_cellIDCancelledNR_Item(
                                                                                template (present) NR_CGI p_nR_CGI := ?,
                                                                                template (present) NumberOfBroadcasts p_numberOfBroadcasts := ?,
                                                                                template CellIDCancelledNR_Item.iE_Extensions p_iE_Extensions := *
                                                                                ) :=  {
                nR_CGI             := p_nR_CGI,
                numberOfBroadcasts := p_numberOfBroadcasts,
                iE_Extensions      := p_iE_Extensions
            } // End of template mw_cellIDCancelledNR_Item
            template (present) CellIDListForRestart mw_cellIDListForRestart_eUTRA_CGIListforRestart(
                                                                                                    template (present) EUTRA_CGIList p_eUTRA_CGIListforRestart := ?
                                                                                                    ) := {
                eUTRA_CGIListforRestart := p_eUTRA_CGIListforRestart
            } // End of template mw_cellIDListForRestart_misc
            template (present) CellIDListForRestart mw_cellIDListForRestart_nR_CGIListforRestart(
                                                                                                 template (present) NR_CGIList p_nR_CGIListforRestart := ?
                                                                                                 ) := {
                nR_CGIListforRestart := p_nR_CGIListforRestart
            } // End of template mw_cellIDListForRestart_nR_CGIListforRestart

            template (present) CellIDListForRestart mw_cellIDListForRestart_ext(
                                                                                template (present) CellIDListForRestart.choice_Extensions p_choice_Extensions := ?
                                                                                ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_cellIDListForRestart_ext
            template (present) CellSize mw_cellSize(template (present) CellSize p_value := ?) := p_value;
            template (present) CellType mw_cellType(
                                                    template (present) CellSize p_cellSize:= ?,
                                                    template CellType.iE_Extensions p_iE_Extensions := *
                                                    ) := {
                cellSize      := p_cellSize,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_cellType
            template (present) CEmodeBSupport_Indicator mw_cEmodeBSupport_Indicator(template (present) CEmodeBSupport_Indicator p_value := ?) := p_value;
            template (present) CEmodeBrestricted mw_cEmodeBrestricted(template (present) CEmodeBrestricted p_value := ?) := p_value;
            template CNAssistedRANTuning mw_cNAssistedRANTuning(
                                                                template ExpectedUEBehaviour p_expectedUEBehaviour := *,
                                                                template CNAssistedRANTuning.iE_Extensions p_iE_Extensions := *
                                                                ) := {
	            expectedUEBehaviour := p_expectedUEBehaviour,
                iE_Extensions       := p_iE_Extensions
            } // End of template mw_cNAssistedRANTuning
            template (present) CNTypeRestrictionsForEquivalentItem mw_cNTypeRestrictionsForEquivalentItem(
	                                                                                                      template (present) PLMNIdentity p_plmnIdentity := ?,
                                                                                                          template (present) CNTypeRestrictionsForEquivalentItem.cn_Type p_cn_Type := ?,
                                                                                                          template CNTypeRestrictionsForEquivalentItem.iE_Extensions p_iE_Extensions := *
                                                                                                          ) := {
                plmnIdentity  := p_plmnIdentity,
                cn_Type       := p_cn_Type,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_cNTypeRestrictionsForEquivalentItem
            template (present) CNTypeRestrictionsForServing mw_cNTypeRestrictionsForServing(template (present) CNTypeRestrictionsForServing p_value := ?) := p_value;
            template (present) CompletedCellsInEAI_EUTRA_Item mw_completedCellsInEAI_EUTRA_Item(
                                                                                                template (present) EUTRA_CGI p_eUTRA_CGI := ?,
                                                                                                template CompletedCellsInEAI_EUTRA_Item.iE_Extensions p_iE_Extensions := *
                                                                                                ) := {
                eUTRA_CGI     := p_eUTRA_CGI,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_completedCellsInEAI_EUTRA_Item
            template (present) CompletedCellsInEAI_NR_Item mw_completedCellsInEAI_NR_Item(
                                                                                          template (present) NR_CGI p_nR_CGI := ?,
                                                                                          template CompletedCellsInEAI_NR_Item.iE_Extensions p_iE_Extensions := *
                                                                                          ) := {
                nR_CGI        := p_nR_CGI,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_completedCellsInEAI_NR_Item
            template (present) CompletedCellsInTAI_EUTRA_Item mw_completedCellsInTAI_EUTRA_Item(
                                                                                                template (present) EUTRA_CGI p_eUTRA_CGI := ?,
                                                                                                template CompletedCellsInTAI_EUTRA_Item.iE_Extensions p_iE_Extensions := *
                                                                                                ) := {
                eUTRA_CGI     := p_eUTRA_CGI,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_completedCellsInTAI_EUTRA_Item
            template (present) CompletedCellsInTAI_NR_Item mw_completedCellsInTAI_NR_Item(
                                                                                          template (present) NR_CGI p_nR_CGI := ?,
                                                                                          template CompletedCellsInTAI_NR_Item.iE_Extensions p_iE_Extensions := *
                                                                                          ) := {
                nR_CGI        := p_nR_CGI,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_completedCellsInTAI_NR_Item

            template (present) ConcurrentWarningMessageInd mw_concurrentWarningMessageInd(template (present) ConcurrentWarningMessageInd p_value := true_) := p_value;
            template (present) ConfidentialityProtectionIndication mw_confidentialityProtectionIndication(template (present) ConfidentialityProtectionIndication p_value := ?) := p_value;
            template (present) ConfidentialityProtectionResult mw_confidentialityProtectionResult(template (present) ConfidentialityProtectionResult p_value := ?) := p_value;
            template (present) ConfiguredTACIndication mw_configuredTACIndication(template (present) ConfiguredTACIndication p_value := true_) := p_value;

            template (present) CoreNetworkAssistanceInformationForInactive mw_coreNetworkAssistanceInformationForInactive(
                                                                                                                          template (present) UEIdentityIndexValue p_uEIdentityIndexValue := ?,
                                                                                                                          template (present) PeriodicRegistrationUpdateTimer p_periodicRegistrationUpdateTimer := ?,
                                                                                                                          template (present) TAIListForInactive p_tAIListForInactive := ?,
                                                                                                                          template PagingDRX p_uESpecificDRX := *,
                                                                                                                          template MICOModeIndication p_mICOModeIndication := *,
                                                                                                                          template ExpectedUEBehaviour p_expectedUEBehaviour := *,
                                                                                                                          template CoreNetworkAssistanceInformationForInactive.iE_Extensions p_iE_Extensions := *
                                                                                                                          ) := {
                uEIdentityIndexValue            := p_uEIdentityIndexValue,
                uESpecificDRX                   := p_uESpecificDRX,
                periodicRegistrationUpdateTimer := p_periodicRegistrationUpdateTimer,
                mICOModeIndication              := p_mICOModeIndication,
                tAIListForInactive              := p_tAIListForInactive,
                expectedUEBehaviour             := p_expectedUEBehaviour,
                iE_Extensions                   := p_iE_Extensions
            } // End of template mw_coreNetworkAssistanceInformationForInactive

            template (present) CoreNetworkAssistanceInformationForInactive.iE_Extensions mw_coreNetworkAssistanceInformationForInactive_paging(
                                                                                                                                               template (present) EUTRA_PagingeDRXInformation p_eUTRA_PagingeDRXInformation := ?,
                                                                                                                                               template (present) ExtendedUEIdentityIndexValue p_extendedUEIdentityIndexValue := ?,
                                                                                                                                               template (present) UERadioCapabilityForPaging p_uERadioCapabilityForPaging := ?,
                                                                                                                                               template (present) MicoAllPLMN p_micoAllPLMN := ?
                                                                                                                                               ) := {
                {
                    id             := id_EUTRA_PagingeDRXInformation,
                    criticality    := ignore,
                    extensionValue := { EUTRA_PagingeDRXInformation := p_eUTRA_PagingeDRXInformation }
                },
                {
                    id             := id_ExtendedUEIdentityIndexValue,
                    criticality    := ignore,
                    extensionValue := { ExtendedUEIdentityIndexValue := p_extendedUEIdentityIndexValue }
                },
                {
                    id             := id_UERadioCapabilityForPaging,
                    criticality    := ignore,
                    extensionValue := { UERadioCapabilityForPaging := p_uERadioCapabilityForPaging }
                },
                {
                    id             := id_MicoAllPLMN,
                    criticality    := ignore,
                    extensionValue := { MicoAllPLMN := p_micoAllPLMN }
                }
                // TODO To be enhanced
            } // End of template mw_coreNetworkAssistanceInformationForInactive_paging
            template (present) COUNTValueForPDCP_SN12 mw_cOUNTValueForPDCP_SN12(
                                                                                template (present) COUNTValueForPDCP_SN12.pDCP_SN12 p_pDCP_SN12 := ?,
                                                                                template (present) COUNTValueForPDCP_SN12.hFN_PDCP_SN12 p_hFN_PDCP_SN12 := ?,
                                                                                template COUNTValueForPDCP_SN12.iE_Extensions p_iE_Extensions := *
                pDCP_SN12     := p_pDCP_SN12,
                hFN_PDCP_SN12 := p_hFN_PDCP_SN12,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_cOUNTValueForPDCP_SN12
            template (present) COUNTValueForPDCP_SN18 mw_cOUNTValueForPDCP_SN18(
                                                                                template (present) COUNTValueForPDCP_SN18.pDCP_SN18 p_pDCP_SN18 := ?,
                                                                                template (present) COUNTValueForPDCP_SN18.hFN_PDCP_SN18 p_hFN_PDCP_SN18 := ?,
                                                                                template COUNTValueForPDCP_SN18.iE_Extensions p_iE_Extensions := *
                                                                                ) := {
                pDCP_SN18     := p_pDCP_SN18,
                hFN_PDCP_SN18 := p_hFN_PDCP_SN18,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_cOUNTValueForPDCP_SN18
            template (present) CPTransportLayerInformation mw_cPTransportLayerInformation_endpointIPAddress(
                                                                                                            template (present) TransportLayerAddress p_endpointIPAddress := ?
                                                                                                            ) := {
                endpointIPAddress := p_endpointIPAddress
            } // End of template mw_cPTransportLayerInformation_endpointIPAddress
            template (present) CPTransportLayerInformation mw_cPTransportLayerInformation_choice_Extensions(
                                                                                                            template (present) CPTransportLayerInformation.choice_Extensions p_choice_Extensions := ?
                                                                                                            ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_cPTransportLayerInformation_choice_Extensions
            template (present) CPTransportLayerInformation.choice_Extensions mw_cPTransportLayerInformation_ext(
                                                                                                                template (present) EndpointIPAddressAndPort p_EndpointIPAddressAndPort := ?
                                                                                                                ) := {
                id          := id_EndpointIPAddressAndPort,
                criticality := reject,
                value_      := { EndpointIPAddressAndPort := p_EndpointIPAddressAndPort }
            } // End of template mw_cPTransportLayerInformation_ext
            template CriticalityDiagnostics mw_criticalityDiagnostics(
                                                                      template ProcedureCode p_procedureCode := *,
                                                                      template TriggeringMessage p_triggeringMessage := *,
                                                                      template Criticality p_procedureCriticality := *,
                                                                      template CriticalityDiagnostics_IE_List p_criticalityDiagnostics_IE_List := *,
                                                                      template CriticalityDiagnostics.iE_Extensions p_iE_Extensions := *
                                                                      ) := {
                procedureCode             := p_procedureCode,
                triggeringMessage         := p_triggeringMessage,
                procedureCriticality      := p_procedureCriticality,
                iEsCriticalityDiagnostics := p_criticalityDiagnostics_IE_List,
                iE_Extensions             := p_iE_Extensions
            } // End of template mw_criticalityDiagnostics
            template (present) CriticalityDiagnostics_IE_Item mw_criticalityDiagnostics_IE_Item(
                                                                                                template (present) Criticality p_iECriticality := ?,
                                                                                                template (present) ProtocolIE_ID p_iE_ID := ?,
                                                                                                template (present) TypeOfError p_typeOfError := ?,
                                                                                                template CriticalityDiagnostics_IE_Item.iE_Extensions p_iE_Extensions := *
                                                                                                ) := {
                iECriticality := p_iECriticality,
                iE_ID         := p_iE_ID,
                typeOfError   := p_typeOfError,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_criticalityDiagnostics_IE_Item
            template (present) CellBasedMDT_NR mw_cellBasedMDT_NR(
                                                              in template (present) CellIdListforMDT_NR p_cellIdListforMDT := ?,
                                                              in template CellBasedMDT_NR.iE_Extensions p_iE_Extensions := *
                                                              ) := {
                cellIdListforMDT := p_cellIdListforMDT,
                iE_Extensions    := p_iE_Extensions
            } // End of template mw_cellBasedMDT_NR
            template (present) CellBasedMDT_EUTRA mw_cellBasedMDT_EUTRA(
                                                                        template (present) CellIdListforMDT_EUTRA p_cellIdListforMDT := ?,
                                                                        template CellBasedMDT_EUTRA.iE_Extensions p_iE_Extensions := *
                                                                        ) := {
                cellIdListforMDT := p_cellIdListforMDT,
                iE_Extensions    := p_iE_Extensions
            } // End of template mw_cellBasedMDT_EUTRA
            template (present) CellBasedQMC mw_cellBasedQMC(
                                                            template (present) CellIdListforQMC p_cellIdListforQMC := ?,
                                                            template CellBasedQMC.iE_Extensions p_iE_Extensions := *
                                                            ) := {
                cellIdListforQMC := p_cellIdListforQMC,
                iE_Extensions    := p_iE_Extensions
            } // End of template mw_cellBasedQMC
            template (present) DataForwardingNotPossible mw_DataForwardingNotPossible(template (present) DataForwardingNotPossible p_value := data_forwarding_not_possible) := p_value;
            template (present) DataForwardingAccepted mw_dataForwardingAccepted(template (present) DataForwardingAccepted p_value := ?) := p_value;
            template (present) DataForwardingResponseDRBItem mw_dataForwardingResponseDRBItem(
                                                                                              template (present) DRB_ID p_dRB_ID := ?,
                                                                                              template UPTransportLayerInformation p_dLForwardingUP_TNLInformation := *,
                                                                                              template UPTransportLayerInformation p_uLForwardingUP_TNLInformation := *,
                                                                                              template DataForwardingResponseDRBItem.iE_Extensions p_iE_Extensions := *
                                                                                              ) := {
                dRB_ID                        := p_dRB_ID,
                dLForwardingUP_TNLInformation := p_dLForwardingUP_TNLInformation,
                uLForwardingUP_TNLInformation := p_uLForwardingUP_TNLInformation,
                iE_Extensions                 := p_iE_Extensions
            } // End of template mw_dataForwardingResponseDRBItem
            template (present) DAPSRequestInfo mw_dAPSRequestInfo(
                                                                  template (present) DAPSRequestInfo.dAPSIndicator p_dAPSIndicator := daps_ho_required,
                                                                  template DAPSRequestInfo.iE_Extensions p_iE_Extensions := *
                                                                  ) := {
                dAPSIndicator := p_dAPSIndicator,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_dAPSRequestInfo
            template (present) DAPSResponseInfoItem mw_dAPSResponseInfoItem(
                                                                            template (present) DRB_ID p_dRB_ID := ?,
                                                                            template (present) DAPSResponseInfo p_dAPSResponseInfo := ?,
                                                                            template DAPSResponseInfoItem.iE_Extension p_iE_Extension := *
                                                                            ) := {
                dRB_ID           := p_dRB_ID,
                dAPSResponseInfo := p_dAPSResponseInfo,
                iE_Extension     := p_iE_Extension
            } // End of template mw_dAPSResponseInfoItem
            template (present) DAPSResponseInfo mw_dAPSResponseInfo(
                                                                    template (present) DAPSResponseInfo.dapsresponseindicator p_dapsresponseindicator := ?,
                                                                    template DAPSResponseInfo.iE_Extensions p_iE_Extensions := *
                                                                    ) := {
                dapsresponseindicator := p_dapsresponseindicator,
                iE_Extensions         := p_iE_Extensions
            } // End of template mw_dAPSResponseInfo
            template (present) DataForwardingResponseERABListItem mw_DataForwardingResponseERABListItem(
                                                                                                        template (present) E_RAB_ID p_e_RAB_ID := ?,
                                                                                                        template (present) UPTransportLayerInformation p_dLForwardingUP_TNLInformation := ?,
                                                                                                        template DataForwardingResponseERABListItem.iE_Extensions p_iE_Extensions := *
                                                                                                        ) := {
                e_RAB_ID                      := p_e_RAB_ID,
                dLForwardingUP_TNLInformation := p_dLForwardingUP_TNLInformation,
                iE_Extensions                 := p_iE_Extensions
            } // End of template mw_DataForwardingResponseERABListItem
            template (present) DelayCritical mw_delayCritical(template (present) DelayCritical p_value := ?) := p_value;

            template (present) DL_CP_SecurityInformation mw_dL_CP_SecurityInformation(
                                                                                      template (present) DL_NAS_MAC p_dl_NAS_MAC := ?,
                                                                                      template DL_CP_SecurityInformation.iE_Extensions p_iE_Extensions := *
                                                                                      ) := {
                dl_NAS_MAC    := p_dl_NAS_MAC,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_dL_CP_SecurityInformation
            template (present) DLForwarding mw_dLForwarding(template (present) DLForwarding p_value := dl_forwarding_proposed) := p_value;
            template (present) DL_NGU_TNLInformationReused mw_dL_NGU_TNLInformationReused(template (present) DL_NGU_TNLInformationReused p_value := true_) := p_value;
            template (present) DirectForwardingPathAvailability mw_directForwardingPathAvailability(template (present) DirectForwardingPathAvailability p_value := direct_path_available) := p_value;
            template (present) DRBsSubjectToStatusTransferItem mw_dRBsSubjectToStatusTransferItem(
                                                                                              in template (present) DRB_ID p_dRB_ID := ?,
                                                                                              in template (present) DRBStatusUL p_dRBStatusUL := ?,
                                                                                              in template (present) DRBStatusDL p_dRBStatusDL := ?,
                                                                                              in template DRBsSubjectToStatusTransferItem.iE_Extension p_iE_Extension := *
                                                                                              ) := {
                dRB_ID       := p_dRB_ID,
                dRBStatusUL  := p_dRBStatusUL,
                dRBStatusDL  := p_dRBStatusDL,
                iE_Extension := p_iE_Extension
            } // End of template mw_dRBsSubjectToStatusTransferItem
            template (present) DRBsSubjectToStatusTransferItem.iE_Extension mw_dRBsSubjectToStatusTransferItem_associatedQosFlowList(
                                                                                                                                     template (present) AssociatedQosFlowList p_AssociatedQosFlowList := ?
                                                                                                                                     ) := {
	            {
                    id             := id_OldAssociatedQosFlowList_ULendmarkerexpected,
                    criticality    := ignore,
                    extensionValue := { AssociatedQosFlowList := p_AssociatedQosFlowList }
                }
            } // End of template mw_dRBsSubjectToStatusTransferItem_associatedQosFlowList
            template (present) DRBStatusDL mw_dRBStatusDL_dRBStatusDL12(
                                                                        template (present) DRBStatusDL12 p_dRBStatusDL12 := ?
                                                                        ) := {
                dRBStatusDL12 := p_dRBStatusDL12
            } // End of template mw_dRBStatusDL_dRBStatusDL12
            template (present) DRBStatusDL mw_dRBStatusDL_dRBStatusDL18(
                                                                        template (present) DRBStatusDL18 p_dRBStatusDL18 := ?
                                                                        ) := {
                dRBStatusDL18 := p_dRBStatusDL18
            } // End of template mw_dRBStatusDL_dRBStatusDL18
            template (present) DRBStatusDL mw_dRBStatusDL_choice_Extensions(
                                                                            template (present) DRBStatusDL.choice_Extensions p_choice_Extensions := ?
                                                                            ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_dRBStatusDL_choice_Extensions
            template (present) DRBStatusDL12 mw_dRBStatusDL12(
                                                              template (present) COUNTValueForPDCP_SN12 p_dL_COUNTValue := ?,
                                                              template DRBStatusDL12.iE_Extension p_iE_Extension := * 
                                                              ) := {
                dL_COUNTValue := p_dL_COUNTValue,
                iE_Extension  := p_iE_Extension
            } // End of template mw_dRBStatusDL12
            template (present) DRBStatusDL18 mw_dRBStatusDL18(
                                                              template (present) COUNTValueForPDCP_SN18 p_dL_COUNTValue := ?,
                                                              template DRBStatusDL18.iE_Extension p_iE_Extension := * 
                                                              ) := {
                dL_COUNTValue := p_dL_COUNTValue,
                iE_Extension  := p_iE_Extension
            } // End of template mw_dRBStatusDL18
            template (present) DRBStatusUL mw_dRBStatusUL_dRBStatusUL12(
                                                                        template (present) DRBStatusUL12 p_dRBStatusUL12 := ?
                                                                        ) := {
                dRBStatusUL12 := p_dRBStatusUL12
            } // End of template mw_dRBStatusUL_dRBStatusUL12

            template (present) DRBStatusUL mw_dRBStatusUL_dRBStatusUL18(
                                                                        template (present) DRBStatusUL18 p_dRBStatusUL18 := ?
                                                                        ) := {
                dRBStatusUL18 := p_dRBStatusUL18
            } // End of template mw_dRBStatusUL_dRBStatusUL18

            template (present) DRBStatusUL mw_dRBStatusUL_choice_Extensions(
                                                                            template (present) DRBStatusUL.choice_Extensions p_choice_Extensions := ?
                                                                            ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_dRBStatusUL_choice_Extensions
            template (present) DRBStatusUL12 mw_dRBStatusUL12(
                                                              template (present) COUNTValueForPDCP_SN12 p_uL_COUNTValue := ?,
                                                              template DRBStatusUL12.receiveStatusOfUL_PDCP_SDUs p_receiveStatusOfUL_PDCP_SDUs := *,
                                                              template DRBStatusUL12.iE_Extension p_iE_Extension := * 
                                                              ) := {
                uL_COUNTValue               := p_uL_COUNTValue,
                receiveStatusOfUL_PDCP_SDUs := p_receiveStatusOfUL_PDCP_SDUs,
                iE_Extension                := p_iE_Extension
            } // End of template mw_dRBStatusUL12
            template (present) DRBStatusUL18 mw_dRBStatusUL18(
                                                              template (present) COUNTValueForPDCP_SN18 p_uL_COUNTValue := ?,
                                                              template DRBStatusUL18.receiveStatusOfUL_PDCP_SDUs p_receiveStatusOfUL_PDCP_SDUs := *,
                                                              template DRBStatusUL18.iE_Extension p_iE_Extension := * 
                                                              ) := {
                uL_COUNTValue               := p_uL_COUNTValue,
                receiveStatusOfUL_PDCP_SDUs := p_receiveStatusOfUL_PDCP_SDUs,
                iE_Extension                := p_iE_Extension
            } // End of template mw_dRBStatusUL18
            template (present) DRBsToQosFlowsMappingItem mw_dRBsToQosFlowsMappingItem(
                                                                                      template (present) DRB_ID p_dRB_ID := ?,
                                                                                      template (present) AssociatedQosFlowList p_associatedQosFlowList := ?,
                                                                                      template DRBsToQosFlowsMappingItem.iE_Extensions p_iE_Extensions := *
                                                                                      ) := {
                dRB_ID                := p_dRB_ID,
                associatedQosFlowList := p_associatedQosFlowList,
                iE_Extensions         := p_iE_Extensions
            } // End of template mw_dRBsToQosFlowsMappingItem
            template (present) DRBsToQosFlowsMappingItem.iE_Extensions mw_dRBsToQosFlowsMappingItem_dAPSRequestInfo(
                                                                                                                    template (present) DAPSRequestInfo p_dAPSRequestInfo := ?
                                                                                                                    ) := {
	            {
                    id             := id_DAPSRequestInfo,
                    criticality    := ignore,
                    extensionValue := { DAPSRequestInfo := p_dAPSRequestInfo }
                }
            } // End of template mw_dRBsToQosFlowsMappingItem_dAPSRequestInfo

            template (present) Dynamic5QIDescriptor mw_dynamic5QIDescriptor(
                                                                            template (present) PriorityLevelQos p_priorityLevelQos := ?,
                                                                            template (present) PacketDelayBudget p_packetDelayBudget := ?,
                                                                            template (present) PacketErrorRate p_packetErrorRate := ?,
                                                                            template FiveQI p_fiveQI := *,
                                                                            template DelayCritical p_delayCritical := *,
                                                                            template AveragingWindow p_averagingWindow := *,
                                                                            template MaximumDataBurstVolume p_maximumDataBurstVolume := *,
                                                                            template Dynamic5QIDescriptor.iE_Extensions p_iE_Extensions := *
                                                                            ) := {
                priorityLevelQos       := p_priorityLevelQos,
                packetDelayBudget      := p_packetDelayBudget,
                packetErrorRate        := p_packetErrorRate,
                fiveQI                 := p_fiveQI,
                delayCritical          := p_delayCritical,
                // The above IE shall be present in case of GBR QoS flow
                averagingWindow        := p_averagingWindow,
                // The above IE shall be present in case of GBR QoS flow
                maximumDataBurstVolume := p_maximumDataBurstVolume,
                iE_Extensions          := p_iE_Extensions
            } // End of template mw_dynamic5QIDescriptor

            template (present) Dynamic5QIDescriptor.iE_Extensions mw_dynamic5QIDescriptor_extendedPacketDelayBudget(
                                                                                                                    template (present) ExtendedPacketDelayBudget p_extendedPacketDelayBudget := ?
                                                                                                                    ) := {
	            {
                    id             := id_ExtendedPacketDelayBudget,
                    criticality    := ignore,
                    extensionValue := { ExtendedPacketDelayBudget := p_extendedPacketDelayBudget }
                }
            } // End of template mw_dynamic5QIDescriptor_extendedPacketDelayBudget

            template (present) Dynamic5QIDescriptor.iE_Extensions mw_dynamic5QIDescriptor_cNPacketDelayBudgetDL(
                                                                                                                template (present) ExtendedPacketDelayBudget p_extendedPacketDelayBudget := ?
                                                                                                                ) := {
	            {
                    id             := id_CNPacketDelayBudgetDL,
                    criticality    := ignore,
                    extensionValue := { ExtendedPacketDelayBudget := p_extendedPacketDelayBudget }
                }
            } // End of template mw_dynamic5QIDescriptor_cNPacketDelayBudgetDL

            template (present) Dynamic5QIDescriptor.iE_Extensions mw_dynamic5QIDescriptor_cNPacketDelayBudgetUL(
                                                                                                                template (present) ExtendedPacketDelayBudget p_extendedPacketDelayBudget := ?
                                                                                                                ) := {
	            {
                    id             := id_CNPacketDelayBudgetUL,
                    criticality    := ignore,
                    extensionValue := { ExtendedPacketDelayBudget := p_extendedPacketDelayBudget }
                }
            } // End of template mw_dynamic5QIDescriptor_cNPacketDelayBudgetUL
            template (present) EarlyMeasurement mw_earlyMeasurement(template (present) EarlyMeasurement p_value := true_) := p_value;
            template (present) EarlyStatusTransfer_TransparentContainer mw_earlyStatusTransfer_TransparentContainer(
                                                                                                                    template (present) ProcedureStageChoice p_procedureStage := ?,
                                                                                                                    template EarlyStatusTransfer_TransparentContainer.iE_Extensions p_iE_Extensions := *
                                                                                                                    ) := {
                procedureStage := p_procedureStage,
                iE_Extensions  := p_iE_Extensions
            } // End of template mw_earlyStatusTransfer_TransparentContainer
            template (present) ProcedureStageChoice mw_procedureStageChoice_firstDLCount(
                                                                                         template (present) FirstDLCount p_firstDLCount := ?
                                                                                         ) := {
                first_dl_count := p_firstDLCount
            } // End of template mw_procedureStageChoice_firstDLCount

            template (present) ProcedureStageChoice mw_procedureStageChoice_choice_Extensions(
                                                                                              template (present) ProcedureStageChoice.choice_Extensions p_choice_Extensions := ?
                                                                                              ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_procedureStageChoice_choice_Extensions
            template (present) FirstDLCount mw_firstDLCount(
                                                            template (present) DRBsSubjectToEarlyStatusTransfer_List p_dRBsSubjectToEarlyStatusTransfer := ?,
                                                            template FirstDLCount.iE_Extension p_iE_Extension := *
                                                            ) := {
                dRBsSubjectToEarlyStatusTransfer := p_dRBsSubjectToEarlyStatusTransfer,
                iE_Extension                     := p_iE_Extension
            } // End of template mw_firstDLCount
            template (present) DRBsSubjectToEarlyStatusTransfer_Item mw_dRBsSubjectToEarlyStatusTransfer_Item(
                                                                                                              template (present) DRB_ID p_dRB_ID := ?,
                                                                                                              template (present) DRBStatusDL p_firstDLCOUNT := ?,
                                                                                                              template DRBsSubjectToEarlyStatusTransfer_Item.iE_Extension p_iE_Extension := *
                                                                                                              ) := {
                dRB_ID       := p_dRB_ID,
                firstDLCOUNT := p_firstDLCOUNT,
                iE_Extension := p_iE_Extension
            } // End of template mw_dRBsSubjectToEarlyStatusTransfer_Item
            template (present) EDT_Session mw_eDT_Session(template (present) EDT_Session p_value := true_) := p_value;
            template (present) EmergencyAreaIDBroadcastEUTRA_Item mw_emergencyAreaIDBroadcastEUTRA_Item(
                                                                                                        template (present) EmergencyAreaID p_emergencyAreaID := ?,
                                                                                                        template (present) CompletedCellsInEAI_EUTRA p_completedCellsInEAI_EUTRA := ?,
                                                                                                        template EmergencyAreaIDBroadcastEUTRA_Item.iE_Extensions p_iE_Extensions := *
                                                                                                        ) := {
                emergencyAreaID           := p_emergencyAreaID,
                completedCellsInEAI_EUTRA := p_completedCellsInEAI_EUTRA,
                iE_Extensions             := p_iE_Extensions
            } // End of template mw_emergencyAreaIDBroadcastEUTRA_Item
            template (present) EmergencyAreaIDBroadcastNR_Item mw_emergencyAreaIDBroadcastNR_Item(
                                                                                                  template (present) EmergencyAreaID p_emergencyAreaID := ?,
                                                                                                  template (present) CompletedCellsInEAI_NR p_completedCellsInEAI_NR := ?,
                                                                                                  template EmergencyAreaIDBroadcastNR_Item.iE_Extensions p_iE_Extensions := *
                                                                                                  ) := {
                emergencyAreaID        := p_emergencyAreaID,
                completedCellsInEAI_NR := p_completedCellsInEAI_NR,
                iE_Extensions          := p_iE_Extensions
            } // End of template mw_emergencyAreaIDBroadcastNR_Item
            template (present) EmergencyAreaIDCancelledEUTRA_Item mw_emergencyAreaIDCancelledEUTRA_Item(
                                                                                                        template (present) EmergencyAreaID p_emergencyAreaID := ?,
                                                                                                        template (present) CancelledCellsInEAI_EUTRA p_cancelledCellsInEAI_EUTRA := ?,
                                                                                                        template EmergencyAreaIDCancelledEUTRA_Item.iE_Extensions p_iE_Extensions := *
                                                                                                        ) := {
                emergencyAreaID           := p_emergencyAreaID,
                cancelledCellsInEAI_EUTRA := p_cancelledCellsInEAI_EUTRA,
                iE_Extensions             := p_iE_Extensions
            } // End of template mw_emergencyAreaIDCancelledEUTRA_Item
            template (present) EmergencyAreaIDCancelledNR_Item mw_emergencyAreaIDCancelledNR_Item(
                                                                                                  template (present) EmergencyAreaID p_emergencyAreaID := ?,
                                                                                                  template (present) CancelledCellsInEAI_NR p_cancelledCellsInEAI_NR := ?,
                                                                                                  template EmergencyAreaIDCancelledNR_Item.iE_Extensions p_iE_Extensions := *
                                                                                                  ) := {
                emergencyAreaID        := p_emergencyAreaID,
                cancelledCellsInEAI_NR := p_cancelledCellsInEAI_NR,
                iE_Extensions          := p_iE_Extensions
            } // End of template mw_emergencyAreaIDCancelledNR_Item
            template (present) EmergencyFallbackIndicator mw_emergencyFallbackIndicator(
                                                                                        template (present) EmergencyFallbackRequestIndicator p_emergencyFallbackRequestIndicator := ?,
                                                                                        template EmergencyServiceTargetCN p_emergencyServiceTargetCN := *,
                                                                                        template EmergencyFallbackIndicator.iE_Extensions p_iE_Extensions := *
                                                                                        ) := {
                emergencyFallbackRequestIndicator := p_emergencyFallbackRequestIndicator,
                emergencyServiceTargetCN          := p_emergencyServiceTargetCN,
                iE_Extensions                     := p_iE_Extensions
            } // End of template mw_emergencyFallbackIndicator
            template (present) EmergencyFallbackRequestIndicator mw_emergencyFallbackRequestIndicator(template (present) EmergencyFallbackRequestIndicator p_value := emergency_fallback_requested) := p_value;
            template (present) EmergencyServiceTargetCN mw_emergencyServiceTargetCN(template (present) EmergencyServiceTargetCN p_value := ?) := p_value;
            template (present) ENB_ID mw_eNB_ID_macroENB_ID(
                                                            template (present) Bit20 p_macroENB_ID := ?
                                                            ) := {
                macroENB_ID := p_macroENB_ID
            } // End of template mw_eNB_ID_macroENB_ID
            template (present) ENB_ID mw_eNB_ID_homeENB_ID(
                                                           template (present) Bit28 p_homeENB_ID := ?
                                                           ) := {
                homeENB_ID := p_homeENB_ID
            } // End of template mw_eNB_ID_homeENB_ID
            template (present) ENB_ID mw_eNB_ID_short_macroENB_ID(
                                                                  template (present) Bit18 p_short_macroENB_ID := ?
                                                                  ) := {
                short_macroENB_ID := p_short_macroENB_ID
            } // End of template mw_eNB_ID_short_macroENB_ID
            template (present) ENB_ID mw_eNB_ID_long_macroENB_ID(
                                                                 template (present) Bit21 p_long_macroENB_ID := ?
                                                                 ) := {
                long_macroENB_ID := p_long_macroENB_ID
            } // End of template mw_eNB_ID_long_macroENB_ID
            template (present) ENB_ID mw_eNB_ID_choice_Extensions(
                                                                  template (present) ENB_ID.choice_Extensions p_choice_Extensions := ?
                                                                  ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_eNB_ID_choice_Extensions
            template (present) Enhanced_CoverageRestriction mw_enhanced_CoverageRestriction(template (present) Enhanced_CoverageRestriction p_value := restricted) := p_value;
            template (present) EndpointIPAddressAndPort mw_endpointIPAddressAndPort(
                                                                                    template (present) TransportLayerAddress p_endpointIPAddress := ?,
                                                                                    template (present) PortNumber p_portNumber := ?,
                                                                                    template EndpointIPAddressAndPort.iE_Extensions p_iE_Extensions := *
                                                                                    ) := {
                endpointIPAddress := p_endpointIPAddress,
                portNumber        := p_portNumber,
                iE_Extensions     := p_iE_Extensions
            } // End of template mw_endpointIPAddressAndPort
            template (present) EndIndication mw_endIndication(template (present) EndIndication p_value := ?) := p_value;
            template (present) EPS_TAI mw_ePS_TAI(
                                                  template (present) PLMNIdentity p_pLMNIdentity := ?,
                                                  template (present) EPS_TAC p_ePS_TAC := ?,
                                                  template EPS_TAI.iE_Extensions p_iE_Extensions := *
                                                  ) := {
                pLMNIdentity  := p_pLMNIdentity,
                ePS_TAC       := p_ePS_TAC,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_ePS_TAI
            template (present) E_RABInformationItem mw_e_RABInformationItem(
                	                                                        template (present) E_RAB_ID p_e_RAB_ID := ?,
	                                                                        template (present) DLForwarding p_dLForwarding := ?,
                                                                            template E_RABInformationItem.iE_Extensions p_iE_Extensions := *
                                                                            ) := {
                e_RAB_ID      := p_e_RAB_ID,
                dLForwarding  := p_dLForwarding,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_e_RABInformationItem
            template (present) E_RABInformationItem.iE_Extensions mw_e_RABInformationItem_id_SourceTNLAddrInfo(
                                                                                                               template (present) TransportLayerAddress p_transportLayerAddress := ?
                                                                                                               ) := {
                    id             := id_SourceTNLAddrInfo,
                    criticality    := ignore,
                    extensionValue := { TransportLayerAddress := p_transportLayerAddress }
                }
            } // End of template mw_e_RABInformationItem_id_SourceTNLAddrInfo

            template (present) E_RABInformationItem.iE_Extensions mw_e_RABInformationItem_id_SourceNodeTNLAddrInfo(
                                                                                                                   template (present) TransportLayerAddress p_transportLayerAddress := ?
                                                                                                                   ) := {
                    id             := id_SourceNodeTNLAddrInfo,
                    criticality    := ignore,
                    extensionValue := { TransportLayerAddress := p_transportLayerAddress }
            } // End of template mw_e_RABInformationItem_id_SourceNodeTNLAddrInfo
Yann Garcia's avatar
Yann Garcia committed

            template (present) EUTRA_CGI mw_uUTRA_CGI(
                                                      template (present) PLMNIdentity p_pLMNIdentity := ?,
                                                      template (present) EUTRACellIdentity p_eUTRACellIdentity := ?,
                                                      template EUTRA_CGI.iE_Extensions p_iE_Extensions := *
                                                      ) := {
                pLMNIdentity      := p_pLMNIdentity,
                eUTRACellIdentity := p_eUTRACellIdentity,
                iE_Extensions     := p_iE_Extensions
            } // End of template mw_uUTRA_CGI
Yann Garcia's avatar
Yann Garcia committed

            template (present) EUTRA_PagingeDRXInformation mw_eUTRA_PagingeDRXInformation(
                                                                                          template (present) EUTRA_Paging_eDRX_Cycle p_eUTRA_paging_eDRX_Cycle := ?,
                                                                                          template EUTRA_Paging_Time_Window p_eUTRA_paging_Time_Window := *,
                                                                                          template EUTRA_PagingeDRXInformation.iE_Extensions p_iE_Extensions := *
                                                                                          ) := {
                eUTRA_paging_eDRX_Cycle  := p_eUTRA_paging_eDRX_Cycle,
                eUTRA_paging_Time_Window := p_eUTRA_paging_Time_Window,
                iE_Extensions            := p_iE_Extensions
            } // End of template mw_eUTRA_PagingeDRXInformation
Yann Garcia's avatar
Yann Garcia committed

            template (present) EUTRA_Paging_eDRX_Cycle mw_eUTRA_Paging_eDRX_Cycle(template (present) EUTRA_Paging_eDRX_Cycle p_value := ?) := p_value;
Yann Garcia's avatar
Yann Garcia committed

            template (present) EUTRA_Paging_Time_Window mw_eUTRA_Paging_Time_Window(template (present) EUTRA_Paging_Time_Window p_value := ?) := p_value;
Yann Garcia's avatar
Yann Garcia committed

            template (present) EventType mw_eventType(template (present) EventType p_value := ?) := p_value;
Yann Garcia's avatar
Yann Garcia committed

            template (present) ExcessPacketDelayThresholdItem mw_excessPacketDelayThresholdItem(
                                                                                                template (present) FiveQI p_fiveQi := ?,
                                                                                                template (present) ExcessPacketDelayThresholdValue p_excessPacketDelayThresholdValue := ?,
                                                                                                template ExcessPacketDelayThresholdItem.iE_Extensions p_iE_Extensions := *
Yann Garcia's avatar
Yann Garcia committed
                                                                                                ) := {
                fiveQi                          := p_fiveQi,
                excessPacketDelayThresholdValue := p_excessPacketDelayThresholdValue,
                iE_Extensions                   := p_iE_Extensions
            } // End of template mw_excessPacketDelayThresholdItem
            template (present) ExcessPacketDelayThresholdValue mw_excessPacketDelayThresholdValue(template (present) ExcessPacketDelayThresholdValue p_value := ?) := p_value;
            template (present) ExpectedHOInterval mw_expectedHOInterval(template (present) ExpectedHOInterval p_value := ?) := p_value;
            template ExpectedUEActivityBehaviour mw_expectedUEActivityBehaviour(
                                                                                template ExpectedActivityPeriod p_expectedActivityPeriod := *,
                                                                                template ExpectedIdlePeriod p_expectedIdlePeriod := *,
                                                                                template SourceOfUEActivityBehaviourInformation p_sourceOfUEActivityBehaviourInformation := *,
                                                                                template ExpectedUEActivityBehaviour.iE_Extensions p_iE_Extensions := *
                                                                                ) := {
                expectedActivityPeriod                 := p_expectedActivityPeriod,
                expectedIdlePeriod                     := p_expectedIdlePeriod,
                sourceOfUEActivityBehaviourInformation := p_sourceOfUEActivityBehaviourInformation,
                iE_Extensions                          := p_iE_Extensions
            } // End of template mw_expectedUEActivityBehaviour
            template ExpectedUEBehaviour mw_expectedUEBehaviour(
                                                                template ExpectedUEActivityBehaviour p_expectedUEActivityBehaviour := *,
                                                                template ExpectedHOInterval p_expectedHOInterval := *,
                                                                template ExpectedUEMobility p_expectedUEMobility := *,
                                                                template ExpectedUEMovingTrajectory p_expectedUEMovingTrajectory:= *,
                                                                template ExpectedUEBehaviour.iE_Extensions p_iE_Extensions := *
                                                                ) := {
                expectedUEActivityBehaviour := p_expectedUEActivityBehaviour,
                expectedHOInterval          := p_expectedHOInterval,
                expectedUEMobility          := p_expectedUEMobility,
                expectedUEMovingTrajectory  := p_expectedUEMovingTrajectory,
                iE_Extensions               := p_iE_Extensions
            } // End of template m_expectedUEBehaviour
            template (present) ExpectedUEMobility mw_expectedUEMobility(template (present) ExpectedUEMobility p_value := ?) := p_value;
            template (present) ExpectedUEMovingTrajectoryItem mw_expectedUEMovingTrajectoryItem(
                                                                                                template (present) NGRAN_CGI p_nGRAN_CGI := ?,
                                                                                                template ExpectedUEMovingTrajectoryItem.timeStayedInCell p_timeStayedInCell := *,
                                                                                                template ExpectedUEMovingTrajectoryItem.iE_Extensions p_iE_Extensions := *
                                                                                                ) := {
                nGRAN_CGI        := p_nGRAN_CGI,
                timeStayedInCell := p_timeStayedInCell,
                iE_Extensions    := p_iE_Extensions
            } // End of template mw_expectedUEMovingTrajectoryItem
            template Extended_AMFName mw_extended_AMFName(
                                                          template AMFNameVisibleString p_aMFNameVisibleString := *,
                                                          template AMFNameUTF8String p_aMFNameUTF8String := *,
                                                          template Extended_AMFName.iE_Extensions p_iE_Extensions := *
                                                          ) := {
                aMFNameVisibleString := p_aMFNameVisibleString,
                aMFNameUTF8String    := p_aMFNameUTF8String,
                iE_Extensions        := p_iE_Extensions
            } // End of template mw_extended_AMFName
            template Extended_RANNodeName mw_extended_RANNodeName(
                                                                  template RANNodeNameVisibleString p_rANNodeNameVisibleString := *,
                                                                  template RANNodeNameUTF8String p_rANNodeNameUTF8String := *,
                                                                  template Extended_RANNodeName.iE_Extensions p_iE_Extensions := *
                                                                  ) := {
                rANNodeNameVisibleString := p_rANNodeNameVisibleString,
                rANNodeNameUTF8String    := p_rANNodeNameUTF8String,
                iE_Extensions            := p_iE_Extensions
            } // End of template mw_extended_RANNodeName
            template (present) ExtendedRATRestrictionInformation mw_extendedRATRestrictionInformation(
                                                                                                      template (present) ExtendedRATRestrictionInformation.primaryRATRestriction p_primaryRATRestriction := ?,
                                                                                                      template (present) ExtendedRATRestrictionInformation.secondaryRATRestriction p_secondaryRATRestriction := ?,
                                                                                                      template ExtendedRATRestrictionInformation.iE_Extensions p_iE_Extensions := *
                                                                                                      ) := {
                primaryRATRestriction   := p_primaryRATRestriction,
                secondaryRATRestriction := p_secondaryRATRestriction,
                iE_Extensions           := p_iE_Extensions
            } // End of template mw_extendedRATRestrictionInformation
            template (present) EventTrigger mw_eventTrigger_outOfCoverage(
                                                                          template (present) EventTrigger.outOfCoverage p_outOfCoverage := true_
                                                                          ) := {
                outOfCoverage := p_outOfCoverage
            } // End of template mw_eventTrigger_outOfCoverage
            template (present) EventTrigger mw_eventTrigger_eventL1LoggedMDTConfig(
                                                                                   template (present) EventL1LoggedMDTConfig p_eventL1LoggedMDTConfig := ?
                                                                                   ) := {
                eventL1LoggedMDTConfig := p_eventL1LoggedMDTConfig
            } // End of template mw_eventTrigger_eventL1LoggedMDTConfig
            template (present) EventTrigger mw_eventTrigger_choice_Extensions(
                                                                              template (present) EventTrigger.choice_Extensions p_choice_Extensions := ?
                                                                              ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_eventTrigger_choice_Extensions
            template (present) EventL1LoggedMDTConfig mw_eventL1LoggedMDTConfig(
                                                                                template (present) MeasurementThresholdL1LoggedMDT p_l1Threshold := ?,
                                                                                template (present) Hysteresis p_hysteresis := ?,
                                                                                template (present) TimeToTrigger p_timeToTrigger := ?,
                                                                                template EventL1LoggedMDTConfig.iE_Extensions p_iE_Extensions := *
                                                                                ) := {
                l1Threshold   := p_l1Threshold,
                hysteresis    := p_hysteresis,
                timeToTrigger := p_timeToTrigger,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_eventL1LoggedMDTConfig
            template (present) MeasurementThresholdL1LoggedMDT mw_measurementThresholdL1LoggedMDT_threshold_RSRP(
                                                                                                                 template (present) Threshold_RSRP p_threshold_RSRP := ?
                                                                                                                 ) := {
                threshold_RSRP := p_threshold_RSRP
            } // End of template mw_measurementThresholdL1LoggedMDT_threshold_RSRP
            template (present) MeasurementThresholdL1LoggedMDT mw_measurementThresholdL1LoggedMDT_threshold_RSRQ(
                                                                                                                 template (present) Threshold_RSRQ p_threshold_RSRQ := ?
                                                                                                                 ) := {
                threshold_RSRQ := p_threshold_RSRQ
            } // End of template mw_measurementThresholdL1LoggedMDT_threshold_RSRQ

            template (present) MeasurementThresholdL1LoggedMDT mw_measurementThresholdL1LoggedMDT_choice_Extensions(
                                                                                                                    template (present) MeasurementThresholdL1LoggedMDT.choice_Extensions p_choice_Extensions := ?
                                                                                                                    ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_measurementThresholdL1LoggedMDT_choice_Extensions
            template (present) FailureIndication mw_failureIndication(
                                                                      template (present) UERLFReportContainer p_uERLFReportContainer := ?,
                                                                      template FailureIndication.iE_Extensions p_iE_Extensions := *
                                                                      ) := {
                uERLFReportContainer := p_uERLFReportContainer,
                iE_Extensions        := p_iE_Extensions
            } // End of template mw_failureIndication
            template FiveG_ProSeAuthorized mw_FiveG_ProSeAuthorized(
                                                                    template FiveGProSeDirectDiscovery p_fiveGProSeDirectDiscovery := *,
                                                                    template FiveGProSeDirectCommunication p_fiveGProSeDirectCommunication := *,
                                                                    template FiveGProSeLayer2UEtoNetworkRelay p_fiveGProSeLayer2UEtoNetworkRelay := *,
                                                                    template FiveGProSeLayer3UEtoNetworkRelay p_fiveGProSeLayer3UEtoNetworkRelay := *,
                                                                    template FiveGProSeLayer2RemoteUE p_fiveGProSeLayer2RemoteUE := *,
                                                                    template FiveG_ProSeAuthorized.iE_Extensions p_iE_Extensions := *
                                                                    ) := {
                fiveGProSeDirectDiscovery        := p_fiveGProSeDirectDiscovery,
                fiveGProSeDirectCommunication    := p_fiveGProSeDirectCommunication,
                fiveGProSeLayer2UEtoNetworkRelay := p_fiveGProSeLayer2UEtoNetworkRelay,
                fiveGProSeLayer3UEtoNetworkRelay := p_fiveGProSeLayer3UEtoNetworkRelay,
                fiveGProSeLayer2RemoteUE         := p_fiveGProSeLayer2RemoteUE,
                iE_Extensions                    := p_iE_Extensions
            } // End of template mw_FiveG_ProSeAuthorized
            template (present) FiveGProSeDirectDiscovery mw_fiveGProSeDirectDiscovery(template (present) FiveGProSeDirectDiscovery p_value := ?) := p_value;
            template (present) FiveGProSeDirectCommunication mw_fiveGProSeDirectCommunication(template (present) FiveGProSeDirectCommunication p_value := ?) := p_value;
            template (present) FiveGProSeLayer2UEtoNetworkRelay mw_fiveGProSeLayer2UEtoNetworkRelay(template (present) FiveGProSeLayer2UEtoNetworkRelay p_value := ?) := p_value;
            template (present) FiveGProSeLayer3UEtoNetworkRelay mw_fiveGProSeLayer3UEtoNetworkRelay(template (present) FiveGProSeLayer3UEtoNetworkRelay p_value := ?) := p_value;
            template (present) FiveGProSeLayer2RemoteUE mw_fiveGProSeLayer2RemoteUE(template (present) FiveGProSeLayer2RemoteUE p_value := ?) := p_value;
            template (present) FiveG_ProSePC5QoSParameters mw_fiveG_ProSePC5QoSParameters(
                                                                                          template (present) FiveGProSePC5QoSFlowList p_fiveGProSepc5QoSFlowList := ?,
                                                                                          template BitRate p_fiveGProSepc5LinkAggregateBitRates := *,
                                                                                          template FiveG_ProSePC5QoSParameters.iE_Extensions p_iE_Extensions := *
                                                                                          ) := {
                fiveGProSepc5QoSFlowList           := p_fiveGProSepc5QoSFlowList,
                fiveGProSepc5LinkAggregateBitRates := p_fiveGProSepc5LinkAggregateBitRates,
                iE_Extensions                      := p_iE_Extensions
            } // End of template mw_fiveG_ProSePC5QoSParameters

            template (present) FiveGProSePC5QoSFlowItem mw_fiveGProSePC5QoSFlowItem(
                                                                                    template (present) FiveQI p_fiveGproSepQI := ?,
                                                                                    template FiveGProSePC5FlowBitRates p_fiveGproSepc5FlowBitRates := *,
                                                                                    template Range p_fiveGproSerange := *,
                                                                                    template FiveGProSePC5QoSFlowItem.iE_Extensions p_iE_Extensions := *
                                                                                    ) := {
                fiveGproSepQI             := p_fiveGproSepQI,
                fiveGproSepc5FlowBitRates := p_fiveGproSepc5FlowBitRates,
                fiveGproSerange           := p_fiveGproSerange,
                iE_Extensions             := p_iE_Extensions
            } // End of template mw_fiveGProSePC5QoSFlowItem

            template (present) FiveGProSePC5FlowBitRates mw_fiveGProSePC5FlowBitRates(
                                                                                      template (present) BitRate p_fiveGproSeguaranteedFlowBitRate := ?,
                                                                                      template (present) BitRate p_fiveGproSemaximumFlowBitRate := ?,
                                                                                      template FiveGProSePC5FlowBitRates.iE_Extensions p_iE_Extensions := *
                fiveGproSeguaranteedFlowBitRate := p_fiveGproSeguaranteedFlowBitRate,
                fiveGproSemaximumFlowBitRate    := p_fiveGproSemaximumFlowBitRate,
                iE_Extensions                   := p_iE_Extensions
            } // End of template mw_fiveGProSePC5FlowBitRates
            template (present) FiveG_S_TMSI mw_fiveG_S_TMSI(
                                                            template (present) AMFSetID p_aMFSetID := ?,
                                                            template (present) AMFPointer p_aMFPointer := ?,
                                                            template (present) FiveG_TMSI p_fiveG_TMSI := ?,
                                                            template FiveG_S_TMSI.iE_Extensions p_iE_Extensions := *
                                                            ) := {
                aMFSetID      := p_aMFSetID,
                aMFPointer    := p_aMFPointer,
                fiveG_TMSI    := p_fiveG_TMSI,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_fiveG_S_TMSI

            template (present) ForbiddenAreaInformation_Item mw_forbiddenAreaInformation_Item(
                                                                                              template (present) PLMNIdentity p_pLMNIdentity := ?,
                                                                                              template (present) ForbiddenTACs p_forbiddenTACs := ?,
                                                                                              template ForbiddenAreaInformation_Item.iE_Extensions p_iE_Extensions := *
                                                                                              ) := {
                pLMNIdentity  := p_pLMNIdentity,
                forbiddenTACs := p_forbiddenTACs,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_forbiddenAreaInformation_Item
            template (present) FromEUTRANtoNGRAN mw_fromEUTRANtoNGRAN(
                                                                      template (present) IntersystemSONeNBID p_sourceeNBID := ?,
                                                                      template (present) IntersystemSONNGRANnodeID p_targetNGRANnodeID := ?,
                                                                      template FromEUTRANtoNGRAN.iE_Extensions p_iE_Extensions := *
                                                                      ) := {
                sourceeNBID       := p_sourceeNBID,
                targetNGRANnodeID := p_targetNGRANnodeID,
                iE_Extensions     := p_iE_Extensions
            } // End of template mw_fromEUTRANtoNGRAN
            template (present) FromNGRANtoEUTRAN mw_fromNGRANtoEUTRAN(
                                                                      template (present) IntersystemSONNGRANnodeID p_sourceNGRANnodeID := ?,
                                                                      template (present) IntersystemSONeNBID p_targeteNBID := ?,
                                                                      template FromNGRANtoEUTRAN.iE_Extensions p_iE_Extensions := *
                                                                      ) := {
                sourceNGRANnodeID := p_sourceNGRANnodeID,
                targeteNBID       := p_targeteNBID,
                iE_Extensions     := p_iE_Extensions
            } // End of template mw_fromNGRANtoEUTRAN
            template (present) GBR_QosInformation mw_gBR_QosInformation(
                                                                        template (present) BitRate p_maximumFlowBitRateDL := ?,
                                                                        template (present) BitRate p_maximumFlowBitRateUL := ?,
                                                                        template (present) BitRate p_guaranteedFlowBitRateDL := ?,
                                                                        template (present) BitRate p_guaranteedFlowBitRateUL := ?,
                                                                        template NotificationControl p_notificationControl := *,
                                                                        template PacketLossRate p_maximumPacketLossRateDL := *,
                                                                        template PacketLossRate p_maximumPacketLossRateUL := *,
                                                                        template GBR_QosInformation.iE_Extensions p_iE_Extensions := *
                                                                        ) := {
                maximumFlowBitRateDL    := p_maximumFlowBitRateDL,
                maximumFlowBitRateUL    := p_maximumFlowBitRateUL,
                guaranteedFlowBitRateDL := p_guaranteedFlowBitRateDL,
                guaranteedFlowBitRateUL := p_guaranteedFlowBitRateUL,
                notificationControl     := p_notificationControl,
                maximumPacketLossRateDL := p_maximumPacketLossRateDL,
                maximumPacketLossRateUL := p_maximumPacketLossRateUL,
                iE_Extensions           := p_iE_Extensions
            } // End of template mw_gBR_QosInformation
            template (present) GBR_QosInformation.iE_Extensions mw_gBR_QosInformation_id_AlternativeQoSParaSetList(
                                                                                                                   template (present) AlternativeQoSParaSetList p_alternativeQoSParaSetList := ?
                                                                                                                   ) := {
                { 
                    id             := id_AlternativeQoSParaSetList,
                    extensionValue := { AlternativeQoSParaSetList := p_alternativeQoSParaSetList}
            } // End of template mw_gBR_QosInformation_id_AlternativeQoSParaSetList
            template (present) GlobalCable_ID_new mw_globalCable_ID_new(
                                                                        template (present) GlobalCable_ID p_globalCable_ID := ?,
                                                                        template (present) TAI p_tAI := ?,
                                                                        template GlobalCable_ID_new.iE_Extensions p_iE_Extensions := *
                                                                        ) := {
                globalCable_ID := p_globalCable_ID,
                tAI            := p_tAI,
                iE_Extensions  := p_iE_Extensions
            } // End of template mw_globalCable_ID_new
            template (present) GlobalGNB_ID mw_ie_globalGnbId(
                                                              template (present) PLMNIdentity p_plmnId := ?,
                                                              template (present) bitstring p_gnbId := ?,
                                                              template GlobalGNB_ID.iE_Extensions p_iE_Extensions := *
                                                              ) := {
                pLMNIdentity  := p_plmnId,//'010001'O,
                gNB_ID        := { gNB_ID := p_gnbId/*'0000000000000000000000'B*/},
                iE_Extensions := p_iE_Extensions
            } // End of template mw_ie_globalGnbId
            template (present) GlobalN3IWF_ID mw_globalN3IWF_ID(
                                                                template (present) PLMNIdentity p_pLMNIdentity := ?,
                                                                template (present) N3IWF_ID p_n3IWF_ID := ?,
                                                                template GlobalN3IWF_ID.iE_Extensions p_iE_Extensions := *
                                                                ) := {
                pLMNIdentity  := p_pLMNIdentity,
                n3IWF_ID      := p_n3IWF_ID,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_globalN3IWF_ID
            template (present) GlobalLine_ID mw_globalLine_ID(
                                                              template (present) GlobalLineIdentity p_globalLineIdentity := ?,
                                                              template LineType p_lineType := *,
                                                              template GlobalLine_ID.iE_Extensions p_iE_Extensions := *
                                                              ) := {
                globalLineIdentity := p_globalLineIdentity,
                lineType           := p_lineType,
                iE_Extensions      := p_iE_Extensions
            } // End of template mw_globalLine_ID
            template (present) GlobalLine_ID.iE_Extensions mw_globalLine_ID_id_TAI(template TAI p_tAI := *) := {
                { 
                    id             := id_TAI,
                    criticality    := ignore,
                    extensionValue := { TAI := p_tAI }	
                }
            } // End of template mw_globalLine_ID_id_TAI
            template (present) GlobalNgENB_ID mw_globalNgENB_ID(
                                                                template (present) PLMNIdentity p_pLMNIdentity := ?,
                                                                template (present) NgENB_ID p_ngENB_ID := ?,
                                                                template GlobalNgENB_ID.iE_Extensions p_iE_Extensions := *
                                                                ) := {
                pLMNIdentity  := p_pLMNIdentity,
                ngENB_ID      := p_ngENB_ID,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_globalNgENB_ID
            template (present) GlobalRANNodeID mw_globalRANNodeID_globalGNB_ID(
                                                                               template (present) GlobalGNB_ID p_globalGNB_ID := ?
                                                                               ) := {
                globalGNB_ID := p_globalGNB_ID
            } // End of template mw_globalRANNodeID_globalGNB_ID
            template (present) GlobalRANNodeID mw_globalRANNodeID_globalNgENB_ID(
                                                                                 template (present) GlobalNgENB_ID p_globalNgENB_ID := ?
                                                                                 ) := {
                globalNgENB_ID := p_globalNgENB_ID
            } // End of template mw_globalRANNodeID_globalNgENB_ID
            template (present) GlobalRANNodeID mw_globalRANNodeID_globalN3IWF_ID(
                                                                                 template (present) GlobalN3IWF_ID p_globalN3IWF_ID := ?
                                                                                 ) := {
                globalN3IWF_ID := p_globalN3IWF_ID
            } // End of template mw_globalRANNodeID_globalN3IWF_ID
            template (present) GlobalRANNodeID mw_globalRANNodeID_choice_Extensions(
                                                                                    template (present) GlobalRANNodeID.choice_Extensions p_choice_Extensions := ?
                                                                                    ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_globalRANNodeID_choice_Extensions
            template (present) GlobalRANNodeID.choice_Extensions mw_globalRANNodeID_id_GlobalTNGF_ID(
                                                                                                     template (present) GlobalTNGF_ID p_globalTNGF_ID := ?
                                                                                                     ) := {
                id          := id_GlobalTNGF_ID,
                criticality := reject,
                value_      := { GlobalTNGF_ID := p_globalTNGF_ID }
            } // End of template mw_globalRANNodeID_id_GlobalTNGF_ID
            template (present) GlobalRANNodeID.choice_Extensions mw_globalRANNodeID_id_GlobalTWIF_ID(
                                                                                                     template (present) GlobalTNGF_ID p_globalTWIF_ID := ?
                                                                                                     ) := {
                id          := id_GlobalTWIF_ID,
                criticality := reject,
                value_      := { GlobalTNGF_ID := p_globalTWIF_ID }
            } // End of template mw_globalRANNodeID_id_GlobalTWIF_ID
            template (present) GlobalRANNodeID.choice_Extensions mw_globalRANNodeID_id_GlobalW_AGF_ID(
                                                                                                      template (present) GlobalW_AGF_ID p_globalW_AGF_ID := ?
                                                                                                      ) := {
                id          := id_GlobalW_AGF_ID,
                criticality := reject,
                value_      := { GlobalW_AGF_ID := p_globalW_AGF_ID }
            } // End of template mw_globalRANNodeID_id_GlobalW_AGF_ID
            template (present) GlobalTNGF_ID mw_globalTNGF_ID(
                                                              template (present) PLMNIdentity p_pLMNIdentity := ?,
                                                              template (present) TNGF_ID p_tNGF_ID := ?,
                                                              template GlobalTNGF_ID.iE_Extensions p_iE_Extensions := *
                                                              ) := {
                pLMNIdentity  := p_pLMNIdentity,
                tNGF_ID       := p_tNGF_ID,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_globalTNGF_ID
            template (present) GlobalTWIF_ID mw_globalTWIF_ID(
                                                              template (present) PLMNIdentity p_pLMNIdentity := ?,
                                                              template (present) TWIF_ID p_tWIF_ID := ?,
                                                              template GlobalTWIF_ID.iE_Extensions p_iE_Extensions := *
                                                              ) := {
                pLMNIdentity  := p_pLMNIdentity,
                tWIF_ID       := p_tWIF_ID,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_globalTWIF_ID
            template (present) GlobalW_AGF_ID mw_GlobalW_AGF_ID(
                                                                template (present) PLMNIdentity p_pLMNIdentity := ?,
                                                                template (present) W_AGF_ID p_w_AGF_ID := ?,
                                                                template GlobalW_AGF_ID.iE_Extensions p_iE_Extensions := *
                                                                ) := {
                pLMNIdentity  := p_pLMNIdentity,
                w_AGF_ID      := p_w_AGF_ID,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_GlobalW_AGF_ID
            template (present) GNB_ID mw_gNB_ID_gNB_ID(
                                                       template (present) GNB_ID.gNB_ID p_gNB_ID := ?
                                                       ) := {
                gNB_ID := p_gNB_ID
            } // End of template mw_gNB_ID_gNB_ID
            template (present) GNB_ID mw_gNB_ID_choice_Extensions(
                                                                  template (present) GNB_ID.choice_Extensions p_choice_Extensions := ?
                                                                  ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_gNB_ID_choice_Extensions
            template (present) GTP_TEID mw_ie_gtpTeId(template (present) GTP_TEID p_val := ?) := p_val;
            template (present) GTPTunnel mw_ie_gTPTunnel(
                                                         in template (present) TransportLayerAddress p_tla := ?,
                                                         in template (present) GTP_TEID p_gtp_teid := ?,
                                                         in template GTPTunnel.iE_Extensions p_iE_Extensions := *
                                                         ):= {
                transportLayerAddress := p_tla,
                gTP_TEID              := p_gtp_teid,
                iE_Extensions         := p_iE_Extensions
            } // End of template mw_ie_gTPTunnel
            template (present) UPTransportLayerInformation mw_ie_uPTLInf(
                                                                         template (present) GTPTunnel p_gtpt := ?
                                                                         ) := {
               gTPTunnel := p_gtpt
            } // End of template mw_ie_uPTLInf
            template (present) GUAMI mw_gUAMI(
                                              template (present) PLMNIdentity p_pLMNIdentity := ?,
                                              template (present) AMFRegionID p_aMFRegionID := ?,
                                              template (present) AMFSetID p_aMFSetID := ?,
                                              template (present) AMFPointer p_aMFPointer := ?,
                                              template GUAMI.iE_Extensions p_iE_Extensions := *
                                              ) := {
                pLMNIdentity  := p_pLMNIdentity,
                aMFRegionID   := p_aMFRegionID,
                aMFSetID      := p_aMFSetID,
                aMFPointer    := p_aMFPointer,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_gUAMI
            template (present) GUAMIType mw_gUAMIType(template (present) GUAMIType p_val := ?) := p_val;
            template HandoverCommandTransfer mw_handoverCommandTransfer(
                                                                        template UPTransportLayerInformation p_dLForwardingUP_TNLInformation := *,
                                                                        template QosFlowToBeForwardedList p_qosFlowToBeForwardedList := *,
                                                                        template DataForwardingResponseDRBList p_dataForwardingResponseDRBList := *,
                                                                        template HandoverCommandTransfer.iE_Extensions p_iE_Extensions := *
                                                                        ) := {
                dLForwardingUP_TNLInformation := p_dLForwardingUP_TNLInformation,
                qosFlowToBeForwardedList      := p_qosFlowToBeForwardedList,
                dataForwardingResponseDRBList := p_dataForwardingResponseDRBList,
                iE_Extensions                 := p_iE_Extensions
            } // End of template mw_handoverCommandTransfer
            template (present) HandoverCommandTransfer.iE_Extensions mw_handoverCommandTransfer_id_AdditionalDLForwardingUPTNLInformation(
                                                                                                                                          template (present) QosFlowPerTNLInformationList p_qosFlowPerTNLInformationList := ?
                                                                                                                                          ) := {
                { 
                    id             := id_AdditionalDLForwardingUPTNLInformation,
                    criticality    := ignore,
                    extensionValue := { QosFlowPerTNLInformationList := p_qosFlowPerTNLInformationList }	
            } // End of template mw_handoverCommandTransfer_id_AdditionalDLForwardingUPTNLInformation
            template (present) HandoverCommandTransfer.iE_Extensions mw_handoverCommandTransfer_id_ULForwardingUP_TNLInformation(
                                                                                                                                 template (present) UPTransportLayerInformation p_uPTransportLayerInformation := ?
                                                                                                                                 ) := {
                { 
                    id             := id_ULForwardingUP_TNLInformation,
                    criticality    := reject,
                    extensionValue := { UPTransportLayerInformation := p_uPTransportLayerInformation }	
                }
            } // End of template mw_handoverCommandTransfer_id_ULForwardingUP_TNLInformation
            template (present) HandoverCommandTransfer.iE_Extensions mw_handoverCommandTransfer_id_AdditionalULForwardingUPTNLInformation(
                                                                                                                                          template (present) UPTransportLayerInformationList p_uPTransportLayerInformationList := ?
                                                                                                                                          ) := {
                { 
                    id             := id_AdditionalULForwardingUPTNLInformation,
                    criticality    := reject,
                    extensionValue := { UPTransportLayerInformationList := p_uPTransportLayerInformationList }	
                }
            } // End of template mw_handoverCommandTransfer_id_AdditionalULForwardingUPTNLInformation
            template (present) HandoverCommandTransfer.iE_Extensions mw_handoverCommandTransfer_id_DataForwardingResponseERABList(
                                                                                                                                  template (present) DataForwardingResponseERABList p_dataForwardingResponseERABList := ?
                                                                                                                                  ) := {
                { 
                    id             := id_DataForwardingResponseERABList,
                    criticality    := ignore,
                    extensionValue := { DataForwardingResponseERABList := p_dataForwardingResponseERABList }	
                }
            } // End of template mw_handoverCommandTransfer_id_DataForwardingResponseERABList
            template (present) HandoverCommandTransfer.iE_Extensions mw_handoverCommandTransfer_id_QosFlowFailedToSetupList(
                                                                                                                            template (present) QosFlowListWithCause p_qosFlowListWithCause := ?
                                                                                                                            ) := {
                { 
                    id             := id_QosFlowFailedToSetupList,
                    criticality    := ignore,
                    extensionValue := { QosFlowListWithCause := p_qosFlowListWithCause }	
                }
            } // End of template mwhandoverCommandTransfer_id_QosFlowFailedToSetupList
            template (present) HandoverFlag mw_handoverFlag(template (present) HandoverFlag p_val := handover_preparation) := p_val;
            template (present) HandoverPreparationUnsuccessfulTransfer mw_mandoverPreparationUnsuccessfulTransfer(
                                                                                                                  template (present) Cause p_cause := ?,
                                                                                                                  template HandoverPreparationUnsuccessfulTransfer.iE_Extensions p_iE_Extensions := *
                                                                                                                  ) := {
                cause         := p_cause,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_mandoverPreparationUnsuccessfulTransfer
            template (present) HandoverRequestAcknowledgeTransfer mw_handoverRequestAcknowledgeTransfer(
                                                                                                        template (present) UPTransportLayerInformation p_dL_NGU_UP_TNLInformation := ?,
                                                                                                        template (present) QosFlowListWithDataForwarding p_qosFlowSetupResponseList := ?,
                                                                                                        template UPTransportLayerInformation p_dLForwardingUP_TNLInformation := *,
                                                                                                        template SecurityResult p_securityResult := *,
                                                                                                        template QosFlowListWithCause p_qosFlowFailedToSetupList := *,
                                                                                                        template DataForwardingResponseDRBList p_dataForwardingResponseDRBList := *,
                                                                                                        template HandoverRequestAcknowledgeTransfer.iE_Extensions p_iE_Extensions := *
                                                                                                        ) := {
                dL_NGU_UP_TNLInformation      := p_dL_NGU_UP_TNLInformation,
                dLForwardingUP_TNLInformation := p_dLForwardingUP_TNLInformation,
                securityResult                := p_securityResult,
                qosFlowSetupResponseList      := p_qosFlowSetupResponseList,
                qosFlowFailedToSetupList      := p_qosFlowFailedToSetupList,
                dataForwardingResponseDRBList := p_dataForwardingResponseDRBList,
                iE_Extensions                 := p_iE_Extensions
            } // End of template mw_handoverRequestAcknowledgeTransfer
            template (present) HandoverRequestAcknowledgeTransfer.iE_Extensions mw_handoverRequestAcknowledgeTransfer_id_AdditionalDLUPTNLInformationForHOList(
                                                                                                                                                               template (present) AdditionalDLUPTNLInformationForHOList p_additionalDLUPTNLInformationForHOList := ?
                                                                                                                                                               ) := {
                { 
                    id             := id_AdditionalDLUPTNLInformationForHOList,
                    criticality    := reject,
                    extensionValue := { AdditionalDLUPTNLInformationForHOList := p_additionalDLUPTNLInformationForHOList }	
                }
            } // End of template mw_handoverRequestAcknowledgeTransfer_id_AdditionalDLUPTNLInformationForHOList
            template (present) HandoverRequestAcknowledgeTransfer.iE_Extensions mw_handoverRequestAcknowledgeTransfer_id_ULForwardingUP_TNLInformation(
                                                                                                                                                       template (present) UPTransportLayerInformation p_uPTransportLayerInformation := ?
                                                                                                                                                       ) := {
                { 
                    id             := id_ULForwardingUP_TNLInformation,
                    criticality    := reject,
                    extensionValue := { UPTransportLayerInformation := p_uPTransportLayerInformation }	
                }
            } // End of template mw_handoverRequestAcknowledgeTransfer_id_ULForwardingUP_TNLInformation
            template (present) HandoverRequestAcknowledgeTransfer.iE_Extensions mw_handoverRequestAcknowledgeTransfer_id_AdditionalULForwardingUPTNLInformation(
                                                                                                                                                                template (present) UPTransportLayerInformationList p_uPTransportLayerInformationList := ?
                                                                                                                                                                ) := {
                { 
                    id             := id_AdditionalULForwardingUPTNLInformation,
                    criticality    := reject,
                    extensionValue := { UPTransportLayerInformationList := p_uPTransportLayerInformationList }	
                }
            } // End of template mw_handoverRequestAcknowledgeTransfer_id_AdditionalULForwardingUPTNLInformation
            template (present) HandoverRequestAcknowledgeTransfer.iE_Extensions mw_handoverRequestAcknowledgeTransfer_id_DataForwardingResponseERABList(
                                                                                                                                                        template (present) DataForwardingResponseERABList p_dataForwardingResponseERABList := ?
                                                                                                                                                        ) := {
                { 
                    id             := id_DataForwardingResponseERABList,
                    criticality    := ignore,
                    extensionValue := { DataForwardingResponseERABList := p_dataForwardingResponseERABList }	
                }
            } // End of template mw_handoverRequestAcknowledgeTransfer_id_DataForwardingResponseERABList
            template (present) HandoverRequestAcknowledgeTransfer.iE_Extensions mw_handoverRequestAcknowledgeTransfer_id_RedundantDL_NGU_UP_TNLInformation(
                                                                                                                                                           template (present) UPTransportLayerInformation p_uPTransportLayerInformation := ?
                                                                                                                                                           ) := {
                { 
                    id             := id_RedundantDL_NGU_UP_TNLInformation,
                    criticality    := ignore,
                    extensionValue := { UPTransportLayerInformation := p_uPTransportLayerInformation }	
                }
            } // End of template mw_handoverRequestAcknowledgeTransfer_id_RedundantDL_NGU_UP_TNLInformation
            template (present) HandoverRequestAcknowledgeTransfer.iE_Extensions mw_handoverRequestAcknowledgeTransfer_id_UsedRSNInformation(
                                                                                                                                            template (present) RedundantPDUSessionInformation p_redundantPDUSessionInformation := ?
                                                                                                                                            ) := {
                { 
                    id             := id_UsedRSNInformation,
                    criticality    := ignore,
                    extensionValue := { RedundantPDUSessionInformation := p_redundantPDUSessionInformation }	
                }
            } // End of template mw_handoverRequestAcknowledgeTransfer_id_UsedRSNInformation
            template (present) HandoverRequestAcknowledgeTransfer.iE_Extensions mw_handoverRequestAcknowledgeTransfer_id_GlobalRANNodeID(
                                                                                                                                         template (present) GlobalRANNodeID p_globalRANNodeID := ?
                                                                                                                                         ) := {
                { 
                    id             := id_GlobalRANNodeID,
                    criticality    := ignore,
                    extensionValue := { GlobalRANNodeID := p_globalRANNodeID }	
                }
            } // End of template mw_handoverRequestAcknowledgeTransfer_id_GlobalRANNodeID
            template (present) HandoverRequestAcknowledgeTransfer.iE_Extensions mw_handoverRequestAcknowledgeTransfer_id_MBS_SupportIndicator(
                                                                                                                                              template (present) MBS_SupportIndicator p_mBS_SupportIndicator := ?
                                                                                                                                              ) := {
                { 
                    id             := id_MBS_SupportIndicator,
                    criticality    := ignore,
                    extensionValue := { MBS_SupportIndicator := p_mBS_SupportIndicator }	
                }
            } // End of template mw_handoverRequestAcknowledgeTransfer_id_MBS_SupportIndicator
            template HandoverRequiredTransfer mw_handoverRequiredTransfer(
                                                                          template DirectForwardingPathAvailability p_directForwardingPathAvailability := *,
                                                                        template HandoverRequiredTransfer.iE_Extensions p_iE_Extensions := *
                directForwardingPathAvailability := p_directForwardingPathAvailability,
                iE_Extensions                    := p_iE_Extensions
            } // End of template mw_handoverRequiredTransfer
            template (present) HandoverResourceAllocationUnsuccessfulTransfer mw_handoverResourceAllocationUnsuccessfulTransfer(
                                                                                                                                template (present) Cause p_cause := ?,
                                                                                                                                template CriticalityDiagnostics p_criticalityDiagnostics := *,
                                                                                                                                template HandoverResourceAllocationUnsuccessfulTransfer.iE_Extensions p_iE_Extensions := *
                                                                                                                                ) := {
                cause                  := p_cause,
                criticalityDiagnostics := p_criticalityDiagnostics,
                iE_Extensions          := p_iE_Extensions
            } // End of template mw_handoverResourceAllocationUnsuccessfulTransfer
            template (present) HandoverType mw_handoverType(template (present) HandoverType p_value := ?) := p_value;
            template (present) HFCNode_ID_new mw_hFCNode_ID_new(
                                                                template (present) HFCNode_ID p_hFCNode_ID := ?,
                                                                template (present) TAI p_tAI := ?,
                                                                template HFCNode_ID_new.iE_Extensions p_iE_Extensions := *
                                                                ) := {
                hFCNode_ID    := p_hFCNode_ID,
                tAI           := p_tAI,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_hFCNode_ID_new
            template (present) HOReport mw_hOReport(
                                                    template (present) HOReport.handoverReportType p_handoverReportType := ?,
                                                    template (present) Cause p_handoverCause := ?,
                                                    template (present) NGRAN_CGI p_sourcecellCGI := ?,
                                                    template (present) NGRAN_CGI p_targetcellCGI := ?,
                                                    template NGRAN_CGI p_reestablishmentcellCGI := ?,
                                                    template Bit16 p_sourcecellC_RNTI := *,
                                                    template EUTRA_CGI p_targetcellinE_UTRAN := *,
                                                    template MobilityInformation p_mobilityInformation := *,
                                                    template UERLFReportContainer p_uERLFReportContainer := *,
                                                    template HOReport.iE_Extensions p_iE_Extensions := *
                                                    ) := {
                handoverReportType     := p_handoverReportType,
                handoverCause          := p_handoverCause,
                sourcecellCGI          := p_sourcecellCGI,
                targetcellCGI          := p_targetcellCGI,
                reestablishmentcellCGI := p_reestablishmentcellCGI,
                // The above IE shall be present if the Handover Report Type IE is set to the value "HO to wrong cell"
                sourcecellC_RNTI       := p_sourcecellC_RNTI,
                targetcellinE_UTRAN    := p_targetcellinE_UTRAN,
                // The above IE shall be present if the Handover Report Type IE is set to the value "Inter System ping_pong"
                mobilityInformation    := p_mobilityInformation,
                uERLFReportContainer   := p_uERLFReportContainer,
                iE_Extensions          := p_iE_Extensions
            } // End of template mw_hOReport
            template (present) IAB_Authorized mw_iAB_Authorized(template (present) IAB_Authorized p_value := ?) := p_value;
            template (present) IAB_Supported mw_iAB_Supported(template (present) IAB_Supported p_value := true_) := p_value;
            template (present) IABNodeIndication mw_iABNodeIndication(template (present) IABNodeIndication p_value := true_) := p_value;
            template (present) IMSVoiceSupportIndicator mw_iMSVoiceSupportIndicator(template (present) IMSVoiceSupportIndicator p_value := ?) := p_value;

            template (present) InfoOnRecommendedCellsAndRANNodesForPaging mw_infoOnRecommendedCellsAndRANNodesForPaging(
                                                                                                                        template (present) RecommendedCellsForPaging p_recommendedCellsForPaging := ?,
                                                                                                                        template (present) RecommendedRANNodesForPaging p_recommendRANNodesForPaging := ?,
                                                                                                                        template InfoOnRecommendedCellsAndRANNodesForPaging.iE_Extensions p_iE_Extensions := *
                                                                                                                        ) := {
                recommendedCellsForPaging  := p_recommendedCellsForPaging,
                recommendRANNodesForPaging := p_recommendRANNodesForPaging,
                iE_Extensions              := p_iE_Extensions
            } // End of template mw_infoOnRecommendedCellsAndRANNodesForPaging
            template (present) IntegrityProtectionIndication mw_integrityProtectionIndication(template (present) IntegrityProtectionIndication p_value := ?) := p_value;
            template (present) IntegrityProtectionResult mw_integrityProtectionResult(template (present) IntegrityProtectionResult p_value := ?) := p_value;
            template (present) ImmediateMDTNr mw_immediateMDTNr(
	                                                            template (present) MeasurementsToActivate p_measurementsToActivate := ?,
	                                                            template M1Configuration p_m1Configuration := *,
	                                                            template M4Configuration p_m4Configuration := *,
	                                                            template M5Configuration p_m5Configuration := *,
	                                                            template M6Configuration p_m6Configuration := *,
	                                                            template M7Configuration p_m7Configuration := *,
	                                                            template BluetoothMeasurementConfiguration p_bluetoothMeasurementConfiguration := *,
	                                                            template WLANMeasurementConfiguration p_wLANMeasurementConfiguration := *,
	                                                            template MDT_Location_Info p_mDT_Location_Info := *,
	                                                            template SensorMeasurementConfiguration p_sensorMeasurementConfiguration := *,
                                                                template ImmediateMDTNr.iE_Extensions p_iE_Extensions := *
                                                                ) := {
                measurementsToActivate            := p_measurementsToActivate,
                m1Configuration                   := p_m1Configuration,
                // The above IE shall be present if the Measurements to Activate IE has the first bit set to “1”
                m4Configuration                   := p_m4Configuration,
                // The above IE shall be present if the Measurements to Activate IE has the third bit set to “1”
                m5Configuration                   := p_m5Configuration,
                // The above IE shall be present if the Measurements to Activate IE has the fourth bit set to “1”
                m6Configuration                   := p_m6Configuration,
                // The above IE shall be present if the Measurements to Activate IE has the fifth bit set to “1”
                m7Configuration                   := p_m7Configuration,
                // The above IE shall be present if the Measurements to Activate IE has the sixth bit set to “1”
                bluetoothMeasurementConfiguration := p_bluetoothMeasurementConfiguration,
                wLANMeasurementConfiguration      := p_wLANMeasurementConfiguration,
                mDT_Location_Info                 := p_mDT_Location_Info,
                sensorMeasurementConfiguration    := p_sensorMeasurementConfiguration,
                iE_Extensions                     := p_iE_Extensions
            } // End of template mw_immediateMDTNr
            template InterSystemFailureIndication mw_interSystemFailureIndication(
                                                                                  template UERLFReportContainer p_uERLFReportContainer := *,
                                                                                  template InterSystemFailureIndication.iE_Extensions p_iE_Extensions := *
                                                                                  ) := {
                uERLFReportContainer := p_uERLFReportContainer,
                iE_Extensions                     := p_iE_Extensions
            } // End of template mw_interSystemFailureIndication
            template (present) IntersystemSONConfigurationTransfer mw_intersystemSONConfigurationTransfer(
                                                                                                          template (present) IntersystemSONTransferType p_transferType := ?,
                                                                                                          template (present) IntersystemSONInformation p_intersystemSONInformation := ?,
                                                                                                          template IntersystemSONConfigurationTransfer.iE_Extensions p_iE_Extensions := *
                                                                                                          ) := {
                transferType              := p_transferType,
                intersystemSONInformation := p_intersystemSONInformation,
                iE_Extensions             := p_iE_Extensions
            } // End of template mw_intersystemSONConfigurationTransfer
            template (present) IntersystemSONTransferType mw_intersystemSONTransferType_fromEUTRANtoNGRAN(
                                                                                                          template (present) FromEUTRANtoNGRAN p_fromEUTRANtoNGRAN := ?
                                                                                                          ) := {
                fromEUTRANtoNGRAN := p_fromEUTRANtoNGRAN
            } // End of template mw_intersystemSONTransferType_fromEUTRANtoNGRAN
            template (present) IntersystemSONTransferType mw_intersystemSONTransferType_fromNGRANtoEUTRAN(
                                                                                                          template (present) FromNGRANtoEUTRAN p_fromNGRANtoEUTRAN := ?
                                                                                                          ) := {
                fromNGRANtoEUTRAN := p_fromNGRANtoEUTRAN
            } // End of template mw_intersystemSONTransferType_fromNGRANtoEUTRAN
            template (present) IntersystemSONTransferType mw_intersystemSONTransferType_choice_Extensions(
                                                                                                          template (present) IntersystemSONTransferType.choice_Extensions p_choice_Extensions := ?
                                                                                                          ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_intersystemSONTransferType_choice_Extensions

            template (present) IntersystemSONeNBID mw_intersystemSONeNBID(
                                                                          template (present) GlobalENB_ID p_globaleNBID := ?,
                                                                          template (present) EPS_TAI p_selectedEPSTAI := ?,
                                                                          template IntersystemSONeNBID.iE_Extensions p_iE_Extensions := *
                                                                          ) := {
                globaleNBID    := p_globaleNBID,
                selectedEPSTAI := p_selectedEPSTAI,
                iE_Extensions  := p_iE_Extensions
            } // End of template mw_intersystemSONeNBID

            template (present) IntersystemSONNGRANnodeID mw_intersystemSONNGRANnodeID(
                                                                                      template (present) GlobalRANNodeID p_globalRANNodeID := ?,
                                                                                      template (present) TAI p_selectedTAI := ?,
                                                                                      template IntersystemSONNGRANnodeID.iE_Extensions p_iE_Extensions := *
                globalRANNodeID := p_globalRANNodeID,
                selectedTAI     := p_selectedTAI,
                iE_Extensions   := p_iE_Extensions
            } // End of template mw_intersystemSONNGRANnodeID
            template (present) IntersystemSONInformation mw_intersystemSONInformation_intersystemSONInformationReport(
                                                                                                                   in template (present) IntersystemSONInformationReport p_intersystemSONInformationReport := ?
                                                                                                                   ) := {
                intersystemSONInformationReport := p_intersystemSONInformationReport
            } // End of template mw_intersystemSONInformation_intersystemSONInformationReport
            template (present) IntersystemSONInformation mw_intersystemSONInformation_choice_Extensions(
                                                                                                        template (present) IntersystemSONInformation.choice_Extensions p_choice_Extensions := ?
                                                                                                        ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_intersystemSONInformation_choice_Extensions
            template (present) IntersystemSONInformation.choice_Extensions mw_intersystemSONInformation_id_IntersystemSONInformationRequest(
                                                                                                                                            template (present) IntersystemSONInformationRequest p_intersystemSONInformationRequest := ?
                                                                                                                                            ) := {
                id          := id_IntersystemSONInformationRequest,
                criticality := ignore,
                value_      := { IntersystemSONInformationRequest := p_intersystemSONInformationRequest }	
            } // End of template mw_intersystemSONInformation_id_IntersystemSONInformationRequest
            template (present) IntersystemSONInformation.choice_Extensions mw_intersystemSONInformation_id_IntersystemSONInformationReply(
                                                                                                                                          template (present) IntersystemSONInformationReply p_intersystemSONInformationReply := ?
                                                                                                                                          ) := {
                id          := id_IntersystemSONInformationReply,
                criticality := ignore,
                value_      := { IntersystemSONInformationReply := p_intersystemSONInformationReply }	
            } // End of template mw_intersystemSONInformation_id_IntersystemSONInformationReply
            template (present) IntersystemSONInformationRequest mw_intersystemSONInformationRequest_nGRAN_CellActivation(
                                                                                                                         template (present) IntersystemCellActivationRequest p_nGRAN_CellActivation := ?
                                                                                                                         ) := {
                nGRAN_CellActivation := p_nGRAN_CellActivation
            } // End of template mw_intersystemSONInformationRequest_nGRAN_CellActivation
            template (present) IntersystemSONInformationRequest mw_intersystemSONInformationRequest_resourceStatus(
                                                                                                                   template (present) IntersystemResourceStatusRequest p_resourceStatus := ?
                resourceStatus := p_resourceStatus
            } // End of template mw_intersystemSONInformationRequest_resourceStatus
            template (present) IntersystemSONInformationRequest mw_intersystemSONInformationRequest_choice_Extensions(
                                                                                                                      template (present) IntersystemSONInformationRequest.choice_Extensions p_choice_Extensions := ?
                                                                                                                      ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_intersystemSONInformationRequest_choice_Extensions
            template (present) IntersystemCellActivationRequest mw_intersystemCellActivationRequest(
                                                                                                    template (present) IntersystemCellActivationRequest.activationID p_activationID := ?,
                                                                                                    template (present) CellsToActivateList p_cellsToActivateList := ?,
                                                                                                    template IntersystemCellActivationRequest.iE_Extensions p_iE_Extensions := *
                                                                                                    ) := {
                activationID        := p_activationID,
                cellsToActivateList := p_cellsToActivateList,
                iE_Extensions       := p_iE_Extensions
            } // End of template mw_intersystemCellActivationRequest

            template (present) IntersystemResourceStatusRequest mw_intersystemResourceStatusRequest(
                                                                                                    template (present) ReportingSystem p_reportingSystem := ?,
                                                                                                    template (present) ReportCharacteristics p_reportCharacteristics := ?,
                                                                                                    template (present) ReportType p_reportType := ?,
                                                                                                    template IntersystemResourceStatusRequest.iE_Extensions p_iE_Extensions := *
                                                                                                    ) := {
                reportingSystem       := p_reportingSystem,
                reportCharacteristics := p_reportCharacteristics,
                reportType            := p_reportType,
                iE_Extensions         := p_iE_Extensions
            } // End of template mw_intersystemResourceStatusRequest
            template (present) ReportingSystem mw_reportingSystem_eUTRAN(
                                                                         template (present) EUTRAN_ReportingSystemIEs p_eUTRAN := ?
                                                                         ) := {
                eUTRAN := p_eUTRAN
            } // End of template mw_reportingSystem_eUTRAN
            template (present) ReportingSystem mw_reportingSystem_nGRAN(
                                                                        template (present) NGRAN_ReportingSystemIEs p_nGRAN := ?
                                                                        ) := {
                nGRAN := p_nGRAN
            } // End of template mw_reportingSystem_nGRAN
            template (present) ReportingSystem mw_reportingSystem_choice_Extensions(
                                                                                    template (present) ReportingSystem.choice_Extensions p_choice_Extensions := ?
                                                                                    ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_reportingSystem_choice_Extensions
            template (present) EUTRAN_ReportingSystemIEs mw_eUTRAN_ReportingSystemIEs(
                                                                                      template (present) EUTRAN_CellToReportList p_eUTRAN_CellToReportList := ?,
                                                                                      template EUTRAN_ReportingSystemIEs.iE_Extensions p_iE_Extensions := *
                                                                                      ) := {
                eUTRAN_CellToReportList := p_eUTRAN_CellToReportList,
                iE_Extensions           := p_iE_Extensions
            } // End of template mw_eUTRAN_ReportingSystemIEs

            template (present) NGRAN_ReportingSystemIEs mw_nGRAN_ReportingSystemIEs(
                                                                                    template (present) NGRAN_CellToReportList p_nGRAN_CellToReportList := ?,
                                                                                    template NGRAN_ReportingSystemIEs.iE_Extensions p_iE_Extensions := *
                                                                                    ) := {
                nGRAN_CellToReportList := p_nGRAN_CellToReportList,
                iE_Extensions          := p_iE_Extensions
            } // End of template mw_nGRAN_ReportingSystemIEs

            template (present) EUTRAN_CellToReportItem mw_eUTRAN_CellToReportItem(
                                                                                  template (present) EUTRA_CGI p_eCGI := ?,
                                                                                  template EUTRAN_CellToReportItem.iE_Extensions p_iE_Extensions := *
                                                                                  ) := {
                eCGI          := p_eCGI,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_eUTRAN_CellToReportItem
            template (present) NGRAN_CellToReportItem mw_nGRAN_CellToReportItem(
                                                                                template (present) NGRAN_CGI p_nGRAN_CGI := ?,
                                                                                template NGRAN_CellToReportItem.iE_Extensions p_iE_Extensions := *
                                                                                ):= {
                nGRAN_CGI     := p_nGRAN_CGI,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_nGRAN_CellToReportItem
            template (present) ReportType mw_reportType_eventBasedReporting(
                                                                            template (present) EventBasedReportingIEs p_eventBasedReporting := ?
                                                                            ) := {
                eventBasedReporting := p_eventBasedReporting
            } // End of template mw_reportType_eventBasedReporting
            template (present) ReportType mw_reportType_periodicReporting(
                                                                          template (present) PeriodicReportingIEs p_periodicReporting := ?
                                                                          ) := {
                periodicReporting := p_periodicReporting
            } // End of template mw_reportType_periodicReporting
            template (present) ReportType mw_reportType_choice_Extensions(
                                                                          template (present) ReportType.choice_Extensions p_choice_Extensions := ?
                                                                          ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_reportType_choice_Extensions
            template (present) NumberOfMeasurementReportingLevels mw_numberOfMeasurementReportingLevels(template (present) NumberOfMeasurementReportingLevels p_value := ?) := p_value;
            template (present) PeriodicReportingIEs mw_PeriodicReportingIEs(
                                                                            template (present) ReportingPeriodicity p_reportingPeriodicity := ?,
                                                                            template PeriodicReportingIEs.iE_Extensions p_iE_Extensions := *
                                                                            ) := {
                reportingPeriodicity := p_reportingPeriodicity,
                iE_Extensions        := p_iE_Extensions
            } // End of template mw_PeriodicReportingIEs
            template (present) ReportingPeriodicity mw_reportingPeriodicity(template (present) ReportingPeriodicity p_value := ?) := p_value;
            template (present) IntersystemSONInformationReply mw_intersystemSONInformationReply_nGRAN_CellActivation(
                                                                                                                     template (present) IntersystemCellActivationReply p_nGRAN_CellActivation := ?
                                                                                                                     ) := {
                nGRAN_CellActivation := p_nGRAN_CellActivation
            } // End of template mw_intersystemSONInformationReply_nGRAN_CellActivation
            template (present) IntersystemSONInformationReply mw_intersystemSONInformationReply_resourceStatus(
                                                                                                               template (present) IntersystemResourceStatusReply p_resourceStatus := ?
                                                                                                               ) := {
                resourceStatus := p_resourceStatus
            } // End of template mw_intersystemSONInformationReply_resourceStatus
            template (present) IntersystemSONInformationReply mw_intersystemSONInformationReply_choice_Extensions(
                                                                                                                  template (present) IntersystemSONInformationReply.choice_Extensions p_choice_Extensions := ?
                                                                                                                  ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_intersystemSONInformationReply_choice_Extensions
            template (present) IntersystemCellActivationReply mw_intersystemCellActivationReply(
                                                                                                template (present) ActivatedCellList p_activatedCellList := ?,
                                                                                                template (present) IntersystemCellActivationReply.activation_ID p_activation_ID := ?,
                                                                                                template IntersystemCellActivationReply.iE_Extensions p_iE_Extensions := *
                                                                                                ) := {
                activatedCellList := p_activatedCellList,
                activation_ID     := p_activation_ID,
                iE_Extensions     := p_iE_Extensions
            } // End of template mw_intersystemCellActivationReply
            template (present) IntersystemResourceStatusReply mw_intersystemResourceStatusReply(
                                                                                                template (present) ReportingSystem p_reportingsystem := ?,
                                                                                                template IntersystemResourceStatusReply.iE_Extensions p_iE_Extensions := *
                                                                                                ) := {
                reportingsystem := p_reportingsystem,
                iE_Extensions   := p_iE_Extensions
            } // End of template mw_intersystemResourceStatusReply
            template (present) IntersystemSONInformationReport mw_intersystemSONInformationReport_hOReportInformation(
                                                                                                                      template (present) InterSystemHOReport p_hOReportInformation := ?
                                                                                                                      ) := {
                hOReportInformation := p_hOReportInformation
            } // End of template mw_intersystemSONInformationReport_hOReportInformation
            template (present) IntersystemSONInformationReport mw_intersystemSONInformationReport_failureIndicationInformation(
                                                                                                                               template (present) InterSystemFailureIndication p_failureIndicationInformation := ?
                                                                                                                               ) := {
                failureIndicationInformation := p_failureIndicationInformation
            } // End of template mw_intersystemSONInformationReport_failureIndicationInformation
            template (present) IntersystemSONInformationReport mw_intersystemSONInformationReport_choice_Extensions(
                                                                                                                    template (present) IntersystemSONInformationReport.choice_Extensions p_choice_Extensions := ?
                                                                                                                    ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_intersystemSONInformationReport_choice_Extensions
            template (present) IntersystemSONInformationReport.choice_Extensions mw_intersystemSONInformationReport_id_EnergySavingIndication(
                                                                                                                                              template (present) IntersystemCellStateIndication p_intersystemCellStateIndication := ?
                                                                                                                                              ) := {
                id          := id_EnergySavingIndication,
                criticality := ignore,
                value_      := { IntersystemCellStateIndication := p_intersystemCellStateIndication }
            } // End of template mw_intersystemSONInformationReport_id_EnergySavingIndication
            template (present) IntersystemSONInformationReport.choice_Extensions mw_intersystemSONInformationReport_id_IntersystemResourceStatusUpdate(
                                                                                                                                                       template (present) IntersystemResourceStatusReport p_intersystemResourceStatusReport := ?
                                                                                                                                                       ) := {
                id          := id_IntersystemResourceStatusUpdate,
                criticality := ignore,
                value_      := { IntersystemResourceStatusReport := p_intersystemResourceStatusReport }
            } // End of template mw_intersystemSONInformationReport_id_IntersystemResourceStatusUpdate
            template (present) NotificationCell_Item mw_notificationCell_Item(
                                                                              template (present) NGRAN_CGI p_nGRAN_CGI := ?,
                                                                              template (present) NotificationCell_Item.notifyFlag p_notifyFlag := ?,
                                                                              template NotificationCell_Item.iE_Extensions p_iE_Extensions := *
                                                                              ) := {
                nGRAN_CGI     := p_nGRAN_CGI,
                notifyFlag    := p_notifyFlag,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_notificationCell_Item
            template (present) IntersystemResourceStatusReport mw_intersystemResourceStatusReport(
                                                                                                  template (present) ResourceStatusReportingSystem p_reportingSystem := ?,
                                                                                                  template IntersystemResourceStatusReport.iE_Extensions p_iE_Extensions := *
                                                                                                  ) := {
                reportingSystem := p_reportingSystem,
                iE_Extensions   := p_iE_Extensions
            } // End of template mw_intersystemResourceStatusReport
            template (present) ResourceStatusReportingSystem mw_resourceStatusReportingSystemt_eUTRAN_ReportingStatus(
                                                                                                                      template (present) EUTRAN_ReportingStatusIEs p_eUTRAN_ReportingStatus := ?
                                                                                                                      ) := {
                eUTRAN_ReportingStatus := p_eUTRAN_ReportingStatus
            } // End of template mw_resourceStatusReportingSystem_eUTRAN_ReportingStatus
            template (present) ResourceStatusReportingSystem mw_resourceStatusReportingSystemt_nGRAN_ReportingStatus(
                                                                                                                     template (present) NGRAN_ReportingStatusIEs p_nGRAN_ReportingStatus := ?
                                                                                                                     ) := {
                nGRAN_ReportingStatus := p_nGRAN_ReportingStatus
            } // End of template mw_resourceStatusReportingSystem_nGRAN_ReportingStatus
            template (present) ResourceStatusReportingSystem mw_resourceStatusReportingSystem_choice_Extensions(
                                                                                                                template (present) ResourceStatusReportingSystem.choice_Extensions p_choice_Extensions := ?
                                                                                                                ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_resourceStatusReportingSystem_choice_Extensions
            template (present) EUTRAN_ReportingStatusIEs mw_eUTRAN_ReportingStatusIEs(
                                                                                      template (present) EUTRAN_CellReportList p_eUTRAN_CellReportList := ?,
                                                                                      template EUTRAN_ReportingStatusIEs.iE_Extensions p_iE_Extensions := *
                                                                                      ) := {
                eUTRAN_CellReportList := p_eUTRAN_CellReportList,
                iE_Extensions         := p_iE_Extensions
            } // End of template mw_eUTRAN_ReportingStatusIEs
            template (present) EUTRAN_CellReportItem mw_eUTRAN_CellReportItem (
                                                                               template (present) EUTRA_CGI p_eCGI,
                                                                               template (present) EUTRAN_CompositeAvailableCapacityGroup p_eUTRAN_CompositeAvailableCapacityGroup := ?,
                                                                               template EUTRAN_NumberOfActiveUEs p_eUTRAN_NumberOfActiveUEs := *,
                                                                               template NGRAN_NoofRRCConnections p_eUTRAN_NoofRRCConnections := *,
                                                                               template EUTRAN_RadioResourceStatus p_eUTRAN_RadioResourceStatus := *,
                                                                               template EUTRAN_CellReportItem.iE_Extensions p_iE_Extensions := *
                                                                               ):= {
                eCGI                                   := p_eCGI,
                eUTRAN_CompositeAvailableCapacityGroup := p_eUTRAN_CompositeAvailableCapacityGroup,
                eUTRAN_NumberOfActiveUEs               := p_eUTRAN_NumberOfActiveUEs,
                eUTRAN_NoofRRCConnections              := p_eUTRAN_NoofRRCConnections,
                eUTRAN_RadioResourceStatus             := p_eUTRAN_RadioResourceStatus,
                iE_Extensions                          := p_iE_Extensions
            } // End of template mw_eUTRAN_ReportingStatusIEs
            template (present) EUTRAN_CompositeAvailableCapacityGroup mw_EUTRAN_CompositeAvailableCapacityGroup(
                                                                                                                template (present) CompositeAvailableCapacity p_dL_CompositeAvailableCapacity := ?,
                                                                                                                template (present) CompositeAvailableCapacity p_uL_CompositeAvailableCapacity := ?,
                                                                                                                template EUTRAN_CompositeAvailableCapacityGroup.iE_Extensions p_iE_Extensions := *
                                                                                                                ) := {
                dL_CompositeAvailableCapacity := p_dL_CompositeAvailableCapacity,
                uL_CompositeAvailableCapacity := p_uL_CompositeAvailableCapacity,
                iE_Extensions                 := p_iE_Extensions
            } // End of template mw_EUTRAN_CompositeAvailableCapacityGroup
            template (present) CompositeAvailableCapacity mw_compositeAvailableCapacity(
                                                                                        template (present) CompositeAvailableCapacity.capacityValue p_capacityValue := ?,
                                                                                        template CompositeAvailableCapacity.cellCapacityClassValue p_cellCapacityClassValue := *,
                                                                                        template CompositeAvailableCapacity.iE_Extensions p_iE_Extensions := *
                                                                                        ) := {
                cellCapacityClassValue := p_cellCapacityClassValue,
                capacityValue          := p_capacityValue,
                iE_Extensions          := p_iE_Extensions
            } // End of template mw_compositeAvailableCapacity
            
            template (present) EUTRAN_RadioResourceStatus mw_eUTRAN_RadioResourceStatus(
                                                                                        template (present) EUTRAN_RadioResourceStatus.dL_GBR_PRB_usage p_dL_GBR_PRB_usage := ?,
                                                                                        template (present) EUTRAN_RadioResourceStatus.uL_GBR_PRB_usage p_uL_GBR_PRB_usage := ?,
                                                                                        template (present) EUTRAN_RadioResourceStatus.dL_non_GBR_PRB_usage p_dL_non_GBR_PRB_usage := ?,
                                                                                        template (present) EUTRAN_RadioResourceStatus.uL_non_GBR_PRB_usage p_uL_non_GBR_PRB_usage := ?,
                                                                                        template (present) EUTRAN_RadioResourceStatus.dL_Total_PRB_usage p_dL_Total_PRB_usage := ?,
                                                                                        template (present) EUTRAN_RadioResourceStatus.uL_Total_PRB_usage p_uL_Total_PRB_usage := ?,
                                                                                        template EUTRAN_RadioResourceStatus.dL_scheduling_PDCCH_CCE_usage p_dL_scheduling_PDCCH_CCE_usage := *,
                                                                                        template EUTRAN_RadioResourceStatus.uL_scheduling_PDCCH_CCE_usage p_uL_scheduling_PDCCH_CCE_usage := *,
                                                                                        template EUTRAN_RadioResourceStatus.iE_Extensions p_iE_Extensions := *
                                                                                        ) := {
                dL_GBR_PRB_usage              := p_dL_GBR_PRB_usage,
                uL_GBR_PRB_usage              := p_uL_GBR_PRB_usage,
                dL_non_GBR_PRB_usage          := p_dL_non_GBR_PRB_usage,
                uL_non_GBR_PRB_usage          := p_uL_non_GBR_PRB_usage,
                dL_Total_PRB_usage            := p_dL_Total_PRB_usage,
                uL_Total_PRB_usage            := p_uL_Total_PRB_usage,
                dL_scheduling_PDCCH_CCE_usage := p_dL_scheduling_PDCCH_CCE_usage,
                uL_scheduling_PDCCH_CCE_usage := p_uL_scheduling_PDCCH_CCE_usage,
                iE_Extensions                 := p_iE_Extensions
            } // End of template mw_eUTRAN_RadioResourceStatus
            template (present) NGRAN_ReportingStatusIEs mw_nGRAN_ReportingStatusIEs(
                                                                                    template (present) NGRAN_CellReportList p_nGRAN_CellReportList := ?,
                                                                                    template NGRAN_ReportingStatusIEs.iE_Extensions p_iE_Extensions := *
                                                                                    ) := {
                nGRAN_CellReportList := p_nGRAN_CellReportList,
                iE_Extensions        := p_iE_Extensions
            } // End of template mw_nGRAN_ReportingStatusIEs
            template (present) NGRAN_CellReportItem mw_nGRAN_CellReportItem(
                                                                            template (present) NGRAN_CGI p_nGRAN_CGI,
                                                                            template (present) EUTRAN_CompositeAvailableCapacityGroup p_nGRAN_CompositeAvailableCapacityGroup := ?,
                                                                            template NGRAN_NumberOfActiveUEs p_nGRAN_NumberOfActiveUEs := *,
                                                                            template NGRAN_NoofRRCConnections p_nGRAN_NoofRRCConnections := *,
                                                                            template NGRAN_RadioResourceStatus p_nGRAN_RadioResourceStatus := *,
                                                                            template NGRAN_CellReportItem.iE_Extensions p_iE_Extensions := *
                                                                            ) := {
                nGRAN_CGI                             := p_nGRAN_CGI,
                nGRAN_CompositeAvailableCapacityGroup := p_nGRAN_CompositeAvailableCapacityGroup,
                nGRAN_NumberOfActiveUEs               := p_nGRAN_NumberOfActiveUEs,
                nGRAN_NoofRRCConnections              := p_nGRAN_NoofRRCConnections,
                nGRAN_RadioResourceStatus             := p_nGRAN_RadioResourceStatus,
                iE_Extensions                         := p_iE_Extensions
            } // End of template mw_nGRAN_CellReportItem
            template (present) NGRAN_RadioResourceStatus mw_nGRAN_RadioResourceStatus(
                                                                                      template (present) NGRAN_RadioResourceStatus.dL_GBR_PRB_usage_for_MIMO p_dL_GBR_PRB_usage_for_MIMO := ?,
                                                                                      template (present) NGRAN_RadioResourceStatus.uL_GBR_PRB_usage_for_MIMO p_uL_GBR_PRB_usage_for_MIMO := ?,
                                                                                      template (present) NGRAN_RadioResourceStatus.dL_non_GBR_PRB_usage_for_MIMO p_dL_non_GBR_PRB_usage_for_MIMO := ?,
                                                                                      template (present) NGRAN_RadioResourceStatus.uL_non_GBR_PRB_usage_for_MIMO p_uL_non_GBR_PRB_usage_for_MIMO := ?,
                                                                                      template (present) NGRAN_RadioResourceStatus.dL_Total_PRB_usage_for_MIMO p_dL_Total_PRB_usage_for_MIMO := ?,
                                                                                      template (present) NGRAN_RadioResourceStatus.uL_Total_PRB_usage_for_MIMO p_uL_Total_PRB_usage_for_MIMO := ?,
                                                                                      template NGRAN_RadioResourceStatus.iE_Extensions p_iE_Extensions := *
                                                                                      ) := {
                dL_GBR_PRB_usage_for_MIMO     := p_dL_GBR_PRB_usage_for_MIMO,
                uL_GBR_PRB_usage_for_MIMO     := p_uL_GBR_PRB_usage_for_MIMO,
                dL_non_GBR_PRB_usage_for_MIMO := p_dL_non_GBR_PRB_usage_for_MIMO,
                uL_non_GBR_PRB_usage_for_MIMO := p_uL_non_GBR_PRB_usage_for_MIMO,
                dL_Total_PRB_usage_for_MIMO   := p_dL_Total_PRB_usage_for_MIMO,
                uL_Total_PRB_usage_for_MIMO   := p_uL_Total_PRB_usage_for_MIMO,
                iE_Extensions                 := p_iE_Extensions
            } // End of template mw_nGRAN_RadioResourceStatus

            template (present) InterSystemHOReport mw_interSystemHOReport(
                                                                          template (present) InterSystemHandoverReportType p_handoverReportType := ?,
                                                                          template InterSystemHOReport.iE_Extensions p_iE_Extensions := *
                                                                          ) := {
                handoverReportType := p_handoverReportType,
                iE_Extensions      := p_iE_Extensions
            } // End of template mw_interSystemHOReport
            template (present) InterSystemHandoverReportType mw_interSystemHandoverReportType_tooearlyIntersystemHO(
                                                                                                                    template (present) TooearlyIntersystemHO p_tooearlyIntersystemHO := ?
                                                                                                                    ) := {
                tooearlyIntersystemHO := p_tooearlyIntersystemHO
            } // End of template mw_interSystemHandoverReportType_tooearlyIntersystemHO
            template (present) InterSystemHandoverReportType mw_interSystemHandoverReportType_intersystemUnnecessaryHO(
                                                                                                                       template (present) IntersystemUnnecessaryHO p_intersystemUnnecessaryHO := ?
                                                                                                                       ) := {
                intersystemUnnecessaryHO := p_intersystemUnnecessaryHO
            } // End of template mw_interSystemHandoverReportType_intersystemUnnecessaryHO
            template (present) InterSystemHandoverReportType mw_interSystemHandoverReportType_choice_Extensions(
                                                                                                                template (present) InterSystemHandoverReportType.choice_Extensions p_choice_Extensions := ?
                                                                                                                ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_interSystemHandoverReportType_choice_Extensions
            template (present) IntersystemUnnecessaryHO mw_intersystemUnnecessaryHO(
                                                                                    template (present) NGRAN_CGI p_sourcecellID := ?,
                                                                                    template (present) EUTRA_CGI p_targetcellID := ?,
                                                                                    template (present) IntersystemUnnecessaryHO.earlyIRATHO p_earlyIRATHO := ?,
                                                                                    template (present) CandidateCellList p_candidateCellList := ?,
                                                                                    template IntersystemUnnecessaryHO.iE_Extensions p_iE_Extensions := *
                                                                                    ) := {
                sourcecellID      := p_sourcecellID,
                targetcellID      := p_targetcellID,
                earlyIRATHO       := p_earlyIRATHO,
                candidateCellList := p_candidateCellList,
                iE_Extensions     := p_iE_Extensions
            } // End of template mw_intersystemUnnecessaryHO
            template (present) LAI mw_lai(
                                          template (present) PLMNIdentity p_pLMNidentity := ?,
                                          template (present) LAC p_lAC := ?,
                                          template LAI.iE_Extensions p_iE_Extensions := *
                                          ) := {
                pLMNidentity  := p_pLMNidentity,
                lAC           := p_lAC,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_lai
            template (present) LastVisitedCellInformation mw_interSystemHandoverReportType_nGRANCell(
                                                                                                     template (present) LastVisitedNGRANCellInformation p_nGRANCell := ?
                                                                                                     ) := {
                nGRANCell := p_nGRANCell
            } // End of template mw_interSystemHandoverReportType_nGRANCell
            template (present) LastVisitedCellInformation mw_interSystemHandoverReportType_eUTRANCell(
                                                                                                      template (present) LastVisitedEUTRANCellInformation p_eUTRANCell := ?
                                                                                                      ) := {
                eUTRANCell := p_eUTRANCell
            } // End of template mw_interSystemHandoverReportType_eUTRANCell
            template (present) LastVisitedCellInformation mw_interSystemHandoverReportType_uTRANCell(
                                                                                                     template (present) LastVisitedUTRANCellInformation p_uTRANCell := ?
                                                                                                     ) := {
                uTRANCell := p_uTRANCell
            } // End of template mw_interSystemHandoverReportType_uTRANCell
            template (present) LastVisitedCellInformation mw_interSystemHandoverReportType_gERANCell(
                                                                                                     template (present) LastVisitedGERANCellInformation p_gERANCell := ?
                                                                                                     ) := {
                gERANCell := p_gERANCell
            } // End of template mw_interSystemHandoverReportType_gERANCell
            template (present) LastVisitedCellInformation mw_lastVisitedCellInformation_choice_Extensions(
                                                                                                          template (present) LastVisitedCellInformation.choice_Extensions p_choice_Extensions := ?
                                                                                                          ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_lastVisitedCellInformation_choice_Extensions
            template (present) LastVisitedCellItem mw_lastVisitedCellItem(
                                                                          template (present) LastVisitedCellInformation p_lastVisitedCellInformation := ?,
                                                                          template LastVisitedCellItem.iE_Extensions p_iE_Extensions := *
                                                                          ) := {
                lastVisitedCellInformation := p_lastVisitedCellInformation,
                iE_Extensions              := p_iE_Extensions
            } // End of template mw_lastVisitedCellItem
            template (present) LastVisitedNGRANCellInformation mw_lastVisitedNGRANCellInformation(
                                                                                                  template (present) NGRAN_CGI p_globalCellID := ?,
                                                                                                  template (present) CellType p_cellType := ?,
                                                                                                  template (present) TimeUEStayedInCell p_timeUEStayedInCell := ?,
                                                                                                  template TimeUEStayedInCellEnhancedGranularity p_timeUEStayedInCellEnhancedGranularity := *,
                                                                                                  template Cause p_hOCauseValue := *,
                                                                                                  template LastVisitedNGRANCellInformation.iE_Extensions p_iE_Extensions := *
                                                                                                  ) := {
                globalCellID                          := p_globalCellID,
                cellType                              := p_cellType,
                timeUEStayedInCell                    := p_timeUEStayedInCell,
                timeUEStayedInCellEnhancedGranularity := p_timeUEStayedInCellEnhancedGranularity,
                hOCauseValue                          := p_hOCauseValue,
                iE_Extensions                         := p_iE_Extensions
            } // End of template mw_lastVisitedNGRANCellInformation
            template (present) LastVisitedNGRANCellInformation.iE_Extensions mw_lastVisitedNGRANCellInformation_id_LastVisitedPSCellList(
                                                                                                                                         template (present) LastVisitedPSCellList p_lastVisitedPSCellList := ?
                                                                                                                                         ) := {
                { 
                    id             := id_LastVisitedPSCellList,
                    criticality    := ignore,
                    extensionValue := { LastVisitedPSCellList := p_lastVisitedPSCellList }	
                }
            } // End of template mw_lastVisitedNGRANCellInformation_id_LastVisitedPSCellList
            template (present) LastVisitedPSCellInformation mw_LastVisitedPSCellInformation(
                                                                                            template (present) NGRAN_CGI p_pSCellID := ?,
                                                                                            template (present) LastVisitedPSCellInformation.timeStay p_timeStay := ?,
                                                                                            template LastVisitedPSCellInformation.iE_Extensions p_iE_Extensions := *
                                                                                            ) := {
                pSCellID      := p_pSCellID,
                timeStay      := p_timeStay,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_LastVisitedPSCellInformation
            template (present) LineType mw_lineType(template (present) LineType p_value := pon) := p_value;
            template (present) LocationReportingAdditionalInfo mw_locationReportingAdditionalInfo(template (present) LocationReportingAdditionalInfo p_value := includePSCell) := p_value;
            template (present) LocationReportingRequestType mw_locationReportingRequestType(
                                                                                            template (present) EventType p_eventType := ?,
                                                                                            template (present) ReportArea p_reportArea := ?,
                                                                                            template AreaOfInterestList p_areaOfInterestList := *,
                                                                                            template LocationReportingReferenceID p_locationReportingReferenceIDToBeCancelled := *,
                                                                                            template LocationReportingRequestType.iE_Extensions p_iE_Extensions := *
                                                                                            ) := {
                eventType                                 := p_eventType,
                reportArea                                := p_reportArea,
                areaOfInterestList                        := p_areaOfInterestList,
                locationReportingReferenceIDToBeCancelled := p_locationReportingReferenceIDToBeCancelled,
                // The above IE shall be present if the event type is set to “stop reporting UE presence in the area of interest”
                iE_Extensions                             := p_iE_Extensions
            } // End of template mw_locationReportingRequestType
            template (present) LocationReportingRequestType.iE_Extensions mw_locationReportingRequestType_id_LocationReportingAdditionalInfo(
                                                                                                                                             template (present) LocationReportingAdditionalInfo p_locationReportingAdditionalInfo := ?
                                                                                                                                             ) := {
                { 
                    id             := id_LocationReportingAdditionalInfo,
                    criticality    := ignore,
                    extensionValue := { LocationReportingAdditionalInfo := p_locationReportingAdditionalInfo }	
                }
            } // End of template mw_locationReportingRequestType_id_LocationReportingAdditionalInfo

            template (present) LoggedMDTNr mw_loggedMDTNr(
                                                          template (present) LoggingInterval p_loggingInterval := ?,
                                                          template (present) LoggingDuration p_loggingDuration := ?,
                                                          template (present) LoggedMDTTrigger p_loggedMDTTrigger := ?,
                                                          template BluetoothMeasurementConfiguration p_bluetoothMeasurementConfiguration := *,
                                                          template WLANMeasurementConfiguration p_wLANMeasurementConfiguration := *,
                                                          template SensorMeasurementConfiguration p_sensorMeasurementConfiguration := *,
                                                          template AreaScopeOfNeighCellsList p_areaScopeOfNeighCellsList := *,
                                                          template LoggedMDTNr.iE_Extensions p_iE_Extensions := *
                                                          ) := {
                loggingInterval                   := p_loggingInterval,
                loggingDuration                   := p_loggingDuration,
                loggedMDTTrigger                  := p_loggedMDTTrigger,
                bluetoothMeasurementConfiguration := p_bluetoothMeasurementConfiguration,
                wLANMeasurementConfiguration      := p_wLANMeasurementConfiguration,
                sensorMeasurementConfiguration    := p_sensorMeasurementConfiguration,
                areaScopeOfNeighCellsList         := p_areaScopeOfNeighCellsList,
                iE_Extensions                     := p_iE_Extensions
            } // End of template mw_loggedMDTNr
            template (present) LoggingInterval mw_loggingInterval(template (present) LoggingInterval p_value := ?) := p_value;
            template (present) LoggingDuration mw_loggingDuration(template (present) LoggingDuration p_value := ?) := p_value;
            template (present) Links_to_log mw_Links_to_log(template (present) Links_to_log p_value := ?) := p_value;
            template (present) LoggedMDTTrigger mw_loggedMDTTrigger_gERANCell(
                                                                              template (present) EventTrigger p_eventTrigger := ?
                                                                              ) := {
                eventTrigger := p_eventTrigger
            } // End of template mw_loggedMDTTrigger_gERANCell
            template (present) LoggedMDTTrigger mw_loggedMDTTrigger_choice_Extensions(
                                                                                      template (present) LoggedMDTTrigger.choice_Extensions p_choice_Extensions := ?
                                                                                      ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_loggedMDTTrigger_choice_Extensions
            template (present) LTEM_Indication mw_lTEM_Indication(template (present) LTEM_Indication p_value := lte_m) := p_value;
            template LTEV2XServicesAuthorized mw_lTEV2XServicesAuthorized(
                                                                          template VehicleUE p_vehicleUE := *,
                                                                          template PedestrianUE p_pedestrianUE:= *,
                                                                          template LTEV2XServicesAuthorized.iE_Extensions p_iE_Extensions := *
                                                                          ) := {
                vehicleUE     := p_vehicleUE,
                pedestrianUE  := p_pedestrianUE,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_lTEV2XServicesAuthorized
            template (present) LTEUESidelinkAggregateMaximumBitrate mw_lTEUESidelinkAggregateMaximumBitrate(
                                                                                                            template (present) BitRate p_uESidelinkAggregateMaximumBitRate := ?,
                                                                                                            template LTEUESidelinkAggregateMaximumBitrate.iE_Extensions p_iE_Extensions := *
                                                                                                            ) := {
                uESidelinkAggregateMaximumBitRate := p_uESidelinkAggregateMaximumBitRate,
                iE_Extensions                     := p_iE_Extensions
            } // End of template mw_lTEUESidelinkAggregateMaximumBitrate
            template (present) MaximumIntegrityProtectedDataRate mw_maximumIntegrityProtectedDataRate(template (present) MaximumIntegrityProtectedDataRate p_value := ?) := p_value;
            template (present) MBS_DataForwardingResponseMRBItem mw_mBS_DataForwardingResponseMRBItem(
                                                                                                      template (present) MRB_ID p_mRB_ID := ?,
                                                                                                      template (present) UPTransportLayerInformation p_dL_Forwarding_UPTNLInformation := ?,
                                                                                                      template MRB_ProgressInformation p_mRB_ProgressInformation := *,
                                                                                                      template MBS_DataForwardingResponseMRBItem.iE_Extensions p_iE_Extensions := *
                                                                                                      ) := {
                mRB_ID                         := p_mRB_ID,
                dL_Forwarding_UPTNLInformation := p_dL_Forwarding_UPTNLInformation,
                mRB_ProgressInformation        := p_mRB_ProgressInformation,
                iE_Extensions                  := p_iE_Extensions
            } // End of template mw_mBS_DataForwardingResponseMRBItem
            template (present) MBS_MappingandDataForwardingRequestItem mw_mBS_MappingandDataForwardingRequestItem(
                                                                                                                  template (present) MRB_ID p_mRB_ID := ?,
                                                                                                                  template (present) MBS_QoSFlowList p_mBS_QoSFlowList := ?,
                                                                                                                  template MRB_ProgressInformation p_mRB_ProgressInformation := *,
                                                                                                                  template MBS_MappingandDataForwardingRequestItem.iE_Extensions p_iE_Extensions := *
                                                                                                                  ) := {
                mRB_ID                  := p_mRB_ID,
                mBS_QoSFlowList         := p_mBS_QoSFlowList,
                mRB_ProgressInformation := p_mRB_ProgressInformation,
                iE_Extensions           := p_iE_Extensions
            } // End of template mw_mBS_MappingandDataForwardingRequestItem
            template (present) MRB_ProgressInformation mw_mRB_ProgressInformation_pDCP_SN_Length12(
                                                                                                   template (present) MRB_ProgressInformation.pDCP_SN_Length12 p_pDCP_SN_Length12 := ?
                                                                                                   ) := {
                pDCP_SN_Length12 := p_pDCP_SN_Length12
            } // End of template mw_mRB_ProgressInformation_pDCP_SN_Length12
            template (present) MRB_ProgressInformation mw_mRB_ProgressInformation_pDCP_SN_Length18(
                                                                                                   template (present) MRB_ProgressInformation.pDCP_SN_Length18 p_pDCP_SN_Length18 := ?
                                                                                                   ) := {
                pDCP_SN_Length18 := p_pDCP_SN_Length18
            } // End of template m_mRB_ProgressInformation_pDCP_SN_Length18
            template (present) MRB_ProgressInformation mw_mRB_ProgressInformation_choice_Extensions(
                                                                                                    template (present) MRB_ProgressInformation.choice_Extensions p_choice_Extensions := ?
                choice_Extensions := p_choice_Extensions
            } // End of template mw_mRB_ProgressInformation_choice_Extensions
            template (present) MBS_QoSFlowsToBeSetupItem mw_mBS_QoSFlowsToBeSetupItem(
                                                                                      template (present)QosFlowIdentifier p_mBSqosFlowIdentifier := ?,
                                                                                      template (present)QosFlowLevelQosParameters p_mBSqosFlowLevelQosParameters := ?,
                                                                                      template MBS_QoSFlowsToBeSetupItem.iE_Extensions p_iE_Extensions := *
                                                                                      ) := {
                mBSqosFlowIdentifier         := p_mBSqosFlowIdentifier,
                mBSqosFlowLevelQosParameters := p_mBSqosFlowLevelQosParameters,
                iE_Extensions                := p_iE_Extensions
            } // End of template mw_mBS_QoSFlowsToBeSetupItem
            template (present) MBS_ServiceArea mw_mBS_ServiceArea_locationindependent(
                                                                                      template (present) MBS_ServiceAreaInformation p_locationindependent := ?
                                                                                      ) := {
                locationindependent := p_locationindependent
            } // End of template mw_mBS_ServiceArea_locationindependent
            template (present) MBS_ServiceArea mw_mBS_ServiceArea_locationdependent(
                                                                                    template (present) MBS_ServiceAreaInformationList p_locationdependent := ?
                                                                                    ) := {
                locationdependent := p_locationdependent
            } // End of template mw_mBS_ServiceArea_locationdependent
            template (present) MBS_ServiceArea mw_mBS_ServiceArea_choice_Extensions(
                                                                                    template (present) MBS_ServiceArea.choice_Extensions p_choice_Extensions := ?
                                                                                    ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_mBS_ServiceArea_choice_Extensions
            template (present) MBS_ServiceAreaInformationItem mw_mBS_ServiceAreaInformationItem(
                                                                                                template (present) MBS_AreaSessionID p_mBS_AreaSessionID := ?,
                                                                                                template (present) MBS_ServiceAreaInformation p_mBS_ServiceAreaInformation := ?,
                                                                                                template MBS_ServiceAreaInformationItem.iE_Extensions p_iE_Extensions := *
                                                                                                ) := {
                mBS_AreaSessionID          := p_mBS_AreaSessionID,
                mBS_ServiceAreaInformation := p_mBS_ServiceAreaInformation,
                iE_Extensions              := p_iE_Extensions
            } // End of template mw_mBS_ServiceAreaInformationItem
            template MBS_ServiceAreaInformation mw_mBS_ServiceAreaInformation(
                                                                              template MBS_ServiceAreaCellList p_mBS_ServiceAreaCellList := *,
                                                                              template MBS_ServiceAreaTAIList p_mBS_ServiceAreaTAIList := *,
                                                                              template MBS_ServiceAreaInformation.iE_Extensions p_iE_Extensions := *
                                                                              ) := {
                mBS_ServiceAreaCellList := p_mBS_ServiceAreaCellList,
                mBS_ServiceAreaTAIList  := p_mBS_ServiceAreaTAIList,
                iE_Extensions           := p_iE_Extensions
            } // End of template mw_mBS_ServiceAreaInformation
            template (present) MBS_SessionID mw_mBS_SessionID(
                                                              template (present) TMGI p_tMGI := ?,
                                                              template NID p_nID := *,
                                                              template MBS_SessionID.iE_Extensions p_iE_Extensions := *
                                                              ) := {
                tMGI          := p_tMGI,
                nID           := p_nID,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_mBS_SessionID
            template (present) MBSSessionFailedtoSetupItem mw_mBSSessionFailedtoSetupItem(
                                                                                          template (present) MBS_SessionID p_mBS_SessionID := ?,
                                                                                          template (present) Cause p_cause := ?,
                                                                                          template MBS_AreaSessionID p_mBS_AreaSessionID := *,
                                                                                          template MBSSessionFailedtoSetupItem.iE_Extensions p_iE_Extensions := *
                                                                                      ) := {
                mBS_SessionID     := p_mBS_SessionID,
                mBS_AreaSessionID := p_mBS_AreaSessionID,
                cause             := p_cause,
                iE_Extensions     := p_iE_Extensions
            } // End of template mw_mBSSessionFailedtoSetupItem

            template (present) MBS_ActiveSessionInformation_SourcetoTargetItem mw_mBS_ActiveSessionInformation_SourcetoTargetItem(
                                                                                                                                  template (present) MBS_SessionID p_mBS_SessionID := ?,
                                                                                                                                  template (present) MBS_QoSFlowsToBeSetupList p_mBS_QoSFlowsToBeSetupList := ?,
                                                                                                                                  template MBS_AreaSessionID p_mBS_AreaSessionID := *,
                                                                                                                                  template MBS_ServiceArea p_mBS_ServiceArea := *,
                                                                                                                                  template MBS_MappingandDataForwardingRequestList p_mBS_MappingandDataForwardingRequestList := *,
                                                                                                                                  template MBS_ActiveSessionInformation_SourcetoTargetItem.iE_Extensions p_iE_Extensions := *
                                                                                                                                  ):= {
                mBS_SessionID                           := p_mBS_SessionID,
                mBS_AreaSessionID                       := p_mBS_AreaSessionID,
                mBS_ServiceArea                         := p_mBS_ServiceArea,
                mBS_QoSFlowsToBeSetupList               := p_mBS_QoSFlowsToBeSetupList,
                mBS_MappingandDataForwardingRequestList := p_mBS_MappingandDataForwardingRequestList,
                iE_Extensions                           := p_iE_Extensions
            } // End of template mw_mBS_ActiveSessionInformation_SourcetoTargetItem

            template (present) MBS_ActiveSessionInformation_TargettoSourceItem mw_mBS_ActiveSessionInformation_TargettoSourceItem(
                                                                                                                                  template (present) MBS_SessionID p_mBS_SessionID := ?,
                                                                                                                                  template MBS_DataForwardingResponseMRBList p_mBS_DataForwardingResponseMRBList := *,
                                                                                                                                  template MBS_ActiveSessionInformation_TargettoSourceItem.iE_Extensions p_iE_Extensions := *
                                                                                                                                  ) := {
                mBS_SessionID                     := p_mBS_SessionID,
                mBS_DataForwardingResponseMRBList := p_mBS_DataForwardingResponseMRBList,
                iE_Extensions                     := p_iE_Extensions
            } // End of template mw_mBS_ActiveSessionInformation_TargettoSourceItem
            template (present) MBSSessionSetupOrModFailureTransfer mw_mBSSessionSetupOrModFailureTransfer(
                                                                                                          template (present) Cause p_cause := ?,
                                                                                                          template CriticalityDiagnostics p_criticalityDiagnostics := *,
                                                                                                          template MBSSessionSetupOrModFailureTransfer.iE_Extensions p_iE_Extensions := *
                                                                                                          ) := {
                cause                  := p_cause,
                criticalityDiagnostics := p_criticalityDiagnostics,
                iE_Extensions          := p_iE_Extensions
            } // End of template mw_mBSSessionSetupOrModFailureTransfer
            template (present) MBSSessionSetupResponseItem mw_mBSSessionSetupResponseItem(
                                                                                          template (present) MBS_SessionID p_mBS_SessionID := ?,
                                                                                          template MBS_AreaSessionID p_mBS_AreaSessionID := *,
                                                                                          template MBSSessionSetupResponseItem.iE_Extensions p_iE_Extensions := *
                                                                                          ) := {
                mBS_SessionID     := p_mBS_SessionID,
                mBS_AreaSessionID := p_mBS_AreaSessionID,
                iE_Extensions     := p_iE_Extensions
            } // End of template mw_mBSSessionSetupResponseItem
            template (present) MBSSessionSetupOrModRequestTransfer mw_mBSSessionSetupOrModRequestTransfer(
                                                                                                          template (present) MBSSessionSetupOrModRequestTransfer.protocolIEs p_protocolIEs := ?
                                                                                                          ) := {
                protocolIEs := p_protocolIEs
            } // End of template mw_mBSSessionSetupOrModRequestTransfer
            template (present) MBSSessionSetupOrModRequestTransfer.protocolIEs mw_mBSSessionSetupOrModRequestTransfer_id_MBS_SessionTNLInfo5GC(
                                                                                                                                               template (present) MBS_SessionTNLInfo5GC p_mBS_SessionTNLInfo5GC := ?
                                                                                                                                               ) := {
                { 
                    id          := id_MBS_SessionTNLInfo5GC,
                    criticality := reject,
                    value_      := { MBS_SessionTNLInfo5GC := p_mBS_SessionTNLInfo5GC }	
                }
            } // End of template mw_mBSSessionSetupOrModRequestTransfer_id_MBS_SessionTNLInfo5GC
            template (present) MBSSessionSetupOrModRequestTransfer.protocolIEs mw_mBSSessionSetupOrModRequestTransfer_id_MBS_QoSFlowsToBeSetupModList(
                                                                                                                                                      template (present) MBS_QoSFlowsToBeSetupList p_mBS_QoSFlowsToBeSetupList := ?
                                                                                                                                                      ) := {
                { 
                    id          := id_MBS_QoSFlowsToBeSetupModList,
                    criticality := reject,
                    value_      := { MBS_QoSFlowsToBeSetupList := p_mBS_QoSFlowsToBeSetupList }	
                }
            } // End of template mw_mBSSessionSetupOrModRequestTransfer_id_MBS_QoSFlowsToBeSetupModList
            template (present) MBSSessionSetupOrModRequestTransfer.protocolIEs mw_mBSSessionSetupOrModRequestTransfer_id_MBS_SessionFSAIDList(
                                                                                                                                              template (present) MBS_SessionFSAIDList p_mBS_SessionFSAIDList := ?
                                                                                                                                              ) := {
                { 
                    id          := id_MBS_SessionFSAIDList,
                    criticality := ignore,
                    value_      := { MBS_SessionFSAIDList := p_mBS_SessionFSAIDList }	
                }
            } // End of template mw_mBSSessionSetupOrModRequestTransfer_id_MBS_SessionFSAIDList
            template MBSSessionReleaseResponseTransfer mw_mBSSessionReleaseResponseTransfer(
                                                                                            template MBS_SessionTNLInfoNGRAN p_mBS_SessionTNLInfoNGRAN := *,
                                                                                            template MBSSessionReleaseResponseTransfer.iE_Extensions p_iE_Extensions := *
                                                                                            ) := {
                mBS_SessionTNLInfoNGRAN := p_mBS_SessionTNLInfoNGRAN,
                iE_Extensions           := p_iE_Extensions
            } // End of template mw_mBSSessionReleaseResponseTransfer
            template MBSSessionSetupOrModResponseTransfer mw_mBSSessionSetupOrModResponseTransfer(
                                                                                                  template MBS_SessionTNLInfoNGRAN p_mBS_SessionTNLInfoNGRAN := *,
                                                                                                  template MBSSessionSetupOrModResponseTransfer.iE_Extensions p_iE_Extensions := *
                                                                                                  ) := {
                mBS_SessionTNLInfoNGRAN := p_mBS_SessionTNLInfoNGRAN,
                iE_Extensions           := p_iE_Extensions
            } // End of template mw_mBSSessionSetupOrModResponseTransfer
            template (present) MBS_SupportIndicator mw_mBS_SupportIndicator(template (present) MBS_SupportIndicator p_value := true_) := p_value;
            template (present) MBS_SessionTNLInfo5GC mw_mBS_SessionTNLInfo5GC_locationindependent(
                                                                                                  template (present) SharedNGU_MulticastTNLInformation p_locationindependent := ?
                                                                                                  ) := {
                locationindependent := p_locationindependent
            } // End of template mw_mBS_SessionTNLInfo5GC_locationindependent
            template (present) MBS_SessionTNLInfo5GC mw_mBS_SessionTNLInfo5GC_locationdependent(
                                                                                                template (present) MBS_SessionTNLInfo5GCList p_locationdependent := ?
                locationdependent := p_locationdependent
            } // End of template mw_mBS_SessionTNLInfo5GC_locationdependent
            template (present) MBS_SessionTNLInfo5GC mw_mBS_SessionTNLInfo5GC_choice_Extensions(
                                                                                                template (present) MBS_SessionTNLInfo5GC.choice_Extensions p_choice_Extensions := ?
                                                                                                ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_mBS_SessionTNLInfo5GC_choice_Extensions
            template (present) MBS_SessionTNLInfo5GCItem mw_mBS_SessionTNLInfo5GCItem(
                                                                                      template (present) MBS_AreaSessionID p_mBS_AreaSessionID := ?,
                                                                                      template (present) SharedNGU_MulticastTNLInformation p_sharedNGU_MulticastTNLInformation := ?,
                                                                                      template MBS_SessionTNLInfo5GCItem.iE_Extensions p_iE_Extensions := *
                                                                                      ) := {
                mBS_AreaSessionID                 := p_mBS_AreaSessionID,
                sharedNGU_MulticastTNLInformation := p_sharedNGU_MulticastTNLInformation,
                iE_Extensions                     := p_iE_Extensions
            } // End of template mw_mBS_SessionTNLInfo5GCItem
            template (present) MBS_SessionTNLInfoNGRAN mw_mBS_SessionTNLInfoNGRAN_locationindependent(
                                                                                                      template (present) UPTransportLayerInformation p_locationindependent := ?
                                                                                                      ) := {
                locationindependent := p_locationindependent
            } // End of template mw_mBS_SessionTNLInfoNGRAN_locationindependent
            template (present) MBS_SessionTNLInfoNGRAN mw_mBS_SessionTNLInfoNGRAN_locationdependent(
                                                                                                    template (present) MBS_SessionTNLInfoNGRANList p_locationdependent := ?
                                                                                                    ) := {
                locationdependent := p_locationdependent
            } // End of template mw_mBS_SessionTNLInfoNGRAN_locationdependent
            template (present) MBS_SessionTNLInfoNGRAN mw_mBS_SessionTNLInfoNGRAN_choice_Extensions(
                                                                                                    template (present) MBS_SessionTNLInfoNGRAN.choice_Extensions p_choice_Extensions := ?
                                                                                                    ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_mBS_SessionTNLInfoNGRAN_choice_Extensions
            template (present) MBS_SessionTNLInfoNGRANItem mw_mBS_SessionTNLInfoNGRANItem(
                                                                                          template (present) MBS_AreaSessionID p_mBS_AreaSessionID := ?,
                                                                                          template UPTransportLayerInformation p_sharedNGU_UnicastTNLInformation := *,
                                                                                          template MBS_SessionTNLInfoNGRANItem.iE_Extensions p_iE_Extensions := *
                                                                                          ) := {
                mBS_AreaSessionID               := p_mBS_AreaSessionID,
                sharedNGU_UnicastTNLInformation := p_sharedNGU_UnicastTNLInformation,
                iE_Extensions                   := p_iE_Extensions
            } // End of template mw_mBS_SessionTNLInfoNGRANItem

            template (present) MBS_DistributionReleaseRequestTransfer mw_mBS_DistributionReleaseRequestTransfer(
                                                                                                                template (present) MBS_SessionID p_mBS_SessionID := ?,
                                                                                                                template (present) Cause p_cause := ?,
                                                                                                                template MBS_AreaSessionID p_mBS_AreaSessionID := *,
                                                                                                                template UPTransportLayerInformation p_sharedNGU_UnicastTNLInformation := *,
                                                                                                                template MBS_DistributionReleaseRequestTransfer.iE_Extensions p_iE_Extensions := *
                                                                                                                ) := {
                mBS_SessionID                   := p_mBS_SessionID,
                mBS_AreaSessionID               := p_mBS_AreaSessionID,
                sharedNGU_UnicastTNLInformation := p_sharedNGU_UnicastTNLInformation,
                cause                           := p_cause,
                iE_Extensions                   := p_iE_Extensions
            } // End of template mw_mBS_DistributionReleaseRequestTransfer
            template (present) MBS_DistributionSetupRequestTransfer mw_mBS_DistributionSetupRequestTransfer(
                                                                                                            template (present) MBS_SessionID p_mBS_SessionID := ?,
                                                                                                            template MBS_AreaSessionID p_mBS_AreaSessionID := *,
                                                                                                            template UPTransportLayerInformation p_sharedNGU_UnicastTNLInformation := *,
                                                                                                            template MBS_DistributionSetupRequestTransfer.iE_Extensions p_iE_Extensions := *
                                                                                                            ) := {
                mBS_SessionID                   := p_mBS_SessionID,
                mBS_AreaSessionID               := p_mBS_AreaSessionID,
                sharedNGU_UnicastTNLInformation := p_sharedNGU_UnicastTNLInformation,
                iE_Extensions                   := p_iE_Extensions
            } // End of template mw_mBS_DistributionSetupRequestTransfer

            template (present) MBS_DistributionSetupResponseTransfer mw_mBS_DistributionSetupResponseTransfer(
                                                                                                              template (present) MBS_SessionID p_mBS_SessionID := ?,
                                                                                                              template (present) MBS_QoSFlowsToBeSetupList p_mBS_QoSFlowsToBeSetupList := ?,
                                                                                                              template (present) MBSSessionStatus p_mBSSessionStatus := ?,
                                                                                                              template MBS_AreaSessionID p_mBS_AreaSessionID := *,
                                                                                                              template MBS_SessionTNLInfo5GCItem p_sharedNGU_MulticastTNLInformation := *,
                                                                                                              template MBS_ServiceArea p_mBS_ServiceArea := *,
                                                                                                              template MBS_DistributionSetupResponseTransfer.iE_Extensions p_iE_Extensions := *
                                                                                                              ) := {
                mBS_SessionID                     := p_mBS_SessionID,
                mBS_AreaSessionID                 := p_mBS_AreaSessionID,
                sharedNGU_MulticastTNLInformation := p_sharedNGU_MulticastTNLInformation,
                mBS_QoSFlowsToBeSetupList         := p_mBS_QoSFlowsToBeSetupList,
                mBSSessionStatus                  := p_mBSSessionStatus,
                mBS_ServiceArea                   := p_mBS_ServiceArea,
                iE_Extensions                     := p_iE_Extensions
            } // End of template mw_mBS_DistributionSetupResponseTransfer

            template (present) MBS_DistributionSetupUnsuccessfulTransfer mw_mBS_DistributionSetupUnsuccessfulTransfer(
                                                                                                                      template (present) MBS_SessionID p_mBS_SessionID := ?,
                                                                                                                      template (present) Cause p_cause := ?,
                                                                                                                      template MBS_AreaSessionID p_mBS_AreaSessionID := *,
                                                                                                                      template CriticalityDiagnostics p_criticalityDiagnostics := *,
                                                                                                                      template MBS_DistributionSetupUnsuccessfulTransfer.iE_Extensions p_iE_Extensions := *
                mBS_SessionID          := p_mBS_SessionID,
                mBS_AreaSessionID      := p_mBS_AreaSessionID,
                cause                  := p_cause,
                criticalityDiagnostics := p_criticalityDiagnostics,
                iE_Extensions          := p_iE_Extensions
            } // End of template mw_mBS_DistributionSetupUnsuccessfulTransfer

           template (present) MBSSessionSetupRequestItem mw_mBSSessionSetupRequestItem(
                                                                                       template (present) MBS_SessionID p_mBS_SessionID := ?,
                                                                                       template MBS_AreaSessionID p_mBS_AreaSessionID := *,
                                                                                       template AssociatedMBSQosFlowSetupRequestList p_associatedMBSQosFlowSetupRequestList := *,
                                                                                       template MBSSessionSetupRequestItem.iE_Extensions p_iE_Extensions := *
                                                                                       ):= {
                mBS_SessionID                        := p_mBS_SessionID,
                mBS_AreaSessionID                    := p_mBS_AreaSessionID,
                associatedMBSQosFlowSetupRequestList := p_associatedMBSQosFlowSetupRequestList,
                iE_Extensions                        := p_iE_Extensions
            } // End of template mw_mBSSessionSetupRequestItem

            template (present) MBSSessionSetuporModifyRequestItem mw_mBSSessionSetuporModifyRequestItem(
                                                                                                        template (present) MBS_SessionID p_mBS_SessionID := ?,
                                                                                                        template MBS_AreaSessionID p_mBS_AreaSessionID := *,
                                                                                                        template AssociatedMBSQosFlowSetuporModifyRequestList p_associatedMBSQosFlowSetuporModifyRequestList := *,
                                                                                                        template QosFlowListWithCause p_mBS_QosFlowToReleaseList := *,
                                                                                                        template MBSSessionSetuporModifyRequestItem.iE_Extensions p_iE_Extensions := *
                                                                                                        ) := {
                mBS_SessionID                                := p_mBS_SessionID,
                mBS_AreaSessionID                            := p_mBS_AreaSessionID,
                associatedMBSQosFlowSetuporModifyRequestList := p_associatedMBSQosFlowSetuporModifyRequestList,
                mBS_QosFlowToReleaseList                     := p_mBS_QosFlowToReleaseList,
                iE_Extensions                                := p_iE_Extensions
            } // End of template mw_mBSSessionSetuporModifyRequestItem

            template (present) MBSSessionToReleaseItem mw_mBSSessionToReleaseItem(
                                                                                  template (present) MBS_SessionID p_mBS_SessionID := ?,
                                                                                  template (present) Cause p_cause := ?,
                                                                                  template MBSSessionToReleaseItem.iE_Extensions p_iE_Extensions := *
                                                                                  ):= {
                mBS_SessionID := p_mBS_SessionID,
                cause         := p_cause,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_mBSSessionToReleaseItem
            template (present) MBSSessionStatus mw_mBSSessionStatus(template (present) MBSSessionStatus p_value := ?) := p_value;
            template (present) MicoAllPLMN mw_micoAllPLMN(template (present) MicoAllPLMN p_value := true_) := p_value;
            template (present) MICOModeIndication mw_mICOModeIndication(template (present) MICOModeIndication p_value := true_) := p_value;
            template (present) MobilityRestrictionList mw_mobilityRestrictionList(
                                                                                  template (present) PLMNIdentity p_servingPLMN := ?,
                                                                                  template EquivalentPLMNs p_equivalentPLMNs := *,
                                                                                  template RATRestrictions p_rATRestrictions := *,
                                                                                  template ForbiddenAreaInformation p_forbiddenAreaInformation := *,
                                                                                  template ServiceAreaInformation p_serviceAreaInformation := *,
                                                                                  template MobilityRestrictionList.iE_Extensions p_iE_Extensions := *
                                                                                  ) := {
                servingPLMN              := p_servingPLMN,
                equivalentPLMNs          := p_equivalentPLMNs,
                rATRestrictions          := p_rATRestrictions,
                forbiddenAreaInformation := p_forbiddenAreaInformation,
                serviceAreaInformation   := p_serviceAreaInformation,
                iE_Extensions            := p_iE_Extensions
            } // End of template mw_mobilityRestrictionList
            template (present) MobilityRestrictionList.iE_Extensions mw_mobilityRestrictionList_id_LastEUTRAN_PLMNIdentity(
                                                                                                                           template (present) PLMNIdentity p_pLMNIdentity := ?
                                                                                                                           ) := {
                { 
                    id             := id_LastEUTRAN_PLMNIdentity,
                    criticality    := ignore,
                    extensionValue := { PLMNIdentity := p_pLMNIdentity }	
                }
            } // End of template mw_mobilityRestrictionList_id_LastEUTRAN_PLMNIdentity
            template (present) MobilityRestrictionList.iE_Extensions mw_mobilityRestrictionList_id_CNTypeRestrictionsForServing(
                                                                                                                                template (present) CNTypeRestrictionsForServing p_cNTypeRestrictionsForServing := ?
                                                                                                                                ) := {
                { 
                    id             := id_CNTypeRestrictionsForServing,
                    criticality    := ignore,
                    extensionValue := { CNTypeRestrictionsForServing := p_cNTypeRestrictionsForServing }	
                }
            } // End of template mw_mobilityRestrictionList_id_CNTypeRestrictionsForServing
            template (present) MobilityRestrictionList.iE_Extensions mw_mobilityRestrictionList_id_CNTypeRestrictionsForEquivalent(
                                                                                                                                   template (present) CNTypeRestrictionsForEquivalent p_cNTypeRestrictionsForEquivalent := ?
                                                                                                                                   ) := {
                { 
                    id             := id_CNTypeRestrictionsForEquivalent,
                    criticality    := ignore,
                    extensionValue := { CNTypeRestrictionsForEquivalent := p_cNTypeRestrictionsForEquivalent }	
                }
            } // End of template mw_mobilityRestrictionList_id_CNTypeRestrictionsForEquivalent
            template (present) MobilityRestrictionList.iE_Extensions mw_mobilityRestrictionList_id_NPN_MobilityInformation(
                                                                                                                           template (present) NPN_MobilityInformation p_nPN_MobilityInformation := ?
                                                                                                                           ) := {
                { 
                    id             := id_NPN_MobilityInformation,
                    criticality    := reject,
                    extensionValue := { NPN_MobilityInformation := p_nPN_MobilityInformation }	
                }
            } // End of template mw_mobilityRestrictionList_id_NPN_MobilityInformation
            template (present) MDT_AlignmentInfo mw_mDT_AlignmentInfo_s_basedMDT(
                                                                                 template (present) NGRANTraceID p_s_basedMDT := ?
                                                                                 ) := {
                s_basedMDT := p_s_basedMDT
            } // End of template mw_mDT_AlignmentInfo_s_basedMDT
            template (present) MDT_AlignmentInfo mw_mDT_AlignmentInfo_choice_Extensions(
                                                                                        template (present) MDT_AlignmentInfo.choice_Extensions p_choice_Extensions := ?
                                                                                        ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_mDT_AlignmentInfo_choice_Extensions

            template MDT_Configuration mw_mDT_Configuration(
                                                            template MDT_Configuration_NR p_mdt_Config_NR := *,
                                                            template MDT_Configuration_EUTRA p_mdt_Config_EUTRA := *,
                                                            template MDT_Configuration.iE_Extensions p_iE_Extensions := *
                                                            ) := {
                mdt_Config_NR    := p_mdt_Config_NR,
                mdt_Config_EUTRA := p_mdt_Config_EUTRA,
                iE_Extensions    := p_iE_Extensions
            } // End of template mw_mDT_Configuration

            template (present) MDT_Configuration_NR mw_mDT_Configuration_NR(
                                                                            template (present) MDT_Activation p_mdt_Activation := ?,
                                                                            template (present) AreaScopeOfMDT_NR p_areaScopeOfMDT := ?,
                                                                            template (present) MDTModeNr p_mDTModeNr := ?,
                                                                            template MDTPLMNList p_signallingBasedMDTPLMNList := *,
                                                                            template MDT_Configuration_NR.iE_Extensions p_iE_Extensions := *
                                                                            ) := {
                mdt_Activation             := p_mdt_Activation,
                areaScopeOfMDT             := p_areaScopeOfMDT,
                mDTModeNr                  := p_mDTModeNr,
                signallingBasedMDTPLMNList := p_signallingBasedMDTPLMNList,
                iE_Extensions              := p_iE_Extensions
            } // End of template mw_mDT_Configuration_NR

            template (present) MDT_Configuration_EUTRA mw_mDT_Configuration_EUTRA(
                                                                                  template (present) MDT_Activation p_mdt_Activation := ?,
                                                                                  template (present) AreaScopeOfMDT_EUTRA p_areaScopeOfMDT := ?,
                                                                                  template (present) MDTModeEutra p_mDTMode := ?,
                                                                                  template MDTPLMNList p_signallingBasedMDTPLMNList := *,
                                                                                  template MDT_Configuration_EUTRA.iE_Extensions p_iE_Extensions := *
                                                                                  ) := {
                mdt_Activation             := p_mdt_Activation,
                areaScopeOfMDT             := p_areaScopeOfMDT,
                mDTMode                    := p_mDTMode,
                signallingBasedMDTPLMNList := p_signallingBasedMDTPLMNList,
                iE_Extensions              := p_iE_Extensions
            } // End of template mw_mDT_Configuration_EUTRA
            template (present) MDT_Activation mw_mDT_Activation(template (present) MDT_Activation p_value := ?) := p_value;
            template (present) MDTModeNr mw_mDTModeNro_immediateMDTNr(
                                                                      template (present) ImmediateMDTNr p_immediateMDTNr := ?
                                                                      ) := {
                immediateMDTNr := p_immediateMDTNr
            } // End of template mw_mDTModeNr_immediateMDTNr
            template (present) MDTModeNr mw_mDTModeNro_loggedMDTNr(
                                                                   template (present) LoggedMDTNr p_loggedMDTNr := ?
                                                                   ) := {
                loggedMDTNr := p_loggedMDTNr
            } // End of template mw_mDTModeNr_loggedMDTNr

            template (present) MDTModeNr mw_mDTModeNr_choice_Extensions(
                                                                        template (present) MDTModeNr.choice_Extensions p_choice_Extensions := ?
                                                                        ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_mDTModeNr_choice_Extensions
            template (present) MulticastSessionActivationRequestTransfer mw_multicastSessionActivationRequestTransfer(
                                                                                                                      template (present) MBS_SessionID p_mBS_SessionID := ?,
                                                                                                                      template MulticastSessionActivationRequestTransfer.iE_Extensions p_iE_Extensions := *
                                                                                                                      ) := {
                mBS_SessionID := p_mBS_SessionID,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_multicastSessionActivationRequestTransfer
            template (present) MulticastSessionDeactivationRequestTransfer mw_multicastSessionDeactivationRequestTransfer(
                                                                                                                          template (present) MBS_SessionID p_mBS_SessionID := ?,
                                                                                                                          template MulticastSessionDeactivationRequestTransfer.iE_Extensions p_iE_Extensions := *
                                                                                                                          ) := {
                mBS_SessionID := p_mBS_SessionID,
                iE_Extensions := p_iE_Extensions
            } // End of template mw_multicastSessionDeactivationRequestTransfer
            template (present) MulticastSessionUpdateRequestTransfer mw_multicastSessionUpdateRequestTransfer(
                                                                                                              template (present) MulticastSessionUpdateRequestTransfer.protocolIEs p_protocolIEs := ?
                                                                                                              ) := {
                protocolIEs := p_protocolIEs
            } // End of template mw_multicastSessionUpdateRequestTransfer
            template (present) MulticastSessionUpdateRequestTransfer.protocolIEs mw_multicastSessionUpdateRequestTransfer_id_MBS_SessionID(
                                                                                                                                           template (present) MBS_SessionID p_mBS_SessionID := ?
                                                                                                                                           ) := {
                { 
                    id          := id_MBS_SessionID,
                    criticality := reject,
                    value_      := { MBS_SessionID := p_mBS_SessionID }	
                }
            } // End of template mw_multicastSessionUpdateRequestTransfer_id_MBS_SessionID
            template (present) MulticastSessionUpdateRequestTransfer.protocolIEs mw_multicastSessionUpdateRequestTransfer_id_MBS_ServiceArea(
                                                                                                                                             template (present) MBS_ServiceArea p_mBS_ServiceArea := ?
                                                                                                                                             ) := {
                { 
                    id          := id_MBS_ServiceArea,
                    criticality := reject,
                    value_      := { MBS_ServiceArea := p_mBS_ServiceArea }	
                }
            } // End of template mw_multicastSessionUpdateRequestTransfer_id_MBS_ServiceArea
            template (present) MulticastSessionUpdateRequestTransfer.protocolIEs mw_multicastSessionUpdateRequestTransfer_id_MBS_QoSFlowsToBeSetupModList(
                                                                                                                                                          template (present) MBS_QoSFlowsToBeSetupList p_mBS_QoSFlowsToBeSetupList := ?
                                                                                                                                                          ) := {
                { 
                    id          := id_MBS_QoSFlowsToBeSetupModList,
                    criticality := reject,
                    value_      := { MBS_QoSFlowsToBeSetupList := p_mBS_QoSFlowsToBeSetupList }	
                }
            } // End of template mw_multicastSessionUpdateRequestTransfer_id_MBS_QoSFlowsToBeSetupModList
            template (present) MulticastSessionUpdateRequestTransfer.protocolIEs mw_multicastSessionUpdateRequestTransfer_id_MBS_QoSFlowToReleaseList(
                                                                                                                                                      template (present) QosFlowListWithCause p_qosFlowListWithCause := ?
                                                                                                                                                      ) := {
                { 
                    id          := id_MBS_QoSFlowToReleaseList,
                    criticality := reject,
                    value_      := { QosFlowListWithCause := p_qosFlowListWithCause }	
                }
            } // End of template mw_multicastSessionUpdateRequestTransfer_id_MBS_QoSFlowToReleaseList

            template (present) MulticastSessionUpdateRequestTransfer.protocolIEs mw_multicastSessionUpdateRequestTransfer_id_MBS_SessionTNLInfo5GC(
                                                                                                                                                   template (present) MBS_SessionTNLInfo5GC p_mBS_SessionTNLInfo5GC := ?
                                                                                                                                                   ) := {
                { 
                    id          := id_MBS_SessionTNLInfo5GC,
                    criticality := reject,
                    value_      := { MBS_SessionTNLInfo5GC := p_mBS_SessionTNLInfo5GC }	
                }
            } // End of template mw_multicastSessionUpdateRequestTransfer_id_MBS_SessionTNLInfo5GC

            template (present) MulticastGroupPagingAreaItem mw_multicastGroupPagingAreaItem(
                                                                                            template (present) MulticastGroupPagingArea p_multicastGroupPagingArea := ?,
                                                                                            template UE_PagingList p_uE_PagingList := *,
                                                                                            template MulticastGroupPagingAreaItem.iE_Extensions p_iE_Extensions := *
                                                                                            ) := {
                multicastGroupPagingArea := p_multicastGroupPagingArea,
                uE_PagingList            := p_uE_PagingList,
                iE_Extensions            := p_iE_Extensions
            } // End of template mw_multicastGroupPagingAreaItem

            template (present) MulticastGroupPagingArea mw_multicastGroupPagingArea(
                                                                                    template (present) MBS_AreaTAIList p_mBS_AreaTAIList := ?,
                                                                                    template MulticastGroupPagingArea.iE_Extensions p_iE_Extensions := *
                                                                                    ) := {
                mBS_AreaTAIList := p_mBS_AreaTAIList,
                iE_Extensions   := p_iE_Extensions
            } // End of template mw_multicastGroupPagingArea

            template (present) UE_PagingItem mw_uE_PagingItem(
                                                              template (present) UEIdentityIndexValue p_uEIdentityIndexValue := ?,
                                                              template PagingDRX p_pagingDRX := *,
                                                              template UE_PagingItem.iE_Extensions p_iE_Extensions := *
                                                              ) := {
                uEIdentityIndexValue := p_uEIdentityIndexValue,
                pagingDRX            := p_pagingDRX,
                iE_Extensions        := p_iE_Extensions
            } // End of template mw_uE_PagingItem

            template (present) M1Configuration mw_m1Configuration(
                                                                  template (present) M1ReportingTrigger p_m1reportingTrigger := ?,
                                                                  template M1ThresholdEventA2 p_m1thresholdEventA2 := *,
                                                                  template M1PeriodicReporting p_m1periodicReporting := *,
                                                                  template M1Configuration.iE_Extensions p_iE_Extensions := *
                                                                  ) := {
                m1reportingTrigger  := p_m1reportingTrigger,
                m1thresholdEventA2  := p_m1thresholdEventA2,
            //	The above IE shall be present if the M1 Reporting Trigger IE is set to “A2event_triggered” or “A2event_triggered periodic”
                m1periodicReporting := p_m1periodicReporting,
            //	The above IE shall be present if the M1 Reporting Trigger IE is set to “periodic” or “A2event_triggered periodic”
                iE_Extensions       := p_iE_Extensions
            } // End of template mw_m1Configuration

            template (present) M1Configuration.iE_Extensions mw_m1Configuration_id_IncludeBeamMeasurementsIndication(
                                                                                                                     template (present) IncludeBeamMeasurementsIndication p_includeBeamMeasurementsIndication := ?
                                                                                                                     ) := {
                { 
                    id             := id_IncludeBeamMeasurementsIndication,
                    criticality    := ignore,
                    extensionValue := { IncludeBeamMeasurementsIndication := p_includeBeamMeasurementsIndication }	
                }
            } // End of template mw_m1Configuration_id_IncludeBeamMeasurementsIndication

            template (present) M1Configuration.iE_Extensions mw_m1Configuration_id_BeamMeasurementsReportConfiguration(
                                                                                                                       template (present) BeamMeasurementsReportConfiguration p_beamMeasurementsReportConfiguration := ?
                                                                                                                       ) := {
                { 
                    id             := id_BeamMeasurementsReportConfiguration,
                    criticality    := ignore,
                    extensionValue := { BeamMeasurementsReportConfiguration := p_beamMeasurementsReportConfiguration }	
                }
            } // End of template mw_m1Configuration_id_BeamMeasurementsReportConfiguration

            template (present) IncludeBeamMeasurementsIndication mw_includeBeamMeasurementsIndication(template (present) IncludeBeamMeasurementsIndication p_value := true_) := p_value;

            template (present) M1ReportingTrigger mw_m1ReportingTrigger(template (present) M1ReportingTrigger p_value := ?) := p_value;

            template (present) M1ThresholdEventA2 mw_m1ThresholdEventA2(
                                                                        template (present) M1ThresholdType p_m1ThresholdType := ?,
                                                                        template M1ThresholdEventA2.iE_Extensions p_iE_Extensions := *
                                                                        ) := {
                m1ThresholdType := p_m1ThresholdType,
                iE_Extensions   := p_iE_Extensions
            } // End of template mw_m1ThresholdEventA2

            template (present) M1ThresholdType mw_m1ThresholdType_threshold_RSRP(
                                                                                 template (present) Threshold_RSRP p_threshold_RSRP := ?
                                                                                 ) := {
                threshold_RSRP := p_threshold_RSRP
            } // End of template mw_m1ThresholdType_threshold_RSRP

            template (present) M1ThresholdType mw_m1ThresholdType_threshold_RSRQ(
                                                                                 template (present) Threshold_RSRQ p_threshold_RSRQ := ?
                                                                                 ) := {
                threshold_RSRQ := p_threshold_RSRQ
            } // End of template mw_m1ThresholdType_threshold_RSRQ

            template (present) M1ThresholdType mw_m1ThresholdType_threshold_SINR(
                                                                                 template (present) Threshold_SINR p_threshold_SINR := ?
                                                                                 ) := {
                threshold_SINR := p_threshold_SINR
            } // End of template mw_m1ThresholdType_threshold_SINR

            template (present) M1ThresholdType mw_m1ThresholdType_choice_Extensions(
                                                                                    template (present) M1ThresholdType.choice_Extensions p_choice_Extensions := ?
                                                                                    ) := {
                choice_Extensions := p_choice_Extensions
            } // End of template mw_m1ThresholdType_choice_Extensions
            template (present) M1PeriodicReporting mw_m1PeriodicReporting(
                                                                          template (present) ReportIntervalMDT p_reportInterval := ?,
                                                                          template (present) ReportAmountMDT p_reportAmount := ?,
                                                                          template M1PeriodicReporting.iE_Extensions p_iE_Extensions := *
                reportInterval := p_reportInterval,
                reportAmount   := p_reportAmount,
                iE_Extensions  := p_iE_Extensions
            } // End of template mw_m1PeriodicReporting
            template (present) M1PeriodicReporting.iE_Extensions mw_m1PeriodicReporting_id_ExtendedReportIntervalMDT(
                                                                                                                     template (present) ExtendedReportIntervalMDT p_extendedReportIntervalMDT := ?
                                                                                                                     ) := {
                    id             := id_ExtendedReportIntervalMDT,
                    criticality    := ignore,
                    extensionValue := { ExtendedReportIntervalMDT := p_extendedReportIntervalMDT }	
            } // End of template mw_m1PeriodicReporting_id_ExtendedReportIntervalMDT
            template (present) M4Configuration mw_m4Configuration(
                                                                  template (present) M4period p_m4period := ?,
                                                                  template (present) Links_to_log p_m4_links_to_log := ?,
                                                                  template M4Configuration.iE_Extensions p_iE_Extensions := *
                                                                  ) := {
                m4period        := p_m4period,
                m4_links_to_log := p_m4_links_to_log,
                iE_Extensions   := p_iE_Extensions
            } // End of template mw_m4Configuration
            template (present) M4Configuration.iE_Extensions mw_m4Configuration_id_M4ReportAmount(
                                                                                                  template (present) M4ReportAmountMDT p_m4ReportAmountMDT := ?
                                                                                                  ) := {
                { 
                    id             := id_ExtendedReportIntervalMDT,
                    criticality    := ignore,
                    extensionValue := { M4ReportAmountMDT := p_m4ReportAmountMDT }	
                }
            } // End of template mw_m4Configuration_id_M4ReportAmount
            template (present) M4ReportAmountMDT mw_m4ReportAmountMDT(template (present) M4ReportAmountMDT p_value := ?) := p_value;
            template (present) M4period mw_m4period(template (present) M4period p_value := ?) := p_value;
            template (present) M5Configuration mw_m5Configuration(
                                                                  template (present) M5period p_m5period := ?,
                                                                  template (present) Links_to_log p_m5_links_to_log := ?,
                                                                  template M5Configuration.iE_Extensions p_iE_Extensions := *
                                                                  ) := {
                m5period        := p_m5period,
                m5_links_to_log := p_m5_links_to_log,
                iE_Extensions   := p_iE_Extensions
            } // End of template mw_m5Configuration

            template (present) M5Configuration.iE_Extensions mw_m5Configuration_id_M5ReportAmount(
                                                                                                  template (present) M5ReportAmountMDT p_m5ReportAmountMDT := ?
                                                                                                  ) := {
                    id             := id_M5ReportAmount,
                    criticality    := ignore,
                    extensionValue := { M5ReportAmountMDT := p_m5ReportAmountMDT }	
            } // End of template mw_m5Configuration_id_M5ReportAmount
            template (present) M5ReportAmountMDT mw_m5ReportAmountMDT(template (present) M5ReportAmountMDT p_value := ?) := p_value;
            template (present) M5period mw_m5period(template (present) M5period p_value := ?) := p_value;
            template (present) M6Configuration mw_m6Configuration(
                                                                  template (present) M6report_Interval p_m6report_Interval := ?,
                                                                  template (present) Links_to_log p_m6_links_to_log := ?,
                                                                  template M6Configuration.iE_Extensions p_iE_Extensions := *
                                                                  ) := {
                m6report_Interval := p_m6report_Interval,
                m6_links_to_log   := p_m6_links_to_log,
                iE_Extensions     := p_iE_Extensions
            } // End of template mw_m6Configuration
            template (present) M6Configuration.iE_Extensions mw_m6Configuration_id_M6ReportAmount(
                                                                                                  template (present) M6ReportAmountMDT p_m6ReportAmountMDT := ?
                                                                                                  ) := {
                { 
                    id             := id_M6ReportAmount,
                    criticality    := ignore,
                    extensionValue := { M6ReportAmountMDT := p_m6ReportAmountMDT }	
                }
            } // End of template mw_m6Configuration_id_M6ReportAmount
            template (present) M6Configuration.iE_Extensions mw_m6Configuration_id_ExcessPacketDelayThresholdConfiguration(
                                                                                                                           template (present) ExcessPacketDelayThresholdConfiguration p_excessPacketDelayThresholdConfiguration := ?
                                                                                                                           ) := {
                { 
                    id             := id_ExcessPacketDelayThresholdConfiguration,
                    criticality    := ignore,
                    extensionValue := { ExcessPacketDelayThresholdConfiguration := p_excessPacketDelayThresholdConfiguration }	
                }
            } // End of template mw_m6Configuration_id_ExcessPacketDelayThresholdConfiguration
            template (present) M6ReportAmountMDT mw_m6ReportAmountMDT(template (present) M6ReportAmountMDT p_value := ?) := p_value;
            template (present) M6report_Interval mw_m6report_Interval(template (present) M6report_Interval p_value := ?) := p_value;
            template (present) M7Configuration mw_m7Configuration(
                                                                  template (present) M7period p_m7period := ?,
                                                                  template (present) Links_to_log p_m7_links_to_log := ?,
                                                                  template M7Configuration.iE_Extensions p_iE_Extensions := *
                                                                  ) := {
                m7period        := p_m7period,
                m7_links_to_log := p_m7_links_to_log,
                iE_Extensions   := p_iE_Extensions
            } // End of template mw_m7Configuration
            template (present) M7Configuration.iE_Extensions mw_m7Configuration_id_M7ReportAmount(
                                                                                                  template (present) M7ReportAmountMDT p_m7ReportAmountMDT := ?
                                                                                                  ) := {
                { 
                    id             := id_M7ReportAmount,
                    criticality    := ignore,
                    extensionValue := { M7ReportAmountMDT := p_m7ReportAmountMDT }	
                }
            } // End of template mw_m7Configuration_id_M7ReportAmount

            template (present) M7ReportAmountMDT mw_m7ReportAmountMDT(template (present) M7ReportAmountMDT p_value := ?) := p_value;

            template (present) MDT_Location_Info mw_mDT_Location_Info(
                                                                      template (present) MDT_Location_Information p_mDT_Location_Information := ?,
                                                                      template MDT_Location_Info.iE_Extensions p_iE_Extensions := *
                                                                      ) := {
                mDT_Location_Information := p_mDT_Location_Information,
                iE_Extensions            := p_iE_Extensions
            } // End of template mw_mDT_Location_Info
Iztok Juvancic's avatar
Iztok Juvancic committed
9174 9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188 9189 9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206 9207 9208 9209 9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451 9452 9453 9454 9455 9456 9457 9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474
            //  type    union   N3IWF_ID    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   N3IWF_ID_ExtIEs (?);
            //  type    octetstring NAS_PDU;
            //  type    octetstring NASSecurityParametersFromNGRAN;
            //  type    enumerated  NB_IoT_DefaultPagingDRX {
            //  type    enumerated  NB_IoT_PagingDRX    {
            //  type    enumerated  NB_IoT_Paging_eDRXCycle {
            //  type    enumerated  NB_IoT_Paging_TimeWindow    {
            //  type    record  NB_IoT_Paging_eDRXInfo  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION NB_IoT_Paging_eDRXInfo_ExtIEs   (?);
            //  type    integer NB_IoT_UEPriority   (
            //  type    integer NetworkInstance (
            //  type    enumerated  NewSecurityContextInd   {
            //  type    integer NextHopChainingCount    (0  ..  7); 
            //  type    enumerated  NextPagingAreaScope {
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofNGAPIESupportInfo)    of  NGAPIESupportInformationRequestItem NGAPIESupportInformationRequestList;
            //  type    record  NGAPIESupportInformationRequestItem {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION NGAPIESupportInformationRequestItem_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofNGAPIESupportInfo)    of  NGAPIESupportInformationResponseItem    NGAPIESupportInformationResponseList;
            //  type    record  NGAPIESupportInformationResponseItem    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION NGAPIESupportInformationResponseItem_ExtIEs (?);
            //  type    union   NgENB_ID    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   NgENB_ID_ExtIEs (?);
            //  type    enumerated  NotifySourceNGRANNode   {
            //  type    union   NGRAN_CGI   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   NGRAN_CGI_ExtIEs    (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTNLAssociations)  of  NGRAN_TNLAssociationToRemoveItem    NGRAN_TNLAssociationToRemoveList;
            //  type    record  NGRAN_TNLAssociationToRemoveItem    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION NGRAN_TNLAssociationToRemoveItem_ExtIEs (?);
            //  type    octetstring NGRANTraceID    length  (8);
            //  type    bitstring   NID length  (44);
            //  type    record  NonDynamic5QIDescriptor {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION NonDynamic5QIDescriptor_ExtIEs  (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofAllowedAreas) of  TAC NotAllowedTACs;
            //  type    enumerated  NotificationCause   {
            //  type    enumerated  NotificationControl {
            //  type    union   NPN_AccessInformation   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   NPN_AccessInformation_ExtIEs    (?);
            //  type    union   NPN_MobilityInformation {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   NPN_MobilityInformation_ExtIEs  (?);
            //  type    union   NPN_PagingAssistanceInformation {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   NPN_PagingAssistanceInformation_ExtIEs  (?);
            //  type    union   NPN_Support {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   NPN_Support_ExtIEs  (?);
            //  type    bitstring   NRCellIdentity  length  (36);
            //  type    record  NR_CGI  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION NR_CGI_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofCellsingNB)   of  NR_CGI  NR_CGIList;
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofCellIDforWarning) of  NR_CGI  NR_CGIListForWarning;
            //  type    record  NR_PagingeDRXInformation    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION NR_PagingeDRXInformation_ExtIEs (?);
            //  type    enumerated  NR_Paging_eDRX_Cycle    {
            //  type    enumerated  NR_Paging_Time_Window   {
            //  type    bitstring   NRencryptionAlgorithms  length  (
            //  type    bitstring   NRintegrityProtectionAlgorithms length  (
            //  type    octetstring NRMobilityHistoryReport;
            //  type    octetstring NRPPa_PDU;
            //  type    octetstring NRUERLFReportContainer;
            //  type    record  NRNTNTAIInformation {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION NRNTNTAIInformation_ExtIEs  (?);
            //  type    integer NumberOfBroadcasts  (0  ..  65535); 
            //  type    integer NumberOfBroadcastsRequested (0  ..  65535); 
            //  type    integer NRARFCN (0  ..  NGAP_Constants.maxNRARFCN); 
            //  type    integer NRFrequencyBand (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofNRCellBands)  of  NRFrequencyBandItem NRFrequencyBand_List;
            //  type    record  NRFrequencyBandItem {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION NRFrequencyBandItem_ExtIEs  (?);
            //  type    record  NRFrequencyInfo {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION NRFrequencyInfo_ExtIEs  (?);
            //  type    integer NR_PCI  (
            //  type    record  NRV2XServicesAuthorized {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION NRV2XServicesAuthorized_ExtIEs  (?);
            //  type    enumerated  VehicleUE   {
            //  type    enumerated  PedestrianUE    {
            //  type    record  NRUESidelinkAggregateMaximumBitrate {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION NRUESidelinkAggregateMaximumBitrate_ExtIEs  (?);
            //  type    integer NSAG_ID (
            //  type    enumerated  OnboardingSupport   {
            //  type    enumerated  OverloadAction  {
            //  type    union   OverloadResponse    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   OverloadResponse_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofSliceItems)   of  OverloadStartNSSAIItem  OverloadStartNSSAIList;
            //  type    record  OverloadStartNSSAIItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION OverloadStartNSSAIItem_ExtIEs   (?);
            //  type    integer PacketDelayBudget   (
            //  type    record  PacketErrorRate {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PacketErrorRate_ExtIEs  (?);
            //  type    integer PacketLossRate  (
            //  type    record  PagingAssisDataforCEcapabUE {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PagingAssisDataforCEcapabUE_ExtIEs  (?);
            //  type    record  PagingAttemptInformation    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PagingAttemptInformation_ExtIEs (?);
            //  type    integer PagingAttemptCount  (
            //  type    enumerated  PagingCause {
            //  type    enumerated  PagingCauseIndicationForVoiceService    {
            //  type    enumerated  PagingDRX   {
            //  type    enumerated  PagingOrigin    {
            //  type    enumerated  PagingPriority  {
            //  type    enumerated  PagingProbabilityInformation    {
            //  type    record  PathSwitchRequestAcknowledgeTransfer    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PathSwitchRequestAcknowledgeTransfer_ExtIEs (
            //  type    record  PathSwitchRequestSetupFailedTransfer    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PathSwitchRequestSetupFailedTransfer_ExtIEs (?);
            //  type    record  PathSwitchRequestTransfer   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PathSwitchRequestTransfer_ExtIEs    (
            //  type    record  PathSwitchRequestUnsuccessfulTransfer   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PathSwitchRequestUnsuccessfulTransfer_ExtIEs    (?);
            //  type    record  PC5QoSParameters    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PC5QoSParameters_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPC5QoSFlows)  of  PC5QoSFlowItem  PC5QoSFlowList;
            //  type    record  PC5QoSFlowItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PC5QoSFlowItem_ExtIEs   (?);
            //  type    record  PC5FlowBitRates {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PC5FlowBitRates_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofNeighPCIforMDT)   of  NR_PCI  PCIListForMDT;
            //  type    enumerated  PrivacyIndicator    {
            //  type    record  PDUSessionAggregateMaximumBitRate   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionAggregateMaximumBitRate_ExtIEs    (?);
            //  type    integer PDUSessionID    (0  ..  255);   
            //  type    integer PDUSessionPairID    (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceAdmittedItem  PDUSessionResourceAdmittedList;
            //  type    record  PDUSessionResourceAdmittedItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceAdmittedItem_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceFailedToModifyItemModCfm  PDUSessionResourceFailedToModifyListModCfm;
            //  type    record  PDUSessionResourceFailedToModifyItemModCfm  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceFailedToModifyItemModCfm_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceFailedToModifyItemModRes  PDUSessionResourceFailedToModifyListModRes;
            //  type    record  PDUSessionResourceFailedToModifyItemModRes  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceFailedToModifyItemModRes_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceFailedToResumeItemRESReq  PDUSessionResourceFailedToResumeListRESReq;
            //  type    record  PDUSessionResourceFailedToResumeItemRESReq  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceFailedToResumeItemRESReq_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceFailedToResumeItemRESRes  PDUSessionResourceFailedToResumeListRESRes;
            //  type    record  PDUSessionResourceFailedToResumeItemRESRes  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceFailedToResumeItemRESRes_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceFailedToSetupItemCxtFail  PDUSessionResourceFailedToSetupListCxtFail;
            //  type    record  PDUSessionResourceFailedToSetupItemCxtFail  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceFailedToSetupItemCxtFail_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceFailedToSetupItemCxtRes   PDUSessionResourceFailedToSetupListCxtRes;
            //  type    record  PDUSessionResourceFailedToSetupItemCxtRes   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceFailedToSetupItemCxtRes_ExtIEs    (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceFailedToSetupItemHOAck    PDUSessionResourceFailedToSetupListHOAck;
            //  type    record  PDUSessionResourceFailedToSetupItemHOAck    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceFailedToSetupItemHOAck_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceFailedToSetupItemPSReq    PDUSessionResourceFailedToSetupListPSReq;
            //  type    record  PDUSessionResourceFailedToSetupItemPSReq    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceFailedToSetupItemPSReq_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceFailedToSetupItemSURes    PDUSessionResourceFailedToSetupListSURes;
            //  type    record  PDUSessionResourceFailedToSetupItemSURes    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceFailedToSetupItemSURes_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceHandoverItem  PDUSessionResourceHandoverList;
            //  type    record  PDUSessionResourceHandoverItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceHandoverItem_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceInformationItem   PDUSessionResourceInformationList;
            //  type    record  PDUSessionResourceInformationItem   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceInformationItem_ExtIEs    (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceItemCxtRelCpl PDUSessionResourceListCxtRelCpl;
            //  type    record  PDUSessionResourceItemCxtRelCpl {
            //  type    octetstring PDUSessionResourceReleaseResponseTransfer_OCTET_STRING;
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceItemCxtRelCpl_ExtIEs  (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceItemCxtRelReq PDUSessionResourceListCxtRelReq;
            //  type    record  PDUSessionResourceItemCxtRelReq {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceItemCxtRelReq_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceItemHORqd PDUSessionResourceListHORqd;
            //  type    record  PDUSessionResourceItemHORqd {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceItemHORqd_ExtIEs  (?);
            //  type    record  PDUSessionResourceModifyConfirmTransfer {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceModifyConfirmTransfer_ExtIEs  (
            //  type    record  PDUSessionResourceModifyIndicationUnsuccessfulTransfer  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceModifyIndicationUnsuccessfulTransfer_ExtIEs   (?);
            //  type    record  PDUSessionResourceModifyRequestTransfer {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   PDUSessionResourceModifyRequestTransferIEs  (
            //  type    record  PDUSessionResourceModifyResponseTransfer    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceModifyResponseTransfer_ExtIEs (
            //  type    record  PDUSessionResourceModifyIndicationTransfer  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceModifyIndicationTransfer_ExtIEs   (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceModifyItemModCfm  PDUSessionResourceModifyListModCfm;
            //  type    record  PDUSessionResourceModifyItemModCfm  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceModifyItemModCfm_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceModifyItemModInd  PDUSessionResourceModifyListModInd;
            //  type    record  PDUSessionResourceModifyItemModInd  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceModifyItemModInd_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceModifyItemModReq  PDUSessionResourceModifyListModReq;
            //  type    record  PDUSessionResourceModifyItemModReq  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceModifyItemModReq_ExtIEs   (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceModifyItemModRes  PDUSessionResourceModifyListModRes;
            //  type    record  PDUSessionResourceModifyItemModRes  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceModifyItemModRes_ExtIEs   (?);
            //  type    record  PDUSessionResourceModifyUnsuccessfulTransfer    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceModifyUnsuccessfulTransfer_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceNotifyItem    PDUSessionResourceNotifyList;
            //  type    record  PDUSessionResourceNotifyItem    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceNotifyItem_ExtIEs (?);
            //  type    record  PDUSessionResourceNotifyReleasedTransfer    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceNotifyReleasedTransfer_ExtIEs (
            //  type    record  PDUSessionResourceNotifyTransfer    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceNotifyTransfer_ExtIEs (
            //  type    record  PDUSessionResourceReleaseCommandTransfer    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceReleaseCommandTransfer_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceReleasedItemNot   PDUSessionResourceReleasedListNot;
            //  type    record  PDUSessionResourceReleasedItemNot   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceReleasedItemNot_ExtIEs    (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceReleasedItemPSAck PDUSessionResourceReleasedListPSAck;
            //  type    record  PDUSessionResourceReleasedItemPSAck {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceReleasedItemPSAck_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceReleasedItemPSFail    PDUSessionResourceReleasedListPSFail;
            //  type    record  PDUSessionResourceReleasedItemPSFail    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceReleasedItemPSFail_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceReleasedItemRelRes    PDUSessionResourceReleasedListRelRes;
            //  type    record  PDUSessionResourceReleasedItemRelRes    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceReleasedItemRelRes_ExtIEs (?);
            //  type    record  PDUSessionResourceReleaseResponseTransfer   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceReleaseResponseTransfer_ExtIEs    (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceResumeItemRESReq  PDUSessionResourceResumeListRESReq;
            //  type    record  PDUSessionResourceResumeItemRESReq  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceResumeItemRESReq_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceResumeItemRESRes  PDUSessionResourceResumeListRESRes;
            //  type    record  PDUSessionResourceResumeItemRESRes  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceResumeItemRESRes_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceSecondaryRATUsageItem PDUSessionResourceSecondaryRATUsageList;
            //  type    record  PDUSessionResourceSecondaryRATUsageItem {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceSecondaryRATUsageItem_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceSetupItemCxtReq   PDUSessionResourceSetupListCxtReq;
            //  type    record  PDUSessionResourceSetupItemCxtReq   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceSetupItemCxtReq_ExtIEs    (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceSetupItemCxtRes   PDUSessionResourceSetupListCxtRes;
            //  type    record  PDUSessionResourceSetupItemCxtRes   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceSetupItemCxtRes_ExtIEs    (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceSetupItemHOReq    PDUSessionResourceSetupListHOReq;
            //  type    record  PDUSessionResourceSetupItemHOReq    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceSetupItemHOReq_ExtIEs (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceSetupItemSUReq    PDUSessionResourceSetupListSUReq;
            //  type    record  PDUSessionResourceSetupItemSUReq    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceSetupItemSUReq_ExtIEs (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceSetupItemSURes    PDUSessionResourceSetupListSURes;
            //  type    record  PDUSessionResourceSetupItemSURes    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceSetupItemSURes_ExtIEs (?);
            //  type    record  PDUSessionResourceSetupRequestTransfer  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   PDUSessionResourceSetupRequestTransferIEs   (
            //  type    record  PDUSessionResourceSetupResponseTransfer {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceSetupResponseTransfer_ExtIEs  (
            //  type    record  PDUSessionResourceSetupUnsuccessfulTransfer {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceSetupUnsuccessfulTransfer_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceSuspendItemSUSReq PDUSessionResourceSuspendListSUSReq;
            //  type    record  PDUSessionResourceSuspendItemSUSReq {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceSuspendItemSUSReq_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceSwitchedItem  PDUSessionResourceSwitchedList;
            //  type    record  PDUSessionResourceSwitchedItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceSwitchedItem_ExtIEs   (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceToBeSwitchedDLItem    PDUSessionResourceToBeSwitchedDLList;
            //  type    record  PDUSessionResourceToBeSwitchedDLItem    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceToBeSwitchedDLItem_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceToReleaseItemHOCmd    PDUSessionResourceToReleaseListHOCmd;
            //  type    record  PDUSessionResourceToReleaseItemHOCmd    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceToReleaseItemHOCmd_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPDUSessions)  of  PDUSessionResourceToReleaseItemRelCmd   PDUSessionResourceToReleaseListRelCmd;
            //  type    record  PDUSessionResourceToReleaseItemRelCmd   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionResourceToReleaseItemRelCmd_ExtIEs    (?);
            //  type    enumerated  PDUSessionType  {
            //  type    record  PDUSessionUsageReport   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PDUSessionUsageReport_ExtIEs    (?);
            //  type    record  PEIPSassistanceInformation  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PEIPSassistanceInformation_ExtIEs   (?);
            //  type    integer Periodicity (
            //  type    bitstring   PeriodicRegistrationUpdateTimer length  (8);
            //  type    octetstring PLMNIdentity    length  (3);
            //  type    record  PLMNAreaBasedQMC    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PLMNAreaBasedQMC_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPLMNforQMC)   of  PLMNIdentity    PLMNListforQMC;
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofPLMNs)    of  PLMNSupportItem PLMNSupportList;
            //  type    record  PLMNSupportItem {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PLMNSupportItem_ExtIEs  (
            //  type    record  PNI_NPN_MobilityInformation {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION PNI_NPN_MobilityInformation_ExtIEs  (?);
            //  type    octetstring PortNumber  length  (2);
            //  type    enumerated  Pre_emptionCapability   {
            //  type    enumerated  Pre_emptionVulnerability    {
            //  type    integer PriorityLevelARP    (1  ..  15);    
            //  type    integer PriorityLevelQos    (
            //  type    union   PWSFailedCellIDList {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   PWSFailedCellIDList_ExtIEs  (?);
            //  type    record  QMCConfigInfo   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QMCConfigInfo_ExtIEs    (?);
            //  type    record  QMCDeactivation {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QMCDeactivation_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofUEAppLayerMeas)   of  QoEReference    QoEReferenceList;
            //  type    octetstring QoEReference    length  (6);
            //  type    union   QosCharacteristics  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   QosCharacteristics_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofQosFlows) of  QosFlowAcceptedItem QosFlowAcceptedList;
            //  type    record  QosFlowAcceptedItem {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowAcceptedItem_ExtIEs  (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofQosFlows) of  QosFlowAddOrModifyRequestItem   QosFlowAddOrModifyRequestList;
            //  type    record  QosFlowAddOrModifyRequestItem   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowAddOrModifyRequestItem_ExtIEs    (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofQosFlows) of  QosFlowAddOrModifyResponseItem  QosFlowAddOrModifyResponseList;
            //  type    record  QosFlowAddOrModifyResponseItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowAddOrModifyResponseItem_ExtIEs   (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofQosFlows) of  QosFlowFeedbackItem QosFlowFeedbackList;
            //  type    record  QosFlowFeedbackItem {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowFeedbackItem_ExtIEs  (?);
            template (present) QosFlowIdentifier mw_qosFlowIdentifier(template (present) QosFlowIdentifier p_value := ?) := p_value;
Iztok Juvancic's avatar
Iztok Juvancic committed
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofQosFlows) of  QosFlowInformationItem  QosFlowInformationList;
            //  type    record  QosFlowInformationItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowInformationItem_ExtIEs   (
            //  type    record  QosFlowLevelQosParameters   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowLevelQosParameters_ExtIEs    (
            //  type    enumerated  QosMonitoringRequest    {
            //  type    integer QosMonitoringReportingFrequency (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofQosFlows) of  QosFlowIdentifier   QoSFlowList;
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofQosFlows) of  QosFlowWithCauseItem    QosFlowListWithCause;
            //  type    record  QosFlowWithCauseItem    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowWithCauseItem_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofQosFlows) of  QosFlowModifyConfirmItem    QosFlowModifyConfirmList;
            //  type    record  QosFlowModifyConfirmItem    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowModifyConfirmItem_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofQosFlows) of  QosFlowNotifyItem   QosFlowNotifyList;
            //  type    record  QosFlowNotifyItem   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowNotifyItem_ExtIEs    (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofQosFlows) of  QosFlowParametersItem   QosFlowParametersList;
            //  type    record  QosFlowParametersItem   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowParametersItem_ExtIEs    (
            //  type    record  QosFlowPerTNLInformation    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowPerTNLInformation_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofMultiConnectivityMinusOne)    of  QosFlowPerTNLInformationItem    QosFlowPerTNLInformationList;
            //  type    record  QosFlowPerTNLInformationItem    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowPerTNLInformationItem_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofQosFlows) of  QosFlowSetupRequestItem QosFlowSetupRequestList;
            //  type    record  QosFlowSetupRequestItem {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowSetupRequestItem_ExtIEs  (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofQosFlows) of  QosFlowItemWithDataForwarding   QosFlowListWithDataForwarding;
            template (present) QosFlowItemWithDataForwarding mw_qosFlowItemWithDataForwarding(
                                                                                              template (present) QosFlowIdentifier p_qosFlowIdentifier := ?,
	                                                                                          template DataForwardingAccepted p_dataForwardingAccepted := *,
                                                                                              template QosFlowItemWithDataForwarding.iE_Extensions p_iE_Extensions := *
                                                                                              ) := {
                qosFlowIdentifier      := p_qosFlowIdentifier,
                dataForwardingAccepted := p_dataForwardingAccepted,
                iE_Extensions          := p_iE_Extensions
            } // End of template mw_qosFlowItemWithDataForwarding

            template (present) QosFlowItemWithDataForwarding.iE_Extensions mw_qosFlowItemWithDataForwarding_alternativeQoSParaSetIndex(
                                                                                                                                       template (present) AlternativeQoSParaSetIndex p_alternativeQoSParaSetIndex := ?
                                                                                                                                       ) := {
                {
                    id             := id_CurrentQoSParaSetIndex,
                    criticality    := ignore,
                    extensionValue := { AlternativeQoSParaSetIndex := p_alternativeQoSParaSetIndex }
                }
            } // End of template mw_qosFlowItemWithDamw_qosFlowItemWithDataForwarding_alternativeQoSParaSetIndextaForwarding_
Iztok Juvancic's avatar
Iztok Juvancic committed
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofQosFlows) of  QosFlowToBeForwardedItem    QosFlowToBeForwardedList;
            //  type    record  QosFlowToBeForwardedItem    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QosFlowToBeForwardedItem_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofQosFlows) of  QoSFlowsUsageReport_Item    QoSFlowsUsageReportList;
            //  type    record  QoSFlowsUsageReport_Item    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION QoSFlowsUsageReport_Item_ExtIEs (?);
            //  type    enumerated  Range   {
            //  type    ASNAUX.PrintableString  RANNodeName length  (
            //  type    ASNAUX.VisibleString    RANNodeNameVisibleString    length  (
            //  type    ASNAUX.UTF8String   RANNodeNameUTF8String   length  (
            //  type    integer RANPagingPriority   (1  ..  256);   
            //  type    record  RANStatusTransfer_TransparentContainer  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION RANStatusTransfer_TransparentContainer_ExtIEs   (?);
Iztok Juvancic's avatar
Iztok Juvancic committed
            //  type    integer RAN_UE_NGAP_ID  (0  ..  4294967295);
            template (present) RAN_UE_NGAP_ID mw_ie_rANUeNgapId(template (present) integer p_val := ?) := p_val;

Iztok Juvancic's avatar
Iztok Juvancic committed
            //  type    enumerated  RAT_Information {
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofEPLMNsPlusOne)    of  RATRestrictions_Item    RATRestrictions;
            //  type    record  RATRestrictions_Item    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION RATRestrictions_Item_ExtIEs (
            //  type    bitstring   RATRestrictionInformation   length  (
            //  type    record  RecommendedCellsForPaging   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION RecommendedCellsForPaging_ExtIEs    (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofRecommendedCells) of  RecommendedCellItem RecommendedCellList;
            //  type    record  RecommendedCellItem {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION RecommendedCellItem_ExtIEs  (?);
            //  type    record  RecommendedRANNodesForPaging    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION RecommendedRANNodesForPaging_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofRecommendedRANNodes)  of  RecommendedRANNodeItem  RecommendedRANNodeList;
            //  type    record  RecommendedRANNodeItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION RecommendedRANNodeItem_ExtIEs   (?);
            //  type    enumerated  RedCapIndication    {
            //  type    enumerated  RedirectionVoiceFallback    {
            //  type    record  RedundantPDUSessionInformation  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION RedundantPDUSessionInformation_ExtIEs   (
            //  type    enumerated  RedundantQosFlowIndicator   {
            //  type    enumerated  ReflectiveQosAttribute  {
            //  type    integer RelativeAMFCapacity (0  ..  255);   
            //  type    enumerated  ReportArea  {
            //  type    integer RepetitionPeriod    (0  ..  131071);    
            //  type    enumerated  ResetAll    {
            //  type    enumerated  ReportAmountMDT {
            //  type    enumerated  ReportIntervalMDT   {
            //  type    enumerated  ExtendedReportIntervalMDT   {
            //  type    union   ResetType   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   ResetType_ExtIEs    (?);
            //  type    octetstring RGLevelWirelineAccessCharacteristics;
            //  type    integer RNC_ID  (0  ..  4095);  
            //  type    octetstring RoutingID;
            //  type    octetstring RRCContainer;
            //  type    enumerated  RRCEstablishmentCause   {
            //  type    enumerated  RRCInactiveTransitionReportRequest  {
            //  type    enumerated  RRCState    {
            //  type    enumerated  RSN {
            //  type    record  RIMInformationTransfer  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION RIMInformationTransfer_ExtIEs   (?);
            //  type    record  RIMInformation  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION RIMInformation_ExtIEs   (?);
            //  type    bitstring   GNBSetID    length  (22);
            //  type    record  ScheduledCommunicationTime  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION ScheduledCommunicationTime_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofXnTLAs)   of  TransportLayerAddress   SCTP_TLAs;
            //  type    octetstring SD  length  (3);
            //  type    record  SecondaryRATUsageInformation    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SecondaryRATUsageInformation_ExtIEs (?);
            //  type    record  SecondaryRATDataUsageReportTransfer {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SecondaryRATDataUsageReportTransfer_ExtIEs  (?);
            //  type    record  SecurityContext {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SecurityContext_ExtIEs  (?);
            //  type    record  SecurityIndication  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SecurityIndication_ExtIEs   (
            //  type    bitstring   SecurityKey length  (256);      
            //  type    record  SecurityResult  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SecurityResult_ExtIEs   (?);
            //  type    record  SensorMeasurementConfiguration  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SensorMeasurementConfiguration_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofSensorName)   of  SensorMeasConfigNameItem    SensorMeasConfigNameList;
            //  type    record  SensorMeasConfigNameItem    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SensorMeasConfigNameItem_ExtIEs (?);
            //  type    enumerated  SensorMeasConfig    {
            //  type    union   SensorNameConfig    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   SensorNameConfig_ExtIEs (?);
            //  type    bitstring   SerialNumber    length  (16);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofServedGUAMIs) of  ServedGUAMIItem ServedGUAMIList;
            //  type    record  ServedGUAMIItem {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION ServedGUAMIItem_ExtIEs  (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofEPLMNsPlusOne)    of  ServiceAreaInformation_Item ServiceAreaInformation;
            //  type    record  ServiceAreaInformation_Item {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION ServiceAreaInformation_Item_ExtIEs  (?);
            //  type    enumerated  ServiceType {
            //  type    integer SgNB_UE_X2AP_ID (0  ..  4294967295);    
            //  type    record  SharedNGU_MulticastTNLInformation   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SharedNGU_MulticastTNLInformation_ExtIEs    (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofSliceItems)   of  SliceOverloadItem   SliceOverloadList;
            //  type    record  SliceOverloadItem   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SliceOverloadItem_ExtIEs    (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofSliceItems)   of  SliceSupportItem    SliceSupportList;
            //  type    record  SliceSupportItem    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SliceSupportItem_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofSNSSAIforQMC) of  SliceSupportQMC_Item    SliceSupportListQMC;
            //  type    record  SliceSupportQMC_Item    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SliceSupportQMC_Item_ExtIEs (?);
            //  type    record  SNPN_MobilityInformation    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SNPN_MobilityInformation_ExtIEs (?);
            //  type    record  S_NSSAI {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION S_NSSAI_ExtIEs  (?);
            //  type    record  SONConfigurationTransfer    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SONConfigurationTransfer_ExtIEs (?);
            //  type    union   SONInformation  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   SONInformation_ExtIEs   (
            //  type    record  SONInformationReply {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SONInformationReply_ExtIEs  (?);
            //  type    union   SONInformationReport    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   SONInformationReport_ExtIEs (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofSuccessfulHOReports)  of  SuccessfulHandoverReport_Item   SuccessfulHandoverReportList;
            //  type    record  SuccessfulHandoverReport_Item   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SuccessfulHandoverReport_Item_ExtIEs    (?);
            //  type    enumerated  SONInformationRequest   {
            //  type    record  SourceNGRANNode_ToTargetNGRANNode_TransparentContainer  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SourceNGRANNode_ToTargetNGRANNode_TransparentContainer_ExtIEs   (
            //  type    union   SourceNodeID    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   SourceNodeID_ExtIEs (?);
            //  type    enumerated  SourceOfUEActivityBehaviourInformation  {
            //  type    record  SourceRANNodeID {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SourceRANNodeID_ExtIEs  (?);
            //  type    octetstring SourceToTarget_TransparentContainer;
            //  type    record  SourceToTarget_AMFInformationReroute    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SourceToTarget_AMFInformationReroute_ExtIEs (?);
            //  type    enumerated  SRVCCOperationPossible  {
            //  type    octetstring ConfiguredNSSAI length  (128);      
            //  type    octetstring RejectedNSSAIinPLMN length  (32);
            //  type    octetstring RejectedNSSAIinTA   length  (32);
            //  type    octetstring SST length  (1);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTACs) of  SupportedTAItem SupportedTAList;
            //  type    record  SupportedTAItem {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION SupportedTAItem_ExtIEs  (
            //  type    enumerated  SuspendIndicator    {
            //  type    enumerated  Suspend_Request_Indication  {
            //  type    enumerated  Suspend_Response_Indication {
            //  type    integer SurvivalTime    (
            //  type    octetstring TAC length  (3);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTACsinNTN)    of  TAC TACListInNRNTN;
            //  type    record  TAI {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TAI_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTAIforWarning)    of  TAIBroadcastEUTRA_Item  TAIBroadcastEUTRA;
            //  type    record  TAIBroadcastEUTRA_Item  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TAIBroadcastEUTRA_Item_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTAIforWarning)    of  TAIBroadcastNR_Item TAIBroadcastNR;
            //  type    record  TAIBroadcastNR_Item {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TAIBroadcastNR_Item_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTAIforWarning)    of  TAICancelledEUTRA_Item  TAICancelledEUTRA;
            //  type    record  TAICancelledEUTRA_Item  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TAICancelledEUTRA_Item_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTAIforWarning)    of  TAICancelledNR_Item TAICancelledNR;
            //  type    record  TAICancelledNR_Item {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TAICancelledNR_Item_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTAIforInactive)   of  TAIListForInactiveItem  TAIListForInactive;
            //  type    record  TAIListForInactiveItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TAIListForInactiveItem_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTAIforPaging) of  TAIListForPagingItem    TAIListForPaging;
            //  type    record  TAIListForPagingItem    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TAIListForPagingItem_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTAIforRestart)    of  TAI TAIListForRestart;
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTAIforWarning)    of  TAI TAIListForWarning;
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofNSAGs)    of  TAINSAGSupportItem  TAINSAGSupportList;
            //  type    record  TAINSAGSupportItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TAINSAGSupportItem_ExtIEs   (?);
            //  type    record  TargeteNB_ID    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TargeteNB_ID_ExtIEs (?);
            //  type    record  TargetHomeENB_ID    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TargetHomeENB_ID_ExtIEs (?);
            //  type    union   TargetID    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   TargetID_ExtIEs (
            //  type    record  TargetNGRANNode_ToSourceNGRANNode_TransparentContainer  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TargetNGRANNode_ToSourceNGRANNode_TransparentContainer_ExtIEs   (
            //  type    record  TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TargetNGRANNode_ToSourceNGRANNode_FailureTransparentContainer_ExtIEs    (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTargetS_NSSAIs)   of  TargetNSSAI_Item    TargetNSSAI;
            //  type    record  TargetNSSAI_Item    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TargetNSSAI_Item_ExtIEs (?);
            //  type    record  TargetNSSAIInformation  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TargetNSSAIInformation_Item_ExtIEs  (?);
            //  type    record  TargetRANNodeID {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TargetRANNodeID_ExtIEs  (?);
            //  type    record  TargetRANNodeID_RIM {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TargetRANNodeID_RIM_ExtIEs  (?);
            //  type    record  TargetRANNodeID_SON {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TargetRANNodeID_SON_ExtIEs  (
            //  type    record  TargetRNC_ID    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TargetRNC_ID_ExtIEs (?);
            //  type    octetstring TargetToSource_TransparentContainer;
            //  type    octetstring TargettoSource_Failure_TransparentContainer;
            //  type    enumerated  TimerApproachForGUAMIRemoval    {
            //  type    octetstring TimeStamp   length  (4);
            //  type    record  TimeSyncAssistanceInfo  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TimeSyncAssistanceInfo_ExtIEs   (?);
            //  type    enumerated  TimeToWait  {
            //  type    integer TimeUEStayedInCell  (0  ..  4095);  
            //  type    integer TimeUEStayedInCellEnhancedGranularity   (0  ..  40950); 
            //  type    octetstring TMGI    length  (6);
            //  type    octetstring TNAP_ID;
            //  type    union   TNGF_ID {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   TNGF_ID_ExtIEs  (?);
            //  type    integer TNLAddressWeightFactor  (0  ..  255);   
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTNLAssociations)  of  TNLAssociationItem  TNLAssociationList;
            //  type    record  TNLAssociationItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TNLAssociationItem_ExtIEs   (?);
            //  type    enumerated  TNLAssociationUsage {
            //  type    record  TooearlyIntersystemHO   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TooearlyIntersystemHO_ExtIEs    (?);
            //  type    record  TraceActivation {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TraceActivation_ExtIEs  (
            //  type    enumerated  TraceDepth  {
            //  type    integer TrafficLoadReductionIndication  (1  ..  99);    
            template (present) TransportLayerAddress mw_ie_tla(template (present) bitstring p_val := ?) := p_val;
Iztok Juvancic's avatar
Iztok Juvancic committed
            //  type    enumerated  TypeOfError {
            //  type    record  TAIBasedMDT {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TAIBasedMDT_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTAforMDT) of  TAI TAIListforMDT;
            //  type    record  TAIBasedQMC {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TAIBasedQMC_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTAforQMC) of  TAI TAIListforQMC;
            //  type    record  TABasedQMC  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TABasedQMC_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTAforQMC) of  TAC TAListforQMC;
            //  type    record  TABasedMDT  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TABasedMDT_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTAforMDT) of  TAC TAListforMDT;
            //  type    integer Threshold_RSRP  (0  ..  127);   
            //  type    integer Threshold_RSRQ  (0  ..  127);   
            //  type    integer Threshold_SINR  (0  ..  127);   
            //  type    enumerated  TimeToTrigger   {
            //  type    octetstring TWAP_ID;
            //  type    union   TWIF_ID {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   TWIF_ID_ExtIEs  (?);
            //  type    record  TSCAssistanceInformation    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TSCAssistanceInformation_ExtIEs (
            //  type    record  TSCTrafficCharacteristics   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION TSCTrafficCharacteristics_ExtIEs    (?);
            //  type    record  UEAggregateMaximumBitRate   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UEAggregateMaximumBitRate_ExtIEs    (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofUEAppLayerMeas)   of  UEAppLayerMeasInfoItem  UEAppLayerMeasInfoList;
            //  type    record  UEAppLayerMeasInfoItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UEAppLayerMeasInfoItem_ExtIEs   (?);
            //  type    record  UEAppLayerMeasConfigInfo    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UEAppLayerMeasConfigInfo_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofNGConnectionsToReset) of  UE_associatedLogicalNG_connectionItem   UE_associatedLogicalNG_connectionList;
            //  type    record  UE_associatedLogicalNG_connectionItem   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UE_associatedLogicalNG_connectionItem_ExtIEs    (?);
            //  type    enumerated  UECapabilityInfoRequest {
            //  type    enumerated  UEContextRequest    {
            //  type    record  UEContextResumeRequestTransfer  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UEContextResumeRequestTransfer_ExtIEs   (?);
            //  type    record  UEContextResumeResponseTransfer {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UEContextResumeResponseTransfer_ExtIEs  (?);
            //  type    record  UEContextSuspendRequestTransfer {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UEContextSuspendRequestTransfer_ExtIEs  (?);
            //  type    record  UE_DifferentiationInfo  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UE_DifferentiationInfo_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofCellsinUEHistoryInfo) of  LastVisitedCellItem UEHistoryInformation;
            //  type    union   UEHistoryInformationFromTheUE   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   UEHistoryInformationFromTheUE_ExtIEs    (?);
            //  type    union   UEIdentityIndexValue    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   UEIdentityIndexValue_ExtIEs (?);
            //  type    union   UE_NGAP_IDs {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   UE_NGAP_IDs_ExtIEs  (?);
            //  type    record  UE_NGAP_ID_pair {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UE_NGAP_ID_pair_ExtIEs  (?);
            //  type    union   UEPagingIdentity    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   UEPagingIdentity_ExtIEs (?);
            //  type    enumerated  UEPresence  {
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofAoI)  of  UEPresenceInAreaOfInterestItem  UEPresenceInAreaOfInterestList;
            //  type    record  UEPresenceInAreaOfInterestItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UEPresenceInAreaOfInterestItem_ExtIEs   (?);
            //  type    octetstring UERadioCapability;
            //  type    record  UERadioCapabilityForPaging  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UERadioCapabilityForPaging_ExtIEs   (
            //  type    octetstring UERadioCapabilityForPagingOfNB_IoT;
            //  type    octetstring UERadioCapabilityForPagingOfNR;
            //  type    octetstring UERadioCapabilityForPagingOfEUTRA;
            //  type    octetstring UERadioCapabilityID;
            //  type    enumerated  UERetentionInformation  {
            //  type    union   UERLFReportContainer    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   UERLFReportContainer_ExtIEs (?);
            //  type    record  UESecurityCapabilities  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UESecurityCapabilities_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofAllowedS_NSSAIs)  of  UESliceMaximumBitRateItem   UESliceMaximumBitRateList;
            //  type    record  UESliceMaximumBitRateItem   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UESliceMaximumBitRateItem_ExtIEs    (?);
            //  type    enumerated  UE_UP_CIoT_Support  {
            //  type    record  UL_CP_SecurityInformation   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UL_CP_SecurityInformation_ExtIEs    (?);
            //  type    bitstring   UL_NAS_MAC  length  (16);
            //  type    bitstring   UL_NAS_Count    length  (5);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofMultiConnectivity)    of  UL_NGU_UP_TNLModifyItem UL_NGU_UP_TNLModifyList;
            //  type    record  UL_NGU_UP_TNLModifyItem {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UL_NGU_UP_TNLModifyItem_ExtIEs  (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofServedGUAMIs) of  UnavailableGUAMIItem    UnavailableGUAMIList;
            //  type    record  UnavailableGUAMIItem    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UnavailableGUAMIItem_ExtIEs (?);
            //  type    enumerated  ULForwarding    {
            //  type    bitstring   UpdateFeedback  length  (
            //  type    union   UPTransportLayerInformation {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   UPTransportLayerInformation_ExtIEs  (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofMultiConnectivityMinusOne)    of  UPTransportLayerInformationItem UPTransportLayerInformationList;
            //  type    record  UPTransportLayerInformationItem {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UPTransportLayerInformationItem_ExtIEs  (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofMultiConnectivityMinusOne)    of  UPTransportLayerInformationPairItem UPTransportLayerInformationPairList;
            //  type    record  UPTransportLayerInformationPairItem {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UPTransportLayerInformationPairItem_ExtIEs  (?);
            //  type    ASNAUX.VisibleString    URI_address;
            //  type    union   UserLocationInformation {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   UserLocationInformation_ExtIEs  (
            //  type    record  UserLocationInformationEUTRA    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UserLocationInformationEUTRA_ExtIEs (
            //  type    record  UserLocationInformationN3IWF    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UserLocationInformationN3IWF_ExtIEs (
            //  type    record  UserLocationInformationTNGF {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UserLocationInformationTNGF_ExtIEs  (
            //  type    record  UserLocationInformationTWIF {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UserLocationInformationTWIF_ExtIEs  (
            //  type    union   UserLocationInformationW_AGF    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   UserLocationInformationW_AGF_ExtIEs (
            //  type    record  UserLocationInformationNR   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UserLocationInformationNR_ExtIEs    (
            //  type    record  UserPlaneSecurityInformation    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION UserPlaneSecurityInformation_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofTimePeriods)  of  VolumeTimedReport_Item  VolumeTimedReportList;
            //  type    record  VolumeTimedReport_Item  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION VolumeTimedReport_Item_ExtIEs   (?);
            //  type    union   W_AGF_ID    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   W_AGF_ID_ExtIEs (?);
            //  type    octetstring WarningAreaCoordinates  length  (1  ..  1024);
            //  type    union   WarningAreaList {
            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   WarningAreaList_ExtIEs  (?);
            //  type    octetstring WarningMessageContents  length  (1  ..  9600);
            //  type    octetstring WarningSecurityInfo length  (50);
            //  type    octetstring WarningType length  (2);
            //  type    record  WLANMeasurementConfiguration    {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION WLANMeasurementConfiguration_ExtIEs (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofWLANName) of  WLANMeasConfigNameItem  WLANMeasConfigNameList;
            //  type    record  WLANMeasConfigNameItem  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION WLANMeasConfigNameItem_ExtIEs   (?);
            //  type    enumerated  WLANMeasConfig  {
            //  type    octetstring WLANName    length  (1  ..  32);
            //  type    record  WUS_Assistance_Information  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION WUS_Assistance_Information_ExtIEs   (?);
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofXnExtTLAs)    of  XnExtTLA_Item   XnExtTLAs;
            //  type    record  XnExtTLA_Item   {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION XnExtTLA_Item_ExtIEs    (
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofXnGTP_TLAs)   of  TransportLayerAddress   XnGTP_TLAs;
            //  type    record  length  (1  ..  NGAP_Constants.maxnoofXnTLAs)   of  TransportLayerAddress   XnTLAs;
            //  type    record  XnTNLConfigurationInfo  {
            //  type    NGAP_Containers.NGAP_PROTOCOL_EXTENSION XnTNLConfigurationInfo_ExtIEs   (?);
        } // End of group receive

Yann Garcia's avatar
Yann Garcia committed
    //} // End of group Information_elements

    } // End of group g_NGAP    
    group  Functions_For_Templates{
    } // End of group  functionsForTemplates

}  //  End  of  module  LibNGAP_Templates